2015-09-18 14:54:20 +02:00
|
|
|
/*
|
2016-01-07 05:06:39 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2018-08-29 19:09:37 +02:00
|
|
|
Copyright 2018 New Vector Ltd
|
2019-05-09 23:12:21 +02:00
|
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
|
|
|
|
import React from 'react';
|
2019-12-20 22:13:46 +01:00
|
|
|
import {MatrixClientPeg} from './MatrixClientPeg';
|
2018-06-18 20:31:40 +02:00
|
|
|
import dis from './dispatcher';
|
2019-12-20 02:19:56 +01:00
|
|
|
import * as sdk from './index';
|
2018-06-18 20:31:40 +02:00
|
|
|
import {_t, _td} from './languageHandler';
|
2016-09-13 12:11:52 +02:00
|
|
|
import Modal from './Modal';
|
2018-11-29 23:05:53 +01:00
|
|
|
import MultiInviter from './utils/MultiInviter';
|
2019-01-31 22:35:58 +01:00
|
|
|
import { linkifyAndSanitizeHtml } from './HtmlUtils';
|
2019-03-15 00:24:22 +01:00
|
|
|
import QuestionDialog from "./components/views/dialogs/QuestionDialog";
|
2019-03-24 07:07:00 +01:00
|
|
|
import WidgetUtils from "./utils/WidgetUtils";
|
2019-05-12 17:36:43 +02:00
|
|
|
import {textToHtmlRainbow} from "./utils/colour";
|
2019-08-30 19:29:07 +02:00
|
|
|
import { getAddressType } from './UserAddress';
|
|
|
|
import { abbreviateUrl } from './utils/UrlUtils';
|
|
|
|
import { getDefaultIdentityServerUrl, useDefaultIdentityServer } from './utils/IdentityServerUtils';
|
2019-10-01 04:39:58 +02:00
|
|
|
import {isPermalinkHost, parsePermalink} from "./utils/permalinks/Permalinks";
|
2019-11-28 04:29:11 +01:00
|
|
|
import {inviteUsersToRoom} from "./RoomInvite";
|
2016-01-14 15:39:58 +01:00
|
|
|
|
2019-06-27 20:41:29 +02:00
|
|
|
const singleMxcUpload = async () => {
|
2019-06-27 20:38:12 +02:00
|
|
|
return new Promise((resolve) => {
|
|
|
|
const fileSelector = document.createElement('input');
|
|
|
|
fileSelector.setAttribute('type', 'file');
|
|
|
|
fileSelector.onchange = (ev) => {
|
|
|
|
const file = ev.target.files[0];
|
|
|
|
|
|
|
|
const UploadConfirmDialog = sdk.getComponent("dialogs.UploadConfirmDialog");
|
|
|
|
Modal.createTrackedDialog('Upload Files confirmation', '', UploadConfirmDialog, {
|
|
|
|
file,
|
|
|
|
onFinished: (shouldContinue) => {
|
2019-06-29 08:05:43 +02:00
|
|
|
resolve(shouldContinue ? MatrixClientPeg.get().uploadContent(file) : null);
|
2019-06-27 20:38:12 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSelector.click();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2019-08-06 19:03:38 +02:00
|
|
|
export const CommandCategories = {
|
|
|
|
"messages": _td("Messages"),
|
|
|
|
"actions": _td("Actions"),
|
|
|
|
"admin": _td("Admin"),
|
|
|
|
"advanced": _td("Advanced"),
|
|
|
|
"other": _td("Other"),
|
|
|
|
};
|
|
|
|
|
2016-01-14 15:39:58 +01:00
|
|
|
class Command {
|
2019-08-06 19:03:38 +02:00
|
|
|
constructor({name, args='', description, runFn, category=CommandCategories.other, hideCompletionAfterSpace=false}) {
|
2018-06-20 18:09:49 +02:00
|
|
|
this.command = '/' + name;
|
2018-06-18 20:31:40 +02:00
|
|
|
this.args = args;
|
|
|
|
this.description = description;
|
2016-01-14 15:39:58 +01:00
|
|
|
this.runFn = runFn;
|
2019-08-06 19:03:38 +02:00
|
|
|
this.category = category;
|
2018-07-18 16:38:21 +02:00
|
|
|
this.hideCompletionAfterSpace = hideCompletionAfterSpace;
|
2016-01-14 15:39:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
getCommand() {
|
2018-06-20 18:09:49 +02:00
|
|
|
return this.command;
|
2016-01-14 15:39:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
getCommandWithArgs() {
|
2018-06-18 20:31:40 +02:00
|
|
|
return this.getCommand() + " " + this.args;
|
2016-01-14 15:39:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
run(roomId, args) {
|
|
|
|
return this.runFn.bind(this)(roomId, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
getUsage() {
|
2017-05-23 16:16:31 +02:00
|
|
|
return _t('Usage') + ': ' + this.getCommandWithArgs();
|
2016-01-14 15:39:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
function reject(error) {
|
|
|
|
return {error};
|
2017-05-23 10:44:11 +02:00
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2017-05-23 10:44:11 +02:00
|
|
|
function success(promise) {
|
2018-06-18 20:31:40 +02:00
|
|
|
return {promise};
|
2017-05-23 10:44:11 +02:00
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2017-05-23 10:44:11 +02:00
|
|
|
/* Disable the "unexpected this" error for these commands - all of the run
|
|
|
|
* functions are called with `this` bound to the Command instance.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* eslint-disable babel/no-invalid-this */
|
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
export const CommandMap = {
|
2019-02-19 00:27:22 +01:00
|
|
|
shrug: new Command({
|
|
|
|
name: 'shrug',
|
|
|
|
args: '<message>',
|
|
|
|
description: _td('Prepends ¯\\_(ツ)_/¯ to a plain-text message'),
|
|
|
|
runFn: function(roomId, args) {
|
2019-02-20 06:46:17 +01:00
|
|
|
let message = '¯\\_(ツ)_/¯';
|
2019-02-19 00:27:22 +01:00
|
|
|
if (args) {
|
2019-02-20 06:46:17 +01:00
|
|
|
message = message + ' ' + args;
|
2019-02-19 00:27:22 +01:00
|
|
|
}
|
|
|
|
return success(MatrixClientPeg.get().sendTextMessage(roomId, message));
|
2019-02-20 06:46:17 +01:00
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.messages,
|
2019-02-19 00:27:22 +01:00
|
|
|
}),
|
2019-09-02 17:44:31 +02:00
|
|
|
plain: new Command({
|
|
|
|
name: 'plain',
|
|
|
|
args: '<message>',
|
|
|
|
description: _td('Sends a message as plain text, without interpreting it as markdown'),
|
|
|
|
runFn: function(roomId, messages) {
|
|
|
|
return success(MatrixClientPeg.get().sendTextMessage(roomId, messages));
|
|
|
|
},
|
|
|
|
category: CommandCategories.messages,
|
|
|
|
}),
|
2018-06-18 20:31:40 +02:00
|
|
|
ddg: new Command({
|
|
|
|
name: 'ddg',
|
|
|
|
args: '<query>',
|
|
|
|
description: _td('Searches DuckDuckGo for results'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog');
|
|
|
|
// TODO Don't explain this away, actually show a search UI here.
|
|
|
|
Modal.createTrackedDialog('Slash Commands', '/ddg is not a command', ErrorDialog, {
|
|
|
|
title: _t('/ddg is not a command'),
|
|
|
|
description: _t('To use it, just wait for autocomplete results to load and tab through them.'),
|
|
|
|
});
|
|
|
|
return success();
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2018-07-18 16:38:21 +02:00
|
|
|
hideCompletionAfterSpace: true,
|
2016-09-13 12:11:52 +02:00
|
|
|
}),
|
|
|
|
|
2019-01-17 23:59:05 +01:00
|
|
|
upgraderoom: new Command({
|
|
|
|
name: 'upgraderoom',
|
|
|
|
args: '<new_version>',
|
|
|
|
description: _td('Upgrades a room to a new version'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
2019-08-28 13:00:37 +02:00
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const room = cli.getRoom(roomId);
|
|
|
|
if (!room.currentState.mayClientSendStateEvent("m.room.tombstone", cli)) {
|
|
|
|
return reject(_t("You do not have the required permissions to use this command."));
|
|
|
|
}
|
|
|
|
|
2019-11-28 04:29:11 +01:00
|
|
|
const RoomUpgradeWarningDialog = sdk.getComponent("dialogs.RoomUpgradeWarningDialog");
|
|
|
|
|
2019-08-28 13:00:37 +02:00
|
|
|
const {finished} = Modal.createTrackedDialog('Slash Commands', 'upgrade room confirmation',
|
2019-12-03 01:26:08 +01:00
|
|
|
RoomUpgradeWarningDialog, {roomId: roomId, targetVersion: args}, /*className=*/null,
|
|
|
|
/*isPriority=*/false, /*isStatic=*/true);
|
2019-11-28 04:29:11 +01:00
|
|
|
|
|
|
|
return success(finished.then(async ([resp]) => {
|
|
|
|
if (!resp.continue) return;
|
|
|
|
|
|
|
|
let checkForUpgradeFn;
|
|
|
|
try {
|
|
|
|
const upgradePromise = cli.upgradeRoom(roomId, args);
|
|
|
|
|
|
|
|
// We have to wait for the js-sdk to give us the room back so
|
|
|
|
// we can more effectively abuse the MultiInviter behaviour
|
|
|
|
// which heavily relies on the Room object being available.
|
|
|
|
if (resp.invite) {
|
|
|
|
checkForUpgradeFn = async (newRoom) => {
|
|
|
|
// The upgradePromise should be done by the time we await it here.
|
|
|
|
const {replacement_room: newRoomId} = await upgradePromise;
|
|
|
|
if (newRoom.roomId !== newRoomId) return;
|
|
|
|
|
2019-11-28 17:24:02 +01:00
|
|
|
const toInvite = [
|
|
|
|
...room.getMembersWithMembership("join"),
|
|
|
|
...room.getMembersWithMembership("invite"),
|
|
|
|
].map(m => m.userId).filter(m => m !== cli.getUserId());
|
2019-11-28 04:29:11 +01:00
|
|
|
|
2019-11-28 17:24:02 +01:00
|
|
|
if (toInvite.length > 0) {
|
2019-11-28 04:29:11 +01:00
|
|
|
// Errors are handled internally to this function
|
2019-11-28 17:24:02 +01:00
|
|
|
await inviteUsersToRoom(newRoomId, toInvite);
|
2019-11-28 04:29:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cli.removeListener('Room', checkForUpgradeFn);
|
|
|
|
};
|
|
|
|
cli.on('Room', checkForUpgradeFn);
|
|
|
|
}
|
|
|
|
|
|
|
|
// We have to await after so that the checkForUpgradesFn has a proper reference
|
|
|
|
// to the new room's ID.
|
|
|
|
await upgradePromise;
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
|
|
|
|
if (checkForUpgradeFn) cli.removeListener('Room', checkForUpgradeFn);
|
|
|
|
|
|
|
|
const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog');
|
|
|
|
Modal.createTrackedDialog('Slash Commands', 'room upgrade error', ErrorDialog, {
|
|
|
|
title: _t('Error upgrading room'),
|
2019-11-28 04:34:31 +01:00
|
|
|
description: _t(
|
|
|
|
'Double check that your server supports the room version chosen and try again.'),
|
2019-11-28 04:29:11 +01:00
|
|
|
});
|
|
|
|
}
|
2019-08-28 13:00:37 +02:00
|
|
|
}));
|
2019-01-17 23:59:05 +01:00
|
|
|
}
|
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.admin,
|
2019-01-17 23:59:05 +01:00
|
|
|
}),
|
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
nick: new Command({
|
|
|
|
name: 'nick',
|
|
|
|
args: '<display_name>',
|
|
|
|
description: _td('Changes your display nickname'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
return success(MatrixClientPeg.get().setDisplayName(args));
|
|
|
|
}
|
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2019-05-10 21:28:28 +02:00
|
|
|
myroomnick: new Command({
|
|
|
|
name: 'myroomnick',
|
2019-02-24 02:36:47 +01:00
|
|
|
args: '<display_name>',
|
|
|
|
description: _td('Changes your display nickname in the current room only'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const ev = cli.getRoom(roomId).currentState.getStateEvents('m.room.member', cli.getUserId());
|
|
|
|
const content = {
|
2019-02-25 23:15:50 +01:00
|
|
|
...ev ? ev.getContent() : { membership: 'join' },
|
2019-02-24 02:36:47 +01:00
|
|
|
displayname: args,
|
|
|
|
};
|
|
|
|
return success(cli.sendStateEvent(roomId, 'm.room.member', content, cli.getUserId()));
|
|
|
|
}
|
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2019-02-24 02:36:47 +01:00
|
|
|
}),
|
|
|
|
|
2019-09-18 17:33:56 +02:00
|
|
|
roomavatar: new Command({
|
|
|
|
name: 'roomavatar',
|
|
|
|
args: '[<mxc_url>]',
|
|
|
|
description: _td('Changes the avatar of the current room'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
let promise = Promise.resolve(args);
|
|
|
|
if (!args) {
|
|
|
|
promise = singleMxcUpload();
|
|
|
|
}
|
|
|
|
|
|
|
|
return success(promise.then((url) => {
|
|
|
|
if (!url) return;
|
2019-09-19 10:48:35 +02:00
|
|
|
return MatrixClientPeg.get().sendStateEvent(roomId, 'm.room.avatar', {url}, '');
|
2019-09-18 17:33:56 +02:00
|
|
|
}));
|
|
|
|
},
|
|
|
|
category: CommandCategories.actions,
|
|
|
|
}),
|
|
|
|
|
2019-05-10 21:28:28 +02:00
|
|
|
myroomavatar: new Command({
|
|
|
|
name: 'myroomavatar',
|
|
|
|
args: '[<mxc_url>]',
|
2019-05-09 23:12:21 +02:00
|
|
|
description: _td('Changes your avatar in this current room only'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const room = cli.getRoom(roomId);
|
|
|
|
const userId = cli.getUserId();
|
|
|
|
|
|
|
|
let promise = Promise.resolve(args);
|
|
|
|
if (!args) {
|
2019-06-27 20:41:29 +02:00
|
|
|
promise = singleMxcUpload();
|
2019-05-09 23:12:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return success(promise.then((url) => {
|
2019-06-29 08:05:43 +02:00
|
|
|
if (!url) return;
|
2019-05-09 23:12:21 +02:00
|
|
|
const ev = room.currentState.getStateEvents('m.room.member', userId);
|
|
|
|
const content = {
|
|
|
|
...ev ? ev.getContent() : { membership: 'join' },
|
|
|
|
avatar_url: url,
|
|
|
|
};
|
|
|
|
return cli.sendStateEvent(roomId, 'm.room.member', content, userId);
|
|
|
|
}));
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2019-05-09 23:12:21 +02:00
|
|
|
}),
|
|
|
|
|
2019-06-27 20:38:12 +02:00
|
|
|
myavatar: new Command({
|
|
|
|
name: 'myavatar',
|
|
|
|
args: '[<mxc_url>]',
|
|
|
|
description: _td('Changes your avatar in all rooms'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
let promise = Promise.resolve(args);
|
|
|
|
if (!args) {
|
2019-06-27 20:41:29 +02:00
|
|
|
promise = singleMxcUpload();
|
2019-06-27 20:38:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return success(promise.then((url) => {
|
2019-06-29 08:05:43 +02:00
|
|
|
if (!url) return;
|
2019-06-27 20:38:12 +02:00
|
|
|
return MatrixClientPeg.get().setAvatarUrl(url);
|
|
|
|
}));
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2019-06-27 20:38:12 +02:00
|
|
|
}),
|
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
topic: new Command({
|
|
|
|
name: 'topic',
|
2019-01-30 11:22:05 +01:00
|
|
|
args: '[<topic>]',
|
|
|
|
description: _td('Gets or sets the room topic'),
|
2018-06-18 20:31:40 +02:00
|
|
|
runFn: function(roomId, args) {
|
2019-01-30 11:22:05 +01:00
|
|
|
const cli = MatrixClientPeg.get();
|
2018-06-18 20:31:40 +02:00
|
|
|
if (args) {
|
2019-01-30 11:22:05 +01:00
|
|
|
return success(cli.setRoomTopic(roomId, args));
|
2018-06-18 20:31:40 +02:00
|
|
|
}
|
2019-01-30 11:22:05 +01:00
|
|
|
const room = cli.getRoom(roomId);
|
|
|
|
if (!room) return reject('Bad room ID: ' + roomId);
|
|
|
|
|
|
|
|
const topicEvents = room.currentState.getStateEvents('m.room.topic', '');
|
2019-02-06 20:10:44 +01:00
|
|
|
const topic = topicEvents && topicEvents.getContent().topic;
|
2019-01-31 22:35:58 +01:00
|
|
|
const topicHtml = topic ? linkifyAndSanitizeHtml(topic) : _t('This room has no topic.');
|
2019-01-30 11:22:05 +01:00
|
|
|
|
2019-01-31 18:00:37 +01:00
|
|
|
const InfoDialog = sdk.getComponent('dialogs.InfoDialog');
|
|
|
|
Modal.createTrackedDialog('Slash Commands', 'Topic', InfoDialog, {
|
2019-01-30 11:22:05 +01:00
|
|
|
title: room.name,
|
|
|
|
description: <div dangerouslySetInnerHTML={{ __html: topicHtml }} />,
|
|
|
|
});
|
|
|
|
return success();
|
2018-06-18 20:31:40 +02:00
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.admin,
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2019-01-04 20:29:51 +01:00
|
|
|
roomname: new Command({
|
|
|
|
name: 'roomname',
|
2019-01-04 00:42:17 +01:00
|
|
|
args: '<name>',
|
|
|
|
description: _td('Sets the room name'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
return success(MatrixClientPeg.get().setRoomName(roomId, args));
|
|
|
|
}
|
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.admin,
|
2019-01-04 00:42:17 +01:00
|
|
|
}),
|
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
invite: new Command({
|
|
|
|
name: 'invite',
|
|
|
|
args: '<user-id>',
|
|
|
|
description: _td('Invites user with given id to current room'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
2018-11-29 23:05:53 +01:00
|
|
|
// We use a MultiInviter to re-use the invite logic, even though
|
|
|
|
// we're only inviting one user.
|
2019-08-30 19:29:07 +02:00
|
|
|
const address = matches[1];
|
|
|
|
// If we need an identity server but don't have one, things
|
|
|
|
// get a bit more complex here, but we try to show something
|
|
|
|
// meaningful.
|
|
|
|
let finished = Promise.resolve();
|
|
|
|
if (
|
|
|
|
getAddressType(address) === 'email' &&
|
|
|
|
!MatrixClientPeg.get().getIdentityServerUrl()
|
|
|
|
) {
|
|
|
|
const defaultIdentityServerUrl = getDefaultIdentityServerUrl();
|
|
|
|
if (defaultIdentityServerUrl) {
|
|
|
|
({ finished } = Modal.createTrackedDialog('Slash Commands', 'Identity server',
|
|
|
|
QuestionDialog, {
|
|
|
|
title: _t("Use an identity server"),
|
|
|
|
description: <p>{_t(
|
|
|
|
"Use an identity server to invite by email. " +
|
|
|
|
"Click continue to use the default identity server " +
|
|
|
|
"(%(defaultIdentityServerName)s) or manage in Settings.",
|
|
|
|
{
|
|
|
|
defaultIdentityServerName: abbreviateUrl(defaultIdentityServerUrl),
|
|
|
|
},
|
|
|
|
)}</p>,
|
|
|
|
button: _t("Continue"),
|
|
|
|
},
|
|
|
|
));
|
|
|
|
} else {
|
|
|
|
return reject(_t("Use an identity server to invite by email. Manage in Settings."));
|
|
|
|
}
|
|
|
|
}
|
2018-11-29 23:05:53 +01:00
|
|
|
const inviter = new MultiInviter(roomId);
|
2019-08-30 19:29:07 +02:00
|
|
|
return success(finished.then(([useDefault] = []) => {
|
|
|
|
if (useDefault) {
|
|
|
|
useDefaultIdentityServer();
|
|
|
|
} else if (useDefault === false) {
|
|
|
|
throw new Error(_t("Use an identity server to invite by email. Manage in Settings."));
|
|
|
|
}
|
|
|
|
return inviter.invite([address]);
|
|
|
|
}).then(() => {
|
|
|
|
if (inviter.getCompletionState(address) !== "invited") {
|
|
|
|
throw new Error(inviter.getErrorText(address));
|
2018-11-29 23:16:45 +01:00
|
|
|
}
|
2018-11-29 23:05:53 +01:00
|
|
|
}));
|
2018-06-18 20:31:40 +02:00
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
join: new Command({
|
|
|
|
name: 'join',
|
|
|
|
args: '<room-alias>',
|
|
|
|
description: _td('Joins room with given alias'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
2018-11-08 00:53:29 +01:00
|
|
|
// Note: we support 2 versions of this command. The first is
|
|
|
|
// the public-facing one for most users and the other is a
|
|
|
|
// power-user edition where someone may join via permalink or
|
|
|
|
// room ID with optional servers. Practically, this results
|
|
|
|
// in the following variations:
|
|
|
|
// /join #example:example.org
|
|
|
|
// /join !example:example.org
|
|
|
|
// /join !example:example.org altserver.com elsewhere.ca
|
|
|
|
// /join https://matrix.to/#/!example:example.org?via=altserver.com
|
|
|
|
// The command also supports event permalinks transparently:
|
|
|
|
// /join https://matrix.to/#/!example:example.org/$something:example.org
|
|
|
|
// /join https://matrix.to/#/!example:example.org/$something:example.org?via=altserver.com
|
|
|
|
const params = args.split(' ');
|
|
|
|
if (params.length < 1) return reject(this.getUsage());
|
|
|
|
|
2019-10-01 00:06:00 +02:00
|
|
|
let isPermalink = false;
|
|
|
|
if (params[0].startsWith("http:") || params[0].startsWith("https:")) {
|
|
|
|
// It's at least a URL - try and pull out a hostname to check against the
|
|
|
|
// permalink handler
|
|
|
|
const parsedUrl = new URL(params[0]);
|
|
|
|
const hostname = parsedUrl.host || parsedUrl.hostname; // takes first non-falsey value
|
|
|
|
|
|
|
|
// if we're using a Riot permalink handler, this will catch it before we get much further.
|
|
|
|
// see below where we make assumptions about parsing the URL.
|
|
|
|
if (isPermalinkHost(hostname)) {
|
|
|
|
isPermalink = true;
|
|
|
|
}
|
|
|
|
}
|
2018-11-08 00:53:29 +01:00
|
|
|
if (params[0][0] === '#') {
|
|
|
|
let roomAlias = params[0];
|
2018-06-18 20:31:40 +02:00
|
|
|
if (!roomAlias.includes(':')) {
|
|
|
|
roomAlias += ':' + MatrixClientPeg.get().getDomain();
|
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_room',
|
|
|
|
room_alias: roomAlias,
|
|
|
|
auto_join: true,
|
|
|
|
});
|
2018-11-08 00:53:29 +01:00
|
|
|
return success();
|
2018-11-08 01:01:47 +01:00
|
|
|
} else if (params[0][0] === '!') {
|
|
|
|
const roomId = params[0];
|
|
|
|
const viaServers = params.splice(0);
|
2018-11-08 00:53:29 +01:00
|
|
|
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_room',
|
|
|
|
room_id: roomId,
|
|
|
|
opts: {
|
|
|
|
// These are passed down to the js-sdk's /join call
|
2019-06-29 00:26:28 +02:00
|
|
|
viaServers: viaServers,
|
2018-11-08 00:53:29 +01:00
|
|
|
},
|
2019-06-29 00:26:28 +02:00
|
|
|
via_servers: viaServers, // for the rejoin button
|
2018-11-08 00:53:29 +01:00
|
|
|
auto_join: true,
|
|
|
|
});
|
|
|
|
return success();
|
2019-10-01 00:06:00 +02:00
|
|
|
} else if (isPermalink) {
|
|
|
|
const permalinkParts = parsePermalink(params[0]);
|
2018-11-08 00:53:29 +01:00
|
|
|
|
2019-10-01 00:06:00 +02:00
|
|
|
// This check technically isn't needed because we already did our
|
|
|
|
// safety checks up above. However, for good measure, let's be sure.
|
|
|
|
if (!permalinkParts) {
|
|
|
|
return reject(this.getUsage());
|
2018-11-08 00:53:29 +01:00
|
|
|
}
|
|
|
|
|
2019-10-01 00:06:00 +02:00
|
|
|
// If for some reason someone wanted to join a group or user, we should
|
|
|
|
// stop them now.
|
|
|
|
if (!permalinkParts.roomIdOrAlias) {
|
|
|
|
return reject(this.getUsage());
|
2018-11-08 00:53:29 +01:00
|
|
|
}
|
|
|
|
|
2019-10-01 00:06:00 +02:00
|
|
|
const entity = permalinkParts.roomIdOrAlias;
|
|
|
|
const viaServers = permalinkParts.viaServers;
|
|
|
|
const eventId = permalinkParts.eventId;
|
|
|
|
|
2018-11-08 00:53:29 +01:00
|
|
|
const dispatch = {
|
|
|
|
action: 'view_room',
|
|
|
|
auto_join: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (entity[0] === '!') dispatch["room_id"] = entity;
|
|
|
|
else dispatch["room_alias"] = entity;
|
|
|
|
|
|
|
|
if (eventId) {
|
|
|
|
dispatch["event_id"] = eventId;
|
|
|
|
dispatch["highlighted"] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (viaServers) {
|
2019-06-29 00:26:28 +02:00
|
|
|
// For the join
|
2018-11-08 00:53:29 +01:00
|
|
|
dispatch["opts"] = {
|
|
|
|
// These are passed down to the js-sdk's /join call
|
2019-06-29 00:26:28 +02:00
|
|
|
viaServers: viaServers,
|
2018-11-08 01:01:47 +01:00
|
|
|
};
|
2019-06-29 00:26:28 +02:00
|
|
|
|
|
|
|
// For if the join fails (rejoin button)
|
|
|
|
dispatch['via_servers'] = viaServers;
|
2018-11-08 00:53:29 +01:00
|
|
|
}
|
2015-12-28 03:58:40 +01:00
|
|
|
|
2018-11-08 00:53:29 +01:00
|
|
|
dis.dispatch(dispatch);
|
2018-06-18 20:31:40 +02:00
|
|
|
return success();
|
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
part: new Command({
|
|
|
|
name: 'part',
|
|
|
|
args: '[<room-alias>]',
|
|
|
|
description: _td('Leave room'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
|
|
|
let targetRoomId;
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
|
|
|
let roomAlias = matches[1];
|
|
|
|
if (roomAlias[0] !== '#') return reject(this.getUsage());
|
|
|
|
|
|
|
|
if (!roomAlias.includes(':')) {
|
|
|
|
roomAlias += ':' + cli.getDomain();
|
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
// Try to find a room with this alias
|
|
|
|
const rooms = cli.getRooms();
|
|
|
|
for (let i = 0; i < rooms.length; i++) {
|
|
|
|
const aliasEvents = rooms[i].currentState.getStateEvents('m.room.aliases');
|
|
|
|
for (let j = 0; j < aliasEvents.length; j++) {
|
|
|
|
const aliases = aliasEvents[j].getContent().aliases || [];
|
|
|
|
for (let k = 0; k < aliases.length; k++) {
|
|
|
|
if (aliases[k] === roomAlias) {
|
|
|
|
targetRoomId = rooms[i].roomId;
|
|
|
|
break;
|
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
if (targetRoomId) break;
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
if (targetRoomId) break;
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
if (!targetRoomId) return reject(_t('Unrecognised room alias:') + ' ' + roomAlias);
|
2017-05-23 10:44:11 +02:00
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
|
|
|
|
if (!targetRoomId) targetRoomId = roomId;
|
|
|
|
return success(
|
2019-03-23 00:36:54 +01:00
|
|
|
cli.leaveRoomChain(targetRoomId).then(function() {
|
2017-05-23 10:44:11 +02:00
|
|
|
dis.dispatch({action: 'view_next_room'});
|
2018-06-18 20:31:40 +02:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
kick: new Command({
|
|
|
|
name: 'kick',
|
|
|
|
args: '<user-id> [reason]',
|
|
|
|
description: _td('Kicks user with given id'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+?)( +(.*))?$/);
|
|
|
|
if (matches) {
|
|
|
|
return success(MatrixClientPeg.get().kick(roomId, matches[1], matches[3]));
|
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.admin,
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
// Ban a user from the room with an optional reason
|
2018-06-18 20:31:40 +02:00
|
|
|
ban: new Command({
|
|
|
|
name: 'ban',
|
|
|
|
args: '<user-id> [reason]',
|
|
|
|
description: _td('Bans user with given id'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+?)( +(.*))?$/);
|
|
|
|
if (matches) {
|
|
|
|
return success(MatrixClientPeg.get().ban(roomId, matches[1], matches[3]));
|
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.admin,
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
// Unban a user from ythe room
|
|
|
|
unban: new Command({
|
|
|
|
name: 'unban',
|
|
|
|
args: '<user-id>',
|
2019-05-16 22:35:43 +02:00
|
|
|
description: _td('Unbans user with given ID'),
|
2018-06-18 20:31:40 +02:00
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
|
|
|
// Reset the user membership to "leave" to unban him
|
|
|
|
return success(MatrixClientPeg.get().unban(roomId, matches[1]));
|
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.admin,
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
ignore: new Command({
|
|
|
|
name: 'ignore',
|
|
|
|
args: '<user-id>',
|
|
|
|
description: _td('Ignores a user, hiding their messages from you'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
|
|
|
const matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
|
|
|
const userId = matches[1];
|
|
|
|
const ignoredUsers = cli.getIgnoredUsers();
|
|
|
|
ignoredUsers.push(userId); // de-duped internally in the js-sdk
|
|
|
|
return success(
|
|
|
|
cli.setIgnoredUsers(ignoredUsers).then(() => {
|
2019-02-06 19:43:55 +01:00
|
|
|
const InfoDialog = sdk.getComponent('dialogs.InfoDialog');
|
|
|
|
Modal.createTrackedDialog('Slash Commands', 'User ignored', InfoDialog, {
|
2018-06-18 20:31:40 +02:00
|
|
|
title: _t('Ignored user'),
|
|
|
|
description: <div>
|
|
|
|
<p>{ _t('You are now ignoring %(userId)s', {userId}) }</p>
|
|
|
|
</div>,
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
2017-09-15 00:08:51 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2017-09-15 00:08:51 +02:00
|
|
|
}),
|
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
unignore: new Command({
|
|
|
|
name: 'unignore',
|
|
|
|
args: '<user-id>',
|
|
|
|
description: _td('Stops ignoring a user, showing their messages going forward'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
|
|
|
const matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
|
|
|
const userId = matches[1];
|
|
|
|
const ignoredUsers = cli.getIgnoredUsers();
|
|
|
|
const index = ignoredUsers.indexOf(userId);
|
|
|
|
if (index !== -1) ignoredUsers.splice(index, 1);
|
|
|
|
return success(
|
|
|
|
cli.setIgnoredUsers(ignoredUsers).then(() => {
|
2019-02-06 19:43:55 +01:00
|
|
|
const InfoDialog = sdk.getComponent('dialogs.InfoDialog');
|
|
|
|
Modal.createTrackedDialog('Slash Commands', 'User unignored', InfoDialog, {
|
2018-06-18 20:31:40 +02:00
|
|
|
title: _t('Unignored user'),
|
|
|
|
description: <div>
|
|
|
|
<p>{ _t('You are no longer ignoring %(userId)s', {userId}) }</p>
|
|
|
|
</div>,
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|
2017-09-15 00:08:51 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.actions,
|
2017-09-15 00:08:51 +02:00
|
|
|
}),
|
|
|
|
|
2015-09-18 14:54:20 +02:00
|
|
|
// Define the power level of a user
|
2018-06-18 20:31:40 +02:00
|
|
|
op: new Command({
|
|
|
|
name: 'op',
|
|
|
|
args: '<user-id> [<power-level>]',
|
|
|
|
description: _td('Define the power level of a user'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+?)( +(-?\d+))?$/);
|
|
|
|
let powerLevel = 50; // default power level for op
|
|
|
|
if (matches) {
|
|
|
|
const userId = matches[1];
|
|
|
|
if (matches.length === 4 && undefined !== matches[3]) {
|
|
|
|
powerLevel = parseInt(matches[3]);
|
|
|
|
}
|
|
|
|
if (!isNaN(powerLevel)) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const room = cli.getRoom(roomId);
|
|
|
|
if (!room) return reject('Bad room ID: ' + roomId);
|
|
|
|
|
|
|
|
const powerLevelEvent = room.currentState.getStateEvents('m.room.power_levels', '');
|
|
|
|
return success(cli.setPowerLevel(roomId, userId, powerLevel, powerLevelEvent));
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.admin,
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
// Reset the power level of a user
|
2018-06-18 20:31:40 +02:00
|
|
|
deop: new Command({
|
|
|
|
name: 'deop',
|
|
|
|
args: '<user-id>',
|
|
|
|
description: _td('Deops user with given id'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
const room = cli.getRoom(roomId);
|
|
|
|
if (!room) return reject('Bad room ID: ' + roomId);
|
|
|
|
|
|
|
|
const powerLevelEvent = room.currentState.getStateEvents('m.room.power_levels', '');
|
|
|
|
return success(cli.setPowerLevel(roomId, args, undefined, powerLevelEvent));
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.admin,
|
2017-05-23 10:24:18 +02:00
|
|
|
}),
|
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
devtools: new Command({
|
|
|
|
name: 'devtools',
|
|
|
|
description: _td('Opens the Developer Tools dialog'),
|
|
|
|
runFn: function(roomId) {
|
|
|
|
const DevtoolsDialog = sdk.getComponent('dialogs.DevtoolsDialog');
|
|
|
|
Modal.createDialog(DevtoolsDialog, {roomId});
|
|
|
|
return success();
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.advanced,
|
2017-07-31 13:08:28 +02:00
|
|
|
}),
|
|
|
|
|
2019-03-24 07:07:00 +01:00
|
|
|
addwidget: new Command({
|
|
|
|
name: 'addwidget',
|
|
|
|
args: '<url>',
|
|
|
|
description: _td('Adds a custom widget by URL to the room'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (!args || (!args.startsWith("https://") && !args.startsWith("http://"))) {
|
|
|
|
return reject(_t("Please supply a https:// or http:// widget URL"));
|
|
|
|
}
|
|
|
|
if (WidgetUtils.canUserModifyWidgets(roomId)) {
|
|
|
|
const userId = MatrixClientPeg.get().getUserId();
|
|
|
|
const nowMs = (new Date()).getTime();
|
|
|
|
const widgetId = encodeURIComponent(`${roomId}_${userId}_${nowMs}`);
|
|
|
|
return success(WidgetUtils.setRoomWidget(
|
2019-03-26 16:23:17 +01:00
|
|
|
roomId, widgetId, "m.custom", args, "Custom Widget", {}));
|
2019-03-24 07:07:00 +01:00
|
|
|
} else {
|
|
|
|
return reject(_t("You cannot modify widgets in this room."));
|
|
|
|
}
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.admin,
|
2019-03-24 07:07:00 +01:00
|
|
|
}),
|
|
|
|
|
2017-05-23 10:24:18 +02:00
|
|
|
// Verify a user, device, and pubkey tuple
|
2018-06-18 20:31:40 +02:00
|
|
|
verify: new Command({
|
|
|
|
name: 'verify',
|
|
|
|
args: '<user-id> <device-id> <device-signing-key>',
|
|
|
|
description: _td('Verifies a user, device, and pubkey tuple'),
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+) +(\S+) +(\S+)$/);
|
|
|
|
if (matches) {
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
|
|
|
const userId = matches[1];
|
|
|
|
const deviceId = matches[2];
|
|
|
|
const fingerprint = matches[3];
|
2017-05-23 10:24:18 +02:00
|
|
|
|
2020-01-03 13:08:35 +01:00
|
|
|
return success((async () => {
|
|
|
|
const device = await cli.getStoredDevice(userId, deviceId);
|
|
|
|
if (!device) {
|
|
|
|
throw new Error(_t('Unknown (user, device) pair:') + ` (${userId}, ${deviceId})`);
|
|
|
|
}
|
|
|
|
const deviceTrust = await cli.checkDeviceTrust(userId, deviceId);
|
2017-05-23 10:24:18 +02:00
|
|
|
|
2020-01-03 13:08:35 +01:00
|
|
|
if (deviceTrust.isVerified()) {
|
|
|
|
if (device.getFingerprint() === fingerprint) {
|
|
|
|
throw new Error(_t('Device already verified!'));
|
|
|
|
} else {
|
|
|
|
throw new Error(_t('WARNING: Device already verified, but keys do NOT MATCH!'));
|
2018-06-18 20:31:40 +02:00
|
|
|
}
|
2020-01-03 13:08:35 +01:00
|
|
|
}
|
2017-05-23 10:24:18 +02:00
|
|
|
|
2020-01-03 13:08:35 +01:00
|
|
|
if (device.getFingerprint() !== fingerprint) {
|
|
|
|
const fprint = device.getFingerprint();
|
|
|
|
throw new Error(
|
|
|
|
_t('WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and device' +
|
|
|
|
' %(deviceId)s is "%(fprint)s" which does not match the provided key ' +
|
|
|
|
'"%(fingerprint)s". This could mean your communications are being intercepted!',
|
|
|
|
{
|
|
|
|
fprint,
|
|
|
|
userId,
|
|
|
|
deviceId,
|
|
|
|
fingerprint,
|
|
|
|
}));
|
|
|
|
}
|
2017-05-23 10:24:18 +02:00
|
|
|
|
2020-01-03 13:08:35 +01:00
|
|
|
await cli.setDeviceVerified(userId, deviceId, true);
|
|
|
|
|
|
|
|
// Tell the user we verified everything
|
|
|
|
const InfoDialog = sdk.getComponent('dialogs.InfoDialog');
|
|
|
|
Modal.createTrackedDialog('Slash Commands', 'Verified key', InfoDialog, {
|
|
|
|
title: _t('Verified key'),
|
|
|
|
description: <div>
|
|
|
|
<p>
|
|
|
|
{
|
|
|
|
_t('The signing key you provided matches the signing key you received ' +
|
|
|
|
'from %(userId)s\'s device %(deviceId)s. Device marked as verified.',
|
|
|
|
{userId, deviceId})
|
|
|
|
}
|
|
|
|
</p>
|
|
|
|
</div>,
|
|
|
|
});
|
|
|
|
})());
|
2018-06-18 20:31:40 +02:00
|
|
|
}
|
2017-05-23 10:24:18 +02:00
|
|
|
}
|
2018-06-18 20:31:40 +02:00
|
|
|
return reject(this.getUsage());
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.advanced,
|
2018-06-18 20:31:40 +02:00
|
|
|
}),
|
|
|
|
|
|
|
|
// Command definitions for autocompletion ONLY:
|
|
|
|
|
|
|
|
// /me is special because its not handled by SlashCommands.js and is instead done inside the Composer classes
|
|
|
|
me: new Command({
|
|
|
|
name: 'me',
|
|
|
|
args: '<message>',
|
|
|
|
description: _td('Displays action'),
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.messages,
|
2018-07-18 16:38:21 +02:00
|
|
|
hideCompletionAfterSpace: true,
|
2017-05-23 10:24:18 +02:00
|
|
|
}),
|
2018-08-29 19:09:37 +02:00
|
|
|
|
|
|
|
discardsession: new Command({
|
|
|
|
name: 'discardsession',
|
|
|
|
description: _td('Forces the current outbound group session in an encrypted room to be discarded'),
|
|
|
|
runFn: function(roomId) {
|
|
|
|
try {
|
|
|
|
MatrixClientPeg.get().forceDiscardSession(roomId);
|
|
|
|
} catch (e) {
|
|
|
|
return reject(e.message);
|
|
|
|
}
|
|
|
|
return success();
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.advanced,
|
2018-08-29 19:09:37 +02:00
|
|
|
}),
|
2019-05-12 17:36:43 +02:00
|
|
|
|
|
|
|
rainbow: new Command({
|
|
|
|
name: "rainbow",
|
2019-05-12 17:40:27 +02:00
|
|
|
description: _td("Sends the given message coloured as a rainbow"),
|
2019-05-12 17:36:43 +02:00
|
|
|
args: '<message>',
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (!args) return reject(this.getUserId());
|
|
|
|
return success(MatrixClientPeg.get().sendHtmlMessage(roomId, args, textToHtmlRainbow(args)));
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.messages,
|
2019-05-12 17:36:43 +02:00
|
|
|
}),
|
|
|
|
|
|
|
|
rainbowme: new Command({
|
|
|
|
name: "rainbowme",
|
2019-05-12 17:40:27 +02:00
|
|
|
description: _td("Sends the given emote coloured as a rainbow"),
|
2019-05-12 17:36:43 +02:00
|
|
|
args: '<message>',
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
if (!args) return reject(this.getUserId());
|
|
|
|
return success(MatrixClientPeg.get().sendHtmlEmote(roomId, args, textToHtmlRainbow(args)));
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.messages,
|
2019-05-12 18:14:30 +02:00
|
|
|
}),
|
2019-07-29 18:58:34 +02:00
|
|
|
|
|
|
|
help: new Command({
|
|
|
|
name: "help",
|
|
|
|
description: _td("Displays list of commands with usages and descriptions"),
|
|
|
|
runFn: function() {
|
2019-08-06 19:03:38 +02:00
|
|
|
const SlashCommandHelpDialog = sdk.getComponent('dialogs.SlashCommandHelpDialog');
|
|
|
|
|
|
|
|
Modal.createTrackedDialog('Slash Commands', 'Help', SlashCommandHelpDialog);
|
2019-07-29 18:58:34 +02:00
|
|
|
return success();
|
|
|
|
},
|
2019-08-06 19:03:38 +02:00
|
|
|
category: CommandCategories.advanced,
|
2019-07-29 18:58:34 +02:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
};
|
2017-05-23 10:44:11 +02:00
|
|
|
/* eslint-enable babel/no-invalid-this */
|
|
|
|
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
// helpful aliases
|
2017-05-23 10:44:11 +02:00
|
|
|
const aliases = {
|
|
|
|
j: "join",
|
2018-08-29 19:09:37 +02:00
|
|
|
newballsplease: "discardsession",
|
2018-11-08 00:53:29 +01:00
|
|
|
goto: "join", // because it handles event permalinks magically
|
2019-05-10 21:28:28 +02:00
|
|
|
roomnick: "myroomnick",
|
2017-01-20 15:22:27 +01:00
|
|
|
};
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2018-07-09 18:50:07 +02:00
|
|
|
|
2018-06-18 20:31:40 +02:00
|
|
|
/**
|
|
|
|
* Process the given text for /commands and perform them.
|
|
|
|
* @param {string} roomId The room in which the command was performed.
|
|
|
|
* @param {string} input The raw text input by the user.
|
|
|
|
* @return {Object|null} An object with the property 'error' if there was an error
|
|
|
|
* processing the command, or 'promise' if a request was sent out.
|
|
|
|
* Returns null if the input didn't match a command.
|
|
|
|
*/
|
|
|
|
export function processCommandInput(roomId, input) {
|
|
|
|
// trim any trailing whitespace, as it can confuse the parser for
|
|
|
|
// IRC-style commands
|
|
|
|
input = input.replace(/\s+$/, '');
|
2018-07-09 18:50:07 +02:00
|
|
|
if (input[0] !== '/') return null; // not a command
|
2018-06-18 20:31:40 +02:00
|
|
|
|
|
|
|
const bits = input.match(/^(\S+?)( +((.|\n)*))?$/);
|
|
|
|
let cmd;
|
|
|
|
let args;
|
|
|
|
if (bits) {
|
|
|
|
cmd = bits[1].substring(1).toLowerCase();
|
|
|
|
args = bits[3];
|
|
|
|
} else {
|
|
|
|
cmd = input;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aliases[cmd]) {
|
|
|
|
cmd = aliases[cmd];
|
|
|
|
}
|
|
|
|
if (CommandMap[cmd]) {
|
|
|
|
// if it has no runFn then its an ignored/nop command (autocomplete only) e.g `/me`
|
|
|
|
if (!CommandMap[cmd].runFn) return null;
|
|
|
|
|
|
|
|
return CommandMap[cmd].run(roomId, args);
|
|
|
|
} else {
|
|
|
|
return reject(_t('Unrecognised command:') + ' ' + input);
|
|
|
|
}
|
|
|
|
}
|