ocrcc-chatbox/src/components/chatbox.jsx

301 lines
8.4 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-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";
import LocalStorageCryptoStore from "matrix-js-sdk/lib/crypto/store/localStorage-crypto-store";
2020-02-01 05:30:58 +00:00
import {uuid} from "uuidv4"
import Message from "./message";
2020-02-02 18:36:11 +00:00
2020-02-01 05:30:58 +00:00
const MATRIX_SERVER_ADDRESS = "https://matrix.rhok.space"
2020-02-01 17:29:08 +00:00
const FACILITATOR_USERNAME = "@ocrcc-facilitator-demo:rhok.space"
2020-02-01 05:30:58 +00:00
const CHATROOM_NAME = "Support Chat"
2020-02-04 05:43:26 +00:00
const ENCRYPTION_CONFIG = { "algorithm": "m.megolm.v1.aes-sha2" };
2020-02-01 05:30:58 +00:00
class ChatBox extends React.Component {
constructor(props) {
super(props)
2020-02-02 18:36:11 +00:00
const client = matrix.createClient(MATRIX_SERVER_ADDRESS)
2020-02-01 05:30:58 +00:00
this.state = {
client: client,
ready: false,
rooms: { chunk: [] },
2020-02-04 06:13:47 +00:00
accessToken: null,
userId: null,
2020-02-01 05:30:58 +00:00
messages: [],
inputValue: "",
}
this.chatboxInput = React.createRef();
}
leaveRoom = () => {
2020-02-04 06:13:47 +00:00
if (this.state.roomId) {
this.state.client.leave(this.state.roomId).then(data => {
2020-02-01 05:30:58 +00:00
console.log("Left room", data)
})
}
}
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()}`,
invite: [FACILITATOR_USERNAME], // TODO: create bot user to add
visibility: 'private',
2020-02-04 05:43:26 +00:00
name: `${chatDate} - ${CHATROOM_NAME} - started at ${chatTime}`,
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
},
]
2020-02-01 05:30:58 +00:00
}).then(data => {
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
})
// this.state.client.setRoomEncryption(data.room_id, ENCRYPTION_CONFIG)
}).catch(err => {
console.log("Unable to create room", err)
2020-02-01 05:30:58 +00:00
})
}
sendMessage = () => {
2020-02-04 06:13:47 +00:00
this.state.client.sendTextMessage(this.state.roomId, this.state.inputValue).then((res) => {
this.setState({
inputValue: "",
isRoomEncrypted: this.state.client.isRoomEncrypted(this.state.roomId)
})
2020-02-01 05:30:58 +00:00
this.chatboxInput.current.focus()
}).catch((err) => {
console.log(err);
2020-02-04 05:43:26 +00:00
Object.keys(err.devices).forEach((userId) => {
Object.keys(err.devices[userId]).map((deviceId) => {
this.state.client.setDeviceKnown(userId, deviceId, true);
});
2020-02-04 06:13:47 +00:00
this.state.client.sendTextMessage(this.state.roomId, this.state.inputValue)
2020-02-04 05:43:26 +00:00
.then((res) => {
2020-02-04 06:13:47 +00:00
this.setState({ inputValue: "", isRoomEncrypted: this.state.client.isRoomEncrypted(this.state.roomId) })
2020-02-04 05:43:26 +00:00
this.chatboxInput.current.focus()
})
.catch(err => {
console.log(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(),
}
const messages = [...this.state.messages]
messages.push(message)
this.setState({ messages })
}
2020-02-01 05:30:58 +00:00
componentDidMount() {
// empty registration request to get session
this.state.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()
2020-02-02 18:36:11 +00:00
const sessionId = err.data.session
2020-02-01 05:30:58 +00:00
this.state.client.registerRequest({
2020-02-02 18:36:11 +00:00
auth: {session: sessionId, type: "m.login.dummy"},
2020-02-01 05:30:58 +00:00
inhibit_login: false,
password: password,
username: username,
x_show_msisdn: true,
}).then(data => {
2020-02-02 18:36:11 +00:00
// 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);
}
// create new client with full options
2020-02-02 04:18:09 +00:00
let opts = {
baseUrl: MATRIX_SERVER_ADDRESS,
accessToken: data.access_token,
userId: data.user_id,
deviceId: data.device_id,
2020-02-02 18:36:11 +00:00
sessionStore: new matrix.WebStorageSessionStore(localStorage),
2020-02-02 04:18:09 +00:00
}
2020-02-02 18:36:11 +00:00
2020-02-01 05:30:58 +00:00
this.setState({
2020-02-04 06:13:47 +00:00
accessToken: data.access_token,
userId: data.user_id,
2020-02-01 05:30:58 +00:00
username: username,
2020-02-02 18:36:11 +00:00
client: matrix.createClient(opts)
2020-02-02 04:18:09 +00:00
}, () => {
this.state.client.setDisplayName("Anonymous")
2020-02-01 05:30:58 +00:00
})
}).catch(err => {
console.log("Registration error", err)
})
})
}
componentDidUpdate(prevProps, prevState) {
if (prevState.client !== this.state.client) {
2020-02-02 18:36:11 +00:00
this.state.client.initCrypto().then(res => {
console.log("Crypto initialized!")
}).catch(err => {
console.log("Crypto ERROR", err)
}).finally(() => {
this.state.client.startClient()
})
2020-02-01 05:30:58 +00:00
this.state.client.once('sync', (state, prevState, res) => {
if (state === "PREPARED") {
this.setState({ ready: true })
}
});
2020-02-04 05:43:26 +00:00
2020-02-01 05:30:58 +00:00
this.state.client.on("Room.timeline", (event, room, toStartOfTimeline) => {
if (event.getType() === "m.room.message") {
2020-02-04 05:43:26 +00:00
if (event.status === "sending") {
return; // do nothing
}
if (event.status === "not sent") {
return console.log("message not sent!", event)
}
if (event.isEncrypted()) {
return console.log("message encrypted")
}
console.log("ROOM TIMELINE EVENT", event)
this.handleMessageEvent(event)
}
});
this.state.client.on("Event.decrypted", (event) => {
console.log("EVENT DECRYPTED => ", event)
if (event.getType() === "m.room.message") {
this.handleMessageEvent(event)
2020-02-01 05:30:58 +00:00
}
});
}
if (prevProps.status !== "entered" && this.props.status === "entered") {
this.chatboxInput.current.focus()
}
}
componentWillUnmount() {
this.leaveRoom();
}
handleInputChange = e => {
this.setState({ inputValue: e.currentTarget.value })
}
handleSubmit = e => {
e.preventDefault()
if (!Boolean(this.state.inputValue)) return null;
2020-02-04 06:13:47 +00:00
if (!this.state.roomId) {
2020-02-01 05:30:58 +00:00
return this.createRoom().then(this.sendMessage)
}
this.sendMessage()
}
render() {
2020-02-04 06:13:47 +00:00
const { ready, messages, inputValue, userId, isRoomEncrypted } = this.state;
2020-02-01 05:30:58 +00:00
const { opened, handleToggleOpen } = this.props;
2020-02-04 06:13:47 +00:00
console.log("isRoomEncrypted", isRoomEncrypted)
2020-02-01 05:30:58 +00:00
if (!ready) {
return (
<div className="loader">loading...</div>
)
}
return (
<div id="ocrcc-chatbox">
<div className="widget-header">
<div className="widget-header-title">
2020-02-04 06:13:47 +00:00
{ isRoomEncrypted && <span>🔒</span> } Support Chat
2020-02-01 05:30:58 +00:00
</div>
<button
type="button"
className={`widget-header-icon`}
onClick={handleToggleOpen}
onKeyPress={handleToggleOpen}
>
<span className={`arrow ${opened ? "opened" : "closed"}`}></span>
</button>
</div>
<div className="message-window">
<div className="messages">
{
messages.map((message, index) => {
return(
2020-02-04 06:13:47 +00:00
<Message key={message.id} message={message} userId={userId} />
2020-02-01 05:30:58 +00:00
)
})
}
</div>
2020-02-04 06:13:47 +00:00
<div className="notices">
{
isRoomEncrypted && <div>Messages in this chat are secured with end-to-end encryption.</div>
}
</div>
2020-02-01 05:30:58 +00:00
</div>
<div className="input-window">
<form onSubmit={this.handleSubmit}>
<input
type="text"
onChange={this.handleInputChange}
value={inputValue}
autoFocus={true}
ref={this.chatboxInput}
/>
<input type="submit" value="Send" />
</form>
</div>
</div>
);
}
};
ChatBox.propTypes = {
}
ChatBox.defaultProps = {
}
export default ChatBox;