mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-21 00:28:08 +08:00
414 lines
11 KiB
TypeScript
414 lines
11 KiB
TypeScript
/*
|
|
Copyright 2021-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import {
|
|
FC,
|
|
useCallback,
|
|
useEffect,
|
|
useState,
|
|
createContext,
|
|
useContext,
|
|
useRef,
|
|
useMemo,
|
|
} from "react";
|
|
import { useHistory } from "react-router-dom";
|
|
import {
|
|
ClientEvent,
|
|
ICreateClientOpts,
|
|
MatrixClient,
|
|
} from "matrix-js-sdk/src/client";
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
import { useTranslation } from "react-i18next";
|
|
import { ISyncStateData, SyncState } from "matrix-js-sdk/src/sync";
|
|
import { MatrixError } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { ErrorView } from "./FullScreenView";
|
|
import { fallbackICEServerAllowed, initClient } from "./utils/matrix";
|
|
import { widget } from "./widget";
|
|
import {
|
|
PosthogAnalytics,
|
|
RegistrationType,
|
|
} from "./analytics/PosthogAnalytics";
|
|
import { translatedError } from "./TranslatedError";
|
|
import { useEventTarget } from "./useEvents";
|
|
import { Config } from "./config/Config";
|
|
|
|
declare global {
|
|
interface Window {
|
|
matrixclient: MatrixClient;
|
|
passwordlessUser: boolean;
|
|
}
|
|
}
|
|
|
|
export type ClientState = ValidClientState | ErrorState;
|
|
|
|
export type ValidClientState = {
|
|
state: "valid";
|
|
authenticated?: AuthenticatedClient;
|
|
// 'Disconnected' rather than 'connected' because it tracks specifically
|
|
// whether the client is supposed to be connected but is not
|
|
disconnected: boolean;
|
|
setClient: (params?: SetClientParams) => void;
|
|
};
|
|
|
|
export type AuthenticatedClient = {
|
|
client: MatrixClient;
|
|
isPasswordlessUser: boolean;
|
|
changePassword: (password: string) => Promise<void>;
|
|
logout: () => void;
|
|
};
|
|
|
|
export type ErrorState = {
|
|
state: "error";
|
|
error: Error;
|
|
};
|
|
|
|
export type SetClientParams = {
|
|
client: MatrixClient;
|
|
session: Session;
|
|
};
|
|
|
|
const ClientContext = createContext<ClientState | undefined>(undefined);
|
|
|
|
export const useClientState = (): ClientState | undefined =>
|
|
useContext(ClientContext);
|
|
|
|
export function useClient(): {
|
|
client?: MatrixClient;
|
|
setClient?: (params?: SetClientParams) => void;
|
|
} {
|
|
let client;
|
|
let setClient;
|
|
|
|
const clientState = useClientState();
|
|
if (clientState?.state === "valid") {
|
|
client = clientState.authenticated?.client;
|
|
setClient = clientState.setClient;
|
|
}
|
|
|
|
return { client, setClient };
|
|
}
|
|
|
|
// Plain representation of the `ClientContext` as a helper for old components that expected an object with multiple fields.
|
|
export function useClientLegacy(): {
|
|
client?: MatrixClient;
|
|
setClient?: (params?: SetClientParams) => void;
|
|
passwordlessUser: boolean;
|
|
loading: boolean;
|
|
authenticated: boolean;
|
|
logout?: () => void;
|
|
error?: Error;
|
|
} {
|
|
const clientState = useClientState();
|
|
|
|
let client;
|
|
let setClient;
|
|
let passwordlessUser = false;
|
|
let loading = true;
|
|
let error;
|
|
let authenticated = false;
|
|
let logout;
|
|
|
|
if (clientState?.state === "valid") {
|
|
client = clientState.authenticated?.client;
|
|
setClient = clientState.setClient;
|
|
passwordlessUser = clientState.authenticated?.isPasswordlessUser ?? false;
|
|
loading = false;
|
|
authenticated = client !== undefined;
|
|
logout = clientState.authenticated?.logout;
|
|
} else if (clientState?.state === "error") {
|
|
error = clientState.error;
|
|
loading = false;
|
|
}
|
|
|
|
return {
|
|
client,
|
|
setClient,
|
|
passwordlessUser,
|
|
loading,
|
|
authenticated,
|
|
logout,
|
|
error,
|
|
};
|
|
}
|
|
|
|
const loadChannel =
|
|
"BroadcastChannel" in window ? new BroadcastChannel("load") : null;
|
|
|
|
interface Props {
|
|
children: JSX.Element;
|
|
}
|
|
|
|
export const ClientProvider: FC<Props> = ({ children }) => {
|
|
const history = useHistory();
|
|
|
|
// null = signed out, undefined = loading
|
|
const [initClientState, setInitClientState] = useState<
|
|
InitResult | null | undefined
|
|
>(undefined);
|
|
|
|
const initializing = useRef(false);
|
|
useEffect(() => {
|
|
// In case the component is mounted, unmounted, and remounted quickly (as
|
|
// React does in strict mode), we need to make sure not to doubly initialize
|
|
// the client.
|
|
if (initializing.current) return;
|
|
initializing.current = true;
|
|
|
|
loadClient()
|
|
.then(setInitClientState)
|
|
.catch((err) => logger.error(err))
|
|
.finally(() => (initializing.current = false));
|
|
}, []);
|
|
|
|
const changePassword = useCallback(
|
|
async (password: string) => {
|
|
const session = loadSession();
|
|
if (!initClientState?.client || !session) {
|
|
return;
|
|
}
|
|
|
|
await initClientState.client.setPassword(
|
|
{
|
|
type: "m.login.password",
|
|
identifier: {
|
|
type: "m.id.user",
|
|
user: session.user_id,
|
|
},
|
|
user: session.user_id,
|
|
password: session.tempPassword,
|
|
},
|
|
password,
|
|
);
|
|
|
|
saveSession({ ...session, passwordlessUser: false });
|
|
|
|
setInitClientState({
|
|
client: initClientState.client,
|
|
passwordlessUser: false,
|
|
});
|
|
},
|
|
[initClientState?.client],
|
|
);
|
|
|
|
const setClient = useCallback(
|
|
(clientParams?: SetClientParams) => {
|
|
const oldClient = initClientState?.client;
|
|
const newClient = clientParams?.client;
|
|
if (oldClient && oldClient !== newClient) {
|
|
oldClient.stopClient();
|
|
}
|
|
|
|
if (clientParams) {
|
|
saveSession(clientParams.session);
|
|
setInitClientState({
|
|
client: clientParams.client,
|
|
passwordlessUser: clientParams.session.passwordlessUser,
|
|
});
|
|
} else {
|
|
clearSession();
|
|
setInitClientState(null);
|
|
}
|
|
},
|
|
[initClientState?.client],
|
|
);
|
|
|
|
const logout = useCallback(async () => {
|
|
const client = initClientState?.client;
|
|
if (!client) {
|
|
return;
|
|
}
|
|
|
|
await client.logout(true);
|
|
await client.clearStores();
|
|
clearSession();
|
|
setInitClientState(null);
|
|
history.push("/");
|
|
PosthogAnalytics.instance.setRegistrationType(RegistrationType.Guest);
|
|
}, [history, initClientState?.client]);
|
|
|
|
const { t } = useTranslation();
|
|
|
|
// To protect against multiple sessions writing to the same storage
|
|
// simultaneously, we send a broadcast message that shuts down all other
|
|
// running instances of the app. This isn't necessary if the app is running in
|
|
// a widget though, since then it'll be mostly stateless.
|
|
useEffect(() => {
|
|
if (!widget) loadChannel?.postMessage({});
|
|
}, []);
|
|
|
|
const [alreadyOpenedErr, setAlreadyOpenedErr] = useState<Error | undefined>(
|
|
undefined,
|
|
);
|
|
useEventTarget(
|
|
loadChannel,
|
|
"message",
|
|
useCallback(() => {
|
|
initClientState?.client.stopClient();
|
|
setAlreadyOpenedErr(translatedError("application_opened_another_tab", t));
|
|
}, [initClientState?.client, setAlreadyOpenedErr, t]),
|
|
);
|
|
|
|
const [isDisconnected, setIsDisconnected] = useState(false);
|
|
|
|
const state: ClientState | undefined = useMemo(() => {
|
|
if (alreadyOpenedErr) {
|
|
return { state: "error", error: alreadyOpenedErr };
|
|
}
|
|
|
|
if (initClientState === undefined) return undefined;
|
|
|
|
const authenticated =
|
|
initClientState === null
|
|
? undefined
|
|
: {
|
|
client: initClientState.client,
|
|
isPasswordlessUser: initClientState.passwordlessUser,
|
|
changePassword,
|
|
logout,
|
|
};
|
|
|
|
return {
|
|
state: "valid",
|
|
authenticated,
|
|
setClient,
|
|
disconnected: isDisconnected,
|
|
};
|
|
}, [
|
|
alreadyOpenedErr,
|
|
changePassword,
|
|
initClientState,
|
|
logout,
|
|
setClient,
|
|
isDisconnected,
|
|
]);
|
|
|
|
const onSync = useCallback(
|
|
(state: SyncState, _old: SyncState | null, data?: ISyncStateData) => {
|
|
setIsDisconnected(clientIsDisconnected(state, data));
|
|
},
|
|
[],
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!initClientState) {
|
|
return;
|
|
}
|
|
|
|
window.matrixclient = initClientState.client;
|
|
window.passwordlessUser = initClientState.passwordlessUser;
|
|
|
|
if (PosthogAnalytics.hasInstance())
|
|
PosthogAnalytics.instance.onLoginStatusChanged();
|
|
|
|
if (initClientState.client) {
|
|
initClientState.client.on(ClientEvent.Sync, onSync);
|
|
}
|
|
|
|
return (): void => {
|
|
if (initClientState.client) {
|
|
initClientState.client.removeListener(ClientEvent.Sync, onSync);
|
|
}
|
|
};
|
|
}, [initClientState, onSync]);
|
|
|
|
if (alreadyOpenedErr) {
|
|
return <ErrorView error={alreadyOpenedErr} />;
|
|
}
|
|
|
|
return (
|
|
<ClientContext.Provider value={state}>{children}</ClientContext.Provider>
|
|
);
|
|
};
|
|
|
|
type InitResult = {
|
|
client: MatrixClient;
|
|
passwordlessUser: boolean;
|
|
};
|
|
|
|
async function loadClient(): Promise<InitResult | null> {
|
|
if (widget) {
|
|
// We're inside a widget, so let's engage *matryoshka mode*
|
|
logger.log("Using a matryoshka client");
|
|
const client = await widget.client;
|
|
return {
|
|
client,
|
|
passwordlessUser: false,
|
|
};
|
|
} else {
|
|
// We're running as a standalone application
|
|
try {
|
|
const session = loadSession();
|
|
if (!session) {
|
|
logger.log("No session stored; continuing without a client");
|
|
return null;
|
|
}
|
|
|
|
logger.log("Using a standalone client");
|
|
|
|
/* eslint-disable camelcase */
|
|
const { user_id, device_id, access_token, passwordlessUser } = session;
|
|
const initClientParams: ICreateClientOpts = {
|
|
baseUrl: Config.defaultHomeserverUrl()!,
|
|
accessToken: access_token,
|
|
userId: user_id,
|
|
deviceId: device_id,
|
|
fallbackICEServerAllowed: fallbackICEServerAllowed,
|
|
livekitServiceURL: Config.get().livekit?.livekit_service_url,
|
|
};
|
|
|
|
try {
|
|
const client = await initClient(initClientParams, true);
|
|
return {
|
|
client,
|
|
passwordlessUser,
|
|
};
|
|
} catch (err) {
|
|
if (err instanceof MatrixError && err.errcode === "M_UNKNOWN_TOKEN") {
|
|
// We can't use this session anymore, so let's log it out
|
|
logger.log(
|
|
"The session from local store is invalid; continuing without a client",
|
|
);
|
|
clearSession();
|
|
// returning null = "no client` pls register" (undefined = "loading" which is the current value when reaching this line)
|
|
return null;
|
|
}
|
|
throw err;
|
|
}
|
|
} catch (err) {
|
|
clearSession();
|
|
throw err;
|
|
}
|
|
}
|
|
}
|
|
|
|
export interface Session {
|
|
user_id: string;
|
|
device_id: string;
|
|
access_token: string;
|
|
passwordlessUser: boolean;
|
|
tempPassword?: string;
|
|
}
|
|
|
|
const clearSession = (): void => localStorage.removeItem("matrix-auth-store");
|
|
const saveSession = (s: Session): void =>
|
|
localStorage.setItem("matrix-auth-store", JSON.stringify(s));
|
|
const loadSession = (): Session | undefined => {
|
|
const data = localStorage.getItem("matrix-auth-store");
|
|
if (!data) {
|
|
return undefined;
|
|
}
|
|
|
|
return JSON.parse(data);
|
|
};
|
|
|
|
const clientIsDisconnected = (
|
|
syncState: SyncState,
|
|
syncData?: ISyncStateData,
|
|
): boolean =>
|
|
syncState === "ERROR" && syncData?.error?.name === "ConnectionError";
|