2022-01-06 09:19:03 +08:00
|
|
|
/*
|
|
|
|
Copyright 2021 New Vector Ltd
|
|
|
|
|
|
|
|
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 React, {
|
|
|
|
useCallback,
|
|
|
|
useEffect,
|
|
|
|
useState,
|
|
|
|
createContext,
|
|
|
|
useMemo,
|
|
|
|
useContext,
|
|
|
|
} from "react";
|
|
|
|
import { useHistory } from "react-router-dom";
|
2022-02-11 09:10:36 +08:00
|
|
|
import { ErrorView } from "./FullScreenView";
|
2022-01-07 05:33:13 +08:00
|
|
|
import { initClient, defaultHomeserver } from "./matrix-utils";
|
2022-01-06 09:19:03 +08:00
|
|
|
|
|
|
|
const ClientContext = createContext();
|
|
|
|
|
|
|
|
export function ClientProvider({ children }) {
|
|
|
|
const history = useHistory();
|
|
|
|
const [
|
2022-02-11 09:10:36 +08:00
|
|
|
{ loading, isAuthenticated, isPasswordlessUser, client, userName, error },
|
2022-01-06 09:19:03 +08:00
|
|
|
setState,
|
|
|
|
] = useState({
|
|
|
|
loading: true,
|
|
|
|
isAuthenticated: false,
|
|
|
|
isPasswordlessUser: false,
|
|
|
|
client: undefined,
|
|
|
|
userName: null,
|
2022-02-11 09:10:36 +08:00
|
|
|
error: undefined,
|
2022-01-06 09:19:03 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
async function restore() {
|
|
|
|
try {
|
|
|
|
const authStore = localStorage.getItem("matrix-auth-store");
|
|
|
|
|
|
|
|
if (authStore) {
|
|
|
|
const {
|
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
access_token,
|
|
|
|
passwordlessUser,
|
|
|
|
tempPassword,
|
|
|
|
} = JSON.parse(authStore);
|
|
|
|
|
|
|
|
const client = await initClient({
|
|
|
|
baseUrl: defaultHomeserver,
|
|
|
|
accessToken: access_token,
|
|
|
|
userId: user_id,
|
|
|
|
deviceId: device_id,
|
|
|
|
});
|
|
|
|
|
|
|
|
localStorage.setItem(
|
|
|
|
"matrix-auth-store",
|
|
|
|
JSON.stringify({
|
|
|
|
user_id,
|
|
|
|
device_id,
|
|
|
|
access_token,
|
|
|
|
|
|
|
|
passwordlessUser,
|
|
|
|
tempPassword,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
return { client, passwordlessUser };
|
|
|
|
}
|
|
|
|
|
|
|
|
return { client: undefined };
|
|
|
|
} catch (err) {
|
2022-01-07 05:33:13 +08:00
|
|
|
console.error(err);
|
2022-01-06 09:19:03 +08:00
|
|
|
localStorage.removeItem("matrix-auth-store");
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
restore()
|
|
|
|
.then(({ client, passwordlessUser }) => {
|
|
|
|
setState({
|
|
|
|
client,
|
|
|
|
loading: false,
|
|
|
|
isAuthenticated: !!client,
|
|
|
|
isPasswordlessUser: !!passwordlessUser,
|
|
|
|
userName: client?.getUserIdLocalpart(),
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setState({
|
|
|
|
client: undefined,
|
|
|
|
loading: false,
|
|
|
|
isAuthenticated: false,
|
|
|
|
isPasswordlessUser: false,
|
|
|
|
userName: null,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const changePassword = useCallback(
|
|
|
|
async (password) => {
|
|
|
|
const { tempPassword, passwordlessUser, ...existingSession } = JSON.parse(
|
|
|
|
localStorage.getItem("matrix-auth-store")
|
|
|
|
);
|
|
|
|
|
|
|
|
await client.setPassword(
|
|
|
|
{
|
|
|
|
type: "m.login.password",
|
|
|
|
identifier: {
|
|
|
|
type: "m.id.user",
|
|
|
|
user: existingSession.user_id,
|
|
|
|
},
|
|
|
|
user: existingSession.user_id,
|
|
|
|
password: tempPassword,
|
|
|
|
},
|
|
|
|
password
|
|
|
|
);
|
|
|
|
|
|
|
|
localStorage.setItem(
|
|
|
|
"matrix-auth-store",
|
|
|
|
JSON.stringify({
|
|
|
|
...existingSession,
|
|
|
|
passwordlessUser: false,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
setState({
|
|
|
|
client,
|
|
|
|
loading: false,
|
|
|
|
isAuthenticated: true,
|
|
|
|
isPasswordlessUser: false,
|
|
|
|
userName: client.getUserIdLocalpart(),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
[client]
|
|
|
|
);
|
|
|
|
|
|
|
|
const setClient = useCallback((client, session) => {
|
|
|
|
if (client) {
|
|
|
|
localStorage.setItem("matrix-auth-store", JSON.stringify(session));
|
|
|
|
|
|
|
|
setState({
|
|
|
|
client,
|
|
|
|
loading: false,
|
|
|
|
isAuthenticated: true,
|
|
|
|
isPasswordlessUser: !!session.passwordlessUser,
|
|
|
|
userName: client.getUserIdLocalpart(),
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
localStorage.removeItem("matrix-auth-store");
|
|
|
|
|
|
|
|
setState({
|
|
|
|
client: undefined,
|
|
|
|
loading: false,
|
|
|
|
isAuthenticated: false,
|
|
|
|
isPasswordlessUser: false,
|
|
|
|
userName: null,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const logout = useCallback(() => {
|
|
|
|
localStorage.removeItem("matrix-auth-store");
|
|
|
|
window.location = "/";
|
|
|
|
}, [history]);
|
|
|
|
|
2022-02-11 09:10:36 +08:00
|
|
|
useEffect(() => {
|
|
|
|
if ("BroadcastChannel" in window) {
|
|
|
|
const loadTime = Date.now();
|
|
|
|
const broadcastChannel = new BroadcastChannel("matrix-video-chat");
|
|
|
|
|
|
|
|
function onMessage({ data }) {
|
|
|
|
if (data.load !== undefined && data.load > loadTime) {
|
|
|
|
if (client) {
|
|
|
|
client.stopClient();
|
|
|
|
}
|
|
|
|
|
|
|
|
setState((prev) => ({
|
|
|
|
...prev,
|
|
|
|
error: new Error(
|
|
|
|
"This application has been opened in another tab."
|
|
|
|
),
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
broadcastChannel.addEventListener("message", onMessage);
|
|
|
|
broadcastChannel.postMessage({ load: loadTime });
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
broadcastChannel.removeEventListener("message", onMessage);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}, [client]);
|
|
|
|
|
2022-01-06 09:19:03 +08:00
|
|
|
const context = useMemo(
|
|
|
|
() => ({
|
|
|
|
loading,
|
|
|
|
isAuthenticated,
|
|
|
|
isPasswordlessUser,
|
|
|
|
client,
|
|
|
|
changePassword,
|
|
|
|
logout,
|
|
|
|
userName,
|
|
|
|
setClient,
|
|
|
|
}),
|
|
|
|
[
|
|
|
|
loading,
|
|
|
|
isAuthenticated,
|
|
|
|
isPasswordlessUser,
|
|
|
|
client,
|
|
|
|
changePassword,
|
|
|
|
logout,
|
|
|
|
userName,
|
|
|
|
setClient,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
2022-02-11 09:10:36 +08:00
|
|
|
if (error) {
|
|
|
|
return <ErrorView error={error} />;
|
|
|
|
}
|
|
|
|
|
2022-01-06 09:19:03 +08:00
|
|
|
return (
|
|
|
|
<ClientContext.Provider value={context}>{children}</ClientContext.Provider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useClient() {
|
|
|
|
return useContext(ClientContext);
|
|
|
|
}
|