2015-09-18 14:54:20 +02:00
|
|
|
/*
|
2016-01-07 05:06:39 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
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.
|
|
|
|
*/
|
|
|
|
|
2017-05-23 10:44:11 +02:00
|
|
|
import MatrixClientPeg from "./MatrixClientPeg";
|
|
|
|
import dis from "./dispatcher";
|
|
|
|
import Tinter from "./Tinter";
|
2016-09-13 12:11:52 +02:00
|
|
|
import sdk from './index';
|
2017-05-25 12:39:08 +02:00
|
|
|
import { _t } from './languageHandler';
|
2016-09-13 12:11:52 +02:00
|
|
|
import Modal from './Modal';
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2016-01-14 15:39:58 +01:00
|
|
|
|
|
|
|
class Command {
|
|
|
|
constructor(name, paramArgs, runFn) {
|
|
|
|
this.name = name;
|
|
|
|
this.paramArgs = paramArgs;
|
|
|
|
this.runFn = runFn;
|
|
|
|
}
|
|
|
|
|
|
|
|
getCommand() {
|
|
|
|
return "/" + this.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
getCommandWithArgs() {
|
|
|
|
return this.getCommand() + " " + this.paramArgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-23 10:44:11 +02:00
|
|
|
function reject(msg) {
|
2015-09-18 14:54:20 +02:00
|
|
|
return {
|
2017-05-23 10:44:11 +02:00
|
|
|
error: msg,
|
2015-09-18 14:54:20 +02:00
|
|
|
};
|
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) {
|
2015-09-18 14:54:20 +02:00
|
|
|
return {
|
2017-05-23 10:44:11 +02:00
|
|
|
promise: promise,
|
2015-09-18 14:54:20 +02:00
|
|
|
};
|
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 */
|
|
|
|
|
|
|
|
const commands = {
|
2016-09-13 12:11:52 +02:00
|
|
|
ddg: new Command("ddg", "<query>", function(roomId, args) {
|
|
|
|
const ErrorDialog = sdk.getComponent('dialogs.ErrorDialog');
|
|
|
|
// TODO Don't explain this away, actually show a search UI here.
|
2017-07-27 18:19:18 +02:00
|
|
|
Modal.createTrackedDialog('Slash Commands', '/ddg is not a command', ErrorDialog, {
|
2017-05-23 16:16:31 +02:00
|
|
|
title: _t('/ddg is not a command'),
|
2017-05-25 20:21:18 +02:00
|
|
|
description: _t('To use it, just wait for autocomplete results to load and tab through them.'),
|
2016-09-13 12:11:52 +02:00
|
|
|
});
|
|
|
|
return success();
|
|
|
|
}),
|
|
|
|
|
2015-09-18 14:54:20 +02:00
|
|
|
// Change your nickname
|
2017-05-23 10:44:11 +02:00
|
|
|
nick: new Command("nick", "<display_name>", function(roomId, args) {
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
|
|
|
return success(
|
2017-05-23 10:44:11 +02:00
|
|
|
MatrixClientPeg.get().setDisplayName(args),
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2016-01-08 04:22:38 +01:00
|
|
|
// Changes the colorscheme of your current room
|
2017-05-23 10:44:11 +02:00
|
|
|
tint: new Command("tint", "<color1> [<color2>]", function(roomId, args) {
|
2016-01-08 04:22:38 +01:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(#([0-9a-fA-F]{3}|[0-9a-fA-F]{6}))( +(#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})))?$/);
|
2016-01-08 04:22:38 +01:00
|
|
|
if (matches) {
|
|
|
|
Tinter.tint(matches[1], matches[4]);
|
2017-05-23 10:44:11 +02:00
|
|
|
const colorScheme = {};
|
2016-01-08 04:22:38 +01:00
|
|
|
colorScheme.primary_color = matches[1];
|
|
|
|
if (matches[4]) {
|
|
|
|
colorScheme.secondary_color = matches[4];
|
|
|
|
}
|
|
|
|
return success(
|
|
|
|
MatrixClientPeg.get().setRoomAccountData(
|
2017-05-23 10:44:11 +02:00
|
|
|
roomId, "org.matrix.room.color_scheme", colorScheme,
|
|
|
|
),
|
2016-01-08 04:22:38 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
2016-01-05 01:46:52 +01:00
|
|
|
|
2015-09-18 14:54:20 +02:00
|
|
|
// Change the room topic
|
2017-05-23 10:44:11 +02:00
|
|
|
topic: new Command("topic", "<topic>", function(roomId, args) {
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
|
|
|
return success(
|
2017-05-23 10:44:11 +02:00
|
|
|
MatrixClientPeg.get().setRoomTopic(roomId, args),
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
// Invite a user
|
2017-05-23 10:44:11 +02:00
|
|
|
invite: new Command("invite", "<userId>", function(roomId, args) {
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(\S+)$/);
|
2015-09-18 14:54:20 +02:00
|
|
|
if (matches) {
|
|
|
|
return success(
|
2017-05-23 10:44:11 +02:00
|
|
|
MatrixClientPeg.get().invite(roomId, matches[1]),
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
// Join a room
|
2017-05-23 10:44:11 +02:00
|
|
|
join: new Command("join", "#alias:domain", function(roomId, args) {
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(\S+)$/);
|
2015-09-18 14:54:20 +02:00
|
|
|
if (matches) {
|
2017-05-23 10:44:11 +02:00
|
|
|
let roomAlias = matches[1];
|
|
|
|
if (roomAlias[0] !== '#') {
|
2016-06-20 17:30:51 +02:00
|
|
|
return reject(this.getUsage());
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2017-05-23 10:44:11 +02:00
|
|
|
if (!roomAlias.match(/:/)) {
|
|
|
|
roomAlias += ':' + MatrixClientPeg.get().getDomain();
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
|
|
|
|
2016-06-20 17:30:51 +02:00
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_room',
|
2017-05-28 21:24:33 +02:00
|
|
|
room_alias: roomAlias,
|
2016-06-20 17:30:51 +02:00
|
|
|
auto_join: true,
|
|
|
|
});
|
2015-12-28 03:58:40 +01:00
|
|
|
|
2016-06-20 17:30:51 +02:00
|
|
|
return success();
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2017-05-23 10:44:11 +02:00
|
|
|
part: new Command("part", "[#alias:domain]", function(roomId, args) {
|
|
|
|
let targetRoomId;
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(\S+)$/);
|
2015-09-18 14:54:20 +02:00
|
|
|
if (matches) {
|
2017-05-23 10:44:11 +02:00
|
|
|
let roomAlias = matches[1];
|
|
|
|
if (roomAlias[0] !== '#') {
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2017-05-23 10:44:11 +02:00
|
|
|
if (!roomAlias.match(/:/)) {
|
|
|
|
roomAlias += ':' + MatrixClientPeg.get().getDomain();
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Try to find a room with this alias
|
2017-05-23 10:44:11 +02:00
|
|
|
const rooms = MatrixClientPeg.get().getRooms();
|
|
|
|
for (let i = 0; i < rooms.length; i++) {
|
|
|
|
const aliasEvents = rooms[i].currentState.getStateEvents(
|
|
|
|
"m.room.aliases",
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
2017-05-23 10:44:11 +02:00
|
|
|
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) {
|
2015-09-18 14:54:20 +02:00
|
|
|
targetRoomId = rooms[i].roomId;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (targetRoomId) { break; }
|
|
|
|
}
|
|
|
|
if (targetRoomId) { break; }
|
|
|
|
}
|
2017-05-23 10:44:11 +02:00
|
|
|
if (!targetRoomId) {
|
2017-07-01 15:13:32 +02:00
|
|
|
return reject(_t("Unrecognised room alias:") + ' ' + roomAlias);
|
2017-05-23 10:44:11 +02:00
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
|
|
|
}
|
2017-05-23 10:44:11 +02:00
|
|
|
if (!targetRoomId) targetRoomId = roomId;
|
2015-09-18 14:54:20 +02:00
|
|
|
return success(
|
|
|
|
MatrixClientPeg.get().leave(targetRoomId).then(
|
2017-05-23 10:44:11 +02:00
|
|
|
function() {
|
|
|
|
dis.dispatch({action: 'view_next_room'});
|
|
|
|
},
|
|
|
|
),
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
2016-01-14 15:39:58 +01:00
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
// Kick a user from the room with an optional reason
|
2017-05-23 10:44:11 +02:00
|
|
|
kick: new Command("kick", "<userId> [<reason>]", function(roomId, args) {
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(\S+?)( +(.*))?$/);
|
2015-09-18 14:54:20 +02:00
|
|
|
if (matches) {
|
|
|
|
return success(
|
2017-05-23 10:44:11 +02:00
|
|
|
MatrixClientPeg.get().kick(roomId, matches[1], matches[3]),
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
// Ban a user from the room with an optional reason
|
2017-05-23 10:44:11 +02:00
|
|
|
ban: new Command("ban", "<userId> [<reason>]", function(roomId, args) {
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(\S+?)( +(.*))?$/);
|
2015-09-18 14:54:20 +02:00
|
|
|
if (matches) {
|
|
|
|
return success(
|
2017-05-23 10:44:11 +02:00
|
|
|
MatrixClientPeg.get().ban(roomId, matches[1], matches[3]),
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
// Unban a user from the room
|
2017-05-23 10:44:11 +02:00
|
|
|
unban: new Command("unban", "<userId>", function(roomId, args) {
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(\S+)$/);
|
2015-09-18 14:54:20 +02:00
|
|
|
if (matches) {
|
|
|
|
// Reset the user membership to "leave" to unban him
|
|
|
|
return success(
|
2017-05-23 10:44:11 +02:00
|
|
|
MatrixClientPeg.get().unban(roomId, matches[1]),
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
2017-09-15 00:08:51 +02:00
|
|
|
ignore: new Command("ignore", "<userId>", function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
2017-09-15 00:21:36 +02:00
|
|
|
const userId = matches[1];
|
2017-09-15 00:08:51 +02:00
|
|
|
const ignoredUsers = MatrixClientPeg.get().getIgnoredUsers();
|
2017-09-17 22:50:24 +02:00
|
|
|
ignoredUsers.push(userId); // de-duped internally in the js-sdk
|
2017-09-15 00:08:51 +02:00
|
|
|
return success(
|
2017-09-15 00:21:36 +02:00
|
|
|
MatrixClientPeg.get().setIgnoredUsers(ignoredUsers).then(() => {
|
|
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
|
|
|
Modal.createTrackedDialog('Slash Commands', 'User ignored', QuestionDialog, {
|
|
|
|
title: _t("Ignored user"),
|
|
|
|
description: (
|
|
|
|
<div>
|
2017-09-28 12:21:06 +02:00
|
|
|
<p>{ _t("You are now ignoring %(userId)s", {userId: userId}) }</p>
|
2017-09-15 00:21:36 +02:00
|
|
|
</div>
|
|
|
|
),
|
|
|
|
hasCancelButton: false,
|
|
|
|
});
|
|
|
|
}),
|
2017-09-15 00:08:51 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
|
|
|
|
|
|
|
unignore: new Command("unignore", "<userId>", function(roomId, args) {
|
|
|
|
if (args) {
|
|
|
|
const matches = args.match(/^(\S+)$/);
|
|
|
|
if (matches) {
|
2017-09-15 00:21:36 +02:00
|
|
|
const userId = matches[1];
|
2017-09-15 00:08:51 +02:00
|
|
|
const ignoredUsers = MatrixClientPeg.get().getIgnoredUsers();
|
2017-09-15 00:21:36 +02:00
|
|
|
const index = ignoredUsers.indexOf(userId);
|
2017-09-15 00:08:51 +02:00
|
|
|
if (index !== -1) ignoredUsers.splice(index, 1);
|
|
|
|
return success(
|
2017-09-15 00:21:36 +02:00
|
|
|
MatrixClientPeg.get().setIgnoredUsers(ignoredUsers).then(() => {
|
|
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
|
|
|
Modal.createTrackedDialog('Slash Commands', 'User unignored', QuestionDialog, {
|
|
|
|
title: _t("Unignored user"),
|
|
|
|
description: (
|
|
|
|
<div>
|
2017-09-28 12:21:06 +02:00
|
|
|
<p>{ _t("You are no longer ignoring %(userId)s", {userId: userId}) }</p>
|
2017-09-15 00:21:36 +02:00
|
|
|
</div>
|
|
|
|
),
|
|
|
|
hasCancelButton: false,
|
|
|
|
});
|
|
|
|
}),
|
2017-09-15 00:08:51 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
|
|
|
|
2015-09-18 14:54:20 +02:00
|
|
|
// Define the power level of a user
|
2017-05-23 10:44:11 +02:00
|
|
|
op: new Command("op", "<userId> [<power level>]", function(roomId, args) {
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(\S+?)( +(\d+))?$/);
|
|
|
|
let powerLevel = 50; // default power level for op
|
2015-09-18 14:54:20 +02:00
|
|
|
if (matches) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const userId = matches[1];
|
2015-09-18 14:54:20 +02:00
|
|
|
if (matches.length === 4 && undefined !== matches[3]) {
|
|
|
|
powerLevel = parseInt(matches[3]);
|
|
|
|
}
|
2017-05-23 10:44:11 +02:00
|
|
|
if (!isNaN(powerLevel)) {
|
|
|
|
const room = MatrixClientPeg.get().getRoom(roomId);
|
2015-09-18 14:54:20 +02:00
|
|
|
if (!room) {
|
2017-05-23 10:44:11 +02:00
|
|
|
return reject("Bad room ID: " + roomId);
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
2017-05-23 10:44:11 +02:00
|
|
|
const powerLevelEvent = room.currentState.getStateEvents(
|
|
|
|
"m.room.power_levels", "",
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
return success(
|
|
|
|
MatrixClientPeg.get().setPowerLevel(
|
2017-05-23 10:44:11 +02:00
|
|
|
roomId, userId, powerLevel, powerLevelEvent,
|
|
|
|
),
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
// Reset the power level of a user
|
2017-05-23 10:44:11 +02:00
|
|
|
deop: new Command("deop", "<userId>", function(roomId, args) {
|
2015-09-18 14:54:20 +02:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(\S+)$/);
|
2015-09-18 14:54:20 +02:00
|
|
|
if (matches) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const room = MatrixClientPeg.get().getRoom(roomId);
|
2015-09-18 14:54:20 +02:00
|
|
|
if (!room) {
|
2017-05-23 10:44:11 +02:00
|
|
|
return reject("Bad room ID: " + roomId);
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
|
|
|
|
2017-05-23 10:44:11 +02:00
|
|
|
const powerLevelEvent = room.currentState.getStateEvents(
|
|
|
|
"m.room.power_levels", "",
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
return success(
|
|
|
|
MatrixClientPeg.get().setPowerLevel(
|
2017-05-23 10:44:11 +02:00
|
|
|
roomId, args, undefined, powerLevelEvent,
|
|
|
|
),
|
2015-09-18 14:54:20 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-01-14 15:39:58 +01:00
|
|
|
return reject(this.getUsage());
|
2017-05-23 10:24:18 +02:00
|
|
|
}),
|
|
|
|
|
2017-07-31 13:08:28 +02:00
|
|
|
// Open developer tools
|
|
|
|
devtools: new Command("devtools", "", function(roomId) {
|
|
|
|
const DevtoolsDialog = sdk.getComponent("dialogs.DevtoolsDialog");
|
|
|
|
Modal.createDialog(DevtoolsDialog, { roomId });
|
|
|
|
return success();
|
|
|
|
}),
|
|
|
|
|
2017-05-23 10:24:18 +02:00
|
|
|
// Verify a user, device, and pubkey tuple
|
2017-05-23 10:44:11 +02:00
|
|
|
verify: new Command("verify", "<userId> <deviceId> <deviceSigningKey>", function(roomId, args) {
|
2017-05-23 10:24:18 +02:00
|
|
|
if (args) {
|
2017-05-23 10:44:11 +02:00
|
|
|
const matches = args.match(/^(\S+) +(\S+) +(\S+)$/);
|
2017-05-23 10:24:18 +02:00
|
|
|
if (matches) {
|
|
|
|
const userId = matches[1];
|
|
|
|
const deviceId = matches[2];
|
|
|
|
const fingerprint = matches[3];
|
|
|
|
|
2017-07-19 00:46:03 +02:00
|
|
|
return success(
|
|
|
|
// Promise.resolve to handle transition from static result to promise; can be removed
|
|
|
|
// in future
|
|
|
|
Promise.resolve(MatrixClientPeg.get().getStoredDevice(userId, deviceId)).then((device) => {
|
|
|
|
if (!device) {
|
|
|
|
throw new Error(_t(`Unknown (user, device) pair:`) + ` (${userId}, ${deviceId})`);
|
|
|
|
}
|
2017-05-23 10:24:18 +02:00
|
|
|
|
2017-07-19 00:46:03 +02:00
|
|
|
if (device.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!`));
|
|
|
|
}
|
|
|
|
}
|
2017-05-23 10:24:18 +02:00
|
|
|
|
2017-07-19 00:46:03 +02: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!',
|
|
|
|
{deviceId: deviceId, fprint: fprint, userId: userId, fingerprint: fingerprint}));
|
|
|
|
}
|
2017-05-23 10:24:18 +02:00
|
|
|
|
2017-07-27 18:19:18 +02:00
|
|
|
return MatrixClientPeg.get().setDeviceVerified(userId, deviceId, true);
|
2017-07-19 00:46:03 +02:00
|
|
|
}).then(() => {
|
|
|
|
// Tell the user we verified everything
|
|
|
|
const QuestionDialog = sdk.getComponent("dialogs.QuestionDialog");
|
2017-07-27 18:19:18 +02:00
|
|
|
Modal.createTrackedDialog('Slash Commands', 'Verified key', QuestionDialog, {
|
2017-07-19 00:46:03 +02:00
|
|
|
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: userId, deviceId: deviceId})
|
|
|
|
}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
hasCancelButton: false,
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
);
|
2017-05-23 10:24:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return reject(this.getUsage());
|
|
|
|
}),
|
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",
|
2017-01-20 15:22:27 +01:00
|
|
|
};
|
2015-09-18 14:54:20 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
processInput: function(roomId, input) {
|
2016-05-24 12:44:30 +02:00
|
|
|
// trim any trailing whitespace, as it can confuse the parser for
|
2015-09-18 14:54:20 +02:00
|
|
|
// IRC-style commands
|
|
|
|
input = input.replace(/\s+$/, "");
|
|
|
|
if (input[0] === "/" && input[1] !== "/") {
|
2017-05-23 10:44:11 +02:00
|
|
|
const bits = input.match(/^(\S+?)( +((.|\n)*))?$/);
|
|
|
|
let cmd;
|
|
|
|
let args;
|
2016-05-13 18:07:27 +02:00
|
|
|
if (bits) {
|
|
|
|
cmd = bits[1].substring(1).toLowerCase();
|
|
|
|
args = bits[3];
|
2017-05-23 10:44:11 +02:00
|
|
|
} else {
|
2016-05-13 18:07:27 +02:00
|
|
|
cmd = input;
|
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
if (cmd === "me") return null;
|
2016-01-14 17:29:01 +01:00
|
|
|
if (aliases[cmd]) {
|
|
|
|
cmd = aliases[cmd];
|
|
|
|
}
|
2015-09-18 14:54:20 +02:00
|
|
|
if (commands[cmd]) {
|
2016-01-14 15:39:58 +01:00
|
|
|
return commands[cmd].run(roomId, args);
|
2017-05-23 10:44:11 +02:00
|
|
|
} else {
|
2017-06-01 16:44:56 +02:00
|
|
|
return reject(_t("Unrecognised command:") + ' ' + input);
|
2015-09-18 14:54:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return null; // not a command
|
2016-01-13 18:46:36 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
getCommandList: function() {
|
2016-02-14 12:45:52 +01:00
|
|
|
// Return all the commands plus /me and /markdown which aren't handled like normal commands
|
2017-05-23 10:44:11 +02:00
|
|
|
const cmds = Object.keys(commands).sort().map(function(cmdKey) {
|
2016-01-14 15:39:58 +01:00
|
|
|
return commands[cmdKey];
|
2017-01-20 15:22:27 +01:00
|
|
|
});
|
|
|
|
cmds.push(new Command("me", "<action>", function() {}));
|
|
|
|
cmds.push(new Command("markdown", "<on|off>", function() {}));
|
2016-01-14 18:33:52 +01:00
|
|
|
|
|
|
|
return cmds;
|
2017-05-23 10:44:11 +02:00
|
|
|
},
|
2015-09-18 14:54:20 +02:00
|
|
|
};
|