/* Copyright 2019 New Vector Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React from 'react'; import PropTypes from 'prop-types'; import {_t} from "../../../../languageHandler"; import MatrixClientPeg from "../../../../MatrixClientPeg"; import sdk from "../../../../index"; import LabelledToggleSwitch from "../../elements/LabelledToggleSwitch"; import {SettingLevel} from "../../../../settings/SettingsStore"; export default class SecurityRoomSettingsTab extends React.Component { static propTypes = { roomId: PropTypes.string.isRequired, }; constructor() { super(); this.state = { joinRule: "invite", guestAccess: "can_join", history: "shared", encrypted: false, }; } componentWillMount(): void { MatrixClientPeg.get().on("RoomState.events", this._onStateEvent); const room = MatrixClientPeg.get().getRoom(this.props.roomId); const state = room.currentState; const joinRule = this._pullContentPropertyFromEvent( state.getStateEvents("m.room.join_rules", ""), 'join_rule', 'invite', ); const guestAccess = this._pullContentPropertyFromEvent( state.getStateEvents("m.room.guest_access", ""), 'guest_access', 'forbidden', ); const history = this._pullContentPropertyFromEvent( state.getStateEvents("m.room.history_visibility", ""), 'history_visibility', 'shared', ); const encrypted = MatrixClientPeg.get().isRoomEncrypted(this.props.roomId); this.setState({joinRule, guestAccess, history, encrypted}); } _pullContentPropertyFromEvent(event, key, defaultValue) { if (!event || !event.getContent()) return defaultValue; return event.getContent()[key] || defaultValue; } componentWillUnmount(): void { MatrixClientPeg.get().removeListener("RoomState.events", this._onStateEvent); } _onStateEvent = (e) => { const refreshWhenTypes = [ 'm.room.join_rules', 'm.room.guest_access', 'm.room.history_visibility', 'm.room.encryption', ]; if (refreshWhenTypes.includes(e.getType())) this.forceUpdate(); }; _onEncryptionChange = (e) => { const beforeEncrypted = this.state.encrypted; this.setState({encrypted: true}); MatrixClientPeg.get().sendStateEvent( this.props.roomId, "m.room.encryption", { algorithm: "m.megolm.v1.aes-sha2" }, ).catch((e) => { console.error(e); this.setState({encrypted: beforeEncrypted}); }); }; _fixGuestAccess = (e) => { e.preventDefault(); e.stopPropagation(); const joinRule = "invite"; const guestAccess = "can_join"; const beforeJoinRule = this.state.joinRule; const beforeGuestAccess = this.state.guestAccess; this.setState({joinRule, guestAccess}); const client = MatrixClientPeg.get(); client.sendStateEvent(this.props.roomId, "m.room.join_rules", {join_rule: joinRule}, "").catch((e) => { console.error(e); this.setState({joinRule: beforeJoinRule}); }); client.sendStateEvent(this.props.roomId, "m.room.guest_access", {guest_access: guestAccess}, "").catch((e) => { console.error(e); this.setState({guestAccess: beforeGuestAccess}); }); }; _onRoomAccessRadioToggle = (ev) => { // join_rule // INVITE | PUBLIC // ----------------------+---------------- // guest CAN_JOIN | inv_only | pub_with_guest // access ----------------------+---------------- // FORBIDDEN | inv_only | pub_no_guest // ----------------------+---------------- // we always set guests can_join here as it makes no sense to have // an invite-only room that guests can't join. If you explicitly // invite them, you clearly want them to join, whether they're a // guest or not. In practice, guest_access should probably have // been implemented as part of the join_rules enum. let joinRule = "invite"; let guestAccess = "can_join"; switch (ev.target.value) { case "invite_only": // no change - use defaults above break; case "public_no_guests": joinRule = "public"; guestAccess = "forbidden"; break; case "public_with_guests": joinRule = "public"; guestAccess = "can_join"; break; } const beforeJoinRule = this.state.joinRule; const beforeGuestAccess = this.state.guestAccess; this.setState({joinRule, guestAccess}); const client = MatrixClientPeg.get(); client.sendStateEvent(this.props.roomId, "m.room.join_rules", {join_rule: joinRule}, "").catch((e) => { console.error(e); this.setState({joinRule: beforeJoinRule}); }); client.sendStateEvent(this.props.roomId, "m.room.guest_access", {guest_access: guestAccess}, "").catch((e) => { console.error(e); this.setState({guestAccess: beforeGuestAccess}); }); }; _onHistoryRadioToggle = (ev) => { const beforeHistory = this.state.history; this.setState({history: ev.target.value}); MatrixClientPeg.get().sendStateEvent(this.props.roomId, "m.room.history_visibility", { history_visibility: ev.target.value, }, "").catch((e) => { console.error(e); this.setState({history: beforeHistory}); }); }; _renderRoomAccess() { const client = MatrixClientPeg.get(); const room = client.getRoom(this.props.roomId); const joinRule = this.state.joinRule; const guestAccess = this.state.guestAccess; const aliasEvents = room.currentState.getStateEvents("m.room.aliases") || []; const hasAliases = !!aliasEvents.find((ev) => (ev.getContent().aliases || []).length > 0); const canChangeAccess = room.currentState.mayClientSendStateEvent("m.room.join_rules", client) && room.currentState.mayClientSendStateEvent("m.room.guest_access", client); let guestWarning = null; if (joinRule !== 'public' && guestAccess === 'forbidden') { guestWarning = (