2016-08-11 00:11:49 +08:00
|
|
|
/*
|
2021-06-16 17:18:32 +08:00
|
|
|
Copyright 2016 - 2021 The Matrix.org Foundation C.I.C.
|
2016-08-11 00:11:49 +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.
|
|
|
|
*/
|
|
|
|
|
2023-02-28 18:31:48 +08:00
|
|
|
import React, { ComponentProps } from "react";
|
2021-06-16 17:18:32 +08:00
|
|
|
import { Room } from "matrix-js-sdk/src/models/room";
|
|
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
2021-06-24 17:03:32 +08:00
|
|
|
import { User } from "matrix-js-sdk/src/models/user";
|
2021-10-23 06:23:32 +08:00
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2022-05-04 05:04:37 +08:00
|
|
|
import { EventType } from "matrix-js-sdk/src/@types/event";
|
2023-05-23 23:24:12 +08:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
2021-06-16 17:18:32 +08:00
|
|
|
|
|
|
|
import { MatrixClientPeg } from "./MatrixClientPeg";
|
|
|
|
import MultiInviter, { CompletionStates } from "./utils/MultiInviter";
|
2017-08-15 17:57:24 +08:00
|
|
|
import Modal from "./Modal";
|
2017-08-15 00:43:00 +08:00
|
|
|
import { _t } from "./languageHandler";
|
2022-03-25 06:30:53 +08:00
|
|
|
import InviteDialog from "./components/views/dialogs/InviteDialog";
|
2021-06-24 17:03:32 +08:00
|
|
|
import BaseAvatar from "./components/views/avatars/BaseAvatar";
|
|
|
|
import { mediaFromMxc } from "./customisations/Media";
|
2021-07-02 18:12:41 +08:00
|
|
|
import ErrorDialog from "./components/views/dialogs/ErrorDialog";
|
2023-02-28 18:31:48 +08:00
|
|
|
import { InviteKind } from "./components/views/dialogs/InviteDialogTypes";
|
2022-04-14 23:52:12 +08:00
|
|
|
import { Member } from "./utils/direct-messages";
|
2016-08-11 00:11:49 +08:00
|
|
|
|
2021-06-16 18:48:14 +08:00
|
|
|
export interface IInviteResult {
|
|
|
|
states: CompletionStates;
|
|
|
|
inviter: MultiInviter;
|
|
|
|
}
|
|
|
|
|
2016-09-13 21:47:56 +08:00
|
|
|
/**
|
|
|
|
* Invites multiple addresses to a room
|
|
|
|
* Simpler interface to utils/MultiInviter but with
|
|
|
|
* no option to cancel.
|
|
|
|
*
|
2017-08-15 20:50:15 +08:00
|
|
|
* @param {string} roomId The ID of the room to invite to
|
2021-06-16 17:18:32 +08:00
|
|
|
* @param {string[]} addresses Array of strings of addresses to invite. May be matrix IDs or 3pids.
|
2022-01-28 18:02:37 +08:00
|
|
|
* @param {boolean} sendSharedHistoryKeys whether to share e2ee keys with the invitees if applicable.
|
2021-09-30 20:43:59 +08:00
|
|
|
* @param {function} progressCallback optional callback, fired after each invite.
|
2017-08-15 20:50:15 +08:00
|
|
|
* @returns {Promise} Promise
|
2016-09-13 21:47:56 +08:00
|
|
|
*/
|
2021-09-30 20:43:59 +08:00
|
|
|
export function inviteMultipleToRoom(
|
2023-05-23 23:24:12 +08:00
|
|
|
client: MatrixClient,
|
2021-09-30 20:43:59 +08:00
|
|
|
roomId: string,
|
|
|
|
addresses: string[],
|
2022-01-28 18:02:37 +08:00
|
|
|
sendSharedHistoryKeys = false,
|
2021-09-30 20:43:59 +08:00
|
|
|
progressCallback?: () => void,
|
|
|
|
): Promise<IInviteResult> {
|
2023-05-23 23:24:12 +08:00
|
|
|
const inviter = new MultiInviter(client, roomId, progressCallback);
|
2022-01-28 18:02:37 +08:00
|
|
|
return inviter
|
|
|
|
.invite(addresses, undefined, sendSharedHistoryKeys)
|
|
|
|
.then((states) => Promise.resolve({ states, inviter }));
|
2016-09-13 21:55:16 +08:00
|
|
|
}
|
2016-09-13 21:51:46 +08:00
|
|
|
|
2021-06-16 17:18:32 +08:00
|
|
|
export function showStartChatInviteDialog(initialText = ""): void {
|
2020-01-23 12:14:53 +08:00
|
|
|
// This dialog handles the room creation internally - we don't need to worry about it.
|
2022-06-15 00:51:51 +08:00
|
|
|
Modal.createDialog(
|
|
|
|
InviteDialog,
|
2023-02-28 18:31:48 +08:00
|
|
|
{ kind: InviteKind.Dm, initialText },
|
2022-06-02 21:59:40 +08:00
|
|
|
/*className=*/ "mx_InviteDialog_flexWrapper",
|
|
|
|
/*isPriority=*/ false,
|
|
|
|
/*isStatic=*/ true,
|
2020-01-23 12:14:53 +08:00
|
|
|
);
|
2017-08-15 00:43:00 +08:00
|
|
|
}
|
|
|
|
|
2021-06-16 17:18:32 +08:00
|
|
|
export function showRoomInviteDialog(roomId: string, initialText = ""): void {
|
2020-01-23 12:14:53 +08:00
|
|
|
// This dialog handles the room creation internally - we don't need to worry about it.
|
2022-06-15 00:51:51 +08:00
|
|
|
Modal.createDialog(
|
|
|
|
InviteDialog,
|
|
|
|
{
|
2023-02-28 18:31:48 +08:00
|
|
|
kind: InviteKind.Invite,
|
2021-03-24 23:36:20 +08:00
|
|
|
initialText,
|
2021-03-02 18:07:43 +08:00
|
|
|
roomId,
|
2023-02-28 18:31:48 +08:00
|
|
|
} as Omit<ComponentProps<typeof InviteDialog>, "onFinished">,
|
2022-06-02 21:59:40 +08:00
|
|
|
/*className=*/ "mx_InviteDialog_flexWrapper",
|
|
|
|
/*isPriority=*/ false,
|
|
|
|
/*isStatic=*/ true,
|
2020-01-23 12:14:53 +08:00
|
|
|
);
|
2017-08-15 00:43:00 +08:00
|
|
|
}
|
|
|
|
|
2019-03-30 01:45:07 +08:00
|
|
|
/**
|
|
|
|
* Checks if the given MatrixEvent is a valid 3rd party user invite.
|
|
|
|
* @param {MatrixEvent} event The event to check
|
|
|
|
* @returns {boolean} True if valid, false otherwise
|
|
|
|
*/
|
2021-06-16 17:18:32 +08:00
|
|
|
export function isValid3pidInvite(event: MatrixEvent): boolean {
|
2022-05-04 05:04:37 +08:00
|
|
|
if (!event || event.getType() !== EventType.RoomThirdPartyInvite) return false;
|
2019-03-30 01:45:07 +08:00
|
|
|
|
|
|
|
// any events without these keys are not valid 3pid invites, so we ignore them
|
|
|
|
const requiredKeys = ["key_validity_url", "public_key", "display_name"];
|
2022-05-04 05:04:37 +08:00
|
|
|
if (requiredKeys.some((key) => !event.getContent()[key])) {
|
|
|
|
return false;
|
2019-03-30 01:45:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Valid enough by our standards
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-01-28 18:02:37 +08:00
|
|
|
export function inviteUsersToRoom(
|
2023-05-23 23:24:12 +08:00
|
|
|
client: MatrixClient,
|
2022-01-28 18:02:37 +08:00
|
|
|
roomId: string,
|
|
|
|
userIds: string[],
|
|
|
|
sendSharedHistoryKeys = false,
|
|
|
|
progressCallback?: () => void,
|
|
|
|
): Promise<void> {
|
2023-05-23 23:24:12 +08:00
|
|
|
return inviteMultipleToRoom(client, roomId, userIds, sendSharedHistoryKeys, progressCallback)
|
2022-01-28 18:02:37 +08:00
|
|
|
.then((result) => {
|
2023-02-14 01:01:43 +08:00
|
|
|
const room = MatrixClientPeg.get().getRoom(roomId)!;
|
2020-08-26 11:02:32 +08:00
|
|
|
showAnyInviteErrors(result.states, room, result.inviter);
|
2017-08-15 00:43:00 +08:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
2021-10-15 22:30:53 +08:00
|
|
|
logger.error(err.stack);
|
2022-06-15 00:51:51 +08:00
|
|
|
Modal.createDialog(ErrorDialog, {
|
2017-08-15 00:43:00 +08:00
|
|
|
title: _t("Failed to invite"),
|
|
|
|
description: err && err.message ? err.message : _t("Operation failed"),
|
2022-12-12 19:24:14 +08:00
|
|
|
});
|
2017-08-15 00:43:00 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-06-24 17:03:32 +08:00
|
|
|
export function showAnyInviteErrors(
|
|
|
|
states: CompletionStates,
|
|
|
|
room: Room,
|
|
|
|
inviter: MultiInviter,
|
|
|
|
userMap?: Map<string, Member>,
|
|
|
|
): boolean {
|
2017-08-15 00:43:00 +08:00
|
|
|
// Show user any errors
|
2021-06-16 17:18:32 +08:00
|
|
|
const failedUsers = Object.keys(states).filter((a) => states[a] === "error");
|
2018-11-30 06:05:53 +08:00
|
|
|
if (failedUsers.length === 1 && inviter.fatal) {
|
|
|
|
// Just get the first message because there was a fatal problem on the first
|
|
|
|
// user. This usually means that no other users were attempted, making it
|
|
|
|
// pointless for us to list who failed exactly.
|
2022-06-15 00:51:51 +08:00
|
|
|
Modal.createDialog(ErrorDialog, {
|
2022-03-29 22:02:12 +08:00
|
|
|
title: _t("Failed to invite users to %(roomName)s", { roomName: room.name }),
|
2018-11-30 06:05:53 +08:00
|
|
|
description: inviter.getErrorText(failedUsers[0]),
|
2017-08-15 00:43:00 +08:00
|
|
|
});
|
2020-08-26 11:02:32 +08:00
|
|
|
return false;
|
2018-11-30 06:05:53 +08:00
|
|
|
} else {
|
2023-02-15 21:36:22 +08:00
|
|
|
const errorList: string[] = [];
|
2018-11-30 06:05:53 +08:00
|
|
|
for (const addr of failedUsers) {
|
2021-06-16 17:18:32 +08:00
|
|
|
if (states[addr] === "error") {
|
2018-11-30 06:05:53 +08:00
|
|
|
const reason = inviter.getErrorText(addr);
|
|
|
|
errorList.push(addr + ": " + reason);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-24 17:03:32 +08:00
|
|
|
const cli = MatrixClientPeg.get();
|
2018-11-30 06:05:53 +08:00
|
|
|
if (errorList.length > 0) {
|
2019-11-28 01:48:05 +08:00
|
|
|
// React 16 doesn't let us use `errorList.join(<br />)` anymore, so this is our solution
|
2021-06-24 17:03:32 +08:00
|
|
|
const description = (
|
|
|
|
<div className="mx_InviteDialog_multiInviterError">
|
|
|
|
<h4>
|
|
|
|
{_t(
|
|
|
|
"We sent the others, but the below people couldn't be invited to <RoomName/>",
|
|
|
|
{},
|
|
|
|
{
|
|
|
|
RoomName: () => <b>{room.name}</b>,
|
|
|
|
},
|
2022-12-12 19:24:14 +08:00
|
|
|
)}
|
2021-06-24 17:03:32 +08:00
|
|
|
</h4>
|
|
|
|
<div>
|
|
|
|
{failedUsers.map((addr) => {
|
|
|
|
const user = userMap?.get(addr) || cli.getUser(addr);
|
|
|
|
const name = (user as Member).name || (user as User).rawDisplayName;
|
|
|
|
const avatarUrl = (user as Member).getMxcAvatarUrl?.() || (user as User).avatarUrl;
|
2022-06-09 20:45:33 +08:00
|
|
|
return (
|
|
|
|
<div key={addr} className="mx_InviteDialog_tile mx_InviteDialog_tile--inviterError">
|
|
|
|
<div className="mx_InviteDialog_tile_avatarStack">
|
2021-06-24 17:03:32 +08:00
|
|
|
<BaseAvatar
|
2023-02-15 21:36:22 +08:00
|
|
|
url={
|
|
|
|
(avatarUrl && mediaFromMxc(avatarUrl).getSquareThumbnailHttp(24)) ??
|
|
|
|
undefined
|
|
|
|
}
|
|
|
|
name={name!}
|
2023-02-14 01:01:43 +08:00
|
|
|
idName={user?.userId}
|
2022-06-09 20:45:33 +08:00
|
|
|
width={36}
|
|
|
|
height={36}
|
2021-06-24 17:03:32 +08:00
|
|
|
/>
|
|
|
|
</div>
|
2022-06-09 20:45:33 +08:00
|
|
|
<div className="mx_InviteDialog_tile_nameStack">
|
|
|
|
<span className="mx_InviteDialog_tile_nameStack_name">{name}</span>
|
2023-02-14 01:01:43 +08:00
|
|
|
<span className="mx_InviteDialog_tile_nameStack_userId">{user?.userId}</span>
|
2022-06-09 20:45:33 +08:00
|
|
|
</div>
|
|
|
|
<div className="mx_InviteDialog_tile--inviterError_errorText">
|
2021-06-24 17:03:32 +08:00
|
|
|
{inviter.getErrorText(addr)}
|
2022-12-12 19:24:14 +08:00
|
|
|
</div>
|
2021-06-24 17:03:32 +08:00
|
|
|
</div>
|
|
|
|
);
|
2022-12-12 19:24:14 +08:00
|
|
|
})}
|
2021-06-24 17:03:32 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2019-11-28 01:48:05 +08:00
|
|
|
|
2022-06-15 00:51:51 +08:00
|
|
|
Modal.createDialog(ErrorDialog, {
|
2021-06-24 17:03:32 +08:00
|
|
|
title: _t("Some invites couldn't be sent"),
|
2019-11-28 01:44:36 +08:00
|
|
|
description,
|
2018-11-30 06:05:53 +08:00
|
|
|
});
|
2020-08-26 11:02:32 +08:00
|
|
|
return false;
|
2018-11-30 06:05:53 +08:00
|
|
|
}
|
2017-08-15 00:43:00 +08:00
|
|
|
}
|
2018-11-30 06:05:53 +08:00
|
|
|
|
2020-08-26 11:02:32 +08:00
|
|
|
return true;
|
2017-08-15 00:43:00 +08:00
|
|
|
}
|