2015-07-10 21:37:13 +08:00
|
|
|
/*
|
2016-01-07 12:06:39 +08:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2019-10-01 10:17:54 +08:00
|
|
|
Copyright 2019 The Matrix.org Foundation C.I.C.
|
2015-07-10 21:37:13 +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.
|
|
|
|
*/
|
|
|
|
|
2022-02-05 01:21:03 +08:00
|
|
|
import * as linkifyjs from "linkifyjs";
|
|
|
|
import { registerCustomProtocol, registerPlugin } from "linkifyjs";
|
|
|
|
import linkifyElement from "linkify-element";
|
|
|
|
import linkifyString from "linkify-string";
|
2021-12-03 22:00:56 +08:00
|
|
|
import { RoomMember } from "matrix-js-sdk/src/models/room-member";
|
2021-12-09 17:10:23 +08:00
|
|
|
|
2020-03-20 08:42:44 +08:00
|
|
|
import {
|
|
|
|
parsePermalink,
|
|
|
|
tryTransformEntityToPermalink,
|
2020-03-20 08:56:41 +08:00
|
|
|
tryTransformPermalinkToLocalHref,
|
2020-03-20 08:42:44 +08:00
|
|
|
} from "./utils/permalinks/Permalinks";
|
2021-12-03 22:00:56 +08:00
|
|
|
import dis from "./dispatcher/dispatcher";
|
|
|
|
import { Action } from "./dispatcher/actions";
|
|
|
|
import { ViewUserPayload } from "./dispatcher/payloads/ViewUserPayload";
|
2022-02-10 22:29:55 +08:00
|
|
|
import { ViewRoomPayload } from "./dispatcher/payloads/ViewRoomPayload";
|
2017-12-10 20:50:41 +08:00
|
|
|
|
2022-01-21 01:18:47 +08:00
|
|
|
export enum Type {
|
2021-09-27 21:24:44 +08:00
|
|
|
URL = "url",
|
|
|
|
UserId = "userid",
|
|
|
|
RoomAlias = "roomalias",
|
|
|
|
}
|
|
|
|
|
2022-01-19 01:24:16 +08:00
|
|
|
// Linkify stuff doesn't type scanner/parser/utils properly :/
|
|
|
|
function matrixOpaqueIdLinkifyParser({
|
|
|
|
scanner,
|
|
|
|
parser,
|
|
|
|
utils,
|
|
|
|
token,
|
|
|
|
name,
|
|
|
|
}: {
|
|
|
|
scanner: any;
|
|
|
|
parser: any;
|
|
|
|
utils: any;
|
|
|
|
token: "#" | "+" | "@";
|
|
|
|
name: Type;
|
2023-01-12 21:25:14 +08:00
|
|
|
}): void {
|
2022-01-19 01:24:16 +08:00
|
|
|
const {
|
|
|
|
DOT,
|
2022-01-21 01:18:47 +08:00
|
|
|
// IPV4 necessity
|
2022-01-19 01:24:16 +08:00
|
|
|
NUM,
|
|
|
|
TLD,
|
|
|
|
COLON,
|
|
|
|
SYM,
|
2022-01-21 01:18:47 +08:00
|
|
|
HYPHEN,
|
2022-01-19 01:24:16 +08:00
|
|
|
UNDERSCORE,
|
|
|
|
// because 'localhost' is tokenised to the localhost token,
|
|
|
|
// usernames @localhost:foo.com are otherwise not matched!
|
|
|
|
LOCALHOST,
|
2022-01-21 01:18:47 +08:00
|
|
|
domain,
|
2022-01-19 01:24:16 +08:00
|
|
|
} = scanner.tokens;
|
2021-12-03 22:00:56 +08:00
|
|
|
|
2022-01-19 01:24:16 +08:00
|
|
|
const S_START = parser.start;
|
|
|
|
const matrixSymbol = utils.createTokenClass(name, { isLink: true });
|
|
|
|
|
2022-01-21 01:18:47 +08:00
|
|
|
const localpartTokens = [domain, TLD, LOCALHOST, SYM, UNDERSCORE, HYPHEN];
|
|
|
|
const domainpartTokens = [domain, TLD, LOCALHOST, HYPHEN];
|
2022-01-19 01:24:16 +08:00
|
|
|
|
|
|
|
const INITIAL_STATE = S_START.tt(token);
|
2015-07-10 21:37:13 +08:00
|
|
|
|
2022-01-21 01:18:47 +08:00
|
|
|
const LOCALPART_STATE = INITIAL_STATE.tt(domain);
|
2022-01-19 01:24:16 +08:00
|
|
|
for (const token of localpartTokens) {
|
|
|
|
INITIAL_STATE.tt(token, LOCALPART_STATE);
|
|
|
|
LOCALPART_STATE.tt(token, LOCALPART_STATE);
|
|
|
|
}
|
|
|
|
const LOCALPART_STATE_DOT = LOCALPART_STATE.tt(DOT);
|
|
|
|
for (const token of localpartTokens) {
|
|
|
|
LOCALPART_STATE_DOT.tt(token, LOCALPART_STATE);
|
|
|
|
}
|
2017-06-05 23:51:50 +08:00
|
|
|
|
2022-01-19 01:24:16 +08:00
|
|
|
const DOMAINPART_STATE_DOT = LOCALPART_STATE.tt(COLON);
|
2022-01-21 01:18:47 +08:00
|
|
|
const DOMAINPART_STATE = DOMAINPART_STATE_DOT.tt(domain);
|
2022-01-19 01:24:16 +08:00
|
|
|
DOMAINPART_STATE.tt(DOT, DOMAINPART_STATE_DOT);
|
|
|
|
for (const token of domainpartTokens) {
|
|
|
|
DOMAINPART_STATE.tt(token, DOMAINPART_STATE);
|
|
|
|
// we are done if we have a domain
|
|
|
|
DOMAINPART_STATE.tt(token, matrixSymbol);
|
|
|
|
}
|
2017-06-05 23:51:50 +08:00
|
|
|
|
2022-01-19 01:24:16 +08:00
|
|
|
// accept repeated TLDs (e.g .org.uk) but do not accept double dots: ..
|
|
|
|
for (const token of domainpartTokens) {
|
|
|
|
DOMAINPART_STATE_DOT.tt(token, DOMAINPART_STATE);
|
|
|
|
}
|
2017-06-05 23:51:50 +08:00
|
|
|
|
2022-01-19 01:24:16 +08:00
|
|
|
const PORT_STATE = DOMAINPART_STATE.tt(COLON);
|
|
|
|
|
|
|
|
PORT_STATE.tt(NUM, matrixSymbol);
|
2015-07-10 21:37:13 +08:00
|
|
|
}
|
|
|
|
|
2023-01-12 21:25:14 +08:00
|
|
|
function onUserClick(event: MouseEvent, userId: string): void {
|
2022-01-21 01:18:47 +08:00
|
|
|
event.preventDefault();
|
2021-12-03 22:00:56 +08:00
|
|
|
const member = new RoomMember(null, userId);
|
|
|
|
if (!member) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dis.dispatch<ViewUserPayload>({
|
|
|
|
action: Action.ViewUser,
|
|
|
|
member: member,
|
|
|
|
});
|
|
|
|
}
|
2022-01-21 01:18:47 +08:00
|
|
|
|
2023-01-12 21:25:14 +08:00
|
|
|
function onAliasClick(event: MouseEvent, roomAlias: string): void {
|
2021-12-03 22:00:56 +08:00
|
|
|
event.preventDefault();
|
2022-02-10 22:29:55 +08:00
|
|
|
dis.dispatch<ViewRoomPayload>({
|
2022-01-13 04:12:28 +08:00
|
|
|
action: Action.ViewRoom,
|
|
|
|
room_alias: roomAlias,
|
2022-02-18 02:03:27 +08:00
|
|
|
metricsTrigger: "Timeline",
|
|
|
|
metricsViaKeyboard: false,
|
2022-01-13 04:12:28 +08:00
|
|
|
});
|
2021-12-03 22:00:56 +08:00
|
|
|
}
|
2022-01-21 01:18:47 +08:00
|
|
|
|
2022-08-09 19:55:49 +08:00
|
|
|
const escapeRegExp = function (s: string): string {
|
|
|
|
return s.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
2016-03-20 20:31:30 +08:00
|
|
|
};
|
|
|
|
|
2020-12-21 20:46:29 +08:00
|
|
|
// Recognise URLs from both our local and official Element deployments.
|
2022-02-03 16:55:49 +08:00
|
|
|
// Anyone else really should be using matrix.to. vector:// allowed to support Element Desktop relative links.
|
2021-12-03 22:00:56 +08:00
|
|
|
export const ELEMENT_URL_PATTERN =
|
2022-02-03 16:55:49 +08:00
|
|
|
"^(?:vector://|https?://)?(?:" +
|
2020-12-21 20:46:29 +08:00
|
|
|
escapeRegExp(window.location.host + window.location.pathname) +
|
|
|
|
"|" +
|
2020-12-21 21:15:00 +08:00
|
|
|
"(?:www\\.)?(?:riot|vector)\\.im/(?:app|beta|staging|develop)/|" +
|
|
|
|
"(?:app|beta|staging|develop)\\.element\\.io/" +
|
2020-12-21 20:46:29 +08:00
|
|
|
")(#.*)";
|
2016-08-28 08:55:42 +08:00
|
|
|
|
2021-12-03 22:00:56 +08:00
|
|
|
export const options = {
|
2021-09-27 21:24:44 +08:00
|
|
|
events: function (href: string, type: Type | string): Partial<GlobalEventHandlers> {
|
2015-07-10 21:37:13 +08:00
|
|
|
switch (type) {
|
2021-09-27 21:24:44 +08:00
|
|
|
case Type.URL: {
|
2020-03-20 08:42:44 +08:00
|
|
|
// intercept local permalinks to users and show them like userids (in userinfo of current room)
|
2020-03-26 18:45:26 +08:00
|
|
|
try {
|
|
|
|
const permalink = parsePermalink(href);
|
2022-03-23 21:38:57 +08:00
|
|
|
if (permalink?.userId) {
|
2020-03-26 18:45:26 +08:00
|
|
|
return {
|
2021-09-28 13:53:52 +08:00
|
|
|
// @ts-ignore see https://linkify.js.org/docs/options.html
|
2022-03-23 21:38:57 +08:00
|
|
|
click: function (e: MouseEvent) {
|
2021-12-03 22:00:56 +08:00
|
|
|
onUserClick(e, permalink.userId);
|
2020-03-26 18:45:26 +08:00
|
|
|
},
|
|
|
|
};
|
2022-01-21 01:18:47 +08:00
|
|
|
} else {
|
2022-03-23 21:38:57 +08:00
|
|
|
// for events, rooms etc. (anything other than users)
|
2022-01-21 01:18:47 +08:00
|
|
|
const localHref = tryTransformPermalinkToLocalHref(href);
|
|
|
|
if (localHref !== href) {
|
|
|
|
// it could be converted to a localHref -> therefore handle locally
|
|
|
|
return {
|
|
|
|
// @ts-ignore see https://linkify.js.org/docs/options.html
|
2022-03-23 21:38:57 +08:00
|
|
|
click: function (e: MouseEvent) {
|
2022-01-21 01:18:47 +08:00
|
|
|
e.preventDefault();
|
|
|
|
window.location.hash = localHref;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
2020-03-26 18:45:26 +08:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
// OK fine, it's not actually a permalink
|
2020-03-20 08:42:44 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2021-09-27 21:24:44 +08:00
|
|
|
case Type.UserId:
|
2015-10-27 17:58:55 +08:00
|
|
|
return {
|
2021-09-28 13:53:52 +08:00
|
|
|
// @ts-ignore see https://linkify.js.org/docs/options.html
|
2022-03-23 21:38:57 +08:00
|
|
|
click: function (e: MouseEvent) {
|
2022-01-21 01:18:47 +08:00
|
|
|
const userId = parsePermalink(href).userId;
|
|
|
|
onUserClick(e, userId);
|
2017-10-12 00:56:17 +08:00
|
|
|
},
|
2015-10-27 17:58:55 +08:00
|
|
|
};
|
2021-09-27 21:24:44 +08:00
|
|
|
case Type.RoomAlias:
|
2015-10-27 17:58:55 +08:00
|
|
|
return {
|
2021-09-28 13:53:52 +08:00
|
|
|
// @ts-ignore see https://linkify.js.org/docs/options.html
|
2022-03-23 21:38:57 +08:00
|
|
|
click: function (e: MouseEvent) {
|
2022-01-21 01:18:47 +08:00
|
|
|
const alias = parsePermalink(href).roomIdOrAlias;
|
|
|
|
onAliasClick(e, alias);
|
2017-10-12 00:56:17 +08:00
|
|
|
},
|
2015-10-27 17:58:55 +08:00
|
|
|
};
|
2015-07-10 21:37:13 +08:00
|
|
|
}
|
2016-02-19 02:16:39 +08:00
|
|
|
},
|
2016-08-28 09:05:23 +08:00
|
|
|
|
2021-09-27 21:24:44 +08:00
|
|
|
formatHref: function (href: string, type: Type | string): string {
|
2016-02-19 02:16:39 +08:00
|
|
|
switch (type) {
|
2021-09-27 21:24:44 +08:00
|
|
|
case Type.RoomAlias:
|
|
|
|
case Type.UserId:
|
2018-06-16 15:27:17 +08:00
|
|
|
default: {
|
2020-03-05 04:56:58 +08:00
|
|
|
return tryTransformEntityToPermalink(href);
|
2018-06-16 15:27:17 +08:00
|
|
|
}
|
2016-03-20 11:05:07 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2022-01-19 01:24:16 +08:00
|
|
|
attributes: {
|
2020-02-24 06:14:29 +08:00
|
|
|
rel: "noreferrer noopener",
|
2016-08-16 04:37:26 +08:00
|
|
|
},
|
|
|
|
|
2022-05-03 08:26:37 +08:00
|
|
|
ignoreTags: ["pre", "code"],
|
|
|
|
|
2022-01-19 01:24:16 +08:00
|
|
|
className: "linkified",
|
|
|
|
|
2021-09-27 21:24:44 +08:00
|
|
|
target: function (href: string, type: Type | string): string {
|
|
|
|
if (type === Type.URL) {
|
2021-05-13 17:20:27 +08:00
|
|
|
try {
|
|
|
|
const transformed = tryTransformPermalinkToLocalHref(href);
|
2022-01-25 22:31:00 +08:00
|
|
|
if (
|
|
|
|
transformed !== href || // if it could be converted to handle locally for matrix symbols e.g. @user:server.tdl and matrix.to
|
|
|
|
decodeURIComponent(href).match(ELEMENT_URL_PATTERN) // for https links to Element domains
|
2022-01-21 01:18:47 +08:00
|
|
|
) {
|
2021-05-13 17:20:27 +08:00
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return "_blank";
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
// malformed URI
|
2016-03-20 11:05:07 +08:00
|
|
|
}
|
|
|
|
}
|
2016-03-21 23:45:04 +08:00
|
|
|
return null;
|
2016-03-20 11:05:07 +08:00
|
|
|
},
|
2015-10-27 01:59:49 +08:00
|
|
|
};
|
2015-07-10 21:37:13 +08:00
|
|
|
|
2021-12-03 22:00:56 +08:00
|
|
|
// Run the plugins
|
2022-01-19 01:24:16 +08:00
|
|
|
registerPlugin(Type.RoomAlias, ({ scanner, parser, utils }) => {
|
|
|
|
const token = scanner.tokens.POUND as "#";
|
2022-01-26 01:37:54 +08:00
|
|
|
matrixOpaqueIdLinkifyParser({
|
2022-01-19 01:24:16 +08:00
|
|
|
scanner,
|
|
|
|
parser,
|
|
|
|
utils,
|
|
|
|
token,
|
|
|
|
name: Type.RoomAlias,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
registerPlugin(Type.UserId, ({ scanner, parser, utils }) => {
|
|
|
|
const token = scanner.tokens.AT as "@";
|
2022-01-26 01:37:54 +08:00
|
|
|
matrixOpaqueIdLinkifyParser({
|
2022-01-19 01:24:16 +08:00
|
|
|
scanner,
|
|
|
|
parser,
|
|
|
|
utils,
|
|
|
|
token,
|
|
|
|
name: Type.UserId,
|
|
|
|
});
|
|
|
|
});
|
2021-12-03 22:00:56 +08:00
|
|
|
|
2022-01-21 01:18:47 +08:00
|
|
|
registerCustomProtocol("matrix", true);
|
|
|
|
|
2021-12-03 22:00:56 +08:00
|
|
|
export const linkify = linkifyjs;
|
|
|
|
export const _linkifyElement = linkifyElement;
|
|
|
|
export const _linkifyString = linkifyString;
|