2020-11-27 17:05:20 +01:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {createEnum} from "./utils/enum.js";
|
2020-12-04 13:59:52 +01:00
|
|
|
import {orderedUnique} from "./utils/unique.js";
|
2020-11-27 17:05:20 +01:00
|
|
|
|
|
|
|
const ROOMALIAS_PATTERN = /^#([^:]*):(.+)$/;
|
|
|
|
const ROOMID_PATTERN = /^!([^:]*):(.+)$/;
|
|
|
|
const USERID_PATTERN = /^@([^:]+):(.+)$/;
|
2020-12-04 16:38:10 +01:00
|
|
|
const EVENTID_PATTERN = /^$([^:]+):(.+)$/;
|
2020-11-27 17:05:20 +01:00
|
|
|
const GROUPID_PATTERN = /^\+([^:]+):(.+)$/;
|
|
|
|
|
2020-12-02 11:06:35 +01:00
|
|
|
export const IdentifierKind = createEnum(
|
2021-07-23 13:25:21 +02:00
|
|
|
"RoomId",
|
|
|
|
"RoomAlias",
|
|
|
|
"UserId",
|
|
|
|
"GroupId",
|
2020-11-27 17:05:20 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
function asPrefix(identifierKind) {
|
2021-07-23 13:25:21 +02:00
|
|
|
switch (identifierKind) {
|
|
|
|
case IdentifierKind.RoomId: return "!";
|
|
|
|
case IdentifierKind.RoomAlias: return "#";
|
|
|
|
case IdentifierKind.GroupId: return "+";
|
|
|
|
case IdentifierKind.UserId: return "@";
|
|
|
|
default: throw new Error("invalid id kind " + identifierKind);
|
|
|
|
}
|
2020-11-27 17:05:20 +01:00
|
|
|
}
|
|
|
|
|
2021-02-01 11:12:25 +01:00
|
|
|
function getWebInstanceMap(queryParams) {
|
|
|
|
const prefix = "web-instance[";
|
|
|
|
const postfix = "]";
|
|
|
|
const webInstanceParams = queryParams.filter(([key]) => key.startsWith(prefix) && key.endsWith(postfix));
|
|
|
|
const webInstances = webInstanceParams.map(([key, value]) => {
|
|
|
|
const noPrefix = key.substr(prefix.length);
|
|
|
|
const clientId = noPrefix.substr(0, noPrefix.length - postfix.length);
|
|
|
|
return [clientId, value];
|
|
|
|
});
|
|
|
|
return webInstances.reduce((map, [clientId, host]) => {
|
|
|
|
map[clientId] = host;
|
|
|
|
return map;
|
|
|
|
}, {});
|
|
|
|
}
|
|
|
|
|
2020-12-01 15:29:12 +01:00
|
|
|
export function getLabelForLinkKind(kind) {
|
2021-07-23 13:25:21 +02:00
|
|
|
switch (kind) {
|
|
|
|
case LinkKind.User: return "Start chat";
|
|
|
|
case LinkKind.Room: return "View room";
|
|
|
|
case LinkKind.Group: return "View community";
|
|
|
|
case LinkKind.Event: return "View message";
|
|
|
|
}
|
2020-12-01 15:29:12 +01:00
|
|
|
}
|
|
|
|
|
2020-11-27 17:05:20 +01:00
|
|
|
export const LinkKind = createEnum(
|
2021-07-23 13:25:21 +02:00
|
|
|
"Room",
|
|
|
|
"User",
|
|
|
|
"Group",
|
|
|
|
"Event"
|
2020-11-27 17:05:20 +01:00
|
|
|
)
|
|
|
|
|
2021-08-30 23:14:31 +02:00
|
|
|
export function tryFixUrl(fragment) {
|
|
|
|
const attempts = [];
|
2021-08-30 23:39:56 +02:00
|
|
|
const afterHash = fragment.substring(fragment.startsWith("#/") ? 2 : 1);
|
|
|
|
attempts.push('#/@' + afterHash); // #room => #/@room
|
|
|
|
attempts.push('#/#' + afterHash); // #@room => #/@room
|
|
|
|
attempts.push('#/!' + afterHash); // #@room => #/@room
|
|
|
|
|
2021-08-30 23:14:31 +02:00
|
|
|
const validAttempts = [];
|
2021-08-30 23:39:56 +02:00
|
|
|
for (const attempt of [...new Set(attempts)]) {
|
2021-08-30 23:14:31 +02:00
|
|
|
const link = Link.parse(attempt);
|
|
|
|
if (link) {
|
|
|
|
validAttempts.push({ url: attempt, link });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return validAttempts;
|
|
|
|
}
|
|
|
|
|
2020-11-27 17:05:20 +01:00
|
|
|
export class Link {
|
2020-12-04 15:31:03 +01:00
|
|
|
static validateIdentifier(identifier) {
|
|
|
|
return !!(
|
|
|
|
USERID_PATTERN.exec(identifier) ||
|
|
|
|
ROOMALIAS_PATTERN.exec(identifier) ||
|
|
|
|
ROOMID_PATTERN.exec(identifier) ||
|
|
|
|
GROUPID_PATTERN.exec(identifier)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-07-23 13:25:21 +02:00
|
|
|
static parse(fragment) {
|
|
|
|
if (!fragment) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
let [linkStr, queryParamsStr] = fragment.split("?");
|
2020-11-27 17:05:20 +01:00
|
|
|
|
2021-07-23 13:25:21 +02:00
|
|
|
let viaServers = [];
|
2020-12-07 14:05:57 +01:00
|
|
|
let clientId = null;
|
2021-02-01 11:12:25 +01:00
|
|
|
let webInstances = {};
|
2021-07-23 13:25:21 +02:00
|
|
|
if (queryParamsStr) {
|
2021-02-01 11:12:25 +01:00
|
|
|
const queryParams = queryParamsStr.split("&").map(pair => {
|
|
|
|
const [key, value] = pair.split("=");
|
|
|
|
return [decodeURIComponent(key), decodeURIComponent(value)];
|
|
|
|
});
|
2021-07-23 13:25:21 +02:00
|
|
|
viaServers = queryParams
|
|
|
|
.filter(([key, value]) => key === "via")
|
|
|
|
.map(([,value]) => value);
|
2020-12-07 14:05:57 +01:00
|
|
|
const clientParam = queryParams.find(([key]) => key === "client");
|
|
|
|
if (clientParam) {
|
|
|
|
clientId = clientParam[1];
|
|
|
|
}
|
2021-02-01 11:12:25 +01:00
|
|
|
webInstances = getWebInstanceMap(queryParams);
|
2021-07-23 13:25:21 +02:00
|
|
|
}
|
2020-11-27 17:05:20 +01:00
|
|
|
|
2021-08-30 21:11:21 +02:00
|
|
|
if (!linkStr.startsWith("#/")) {
|
|
|
|
return null;
|
2021-07-23 13:25:21 +02:00
|
|
|
}
|
2021-08-30 21:11:21 +02:00
|
|
|
linkStr = linkStr.substr(2);
|
2020-11-27 17:05:20 +01:00
|
|
|
|
2020-12-04 16:38:10 +01:00
|
|
|
const [identifier, eventId] = linkStr.split("/");
|
|
|
|
|
2021-07-23 13:25:21 +02:00
|
|
|
let matches;
|
|
|
|
matches = USERID_PATTERN.exec(identifier);
|
|
|
|
if (matches) {
|
|
|
|
const server = matches[2];
|
|
|
|
const localPart = matches[1];
|
|
|
|
return new Link(clientId, viaServers, IdentifierKind.UserId, localPart, server, webInstances);
|
|
|
|
}
|
|
|
|
matches = ROOMALIAS_PATTERN.exec(identifier);
|
|
|
|
if (matches) {
|
|
|
|
const server = matches[2];
|
|
|
|
const localPart = matches[1];
|
|
|
|
return new Link(clientId, viaServers, IdentifierKind.RoomAlias, localPart, server, webInstances, eventId);
|
|
|
|
}
|
|
|
|
matches = ROOMID_PATTERN.exec(identifier);
|
|
|
|
if (matches) {
|
|
|
|
const server = matches[2];
|
|
|
|
const localPart = matches[1];
|
|
|
|
return new Link(clientId, viaServers, IdentifierKind.RoomId, localPart, server, webInstances, eventId);
|
|
|
|
}
|
|
|
|
matches = GROUPID_PATTERN.exec(identifier);
|
|
|
|
if (matches) {
|
|
|
|
const server = matches[2];
|
|
|
|
const localPart = matches[1];
|
|
|
|
return new Link(clientId, viaServers, IdentifierKind.GroupId, localPart, server, webInstances);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(clientId, viaServers, identifierKind, localPart, server, webInstances, eventId) {
|
|
|
|
const servers = [server];
|
|
|
|
servers.push(...viaServers);
|
2021-02-01 11:12:25 +01:00
|
|
|
this.webInstances = webInstances;
|
2021-07-23 13:25:21 +02:00
|
|
|
this.servers = orderedUnique(servers);
|
|
|
|
this.identifierKind = identifierKind;
|
|
|
|
this.identifier = `${asPrefix(identifierKind)}${localPart}:${server}`;
|
|
|
|
this.eventId = eventId;
|
2020-12-07 14:05:57 +01:00
|
|
|
this.clientId = clientId;
|
2021-07-23 13:25:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
get kind() {
|
|
|
|
if (this.eventId) {
|
|
|
|
return LinkKind.Event;
|
|
|
|
}
|
|
|
|
switch (this.identifierKind) {
|
|
|
|
case IdentifierKind.RoomId:
|
|
|
|
case IdentifierKind.RoomAlias:
|
|
|
|
return LinkKind.Room;
|
|
|
|
case IdentifierKind.UserId:
|
|
|
|
return LinkKind.User;
|
|
|
|
case IdentifierKind.GroupId:
|
|
|
|
return LinkKind.Group;
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
equals(link) {
|
|
|
|
return link &&
|
|
|
|
link.identifier === this.identifier &&
|
|
|
|
this.servers.length === link.servers.length &&
|
|
|
|
this.servers.every((s, i) => link.servers[i] === s) &&
|
2021-02-04 17:08:04 +01:00
|
|
|
Object.keys(this.webInstances).length === Object.keys(link.webInstances).length &&
|
|
|
|
Object.keys(this.webInstances).every(k => this.webInstances[k] === link.webInstances[k]);
|
2021-07-23 13:25:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
toFragment() {
|
|
|
|
if (this.eventId) {
|
|
|
|
return `/${this.identifier}/${this.eventId}`;
|
|
|
|
} else {
|
|
|
|
return `/${this.identifier}`;
|
|
|
|
}
|
|
|
|
}
|
2020-11-27 17:05:20 +01:00
|
|
|
}
|