2015-09-18 20:54:20 +08:00
|
|
|
|
/*
|
2016-01-07 12:06:39 +08:00
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2018-08-30 01:09:37 +08:00
|
|
|
|
Copyright 2018 New Vector Ltd
|
2019-05-10 05:12:21 +08:00
|
|
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
2020-03-30 20:59:08 +08:00
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2015-09-18 20:54:20 +08: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.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-03-30 20:59:08 +08:00
|
|
|
|
import * as React from 'react';
|
2021-06-18 23:21:46 +08:00
|
|
|
|
import { User } from "matrix-js-sdk/src/models/user";
|
2021-12-15 20:34:47 +08:00
|
|
|
|
import { Direction } from 'matrix-js-sdk/src/models/event-timeline';
|
2021-11-19 18:49:34 +08:00
|
|
|
|
import { EventType } from "matrix-js-sdk/src/@types/event";
|
2021-04-13 04:34:24 +08:00
|
|
|
|
import * as ContentHelpers from 'matrix-js-sdk/src/content-helpers';
|
2022-03-03 01:37:18 +08:00
|
|
|
|
import { Element as ChildElement, parseFragment as parseHtml } from "parse5";
|
2021-12-09 17:10:23 +08:00
|
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2022-01-12 17:40:18 +08:00
|
|
|
|
import { IContent } from 'matrix-js-sdk/src/models/event';
|
2022-06-08 04:20:32 +08:00
|
|
|
|
import { MRoomTopicEventContent } from 'matrix-js-sdk/src/@types/topic';
|
2022-06-08 03:08:36 +08:00
|
|
|
|
import { SlashCommand as SlashCommandEvent } from "@matrix-org/analytics-events/types/typescript/SlashCommand";
|
2021-12-09 17:10:23 +08:00
|
|
|
|
|
2021-06-29 20:11:58 +08:00
|
|
|
|
import { MatrixClientPeg } from './MatrixClientPeg';
|
2020-05-14 10:41:41 +08:00
|
|
|
|
import dis from './dispatcher/dispatcher';
|
2022-03-03 01:37:18 +08:00
|
|
|
|
import { _t, _td, ITranslatableError, newTranslatableError } from './languageHandler';
|
2016-09-13 18:11:52 +08:00
|
|
|
|
import Modal from './Modal';
|
2018-11-30 06:05:53 +08:00
|
|
|
|
import MultiInviter from './utils/MultiInviter';
|
2022-06-08 04:20:32 +08:00
|
|
|
|
import { linkifyElement, topicToHtml } from './HtmlUtils';
|
2019-03-15 07:24:22 +08:00
|
|
|
|
import QuestionDialog from "./components/views/dialogs/QuestionDialog";
|
2019-03-24 14:07:00 +08:00
|
|
|
|
import WidgetUtils from "./utils/WidgetUtils";
|
2021-06-29 20:11:58 +08:00
|
|
|
|
import { textToHtmlRainbow } from "./utils/colour";
|
2022-01-28 18:02:37 +08:00
|
|
|
|
import { AddressType, getAddressType } from './UserAddress';
|
2019-08-31 01:29:07 +08:00
|
|
|
|
import { abbreviateUrl } from './utils/UrlUtils';
|
|
|
|
|
import { getDefaultIdentityServerUrl, useDefaultIdentityServer } from './utils/IdentityServerUtils';
|
2021-06-29 20:11:58 +08:00
|
|
|
|
import { isPermalinkHost, parsePermalink } from "./utils/permalinks/Permalinks";
|
2020-04-10 05:25:11 +08:00
|
|
|
|
import { WidgetType } from "./widgets/WidgetType";
|
2020-04-10 06:02:49 +08:00
|
|
|
|
import { Jitsi } from "./widgets/Jitsi";
|
2020-09-10 04:53:38 +08:00
|
|
|
|
import BugReportDialog from "./components/views/dialogs/BugReportDialog";
|
2020-05-11 17:54:28 +08:00
|
|
|
|
import { ensureDMExists } from "./createRoom";
|
2020-05-14 11:03:12 +08:00
|
|
|
|
import { ViewUserPayload } from "./dispatcher/payloads/ViewUserPayload";
|
|
|
|
|
import { Action } from "./dispatcher/actions";
|
2022-03-25 05:25:44 +08:00
|
|
|
|
import { EffectiveMembership, getEffectiveMembership } from "./utils/membership";
|
2020-09-15 22:49:25 +08:00
|
|
|
|
import SdkConfig from "./SdkConfig";
|
2020-08-24 16:43:41 +08:00
|
|
|
|
import SettingsStore from "./settings/SettingsStore";
|
2021-10-09 06:04:26 +08:00
|
|
|
|
import { UIComponent, UIFeature } from "./settings/UIFeature";
|
2021-06-29 20:11:58 +08:00
|
|
|
|
import { CHAT_EFFECTS } from "./effects";
|
2020-10-30 01:56:24 +08:00
|
|
|
|
import CallHandler from "./CallHandler";
|
2021-06-29 20:11:58 +08:00
|
|
|
|
import { guessAndSetDMRoom } from "./Rooms";
|
2021-07-02 21:51:55 +08:00
|
|
|
|
import { upgradeRoom } from './utils/RoomUpgrade';
|
2021-07-03 17:24:33 +08:00
|
|
|
|
import UploadConfirmDialog from './components/views/dialogs/UploadConfirmDialog';
|
|
|
|
|
import DevtoolsDialog from './components/views/dialogs/DevtoolsDialog';
|
|
|
|
|
import RoomUpgradeWarningDialog from "./components/views/dialogs/RoomUpgradeWarningDialog";
|
|
|
|
|
import InfoDialog from "./components/views/dialogs/InfoDialog";
|
|
|
|
|
import SlashCommandHelpDialog from "./components/views/dialogs/SlashCommandHelpDialog";
|
2021-10-09 06:04:26 +08:00
|
|
|
|
import { shouldShowComponent } from "./customisations/helpers/UIComponents";
|
2021-11-18 20:47:11 +08:00
|
|
|
|
import { TimelineRenderingType } from './contexts/RoomContext';
|
2022-03-23 13:26:30 +08:00
|
|
|
|
import { RoomViewStore } from "./stores/RoomViewStore";
|
2022-01-12 17:40:18 +08:00
|
|
|
|
import { XOR } from "./@types/common";
|
2022-02-09 22:42:08 +08:00
|
|
|
|
import { PosthogAnalytics } from "./PosthogAnalytics";
|
2022-02-10 22:29:55 +08:00
|
|
|
|
import { ViewRoomPayload } from "./dispatcher/payloads/ViewRoomPayload";
|
2022-02-25 23:58:13 +08:00
|
|
|
|
import VoipUserMapper from './VoipUserMapper';
|
2022-06-08 04:20:32 +08:00
|
|
|
|
import { htmlSerializeFromMdIfNeeded } from './editor/serialize';
|
2022-03-25 05:25:44 +08:00
|
|
|
|
import { leaveRoomBehaviour } from "./utils/leave-behaviour";
|
2021-09-21 23:48:09 +08:00
|
|
|
|
|
2020-03-30 20:59:08 +08:00
|
|
|
|
// XXX: workaround for https://github.com/microsoft/TypeScript/issues/31816
|
|
|
|
|
interface HTMLInputEvent extends Event {
|
|
|
|
|
target: HTMLInputElement & EventTarget;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const singleMxcUpload = async (): Promise<any> => {
|
2019-06-28 02:38:12 +08:00
|
|
|
|
return new Promise((resolve) => {
|
|
|
|
|
const fileSelector = document.createElement('input');
|
|
|
|
|
fileSelector.setAttribute('type', 'file');
|
2020-03-30 20:59:08 +08:00
|
|
|
|
fileSelector.onchange = (ev: HTMLInputEvent) => {
|
2019-06-28 02:38:12 +08:00
|
|
|
|
const file = ev.target.files[0];
|
|
|
|
|
|
2022-06-15 00:51:51 +08:00
|
|
|
|
Modal.createDialog(UploadConfirmDialog, {
|
2019-06-28 02:38:12 +08:00
|
|
|
|
file,
|
|
|
|
|
onFinished: (shouldContinue) => {
|
2019-06-29 14:05:43 +08:00
|
|
|
|
resolve(shouldContinue ? MatrixClientPeg.get().uploadContent(file) : null);
|
2019-06-28 02:38:12 +08:00
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fileSelector.click();
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2019-08-07 01:03:38 +08:00
|
|
|
|
export const CommandCategories = {
|
|
|
|
|
"messages": _td("Messages"),
|
|
|
|
|
"actions": _td("Actions"),
|
|
|
|
|
"admin": _td("Admin"),
|
|
|
|
|
"advanced": _td("Advanced"),
|
2020-10-20 03:25:01 +08:00
|
|
|
|
"effects": _td("Effects"),
|
2019-08-07 01:03:38 +08:00
|
|
|
|
"other": _td("Other"),
|
|
|
|
|
};
|
|
|
|
|
|
2022-01-12 17:40:18 +08:00
|
|
|
|
export type RunResult = XOR<{ error: Error | ITranslatableError }, { promise: Promise<IContent | undefined> }>;
|
|
|
|
|
|
|
|
|
|
type RunFn = ((roomId: string, args: string, cmd: string) => RunResult);
|
2020-03-30 20:59:08 +08:00
|
|
|
|
|
2020-03-31 18:53:26 +08:00
|
|
|
|
interface ICommandOpts {
|
|
|
|
|
command: string;
|
|
|
|
|
aliases?: string[];
|
|
|
|
|
args?: string;
|
|
|
|
|
description: string;
|
2022-02-09 22:42:08 +08:00
|
|
|
|
analyticsName?: SlashCommandEvent["command"];
|
2020-03-31 18:53:26 +08:00
|
|
|
|
runFn?: RunFn;
|
|
|
|
|
category: string;
|
|
|
|
|
hideCompletionAfterSpace?: boolean;
|
2020-09-15 22:49:25 +08:00
|
|
|
|
isEnabled?(): boolean;
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes?: TimelineRenderingType[];
|
2020-03-31 18:53:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-21 02:00:54 +08:00
|
|
|
|
export class Command {
|
2022-01-12 17:40:18 +08:00
|
|
|
|
public readonly command: string;
|
|
|
|
|
public readonly aliases: string[];
|
|
|
|
|
public readonly args: undefined | string;
|
|
|
|
|
public readonly description: string;
|
|
|
|
|
public readonly runFn: undefined | RunFn;
|
|
|
|
|
public readonly category: string;
|
|
|
|
|
public readonly hideCompletionAfterSpace: boolean;
|
|
|
|
|
public readonly renderingTypes?: TimelineRenderingType[];
|
2022-02-09 22:42:08 +08:00
|
|
|
|
public readonly analyticsName?: SlashCommandEvent["command"];
|
2022-01-12 17:40:18 +08:00
|
|
|
|
private readonly _isEnabled?: () => boolean;
|
2020-03-30 20:59:08 +08:00
|
|
|
|
|
2020-03-31 18:53:26 +08:00
|
|
|
|
constructor(opts: ICommandOpts) {
|
|
|
|
|
this.command = opts.command;
|
|
|
|
|
this.aliases = opts.aliases || [];
|
|
|
|
|
this.args = opts.args || "";
|
|
|
|
|
this.description = opts.description;
|
|
|
|
|
this.runFn = opts.runFn;
|
|
|
|
|
this.category = opts.category || CommandCategories.other;
|
|
|
|
|
this.hideCompletionAfterSpace = opts.hideCompletionAfterSpace || false;
|
2020-09-15 22:49:25 +08:00
|
|
|
|
this._isEnabled = opts.isEnabled;
|
2021-11-18 20:47:11 +08:00
|
|
|
|
this.renderingTypes = opts.renderingTypes;
|
2022-02-09 22:42:08 +08:00
|
|
|
|
this.analyticsName = opts.analyticsName;
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-12 17:40:18 +08:00
|
|
|
|
public getCommand() {
|
2020-03-30 20:59:08 +08:00
|
|
|
|
return `/${this.command}`;
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-12 17:40:18 +08:00
|
|
|
|
public getCommandWithArgs() {
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return this.getCommand() + " " + this.args;
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-12 17:40:18 +08:00
|
|
|
|
public run(roomId: string, threadId: string, args: string): RunResult {
|
2020-01-22 00:50:04 +08:00
|
|
|
|
// if it has no runFn then its an ignored/nop command (autocomplete only) e.g `/me`
|
2022-01-12 02:25:28 +08:00
|
|
|
|
if (!this.runFn) {
|
2022-03-22 03:09:43 +08:00
|
|
|
|
return reject(
|
2022-01-12 02:25:28 +08:00
|
|
|
|
newTranslatableError(
|
|
|
|
|
"Command error: Unable to handle slash command.",
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-11-23 16:17:30 +08:00
|
|
|
|
|
|
|
|
|
const renderingType = threadId
|
|
|
|
|
? TimelineRenderingType.Thread
|
|
|
|
|
: TimelineRenderingType.Room;
|
|
|
|
|
if (this.renderingTypes && !this.renderingTypes?.includes(renderingType)) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
return reject(
|
|
|
|
|
newTranslatableError(
|
|
|
|
|
"Command error: Unable to find rendering type (%(renderingType)s)",
|
|
|
|
|
{ renderingType },
|
|
|
|
|
),
|
|
|
|
|
);
|
2021-11-23 16:17:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-09 22:42:08 +08:00
|
|
|
|
if (this.analyticsName) {
|
|
|
|
|
PosthogAnalytics.instance.trackEvent<SlashCommandEvent>({
|
|
|
|
|
eventName: "SlashCommand",
|
|
|
|
|
command: this.analyticsName,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-26 03:39:20 +08:00
|
|
|
|
return this.runFn.bind(this)(roomId, args);
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-12 17:40:18 +08:00
|
|
|
|
public getUsage() {
|
2017-05-23 22:16:31 +08:00
|
|
|
|
return _t('Usage') + ': ' + this.getCommandWithArgs();
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}
|
2020-09-15 22:49:25 +08:00
|
|
|
|
|
2022-01-12 17:40:18 +08:00
|
|
|
|
public isEnabled(): boolean {
|
2020-09-15 22:49:25 +08:00
|
|
|
|
return this._isEnabled ? this._isEnabled() : true;
|
|
|
|
|
}
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 02:31:40 +08:00
|
|
|
|
function reject(error) {
|
2021-06-29 20:11:58 +08:00
|
|
|
|
return { error };
|
2017-05-23 16:44:11 +08:00
|
|
|
|
}
|
2015-09-18 20:54:20 +08:00
|
|
|
|
|
2020-03-30 20:59:08 +08:00
|
|
|
|
function success(promise?: Promise<any>) {
|
2021-06-29 20:11:58 +08:00
|
|
|
|
return { promise };
|
2017-05-23 16:44:11 +08:00
|
|
|
|
}
|
2015-09-18 20:54:20 +08:00
|
|
|
|
|
2021-06-17 18:37:06 +08:00
|
|
|
|
function successSync(value: any) {
|
|
|
|
|
return success(Promise.resolve(value));
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-23 16:44:11 +08:00
|
|
|
|
/* Disable the "unexpected this" error for these commands - all of the run
|
|
|
|
|
* functions are called with `this` bound to the Command instance.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-03-30 20:59:08 +08:00
|
|
|
|
export const Commands = [
|
2021-02-26 05:59:27 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'spoiler',
|
|
|
|
|
args: '<message>',
|
|
|
|
|
description: _td('Sends the given message as a spoiler'),
|
|
|
|
|
runFn: function(roomId, message) {
|
2021-06-17 18:37:06 +08:00
|
|
|
|
return successSync(ContentHelpers.makeHtmlMessage(
|
2021-03-26 06:16:53 +08:00
|
|
|
|
message,
|
2021-02-26 05:59:27 +08:00
|
|
|
|
`<span data-mx-spoiler>${message}</span>`,
|
|
|
|
|
));
|
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.messages,
|
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'shrug',
|
2019-02-19 07:27:22 +08:00
|
|
|
|
args: '<message>',
|
|
|
|
|
description: _td('Prepends ¯\\_(ツ)_/¯ to a plain-text message'),
|
|
|
|
|
runFn: function(roomId, args) {
|
2019-02-20 13:46:17 +08:00
|
|
|
|
let message = '¯\\_(ツ)_/¯';
|
2019-02-19 07:27:22 +08:00
|
|
|
|
if (args) {
|
2019-02-20 13:46:17 +08:00
|
|
|
|
message = message + ' ' + args;
|
2019-02-19 07:27:22 +08:00
|
|
|
|
}
|
2021-06-17 18:37:06 +08:00
|
|
|
|
return successSync(ContentHelpers.makeTextMessage(message));
|
2019-02-20 13:46:17 +08:00
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.messages,
|
2019-02-19 07:27:22 +08:00
|
|
|
|
}),
|
2020-12-10 19:19:13 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'tableflip',
|
|
|
|
|
args: '<message>',
|
|
|
|
|
description: _td('Prepends (╯°□°)╯︵ ┻━┻ to a plain-text message'),
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
let message = '(╯°□°)╯︵ ┻━┻';
|
|
|
|
|
if (args) {
|
|
|
|
|
message = message + ' ' + args;
|
|
|
|
|
}
|
2021-06-17 18:37:06 +08:00
|
|
|
|
return successSync(ContentHelpers.makeTextMessage(message));
|
2020-12-10 19:19:13 +08:00
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.messages,
|
|
|
|
|
}),
|
2020-12-10 19:19:30 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'unflip',
|
|
|
|
|
args: '<message>',
|
|
|
|
|
description: _td('Prepends ┬──┬ ノ( ゜-゜ノ) to a plain-text message'),
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
let message = '┬──┬ ノ( ゜-゜ノ)';
|
|
|
|
|
if (args) {
|
|
|
|
|
message = message + ' ' + args;
|
|
|
|
|
}
|
2021-06-17 18:37:06 +08:00
|
|
|
|
return successSync(ContentHelpers.makeTextMessage(message));
|
2020-12-10 19:19:30 +08:00
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.messages,
|
|
|
|
|
}),
|
2020-08-29 19:29:43 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'lenny',
|
|
|
|
|
args: '<message>',
|
|
|
|
|
description: _td('Prepends ( ͡° ͜ʖ ͡°) to a plain-text message'),
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
let message = '( ͡° ͜ʖ ͡°)';
|
|
|
|
|
if (args) {
|
|
|
|
|
message = message + ' ' + args;
|
|
|
|
|
}
|
2021-06-17 18:37:06 +08:00
|
|
|
|
return successSync(ContentHelpers.makeTextMessage(message));
|
2020-08-29 19:29:43 +08:00
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.messages,
|
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'plain',
|
2019-09-02 23:44:31 +08:00
|
|
|
|
args: '<message>',
|
|
|
|
|
description: _td('Sends a message as plain text, without interpreting it as markdown'),
|
|
|
|
|
runFn: function(roomId, messages) {
|
2021-06-17 18:37:06 +08:00
|
|
|
|
return successSync(ContentHelpers.makeTextMessage(messages));
|
2019-09-02 23:44:31 +08:00
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.messages,
|
|
|
|
|
}),
|
2020-03-31 18:49:53 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'html',
|
2020-03-30 03:45:06 +08:00
|
|
|
|
args: '<message>',
|
|
|
|
|
description: _td('Sends a message as html, without interpreting it as markdown'),
|
|
|
|
|
runFn: function(roomId, messages) {
|
2021-06-17 18:37:06 +08:00
|
|
|
|
return successSync(ContentHelpers.makeHtmlMessage(messages, messages));
|
2020-03-30 03:45:06 +08:00
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.messages,
|
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'upgraderoom',
|
2019-01-18 06:59:05 +08:00
|
|
|
|
args: '<new_version>',
|
|
|
|
|
description: _td('Upgrades a room to a new version'),
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
if (args) {
|
2019-08-28 19:00:37 +08:00
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
const room = cli.getRoom(roomId);
|
|
|
|
|
if (!room.currentState.mayClientSendStateEvent("m.room.tombstone", cli)) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
return reject(
|
|
|
|
|
newTranslatableError("You do not have the required permissions to use this command."),
|
|
|
|
|
);
|
2019-08-28 19:00:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-06-15 00:51:51 +08:00
|
|
|
|
const { finished } = Modal.createDialog(
|
2021-06-29 20:11:58 +08:00
|
|
|
|
RoomUpgradeWarningDialog, { roomId: roomId, targetVersion: args }, /*className=*/null,
|
2019-12-03 08:26:08 +08:00
|
|
|
|
/*isPriority=*/false, /*isStatic=*/true);
|
2019-11-28 11:29:11 +08:00
|
|
|
|
|
|
|
|
|
return success(finished.then(async ([resp]) => {
|
2021-07-02 21:51:55 +08:00
|
|
|
|
if (!resp?.continue) return;
|
|
|
|
|
await upgradeRoom(room, args, resp.invite);
|
2019-08-28 19:00:37 +08:00
|
|
|
|
}));
|
2019-01-18 06:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.admin,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2019-01-18 06:59:05 +08:00
|
|
|
|
}),
|
2021-12-15 20:34:47 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'jumptodate',
|
2022-04-14 23:13:18 +08:00
|
|
|
|
args: '<YYYY-MM-DD>',
|
|
|
|
|
description: _td('Jump to the given date in the timeline'),
|
2021-12-15 20:34:47 +08:00
|
|
|
|
isEnabled: () => SettingsStore.getValue("feature_jump_to_date"),
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
if (args) {
|
|
|
|
|
return success((async () => {
|
|
|
|
|
const unixTimestamp = Date.parse(args);
|
|
|
|
|
if (!unixTimestamp) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
throw newTranslatableError(
|
|
|
|
|
'We were unable to understand the given date (%(inputDate)s). ' +
|
|
|
|
|
'Try using the format YYYY-MM-DD.',
|
|
|
|
|
{ inputDate: args },
|
2021-12-15 20:34:47 +08:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
const { event_id: eventId, origin_server_ts: originServerTs } = await cli.timestampToEvent(
|
|
|
|
|
roomId,
|
|
|
|
|
unixTimestamp,
|
|
|
|
|
Direction.Forward,
|
|
|
|
|
);
|
|
|
|
|
logger.log(
|
|
|
|
|
`/timestamp_to_event: found ${eventId} (${originServerTs}) for timestamp=${unixTimestamp}`,
|
|
|
|
|
);
|
2022-02-10 22:29:55 +08:00
|
|
|
|
dis.dispatch<ViewRoomPayload>({
|
2021-12-15 20:34:47 +08:00
|
|
|
|
action: Action.ViewRoom,
|
2022-01-18 23:51:25 +08:00
|
|
|
|
event_id: eventId,
|
2021-12-15 20:34:47 +08:00
|
|
|
|
highlighted: true,
|
|
|
|
|
room_id: roomId,
|
2022-02-18 02:03:27 +08:00
|
|
|
|
metricsTrigger: "SlashCommand",
|
|
|
|
|
metricsViaKeyboard: true,
|
2021-12-15 20:34:47 +08:00
|
|
|
|
});
|
|
|
|
|
})());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.actions,
|
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'nick',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
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-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.actions,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'myroomnick',
|
|
|
|
|
aliases: ['roomnick'],
|
2019-02-24 09:36:47 +08: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 = {
|
2021-09-21 23:48:09 +08:00
|
|
|
|
...(ev ? ev.getContent() : { membership: 'join' }),
|
2020-03-30 21:13:08 +08:00
|
|
|
|
displayname: args,
|
2019-02-24 09:36:47 +08:00
|
|
|
|
};
|
|
|
|
|
return success(cli.sendStateEvent(roomId, 'm.room.member', content, cli.getUserId()));
|
|
|
|
|
}
|
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.actions,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2019-02-24 09:36:47 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'roomavatar',
|
2019-09-18 23:33:56 +08:00
|
|
|
|
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;
|
2021-06-29 20:11:58 +08:00
|
|
|
|
return MatrixClientPeg.get().sendStateEvent(roomId, 'm.room.avatar', { url }, '');
|
2019-09-18 23:33:56 +08:00
|
|
|
|
}));
|
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.actions,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2019-09-18 23:33:56 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'myroomavatar',
|
2019-05-11 03:28:28 +08:00
|
|
|
|
args: '[<mxc_url>]',
|
2019-05-10 05:12:21 +08: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-28 02:41:29 +08:00
|
|
|
|
promise = singleMxcUpload();
|
2019-05-10 05:12:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return success(promise.then((url) => {
|
2019-06-29 14:05:43 +08:00
|
|
|
|
if (!url) return;
|
2019-05-10 05:12:21 +08:00
|
|
|
|
const ev = room.currentState.getStateEvents('m.room.member', userId);
|
|
|
|
|
const content = {
|
2021-09-21 23:48:09 +08:00
|
|
|
|
...(ev ? ev.getContent() : { membership: 'join' }),
|
2019-05-10 05:12:21 +08:00
|
|
|
|
avatar_url: url,
|
|
|
|
|
};
|
|
|
|
|
return cli.sendStateEvent(roomId, 'm.room.member', content, userId);
|
|
|
|
|
}));
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.actions,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2019-05-10 05:12:21 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'myavatar',
|
2019-06-28 02:38:12 +08:00
|
|
|
|
args: '[<mxc_url>]',
|
|
|
|
|
description: _td('Changes your avatar in all rooms'),
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
let promise = Promise.resolve(args);
|
|
|
|
|
if (!args) {
|
2019-06-28 02:41:29 +08:00
|
|
|
|
promise = singleMxcUpload();
|
2019-06-28 02:38:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return success(promise.then((url) => {
|
2019-06-29 14:05:43 +08:00
|
|
|
|
if (!url) return;
|
2019-06-28 02:38:12 +08:00
|
|
|
|
return MatrixClientPeg.get().setAvatarUrl(url);
|
|
|
|
|
}));
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.actions,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2019-06-28 02:38:12 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'topic',
|
2019-01-30 18:22:05 +08:00
|
|
|
|
args: '[<topic>]',
|
|
|
|
|
description: _td('Gets or sets the room topic'),
|
2018-06-19 02:31:40 +08:00
|
|
|
|
runFn: function(roomId, args) {
|
2019-01-30 18:22:05 +08:00
|
|
|
|
const cli = MatrixClientPeg.get();
|
2018-06-19 02:31:40 +08:00
|
|
|
|
if (args) {
|
2022-06-08 04:20:32 +08:00
|
|
|
|
const html = htmlSerializeFromMdIfNeeded(args, { forceHTML: false });
|
|
|
|
|
return success(cli.setRoomTopic(roomId, args, html));
|
2018-06-19 02:31:40 +08:00
|
|
|
|
}
|
2019-01-30 18:22:05 +08:00
|
|
|
|
const room = cli.getRoom(roomId);
|
2022-01-12 02:25:28 +08:00
|
|
|
|
if (!room) {
|
|
|
|
|
return reject(
|
|
|
|
|
newTranslatableError("Failed to get room topic: Unable to find room (%(roomId)s", { roomId }),
|
|
|
|
|
);
|
|
|
|
|
}
|
2019-01-30 18:22:05 +08:00
|
|
|
|
|
2022-06-08 04:20:32 +08:00
|
|
|
|
const content: MRoomTopicEventContent = room.currentState.getStateEvents('m.room.topic', '')?.getContent();
|
|
|
|
|
const topic = !!content
|
|
|
|
|
? ContentHelpers.parseTopicContent(content)
|
|
|
|
|
: { text: _t('This room has no topic.') };
|
|
|
|
|
|
|
|
|
|
const ref = e => e && linkifyElement(e);
|
|
|
|
|
const body = topicToHtml(topic.text, topic.html, ref, true);
|
2019-01-30 18:22:05 +08:00
|
|
|
|
|
2022-06-15 00:51:51 +08:00
|
|
|
|
Modal.createDialog(InfoDialog, {
|
2019-01-30 18:22:05 +08:00
|
|
|
|
title: room.name,
|
2022-06-08 04:20:32 +08:00
|
|
|
|
description: <div ref={ref}>{ body }</div>,
|
2020-05-12 17:51:27 +08:00
|
|
|
|
hasCloseButton: true,
|
2022-06-08 04:20:32 +08:00
|
|
|
|
className: "markdown-body",
|
2019-01-30 18:22:05 +08:00
|
|
|
|
});
|
|
|
|
|
return success();
|
2018-06-19 02:31:40 +08:00
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.admin,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'roomname',
|
2019-01-04 07:42:17 +08: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-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.admin,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2019-01-04 07:42:17 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'invite',
|
2021-02-27 06:10:20 +08:00
|
|
|
|
args: '<user-id> [<reason>]',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
description: _td('Invites user with given id to current room'),
|
2022-02-10 21:11:10 +08:00
|
|
|
|
analyticsName: "Invite",
|
2021-10-09 06:04:26 +08:00
|
|
|
|
isEnabled: () => shouldShowComponent(UIComponent.InviteUsers),
|
2018-06-19 02:31:40 +08:00
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
if (args) {
|
2021-02-27 06:10:20 +08:00
|
|
|
|
const [address, reason] = args.split(/\s+(.+)/);
|
|
|
|
|
if (address) {
|
2018-11-30 06:05:53 +08:00
|
|
|
|
// We use a MultiInviter to re-use the invite logic, even though
|
|
|
|
|
// we're only inviting one user.
|
2019-08-31 01:29:07 +08:00
|
|
|
|
// 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.
|
2020-07-13 07:19:15 +08:00
|
|
|
|
let prom = Promise.resolve();
|
2019-08-31 01:29:07 +08:00
|
|
|
|
if (
|
2022-01-28 18:02:37 +08:00
|
|
|
|
getAddressType(address) === AddressType.Email &&
|
2019-08-31 01:29:07 +08:00
|
|
|
|
!MatrixClientPeg.get().getIdentityServerUrl()
|
|
|
|
|
) {
|
|
|
|
|
const defaultIdentityServerUrl = getDefaultIdentityServerUrl();
|
|
|
|
|
if (defaultIdentityServerUrl) {
|
2022-06-15 00:51:51 +08:00
|
|
|
|
const { finished } = Modal.createDialog<[boolean]>(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"),
|
|
|
|
|
});
|
2020-04-01 23:53:25 +08:00
|
|
|
|
|
2020-07-13 07:19:15 +08:00
|
|
|
|
prom = finished.then(([useDefault]) => {
|
2020-04-01 23:53:25 +08:00
|
|
|
|
if (useDefault) {
|
|
|
|
|
useDefaultIdentityServer();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-01-12 02:25:28 +08:00
|
|
|
|
throw newTranslatableError(
|
|
|
|
|
"Use an identity server to invite by email. Manage in Settings.",
|
|
|
|
|
);
|
2020-04-01 23:53:25 +08:00
|
|
|
|
});
|
2019-08-31 01:29:07 +08:00
|
|
|
|
} else {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
return reject(
|
|
|
|
|
newTranslatableError(
|
|
|
|
|
"Use an identity server to invite by email. Manage in Settings.",
|
|
|
|
|
),
|
|
|
|
|
);
|
2019-08-31 01:29:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-11-30 06:05:53 +08:00
|
|
|
|
const inviter = new MultiInviter(roomId);
|
2020-07-13 07:19:15 +08:00
|
|
|
|
return success(prom.then(() => {
|
2022-01-28 18:02:37 +08:00
|
|
|
|
return inviter.invite([address], reason, true);
|
2019-08-31 01:29:07 +08:00
|
|
|
|
}).then(() => {
|
|
|
|
|
if (inviter.getCompletionState(address) !== "invited") {
|
|
|
|
|
throw new Error(inviter.getErrorText(address));
|
2018-11-30 06:16:45 +08:00
|
|
|
|
}
|
2018-11-30 06:05:53 +08:00
|
|
|
|
}));
|
2018-06-19 02:31:40 +08:00
|
|
|
|
}
|
2015-09-18 20:54:20 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.actions,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'join',
|
|
|
|
|
aliases: ['j', 'goto'],
|
2020-04-14 17:06:57 +08:00
|
|
|
|
args: '<room-address>',
|
|
|
|
|
description: _td('Joins room with given address'),
|
2021-07-20 05:43:11 +08:00
|
|
|
|
runFn: function(roomId, args) {
|
2018-06-19 02:31:40 +08:00
|
|
|
|
if (args) {
|
2018-11-08 07:53:29 +08: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 06:06:00 +08: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
|
|
|
|
|
|
2020-08-03 23:02:26 +08:00
|
|
|
|
// if we're using a Element permalink handler, this will catch it before we get much further.
|
2019-10-01 06:06:00 +08:00
|
|
|
|
// see below where we make assumptions about parsing the URL.
|
|
|
|
|
if (isPermalinkHost(hostname)) {
|
|
|
|
|
isPermalink = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-11-08 07:53:29 +08:00
|
|
|
|
if (params[0][0] === '#') {
|
|
|
|
|
let roomAlias = params[0];
|
2018-06-19 02:31:40 +08:00
|
|
|
|
if (!roomAlias.includes(':')) {
|
|
|
|
|
roomAlias += ':' + MatrixClientPeg.get().getDomain();
|
|
|
|
|
}
|
2015-09-18 20:54:20 +08:00
|
|
|
|
|
2022-02-10 22:29:55 +08:00
|
|
|
|
dis.dispatch<ViewRoomPayload>({
|
2021-11-26 04:49:43 +08:00
|
|
|
|
action: Action.ViewRoom,
|
2018-06-19 02:31:40 +08:00
|
|
|
|
room_alias: roomAlias,
|
|
|
|
|
auto_join: true,
|
2022-02-18 02:03:27 +08:00
|
|
|
|
metricsTrigger: "SlashCommand",
|
|
|
|
|
metricsViaKeyboard: true,
|
2018-06-19 02:31:40 +08:00
|
|
|
|
});
|
2018-11-08 07:53:29 +08:00
|
|
|
|
return success();
|
2018-11-08 08:01:47 +08:00
|
|
|
|
} else if (params[0][0] === '!') {
|
2020-06-29 23:27:59 +08:00
|
|
|
|
const [roomId, ...viaServers] = params;
|
2018-11-08 07:53:29 +08:00
|
|
|
|
|
2022-02-10 22:29:55 +08:00
|
|
|
|
dis.dispatch<ViewRoomPayload>({
|
2021-11-26 04:49:43 +08:00
|
|
|
|
action: Action.ViewRoom,
|
2018-11-08 07:53:29 +08:00
|
|
|
|
room_id: roomId,
|
2019-06-29 06:26:28 +08:00
|
|
|
|
via_servers: viaServers, // for the rejoin button
|
2018-11-08 07:53:29 +08:00
|
|
|
|
auto_join: true,
|
2022-02-18 02:03:27 +08:00
|
|
|
|
metricsTrigger: "SlashCommand",
|
|
|
|
|
metricsViaKeyboard: true,
|
2018-11-08 07:53:29 +08:00
|
|
|
|
});
|
|
|
|
|
return success();
|
2019-10-01 06:06:00 +08:00
|
|
|
|
} else if (isPermalink) {
|
|
|
|
|
const permalinkParts = parsePermalink(params[0]);
|
2018-11-08 07:53:29 +08:00
|
|
|
|
|
2019-10-01 06:06:00 +08: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 07:53:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-23 07:07:37 +08:00
|
|
|
|
// If for some reason someone wanted to join a user, we should
|
2019-10-01 06:06:00 +08:00
|
|
|
|
// stop them now.
|
|
|
|
|
if (!permalinkParts.roomIdOrAlias) {
|
|
|
|
|
return reject(this.getUsage());
|
2018-11-08 07:53:29 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-01 06:06:00 +08:00
|
|
|
|
const entity = permalinkParts.roomIdOrAlias;
|
|
|
|
|
const viaServers = permalinkParts.viaServers;
|
|
|
|
|
const eventId = permalinkParts.eventId;
|
|
|
|
|
|
2022-02-10 22:29:55 +08:00
|
|
|
|
const dispatch: ViewRoomPayload = {
|
2021-11-26 04:49:43 +08:00
|
|
|
|
action: Action.ViewRoom,
|
2018-11-08 07:53:29 +08:00
|
|
|
|
auto_join: true,
|
2022-02-18 02:03:27 +08:00
|
|
|
|
metricsTrigger: "SlashCommand",
|
|
|
|
|
metricsViaKeyboard: true,
|
2018-11-08 07:53:29 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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 06:26:28 +08:00
|
|
|
|
// For the join
|
2018-11-08 07:53:29 +08:00
|
|
|
|
dispatch["opts"] = {
|
|
|
|
|
// These are passed down to the js-sdk's /join call
|
2019-06-29 06:26:28 +08:00
|
|
|
|
viaServers: viaServers,
|
2018-11-08 08:01:47 +08:00
|
|
|
|
};
|
2019-06-29 06:26:28 +08:00
|
|
|
|
|
|
|
|
|
// For if the join fails (rejoin button)
|
|
|
|
|
dispatch['via_servers'] = viaServers;
|
2018-11-08 07:53:29 +08:00
|
|
|
|
}
|
2015-12-28 10:58:40 +08:00
|
|
|
|
|
2018-11-08 07:53:29 +08:00
|
|
|
|
dis.dispatch(dispatch);
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return success();
|
|
|
|
|
}
|
2015-09-18 20:54:20 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.actions,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'part',
|
2020-04-14 17:06:57 +08:00
|
|
|
|
args: '[<room-address>]',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
description: _td('Leave room'),
|
2022-02-10 21:11:10 +08:00
|
|
|
|
analyticsName: "Part",
|
2018-06-19 02:31:40 +08:00
|
|
|
|
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 20:54:20 +08:00
|
|
|
|
|
2018-06-19 02:31:40 +08: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 20:54:20 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
if (targetRoomId) break;
|
2015-09-18 20:54:20 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
if (targetRoomId) break;
|
2015-09-18 20:54:20 +08:00
|
|
|
|
}
|
2022-01-12 02:25:28 +08:00
|
|
|
|
if (!targetRoomId) {
|
|
|
|
|
return reject(
|
|
|
|
|
newTranslatableError(
|
|
|
|
|
'Unrecognised room address: %(roomAlias)s',
|
|
|
|
|
{ roomAlias },
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
2017-05-23 16:44:11 +08:00
|
|
|
|
}
|
2015-09-18 20:54:20 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
|
|
|
|
|
if (!targetRoomId) targetRoomId = roomId;
|
2020-08-20 09:21:40 +08:00
|
|
|
|
return success(leaveRoomBehaviour(targetRoomId));
|
2018-06-19 02:31:40 +08:00
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.actions,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
2022-01-14 21:08:34 +08:00
|
|
|
|
command: 'remove',
|
|
|
|
|
aliases: ["kick"],
|
2018-06-19 02:31:40 +08:00
|
|
|
|
args: '<user-id> [reason]',
|
2022-01-14 21:08:34 +08:00
|
|
|
|
description: _td('Removes user with given id from this room'),
|
2018-06-19 02:31:40 +08:00
|
|
|
|
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 20:54:20 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.admin,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'ban',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
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 20:54:20 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.admin,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'unban',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
args: '<user-id>',
|
2019-05-17 04:35:43 +08:00
|
|
|
|
description: _td('Unbans user with given ID'),
|
2018-06-19 02:31:40 +08: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 20:54:20 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.admin,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'ignore',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
args: '<user-id>',
|
|
|
|
|
description: _td('Ignores a user, hiding their messages from you'),
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
if (args) {
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
|
2020-07-04 05:22:33 +08:00
|
|
|
|
const matches = args.match(/^(@[^:]+:\S+)$/);
|
2018-06-19 02:31:40 +08:00
|
|
|
|
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(() => {
|
2022-06-15 00:51:51 +08:00
|
|
|
|
Modal.createDialog(InfoDialog, {
|
2018-06-19 02:31:40 +08:00
|
|
|
|
title: _t('Ignored user'),
|
|
|
|
|
description: <div>
|
2021-06-29 20:11:58 +08:00
|
|
|
|
<p>{ _t('You are now ignoring %(userId)s', { userId }) }</p>
|
2018-06-19 02:31:40 +08:00
|
|
|
|
</div>,
|
|
|
|
|
});
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
}
|
2017-09-15 06:08:51 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.actions,
|
2017-09-15 06:08:51 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'unignore',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
args: '<user-id>',
|
|
|
|
|
description: _td('Stops ignoring a user, showing their messages going forward'),
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
if (args) {
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
|
2020-07-04 05:22:33 +08:00
|
|
|
|
const matches = args.match(/(^@[^:]+:\S+$)/);
|
2018-06-19 02:31:40 +08:00
|
|
|
|
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(() => {
|
2022-06-15 00:51:51 +08:00
|
|
|
|
Modal.createDialog(InfoDialog, {
|
2018-06-19 02:31:40 +08:00
|
|
|
|
title: _t('Unignored user'),
|
|
|
|
|
description: <div>
|
2021-06-29 20:11:58 +08:00
|
|
|
|
<p>{ _t('You are no longer ignoring %(userId)s', { userId }) }</p>
|
2018-06-19 02:31:40 +08:00
|
|
|
|
</div>,
|
|
|
|
|
});
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
}
|
2017-09-15 06:08:51 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.actions,
|
2017-09-15 06:08:51 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'op',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
args: '<user-id> [<power-level>]',
|
|
|
|
|
description: _td('Define the power level of a user'),
|
2021-11-19 18:49:34 +08:00
|
|
|
|
isEnabled(): boolean {
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
2022-03-23 13:26:30 +08:00
|
|
|
|
const room = cli.getRoom(RoomViewStore.instance.getRoomId());
|
2021-11-19 18:49:34 +08:00
|
|
|
|
return room?.currentState.maySendStateEvent(EventType.RoomPowerLevels, cli.getUserId());
|
|
|
|
|
},
|
2018-06-19 02:31:40 +08:00
|
|
|
|
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]) {
|
2020-03-30 21:09:10 +08:00
|
|
|
|
powerLevel = parseInt(matches[3], 10);
|
2018-06-19 02:31:40 +08:00
|
|
|
|
}
|
|
|
|
|
if (!isNaN(powerLevel)) {
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
const room = cli.getRoom(roomId);
|
2022-01-12 02:25:28 +08:00
|
|
|
|
if (!room) {
|
|
|
|
|
return reject(
|
|
|
|
|
newTranslatableError("Command failed: Unable to find room (%(roomId)s", { roomId }),
|
|
|
|
|
);
|
|
|
|
|
}
|
2020-08-13 23:29:25 +08:00
|
|
|
|
const member = room.getMember(userId);
|
2020-07-14 17:59:06 +08:00
|
|
|
|
if (!member || getEffectiveMembership(member.membership) === EffectiveMembership.Leave) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
return reject(newTranslatableError("Could not find user in room"));
|
2020-07-14 17:59:06 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
const powerLevelEvent = room.currentState.getStateEvents('m.room.power_levels', '');
|
|
|
|
|
return success(cli.setPowerLevel(roomId, userId, powerLevel, powerLevelEvent));
|
2015-09-18 20:54:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.admin,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2016-01-14 22:39:58 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'deop',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
args: '<user-id>',
|
|
|
|
|
description: _td('Deops user with given id'),
|
2021-11-19 18:49:34 +08:00
|
|
|
|
isEnabled(): boolean {
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
2022-03-23 13:26:30 +08:00
|
|
|
|
const room = cli.getRoom(RoomViewStore.instance.getRoomId());
|
2021-11-19 18:49:34 +08:00
|
|
|
|
return room?.currentState.maySendStateEvent(EventType.RoomPowerLevels, cli.getUserId());
|
|
|
|
|
},
|
2018-06-19 02:31:40 +08:00
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
if (args) {
|
|
|
|
|
const matches = args.match(/^(\S+)$/);
|
|
|
|
|
if (matches) {
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
const room = cli.getRoom(roomId);
|
2022-01-12 02:25:28 +08:00
|
|
|
|
if (!room) {
|
|
|
|
|
return reject(
|
|
|
|
|
newTranslatableError("Command failed: Unable to find room (%(roomId)s", { roomId }),
|
|
|
|
|
);
|
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
|
|
|
|
|
const powerLevelEvent = room.currentState.getStateEvents('m.room.power_levels', '');
|
2022-01-12 02:25:28 +08:00
|
|
|
|
if (!powerLevelEvent.getContent().users[args]) {
|
|
|
|
|
return reject(newTranslatableError("Could not find user in room"));
|
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return success(cli.setPowerLevel(roomId, args, undefined, powerLevelEvent));
|
2015-09-18 20:54:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.admin,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2017-05-23 16:24:18 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'devtools',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
description: _td('Opens the Developer Tools dialog'),
|
|
|
|
|
runFn: function(roomId) {
|
2022-03-24 04:17:57 +08:00
|
|
|
|
Modal.createDialog(DevtoolsDialog, { roomId }, "mx_DevtoolsDialog_wrapper");
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return success();
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.advanced,
|
2017-07-31 19:08:28 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'addwidget',
|
2020-04-20 23:35:35 +08:00
|
|
|
|
args: '<url | embed code | Jitsi url>',
|
2019-03-24 14:07:00 +08:00
|
|
|
|
description: _td('Adds a custom widget by URL to the room'),
|
2022-03-03 01:37:18 +08:00
|
|
|
|
isEnabled: () => SettingsStore.getValue(UIFeature.Widgets) && shouldShowComponent(UIComponent.AddIntegrations),
|
2020-04-10 06:02:49 +08:00
|
|
|
|
runFn: function(roomId, widgetUrl) {
|
|
|
|
|
if (!widgetUrl) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
return reject(newTranslatableError("Please supply a widget URL or embed code"));
|
2020-04-10 06:02:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Try and parse out a widget URL from iframes
|
|
|
|
|
if (widgetUrl.toLowerCase().startsWith("<iframe ")) {
|
|
|
|
|
// We use parse5, which doesn't render/create a DOM node. It instead runs
|
|
|
|
|
// some superfast regex over the text so we don't have to.
|
|
|
|
|
const embed = parseHtml(widgetUrl);
|
|
|
|
|
if (embed && embed.childNodes && embed.childNodes.length === 1) {
|
2021-05-07 17:11:56 +08:00
|
|
|
|
const iframe = embed.childNodes[0] as ChildElement;
|
2020-04-10 06:02:49 +08:00
|
|
|
|
if (iframe.tagName.toLowerCase() === 'iframe' && iframe.attrs) {
|
|
|
|
|
const srcAttr = iframe.attrs.find(a => a.name === 'src');
|
2021-09-21 23:48:09 +08:00
|
|
|
|
logger.log("Pulling URL out of iframe (embed code)");
|
2020-04-10 06:02:49 +08:00
|
|
|
|
widgetUrl = srcAttr.value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!widgetUrl.startsWith("https://") && !widgetUrl.startsWith("http://")) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
return reject(newTranslatableError("Please supply a https:// or http:// widget URL"));
|
2019-03-24 14:07:00 +08:00
|
|
|
|
}
|
|
|
|
|
if (WidgetUtils.canUserModifyWidgets(roomId)) {
|
|
|
|
|
const userId = MatrixClientPeg.get().getUserId();
|
|
|
|
|
const nowMs = (new Date()).getTime();
|
|
|
|
|
const widgetId = encodeURIComponent(`${roomId}_${userId}_${nowMs}`);
|
2020-04-10 06:02:49 +08:00
|
|
|
|
let type = WidgetType.CUSTOM;
|
2022-01-31 23:37:49 +08:00
|
|
|
|
let name = "Custom";
|
2020-04-10 06:02:49 +08:00
|
|
|
|
let data = {};
|
|
|
|
|
|
|
|
|
|
// Make the widget a Jitsi widget if it looks like a Jitsi widget
|
|
|
|
|
const jitsiData = Jitsi.getInstance().parsePreferredConferenceUrl(widgetUrl);
|
|
|
|
|
if (jitsiData) {
|
2021-09-21 23:48:09 +08:00
|
|
|
|
logger.log("Making /addwidget widget a Jitsi conference");
|
2020-04-10 06:02:49 +08:00
|
|
|
|
type = WidgetType.JITSI;
|
2022-01-31 23:37:49 +08:00
|
|
|
|
name = "Jitsi";
|
2020-04-10 06:02:49 +08:00
|
|
|
|
data = jitsiData;
|
|
|
|
|
widgetUrl = WidgetUtils.getLocalJitsiWrapperUrl();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return success(WidgetUtils.setRoomWidget(roomId, widgetId, type, widgetUrl, name, data));
|
2019-03-24 14:07:00 +08:00
|
|
|
|
} else {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
return reject(newTranslatableError("You cannot modify widgets in this room."));
|
2019-03-24 14:07:00 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.admin,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2019-03-24 14:07:00 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'verify',
|
2018-06-19 02:31:40 +08:00
|
|
|
|
args: '<user-id> <device-id> <device-signing-key>',
|
2020-01-29 23:48:25 +08:00
|
|
|
|
description: _td('Verifies a user, session, and pubkey tuple'),
|
2018-06-19 02:31:40 +08:00
|
|
|
|
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 16:24:18 +08:00
|
|
|
|
|
2020-01-03 20:08:35 +08:00
|
|
|
|
return success((async () => {
|
2020-04-29 01:35:16 +08:00
|
|
|
|
const device = cli.getStoredDevice(userId, deviceId);
|
2020-01-03 20:08:35 +08:00
|
|
|
|
if (!device) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
throw newTranslatableError(
|
|
|
|
|
'Unknown (user, session) pair: (%(userId)s, %(deviceId)s)',
|
|
|
|
|
{ userId, deviceId },
|
|
|
|
|
);
|
2020-01-03 20:08:35 +08:00
|
|
|
|
}
|
|
|
|
|
const deviceTrust = await cli.checkDeviceTrust(userId, deviceId);
|
2017-05-23 16:24:18 +08:00
|
|
|
|
|
2020-01-03 20:08:35 +08:00
|
|
|
|
if (deviceTrust.isVerified()) {
|
|
|
|
|
if (device.getFingerprint() === fingerprint) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
throw newTranslatableError('Session already verified!');
|
2020-01-03 20:08:35 +08:00
|
|
|
|
} else {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
throw newTranslatableError('WARNING: Session already verified, but keys do NOT MATCH!');
|
2018-06-19 02:31:40 +08:00
|
|
|
|
}
|
2020-01-03 20:08:35 +08:00
|
|
|
|
}
|
2017-05-23 16:24:18 +08:00
|
|
|
|
|
2020-01-03 20:08:35 +08:00
|
|
|
|
if (device.getFingerprint() !== fingerprint) {
|
|
|
|
|
const fprint = device.getFingerprint();
|
2022-01-12 02:25:28 +08:00
|
|
|
|
throw newTranslatableError(
|
|
|
|
|
'WARNING: KEY VERIFICATION FAILED! The signing key for %(userId)s and session' +
|
2020-01-03 20:08:35 +08:00
|
|
|
|
' %(deviceId)s is "%(fprint)s" which does not match the provided key ' +
|
|
|
|
|
'"%(fingerprint)s". This could mean your communications are being intercepted!',
|
2020-08-29 08:11:08 +08:00
|
|
|
|
{
|
|
|
|
|
fprint,
|
|
|
|
|
userId,
|
|
|
|
|
deviceId,
|
|
|
|
|
fingerprint,
|
2022-01-12 02:25:28 +08:00
|
|
|
|
},
|
|
|
|
|
);
|
2020-01-03 20:08:35 +08:00
|
|
|
|
}
|
2017-05-23 16:24:18 +08:00
|
|
|
|
|
2020-01-03 20:08:35 +08:00
|
|
|
|
await cli.setDeviceVerified(userId, deviceId, true);
|
|
|
|
|
|
|
|
|
|
// Tell the user we verified everything
|
2022-06-15 00:51:51 +08:00
|
|
|
|
Modal.createDialog(InfoDialog, {
|
2020-01-03 20:08:35 +08:00
|
|
|
|
title: _t('Verified key'),
|
|
|
|
|
description: <div>
|
|
|
|
|
<p>
|
|
|
|
|
{
|
|
|
|
|
_t('The signing key you provided matches the signing key you received ' +
|
2020-01-29 23:48:25 +08:00
|
|
|
|
'from %(userId)s\'s session %(deviceId)s. Session marked as verified.',
|
2021-06-29 20:11:58 +08:00
|
|
|
|
{ userId, deviceId })
|
2020-01-03 20:08:35 +08:00
|
|
|
|
}
|
|
|
|
|
</p>
|
|
|
|
|
</div>,
|
|
|
|
|
});
|
|
|
|
|
})());
|
2018-06-19 02:31:40 +08:00
|
|
|
|
}
|
2017-05-23 16:24:18 +08:00
|
|
|
|
}
|
2018-06-19 02:31:40 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.advanced,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2018-06-19 02:31:40 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'discardsession',
|
2018-08-30 01:09:37 +08:00
|
|
|
|
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-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.advanced,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2018-08-30 01:09:37 +08:00
|
|
|
|
}),
|
2022-07-12 03:18:50 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: 'remakeolm',
|
|
|
|
|
description: _td('Developer command: Discards the current outbound group session and sets up new Olm sessions'),
|
|
|
|
|
isEnabled: () => {
|
|
|
|
|
return SettingsStore.getValue("developerMode");
|
|
|
|
|
},
|
|
|
|
|
runFn: (roomId) => {
|
|
|
|
|
try {
|
|
|
|
|
const room = MatrixClientPeg.get().getRoom(roomId);
|
|
|
|
|
|
|
|
|
|
MatrixClientPeg.get().forceDiscardSession(roomId);
|
|
|
|
|
|
|
|
|
|
// noinspection JSIgnoredPromiseFromCall
|
|
|
|
|
MatrixClientPeg.get().crypto.ensureOlmSessionsForUsers(room.getMembers().map(m => m.userId), true);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
return reject(e.message);
|
|
|
|
|
}
|
|
|
|
|
return success();
|
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.advanced,
|
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: "rainbow",
|
2019-05-12 23:40:27 +08:00
|
|
|
|
description: _td("Sends the given message coloured as a rainbow"),
|
2019-05-12 23:36:43 +08:00
|
|
|
|
args: '<message>',
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
if (!args) return reject(this.getUserId());
|
2021-06-17 18:37:06 +08:00
|
|
|
|
return successSync(ContentHelpers.makeHtmlMessage(args, textToHtmlRainbow(args)));
|
2019-05-12 23:36:43 +08:00
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.messages,
|
2019-05-12 23:36:43 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: "rainbowme",
|
2019-05-12 23:40:27 +08:00
|
|
|
|
description: _td("Sends the given emote coloured as a rainbow"),
|
2019-05-12 23:36:43 +08:00
|
|
|
|
args: '<message>',
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
if (!args) return reject(this.getUserId());
|
2021-06-17 18:37:06 +08:00
|
|
|
|
return successSync(ContentHelpers.makeHtmlEmote(args, textToHtmlRainbow(args)));
|
2019-05-12 23:36:43 +08:00
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.messages,
|
2019-05-13 00:14:30 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: "help",
|
2019-07-30 00:58:34 +08:00
|
|
|
|
description: _td("Displays list of commands with usages and descriptions"),
|
|
|
|
|
runFn: function() {
|
2022-06-15 00:51:51 +08:00
|
|
|
|
Modal.createDialog(SlashCommandHelpDialog);
|
2019-07-30 00:58:34 +08:00
|
|
|
|
return success();
|
|
|
|
|
},
|
2019-08-07 01:03:38 +08:00
|
|
|
|
category: CommandCategories.advanced,
|
2019-07-30 00:58:34 +08:00
|
|
|
|
}),
|
2020-03-30 21:13:08 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: "whois",
|
|
|
|
|
description: _td("Displays information about a user"),
|
|
|
|
|
args: "<user-id>",
|
2020-03-31 18:53:26 +08:00
|
|
|
|
runFn: function(roomId, userId) {
|
2020-03-30 21:13:08 +08:00
|
|
|
|
if (!userId || !userId.startsWith("@") || !userId.includes(":")) {
|
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const member = MatrixClientPeg.get().getRoom(roomId).getMember(userId);
|
2020-05-14 11:03:12 +08:00
|
|
|
|
dis.dispatch<ViewUserPayload>({
|
|
|
|
|
action: Action.ViewUser,
|
2021-06-18 23:21:46 +08:00
|
|
|
|
// XXX: We should be using a real member object and not assuming what the receiver wants.
|
|
|
|
|
member: member || { userId } as User,
|
2020-03-30 21:13:08 +08:00
|
|
|
|
});
|
|
|
|
|
return success();
|
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.advanced,
|
|
|
|
|
}),
|
2020-04-19 19:09:07 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: "rageshake",
|
|
|
|
|
aliases: ["bugreport"],
|
|
|
|
|
description: _td("Send a bug report with logs"),
|
2020-09-15 22:49:25 +08:00
|
|
|
|
isEnabled: () => !!SdkConfig.get().bug_report_endpoint_url,
|
2020-04-19 19:09:07 +08:00
|
|
|
|
args: "<description>",
|
|
|
|
|
runFn: function(roomId, args) {
|
2020-04-19 19:19:31 +08:00
|
|
|
|
return success(
|
2022-06-15 00:51:51 +08:00
|
|
|
|
Modal.createDialog(BugReportDialog, {
|
2020-09-10 04:53:38 +08:00
|
|
|
|
initialText: args,
|
|
|
|
|
}).finished,
|
2020-04-19 19:19:31 +08:00
|
|
|
|
);
|
2020-04-19 19:09:07 +08:00
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.advanced,
|
|
|
|
|
}),
|
2022-02-25 23:58:13 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: "tovirtual",
|
|
|
|
|
description: _td("Switches to this room's virtual room, if it has one"),
|
|
|
|
|
category: CommandCategories.advanced,
|
|
|
|
|
isEnabled(): boolean {
|
|
|
|
|
return CallHandler.instance.getSupportsVirtualRooms();
|
|
|
|
|
},
|
|
|
|
|
runFn: (roomId) => {
|
|
|
|
|
return success((async () => {
|
|
|
|
|
const room = await VoipUserMapper.sharedInstance().getVirtualRoomForRoom(roomId);
|
|
|
|
|
if (!room) throw newTranslatableError("No virtual room for this room");
|
|
|
|
|
dis.dispatch<ViewRoomPayload>({
|
|
|
|
|
action: Action.ViewRoom,
|
|
|
|
|
room_id: room.roomId,
|
|
|
|
|
metricsTrigger: "SlashCommand",
|
|
|
|
|
metricsViaKeyboard: true,
|
|
|
|
|
});
|
|
|
|
|
})());
|
|
|
|
|
},
|
|
|
|
|
}),
|
2020-05-11 17:54:28 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: "query",
|
|
|
|
|
description: _td("Opens chat with the given user"),
|
|
|
|
|
args: "<user-id>",
|
|
|
|
|
runFn: function(roomId, userId) {
|
2020-11-04 23:32:21 +08:00
|
|
|
|
// easter-egg for now: look up phone numbers through the thirdparty API
|
|
|
|
|
// (very dumb phone number detection...)
|
|
|
|
|
const isPhoneNumber = userId && /^\+?[0123456789]+$/.test(userId);
|
|
|
|
|
if (!userId || (!userId.startsWith("@") || !userId.includes(":")) && !isPhoneNumber) {
|
2020-05-11 17:54:28 +08:00
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return success((async () => {
|
2020-11-04 23:32:21 +08:00
|
|
|
|
if (isPhoneNumber) {
|
2021-12-01 02:09:13 +08:00
|
|
|
|
const results = await CallHandler.instance.pstnLookup(this.state.value);
|
2020-11-04 23:32:21 +08:00
|
|
|
|
if (!results || results.length === 0 || !results[0].userid) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
throw newTranslatableError("Unable to find Matrix ID for phone number");
|
2020-11-04 23:32:21 +08:00
|
|
|
|
}
|
|
|
|
|
userId = results[0].userid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const roomId = await ensureDMExists(MatrixClientPeg.get(), userId);
|
|
|
|
|
|
2022-02-10 22:29:55 +08:00
|
|
|
|
dis.dispatch<ViewRoomPayload>({
|
2021-11-26 04:49:43 +08:00
|
|
|
|
action: Action.ViewRoom,
|
2020-11-04 23:32:21 +08:00
|
|
|
|
room_id: roomId,
|
2022-02-18 02:03:27 +08:00
|
|
|
|
metricsTrigger: "SlashCommand",
|
|
|
|
|
metricsViaKeyboard: true,
|
2020-05-11 17:54:28 +08:00
|
|
|
|
});
|
|
|
|
|
})());
|
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.actions,
|
|
|
|
|
}),
|
|
|
|
|
new Command({
|
|
|
|
|
command: "msg",
|
|
|
|
|
description: _td("Sends a message to the given user"),
|
2021-10-25 18:40:33 +08:00
|
|
|
|
args: "<user-id> [<message>]",
|
2021-07-20 05:43:11 +08:00
|
|
|
|
runFn: function(roomId, args) {
|
2020-05-11 17:54:28 +08:00
|
|
|
|
if (args) {
|
2020-05-12 17:23:53 +08:00
|
|
|
|
// matches the first whitespace delimited group and then the rest of the string
|
2020-05-11 17:54:28 +08:00
|
|
|
|
const matches = args.match(/^(\S+?)(?: +(.*))?$/s);
|
|
|
|
|
if (matches) {
|
|
|
|
|
const [userId, msg] = matches.slice(1);
|
2021-10-25 18:40:33 +08:00
|
|
|
|
if (userId && userId.startsWith("@") && userId.includes(":")) {
|
2020-05-11 17:54:28 +08:00
|
|
|
|
return success((async () => {
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
const roomId = await ensureDMExists(cli, userId);
|
2022-02-10 22:29:55 +08:00
|
|
|
|
dis.dispatch<ViewRoomPayload>({
|
2021-11-26 04:49:43 +08:00
|
|
|
|
action: Action.ViewRoom,
|
2020-05-11 17:54:28 +08:00
|
|
|
|
room_id: roomId,
|
2022-02-18 02:03:27 +08:00
|
|
|
|
metricsTrigger: "SlashCommand",
|
|
|
|
|
metricsViaKeyboard: true,
|
2020-05-11 17:54:28 +08:00
|
|
|
|
});
|
2021-10-25 18:40:33 +08:00
|
|
|
|
if (msg) {
|
|
|
|
|
cli.sendTextMessage(roomId, msg);
|
|
|
|
|
}
|
2020-05-11 17:54:28 +08:00
|
|
|
|
})());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reject(this.getUsage());
|
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.actions,
|
|
|
|
|
}),
|
2020-10-30 01:56:24 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: "holdcall",
|
2020-11-05 17:49:14 +08:00
|
|
|
|
description: _td("Places the call in the current room on hold"),
|
2020-10-30 01:56:24 +08:00
|
|
|
|
category: CommandCategories.other,
|
|
|
|
|
runFn: function(roomId, args) {
|
2021-12-01 02:09:13 +08:00
|
|
|
|
const call = CallHandler.instance.getCallForRoom(roomId);
|
2020-10-30 01:56:24 +08:00
|
|
|
|
if (!call) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
return reject(newTranslatableError("No active call in this room"));
|
2020-10-30 01:56:24 +08:00
|
|
|
|
}
|
|
|
|
|
call.setRemoteOnHold(true);
|
|
|
|
|
return success();
|
|
|
|
|
},
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2020-10-30 01:56:24 +08:00
|
|
|
|
}),
|
|
|
|
|
new Command({
|
|
|
|
|
command: "unholdcall",
|
2020-11-05 17:49:14 +08:00
|
|
|
|
description: _td("Takes the call in the current room off hold"),
|
2020-10-30 01:56:24 +08:00
|
|
|
|
category: CommandCategories.other,
|
|
|
|
|
runFn: function(roomId, args) {
|
2021-12-01 02:09:13 +08:00
|
|
|
|
const call = CallHandler.instance.getCallForRoom(roomId);
|
2020-10-30 01:56:24 +08:00
|
|
|
|
if (!call) {
|
2022-01-12 02:25:28 +08:00
|
|
|
|
return reject(newTranslatableError("No active call in this room"));
|
2020-10-30 01:56:24 +08:00
|
|
|
|
}
|
|
|
|
|
call.setRemoteOnHold(false);
|
|
|
|
|
return success();
|
|
|
|
|
},
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2020-10-30 01:56:24 +08:00
|
|
|
|
}),
|
2021-01-13 22:30:09 +08:00
|
|
|
|
new Command({
|
|
|
|
|
command: "converttodm",
|
|
|
|
|
description: _td("Converts the room to a DM"),
|
|
|
|
|
category: CommandCategories.other,
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
const room = MatrixClientPeg.get().getRoom(roomId);
|
|
|
|
|
return success(guessAndSetDMRoom(room, true));
|
|
|
|
|
},
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2021-01-13 22:30:09 +08:00
|
|
|
|
}),
|
|
|
|
|
new Command({
|
|
|
|
|
command: "converttoroom",
|
|
|
|
|
description: _td("Converts the DM to a room"),
|
|
|
|
|
category: CommandCategories.other,
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
const room = MatrixClientPeg.get().getRoom(roomId);
|
|
|
|
|
return success(guessAndSetDMRoom(room, false));
|
|
|
|
|
},
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2021-01-13 22:30:09 +08:00
|
|
|
|
}),
|
2020-02-29 09:29:52 +08:00
|
|
|
|
|
2020-03-30 20:59:08 +08:00
|
|
|
|
// Command definitions for autocompletion ONLY:
|
|
|
|
|
// /me is special because its not handled by SlashCommands.js and is instead done inside the Composer classes
|
|
|
|
|
new Command({
|
2020-04-10 20:59:01 +08:00
|
|
|
|
command: "me",
|
2020-03-30 20:59:08 +08:00
|
|
|
|
args: '<message>',
|
|
|
|
|
description: _td('Displays action'),
|
|
|
|
|
category: CommandCategories.messages,
|
|
|
|
|
hideCompletionAfterSpace: true,
|
2020-02-29 09:29:52 +08:00
|
|
|
|
}),
|
2020-11-27 01:27:35 +08:00
|
|
|
|
|
2020-11-27 21:54:21 +08:00
|
|
|
|
...CHAT_EFFECTS.map((effect) => {
|
2020-10-21 19:37:36 +08:00
|
|
|
|
return new Command({
|
|
|
|
|
command: effect.command,
|
|
|
|
|
description: effect.description(),
|
|
|
|
|
args: '<message>',
|
|
|
|
|
runFn: function(roomId, args) {
|
|
|
|
|
return success((async () => {
|
|
|
|
|
if (!args) {
|
|
|
|
|
args = effect.fallbackMessage();
|
|
|
|
|
MatrixClientPeg.get().sendEmoteMessage(roomId, args);
|
|
|
|
|
} else {
|
|
|
|
|
const content = {
|
|
|
|
|
msgtype: effect.msgType,
|
|
|
|
|
body: args,
|
|
|
|
|
};
|
|
|
|
|
MatrixClientPeg.get().sendMessage(roomId, content);
|
|
|
|
|
}
|
2021-06-29 20:11:58 +08:00
|
|
|
|
dis.dispatch({ action: `effects.${effect.command}` });
|
2020-10-21 19:37:36 +08:00
|
|
|
|
})());
|
|
|
|
|
},
|
|
|
|
|
category: CommandCategories.effects,
|
2021-11-18 20:47:11 +08:00
|
|
|
|
renderingTypes: [TimelineRenderingType.Room],
|
2021-06-29 20:11:58 +08:00
|
|
|
|
});
|
2020-08-18 23:57:51 +08:00
|
|
|
|
}),
|
2020-03-30 20:59:08 +08:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// build a map from names and aliases to the Command objects.
|
2021-06-30 20:01:26 +08:00
|
|
|
|
export const CommandMap = new Map<string, Command>();
|
2020-03-30 20:59:08 +08:00
|
|
|
|
Commands.forEach(cmd => {
|
|
|
|
|
CommandMap.set(cmd.command, cmd);
|
|
|
|
|
cmd.aliases.forEach(alias => {
|
|
|
|
|
CommandMap.set(alias, cmd);
|
|
|
|
|
});
|
|
|
|
|
});
|
2015-09-18 20:54:20 +08:00
|
|
|
|
|
2021-06-30 20:01:26 +08:00
|
|
|
|
export function parseCommandString(input: string): { cmd?: string, args?: string } {
|
2018-06-19 02:31:40 +08:00
|
|
|
|
// trim any trailing whitespace, as it can confuse the parser for
|
|
|
|
|
// IRC-style commands
|
|
|
|
|
input = input.replace(/\s+$/, '');
|
2020-07-18 18:40:45 +08:00
|
|
|
|
if (input[0] !== '/') return {}; // not a command
|
2018-06-19 02:31:40 +08:00
|
|
|
|
|
2021-02-15 20:16:32 +08:00
|
|
|
|
const bits = input.match(/^(\S+?)(?:[ \n]+((.|\n)*))?$/);
|
2021-06-30 20:01:26 +08:00
|
|
|
|
let cmd: string;
|
|
|
|
|
let args: string;
|
2018-06-19 02:31:40 +08:00
|
|
|
|
if (bits) {
|
|
|
|
|
cmd = bits[1].substring(1).toLowerCase();
|
2020-01-22 00:50:04 +08:00
|
|
|
|
args = bits[2];
|
2018-06-19 02:31:40 +08:00
|
|
|
|
} else {
|
|
|
|
|
cmd = input;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-29 20:11:58 +08:00
|
|
|
|
return { cmd, args };
|
2020-04-10 20:59:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-30 20:01:26 +08:00
|
|
|
|
interface ICmd {
|
|
|
|
|
cmd?: Command;
|
|
|
|
|
args?: string;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-10 20:59:01 +08:00
|
|
|
|
/**
|
2022-06-08 04:20:32 +08:00
|
|
|
|
* Process the given text for /commands and returns a parsed command that can be used for running the operation.
|
2020-04-10 20:59:01 +08:00
|
|
|
|
* @param {string} input The raw text input by the user.
|
2022-06-08 04:20:32 +08:00
|
|
|
|
* @return {ICmd} The parsed command object.
|
|
|
|
|
* Returns an empty object if the input didn't match a command.
|
2020-04-10 20:59:01 +08:00
|
|
|
|
*/
|
2021-06-30 20:01:26 +08:00
|
|
|
|
export function getCommand(input: string): ICmd {
|
2021-06-29 20:11:58 +08:00
|
|
|
|
const { cmd, args } = parseCommandString(input);
|
2020-04-10 20:59:01 +08:00
|
|
|
|
|
2020-09-15 22:49:25 +08:00
|
|
|
|
if (CommandMap.has(cmd) && CommandMap.get(cmd).isEnabled()) {
|
2021-02-26 03:39:20 +08:00
|
|
|
|
return {
|
|
|
|
|
cmd: CommandMap.get(cmd),
|
|
|
|
|
args,
|
|
|
|
|
};
|
2018-06-19 02:31:40 +08:00
|
|
|
|
}
|
2021-04-13 17:33:32 +08:00
|
|
|
|
return {};
|
2018-06-19 02:31:40 +08:00
|
|
|
|
}
|