ocrcc-chatbox/src/components/chatbox.jsx

454 lines
13 KiB
React
Raw Normal View History

2020-02-01 05:30:58 +00:00
import React from "react"
import PropTypes from "prop-types"
2020-02-24 04:12:47 +00:00
import { Transition } from 'react-transition-group';
2020-02-02 18:36:11 +00:00
import * as util from "util";
import * as os from "os";
import * as path from "path";
import * as fs from "fs";
import { LocalStorage } from "node-localstorage";
2020-02-02 04:18:09 +00:00
import * as olm from "olm"
global.Olm = olm
2020-02-02 18:36:11 +00:00
import * as matrix from "matrix-js-sdk";
2020-02-01 05:30:58 +00:00
import {uuid} from "uuidv4"
import Message from "./message";
2020-02-24 04:12:47 +00:00
import Dock from "./dock";
import Header from "./header";
import './styles.scss';
2020-02-01 05:30:58 +00:00
2020-02-02 18:36:11 +00:00
const DEFAULT_MATRIX_SERVER = "https://matrix.rhok.space"
const DEFAULT_ROOM_NAME = "Support Chat"
2020-02-23 21:57:16 +00:00
const BOT_USERNAME = "@help-bot:rhok.space"
2020-02-04 05:43:26 +00:00
const ENCRYPTION_CONFIG = { "algorithm": "m.megolm.v1.aes-sha2" };
2020-02-23 21:57:16 +00:00
const ENCRYPTION_NOTICE = "Messages in this chat are secured with end-to-end encryption."
2020-02-24 19:16:43 +00:00
const INTRO_MESSAGE = "This chat application does not collect any of your personal data or any data from your use of this service."
const AGREEMENT_MESSAGE = "Do you want to continue? Type yes or no."
const CONFIRMATION_MESSAGE = "Starting the chat - a facilitator will be with you soon."
const EXIT_MESSAGE = "The chat was not started."
const FACILITATOR_ROOM_ID = '!pYVVPyFKacZeKZbWyz:rhok.space'
const TERMS_URL="https://tosdr.org/"
2020-02-01 05:30:58 +00:00
2020-02-24 04:12:47 +00:00
const initialState = {
opened: false,
showDock: true,
client: null,
2020-02-24 19:16:43 +00:00
ready: true,
2020-02-24 04:12:47 +00:00
accessToken: null,
userId: null,
2020-02-24 19:16:43 +00:00
messages: [
{
id: 'intro-msg-id',
type: 'm.room.message',
sender: BOT_USERNAME,
content: { body: INTRO_MESSAGE },
},
{
id: 'terms-msg-id',
type: 'm.room.message',
sender: BOT_USERNAME,
content: {
body: `Please read the full terms and conditions at ${TERMS_URL}.`,
formatted_body: `Please read the full <a href="${TERMS_URL}">terms and conditions</a>.`
}
},
{
id: 'agreement-msg-id',
type: 'm.room.message',
sender: BOT_USERNAME,
content: { body: AGREEMENT_MESSAGE },
},
],
2020-02-24 04:12:47 +00:00
inputValue: "",
errors: [],
roomId: null,
typingStatus: null,
2020-02-24 19:16:43 +00:00
awaitingAgreement: true,
awaitingFacilitator: false,
2020-02-24 04:12:47 +00:00
}
2020-02-01 05:30:58 +00:00
class ChatBox extends React.Component {
constructor(props) {
super(props)
const client = matrix.createClient(this.props.matrixServerUrl)
2020-02-24 04:12:47 +00:00
this.state = initialState
2020-02-01 05:30:58 +00:00
this.chatboxInput = React.createRef();
}
2020-02-24 04:12:47 +00:00
handleToggleOpen = () => {
this.setState((prev) => {
let { showDock } = prev;
if (!prev.opened) {
showDock = false;
}
return {
showDock,
opened: !prev.opened,
};
});
}
handleWidgetExit = () => {
this.setState({
showDock: true,
});
}
2020-02-24 19:16:43 +00:00
handleWidgetEnter = () => {
this.chatboxInput.current.focus()
}
2020-02-24 04:12:47 +00:00
handleExitChat = () => {
2020-02-24 19:16:43 +00:00
if (this.state.client) {
this.leaveRoom()
.then(() => {
this.setState(initialState)
})
.catch(err => console.log("Error leaving room", err))
} else {
2020-02-24 04:12:47 +00:00
this.setState(initialState)
2020-02-24 19:16:43 +00:00
}
2020-02-24 04:12:47 +00:00
}
2020-02-01 05:30:58 +00:00
leaveRoom = () => {
2020-02-24 19:16:43 +00:00
return this.state.client.leave(this.state.roomId)
2020-02-01 05:30:58 +00:00
}
2020-02-24 19:16:43 +00:00
initializeChat = () => {
// empty registration request to get session
2020-02-24 19:16:43 +00:00
this.setState({ ready: false })
let client = matrix.createClient(this.props.matrixServerUrl)
return client.registerRequest({})
.then(data => {
console.log("Empty registration request to get session", data)
})
.catch(err => {
// actual registration request with randomly generated username and password
const username = uuid()
const password = uuid()
const sessionId = err.data.session
client.registerRequest({
auth: {session: sessionId, type: "m.login.dummy"},
inhibit_login: false,
password: password,
username: username,
x_show_msisdn: true,
})
.then(data => {
// use node localStorage if window.localStorage is not available
let localStorage = global.localStorage;
if (typeof localStorage === "undefined" || localStorage === null) {
const deviceDesc = `matrix-chat-${data.device_id}-${sessionId}`
const localStoragePath = path.resolve(path.join(os.homedir(), ".local-storage", deviceDesc))
localStorage = new LocalStorage(localStoragePath);
}
this.setState({
accessToken: data.access_token,
userId: data.user_id,
username: username
})
// create new client with full options
let opts = {
baseUrl: this.props.matrixServerUrl,
accessToken: data.access_token,
userId: data.user_id,
deviceId: data.device_id,
sessionStore: new matrix.WebStorageSessionStore(localStorage),
}
client = matrix.createClient(opts)
client.setDisplayName("Anonymous")
})
.catch(err => {
console.log("Registration error", err)
})
.then(() => client.initCrypto())
2020-02-24 19:16:43 +00:00
.then(() => client.startClient())
.then(() => {
this.setState({
client: client
})
})
})
}
2020-02-23 17:01:58 +00:00
verifyAllRoomDevices = async function(roomId) {
let room = this.state.client.getRoom(roomId);
let members = (await room.getEncryptionTargetMembers()).map(x => x["userId"])
let memberkeys = await this.state.client.downloadKeys(members);
for (const userId in memberkeys) {
for (const deviceId in memberkeys[userId]) {
console.log("verifying device", `${userId} - ${deviceId}`)
await this.state.client.setDeviceVerified(userId, deviceId);
}
}
}
2020-02-01 05:30:58 +00:00
createRoom = () => {
const currentDate = new Date()
const chatDate = currentDate.toLocaleDateString()
const chatTime = currentDate.toLocaleTimeString()
return this.state.client.createRoom({
room_alias_name: `private-support-chat-${uuid()}`,
2020-02-24 19:16:43 +00:00
invite: [BOT_USERNAME],
2020-02-01 05:30:58 +00:00
visibility: 'private',
name: `${chatDate} - ${this.props.roomName} - started at ${chatTime}`,
2020-02-04 05:43:26 +00:00
initial_state: [
{
type: 'm.room.encryption',
state_key: '',
2020-02-04 06:13:47 +00:00
content: ENCRYPTION_CONFIG,
2020-02-04 05:43:26 +00:00
},
]
})
.then(data => {
2020-02-23 17:01:58 +00:00
this.verifyAllRoomDevices(data.room_id)
2020-02-23 21:57:16 +00:00
this.state.client.setPowerLevel(data.room_id, BOT_USERNAME, 100)
2020-02-24 19:16:43 +00:00
.then(() => console.log("Set bot power level to 100"))
.catch(err => console.log("Error setting bot power level", err))
2020-02-04 05:43:26 +00:00
this.setState({
2020-02-04 06:13:47 +00:00
roomId: data.room_id
2020-02-04 05:43:26 +00:00
})
})
.catch(err => {
2020-02-04 05:43:26 +00:00
console.log("Unable to create room", err)
2020-02-01 05:30:58 +00:00
})
}
sendMessage = () => {
this.state.client.sendTextMessage(this.state.roomId, this.state.inputValue)
.then((res) => {
2020-02-24 19:16:43 +00:00
this.setState({ inputValue: "" })
this.chatboxInput.current.focus()
2020-02-04 06:13:47 +00:00
})
.catch((err) => {
2020-02-06 01:26:51 +00:00
switch (err["name"]) {
case "UnknownDeviceError":
Object.keys(err.devices).forEach((userId) => {
Object.keys(err.devices[userId]).map((deviceId) => {
this.state.client.setDeviceKnown(userId, deviceId, true);
});
2020-02-04 05:43:26 +00:00
});
this.sendMessage()
break;
default:
console.log("Error sending message", err);
}
})
2020-02-01 05:30:58 +00:00
}
2020-02-04 05:43:26 +00:00
handleMessageEvent = event => {
const message = {
id: event.getId(),
type: event.getType(),
sender: event.getSender(),
roomId: event.getRoomId(),
content: event.getContent(),
}
2020-02-23 21:57:16 +00:00
console.log("INCOMING MESSAGE", message)
2020-02-04 05:43:26 +00:00
const messages = [...this.state.messages]
messages.push(message)
this.setState({ messages })
}
2020-02-14 16:38:20 +00:00
handleEscape = (e) => {
2020-02-24 04:12:47 +00:00
if (e.keyCode === 27 && this.state.opened) {
this.handleToggleOpen()
2020-02-14 16:38:20 +00:00
}
}
2020-02-01 05:30:58 +00:00
componentDidUpdate(prevProps, prevState) {
2020-02-24 04:12:47 +00:00
if (this.state.client && prevState.client !== this.state.client) {
this.createRoom()
2020-02-01 05:30:58 +00:00
this.state.client.once('sync', (state, prevState, res) => {
if (state === "PREPARED") {
this.setState({ ready: true })
}
});
this.state.client.on("Room.timeline", (event, room, toStartOfTimeline) => {
2020-02-16 23:31:50 +00:00
if (event.getType() === "m.room.encryption") {
2020-02-23 21:57:16 +00:00
const msgList = [...this.state.messages]
const encryptionMsg = {
id: 'encryption-msg-id',
type: 'm.room.message',
sender: BOT_USERNAME,
roomId: room.room_id,
content: { body: ENCRYPTION_NOTICE },
}
2020-02-24 19:16:43 +00:00
msgList.push(encryptionMsg)
2020-02-23 17:01:58 +00:00
2020-02-23 21:57:16 +00:00
this.setState({ messages: msgList })
2020-02-23 17:01:58 +00:00
}
2020-02-04 05:43:26 +00:00
});
this.state.client.on("Event.decrypted", (event) => {
if (event.getType() === "m.room.message") {
this.handleMessageEvent(event)
2020-02-01 05:30:58 +00:00
}
});
2020-02-23 17:01:58 +00:00
this.state.client.on("RoomMember.typing", (event, member) => {
if (member.typing) {
this.setState({ typingStatus: `${member.name} is typing...`})
}
else {
this.setState({ typingStatus: null })
}
});
2020-02-24 19:16:43 +00:00
2020-02-01 05:30:58 +00:00
}
if (!prevState.ready && this.state.ready) {
2020-02-01 05:30:58 +00:00
this.chatboxInput.current.focus()
}
2020-02-24 19:16:43 +00:00
console.log('OPENED STATE', this.state.opened)
if (!prevState.opened && this.state.opened) {
this.chatboxInput.current.focus()
}
2020-02-01 05:30:58 +00:00
}
2020-02-14 16:38:20 +00:00
componentDidMount() {
document.addEventListener("keydown", this.handleEscape, false);
}
2020-02-01 05:30:58 +00:00
componentWillUnmount() {
2020-02-14 16:38:20 +00:00
document.removeEventListener("keydown", this.handleEscape, false);
2020-02-01 05:30:58 +00:00
this.leaveRoom();
}
handleInputChange = e => {
this.setState({ inputValue: e.currentTarget.value })
}
handleSubmit = e => {
e.preventDefault()
if (!Boolean(this.state.inputValue)) return null;
2020-02-24 19:16:43 +00:00
if (this.state.awaitingAgreement && !this.state.client) {
if (this.state.inputValue.toLowerCase() === 'yes') {
const fakeUserMsg = {
id: 'fake-msg-id',
type: 'm.room.message',
sender: 'from-me',
content: { body: this.state.inputValue },
}
const messages = [...this.state.messages]
messages.push(fakeUserMsg)
this.setState({ inputValue: "", messages })
return this.initializeChat()
} else {
const fakeUserMsg = {
id: 'fake-msg-id',
type: 'm.room.message',
sender: 'from-me',
content: { body: this.state.inputValue },
}
const exitMsg = {
id: 'exit-msg-id',
type: 'm.room.message',
sender: BOT_USERNAME,
content: { body: EXIT_MESSAGE },
}
const messages = [...this.state.messages]
messages.push(fakeUserMsg)
messages.push(exitMsg)
this.setState({ inputValue: "", messages })
}
}
if (this.state.client && this.state.roomId) {
return this.sendMessage()
2020-02-01 05:30:58 +00:00
}
}
render() {
2020-02-24 04:12:47 +00:00
const { ready, messages, inputValue, userId, roomId, typingStatus, opened, showDock } = this.state;
2020-02-14 16:38:20 +00:00
const inputLabel = 'Send a message...'
2020-02-01 05:30:58 +00:00
return (
2020-02-24 04:12:47 +00:00
<div className="docked-widget" role="complementary">
2020-02-24 19:16:43 +00:00
<Transition in={opened} timeout={250} onExited={this.handleWidgetExit} onEntered={this.handleWidgetEnter}>
{(status) => {
return (
2020-02-24 04:12:47 +00:00
<div className={`widget widget-${status}`} aria-hidden={!opened}>
<div id="ocrcc-chatbox" aria-haspopup="dialog">
<Header handleToggleOpen={this.handleToggleOpen} opened={opened} handleExitChat={this.handleExitChat} />
<div className="message-window">
<div className="messages">
{
messages.map((message, index) => {
return(
<Message key={message.id} message={message} userId={userId} botId={BOT_USERNAME} />
)
2020-02-24 19:16:43 +00:00
})
2020-02-24 04:12:47 +00:00
}
{ typingStatus &&
<div className="notices">
<div role="status">{typingStatus}</div>
</div>
}
2020-02-24 19:16:43 +00:00
{
!ready && <div className="loader">loading...</div>
}
2020-02-24 04:12:47 +00:00
</div>
</div>
<div className="input-window">
<form onSubmit={this.handleSubmit}>
<input
type="text"
onChange={this.handleInputChange}
value={inputValue}
aria-label={inputLabel}
placeholder={inputLabel}
autoFocus={true}
ref={this.chatboxInput}
/>
<input type="submit" value="Send" />
</form>
</div>
2020-02-23 21:57:16 +00:00
</div>
2020-02-24 04:12:47 +00:00
</div>
2020-02-24 19:16:43 +00:00
)}
}
2020-02-24 04:12:47 +00:00
</Transition>
{showDock && !roomId && <Dock handleToggleOpen={this.handleToggleOpen} />}
{showDock && roomId && <Header handleToggleOpen={this.handleToggleOpen} opened={opened} handleExitChat={this.handleExitChat} />}
2020-02-01 05:30:58 +00:00
</div>
);
}
};
ChatBox.propTypes = {
matrixServerUrl: PropTypes.string.isRequired,
roomName: PropTypes.string.isRequired,
2020-02-16 23:31:50 +00:00
termsUrl: PropTypes.string,
privacyStatement: PropTypes.string,
2020-02-01 05:30:58 +00:00
}
ChatBox.defaultProps = {
matrixServerUrl: DEFAULT_MATRIX_SERVER,
roomName: DEFAULT_ROOM_NAME,
2020-02-01 05:30:58 +00:00
}
export default ChatBox;