/* 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 {SettingLevel} from "../../../../../settings/SettingsStore"; import MatrixClientPeg from "../../../../../MatrixClientPeg"; import * as FormattingUtils from "../../../../../utils/FormattingUtils"; import AccessibleButton from "../../../elements/AccessibleButton"; import Analytics from "../../../../../Analytics"; import Promise from "bluebird"; import Modal from "../../../../../Modal"; import sdk from "../../../../.."; export class IgnoredUser extends React.Component { static propTypes = { userId: PropTypes.string.isRequired, onUnignored: PropTypes.func.isRequired, }; _onUnignoreClicked = (e) => { this.props.onUnignored(this.props.userId); }; render() { return (
{_t('Unignore')} {this.props.userId}
); } } export default class SecurityUserSettingsTab extends React.Component { constructor() { super(); // Get number of rooms we're invited to const invitedRooms = this._getInvitedRooms(); this.state = { ignoredUserIds: MatrixClientPeg.get().getIgnoredUsers(), managingInvites: false, invitedRoomAmt: invitedRooms.length, }; } _updateBlacklistDevicesFlag = (checked) => { MatrixClientPeg.get().setGlobalBlacklistUnverifiedDevices(checked); }; _updateAnalytics = (checked) => { checked ? Analytics.enable() : Analytics.disable(); }; _onExportE2eKeysClicked = () => { Modal.createTrackedDialogAsync('Export E2E Keys', '', import('../../../../../async-components/views/dialogs/ExportE2eKeysDialog'), {matrixClient: MatrixClientPeg.get()}, ); }; _onImportE2eKeysClicked = () => { Modal.createTrackedDialogAsync('Import E2E Keys', '', import('../../../../../async-components/views/dialogs/ImportE2eKeysDialog'), {matrixClient: MatrixClientPeg.get()}, ); }; _onUserUnignored = async (userId) => { // Don't use this.state to get the ignored user list as it might be // ever so slightly outdated. Instead, prefer to get a fresh list and // update that. const ignoredUsers = MatrixClientPeg.get().getIgnoredUsers(); const index = ignoredUsers.indexOf(userId); if (index !== -1) { ignoredUsers.splice(index, 1); MatrixClientPeg.get().setIgnoredUsers(ignoredUsers); } this.setState({ignoredUsers}); }; _getInvitedRooms = () => { return MatrixClientPeg.get().getRooms().filter((r) => { return r.hasMembershipState(MatrixClientPeg.get().getUserId(), "invite"); }); }; _manageInvites = async (accept) => { this.setState({ managingInvites: true, }); // Compile array of invitation room ids const invitedRoomIds = this._getInvitedRooms().map((room) => { return room.roomId; }); // Execute all acceptances/rejections sequentially const self = this; const cli = MatrixClientPeg.get(); const action = accept ? cli.joinRoom.bind(cli) : cli.leave.bind(cli); for (let i = 0; i < invitedRoomIds.length; i++) { const roomId = invitedRoomIds[i]; // Accept/reject invite await action(roomId).then(() => { // No error, update invited rooms button this.setState({invitedRoomAmt: self.state.invitedRoomAmt - 1}); }, async (e) => { // Action failure if (e.errcode === "M_LIMIT_EXCEEDED") { // Add a delay between each invite change in order to avoid rate // limiting by the server. await Promise.delay(e.retry_after_ms); // Redo last action i--; } else { // Print out error with joining/leaving room console.warn(e); } }); } this.setState({ managingInvites: false, }); }; _onAcceptAllInvitesClicked = (ev) => { this._manageInvites(true); }; _onRejectAllInvitesClicked = (ev) => { this._manageInvites(false); }; _renderCurrentDeviceInfo() { const SettingsFlag = sdk.getComponent('views.elements.SettingsFlag'); const client = MatrixClientPeg.get(); const deviceId = client.deviceId; let identityKey = client.getDeviceEd25519Key(); if (!identityKey) { identityKey = _t(""); } else { identityKey = FormattingUtils.formatCryptoKey(identityKey); } let importExportButtons = null; if (client.isCryptoEnabled()) { importExportButtons = (
{_t("Export E2E room keys")} {_t("Import E2E room keys")}
); } return (
{_t("Cryptography")} {importExportButtons}
); } _renderIgnoredUsers() { if (!this.state.ignoredUserIds || this.state.ignoredUserIds.length === 0) return null; const userIds = this.state.ignoredUserIds .map((u) => ); return (
{_t('Ignored users')}
{userIds}
); } _renderManageInvites() { if (this.state.invitedRoomAmt === 0) { return null; } const invitedRooms = this._getInvitedRooms(); const InlineSpinner = sdk.getComponent('elements.InlineSpinner'); const onClickAccept = this._onAcceptAllInvitesClicked.bind(this, invitedRooms); const onClickReject = this._onRejectAllInvitesClicked.bind(this, invitedRooms); return (
{_t('Bulk options')} {_t("Accept all %(invitedRooms)s invites", {invitedRooms: this.state.invitedRoomAmt})} {_t("Reject all %(invitedRooms)s invites", {invitedRooms: this.state.invitedRoomAmt})} {this.state.managingInvites ? :
}
); } render() { const DevicesPanel = sdk.getComponent('views.settings.DevicesPanel'); const SettingsFlag = sdk.getComponent('views.elements.SettingsFlag'); const KeyBackupPanel = sdk.getComponent('views.settings.KeyBackupPanel'); const keyBackup = (
{_t("Key backup")}
); return (
{_t("Security & Privacy")}
{_t("Devices")}
{keyBackup} {this._renderCurrentDeviceInfo()}
{_t("Analytics")}
{_t("Riot collects anonymous analytics to allow us to improve the application.")}   {_t("Privacy is important to us, so we don't collect any personal or " + "identifiable data for our analytics.")} {_t("Learn more about how we use analytics.")}
{this._renderIgnoredUsers()} {this._renderManageInvites()}
); } }