2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2021-08-23 22:17:36 +05:30
|
|
|
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
|
2020-08-05 22:08:55 +05:30
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-11-17 15:54:44 +05:30
|
|
|
import {createEnum} from "../utils/enum";
|
2021-08-23 22:56:39 +05:30
|
|
|
import {lookupHomeserver} from "./well-known.js";
|
2021-08-23 19:24:06 +05:30
|
|
|
import {AbortableOperation} from "../utils/AbortableOperation";
|
2021-09-30 06:00:21 +05:30
|
|
|
import {ObservableValue} from "../observable/ObservableValue";
|
2021-11-23 18:09:33 +05:30
|
|
|
import {HomeServerApi} from "./net/HomeServerApi";
|
2021-11-22 15:16:46 +05:30
|
|
|
import {Reconnector, ConnectionStatus} from "./net/Reconnector";
|
2021-11-21 21:12:28 +05:30
|
|
|
import {ExponentialRetryDelay} from "./net/ExponentialRetryDelay";
|
2021-11-22 12:39:33 +05:30
|
|
|
import {MediaRepository} from "./net/MediaRepository";
|
2021-11-23 11:58:15 +05:30
|
|
|
import {RequestScheduler} from "./net/RequestScheduler";
|
2020-04-20 23:18:21 +05:30
|
|
|
import {Sync, SyncStatus} from "./Sync.js";
|
2020-04-21 00:56:39 +05:30
|
|
|
import {Session} from "./Session.js";
|
2021-11-24 14:00:26 +05:30
|
|
|
import {PasswordLoginMethod} from "./login/PasswordLoginMethod";
|
2021-11-24 13:56:47 +05:30
|
|
|
import {TokenLoginMethod} from "./login/TokenLoginMethod";
|
2021-11-24 14:49:08 +05:30
|
|
|
import {SSOLoginHelper} from "./login/SSOLoginHelper";
|
2021-10-27 13:56:36 +05:30
|
|
|
import {getDehydratedDevice} from "./e2ee/Dehydration.js";
|
2022-01-05 12:45:41 +05:30
|
|
|
import {Registration} from "./registration/Registration";
|
2020-04-10 02:49:49 +05:30
|
|
|
|
2020-04-18 22:46:16 +05:30
|
|
|
export const LoadStatus = createEnum(
|
|
|
|
"NotLoading",
|
|
|
|
"Login",
|
|
|
|
"LoginFailed",
|
2021-10-26 22:17:46 +05:30
|
|
|
"QueryAccount", // check for dehydrated device after login
|
2021-10-27 18:38:53 +05:30
|
|
|
"AccountSetup", // asked to restore from dehydrated device if present, call sc.accountSetup.finish() to progress to the next stage
|
2020-04-10 02:49:49 +05:30
|
|
|
"Loading",
|
2020-09-08 20:46:34 +05:30
|
|
|
"SessionSetup", // upload e2ee keys, ...
|
2021-10-27 13:56:36 +05:30
|
|
|
"Migrating", // not used atm, but would fit here
|
2020-04-19 23:22:26 +05:30
|
|
|
"FirstSync",
|
2020-04-10 02:49:49 +05:30
|
|
|
"Error",
|
|
|
|
"Ready",
|
|
|
|
);
|
|
|
|
|
2020-04-18 22:46:16 +05:30
|
|
|
export const LoginFailure = createEnum(
|
2020-04-20 23:18:21 +05:30
|
|
|
"Connection",
|
2020-04-18 22:46:16 +05:30
|
|
|
"Credentials",
|
|
|
|
"Unknown",
|
|
|
|
);
|
|
|
|
|
2021-12-22 21:39:52 +05:30
|
|
|
export class Client {
|
2021-12-22 21:49:37 +05:30
|
|
|
constructor(platform) {
|
2020-10-26 20:14:11 +05:30
|
|
|
this._platform = platform;
|
2020-09-22 20:09:41 +05:30
|
|
|
this._sessionStartedByReconnector = false;
|
2020-04-18 22:46:16 +05:30
|
|
|
this._status = new ObservableValue(LoadStatus.NotLoading);
|
|
|
|
this._error = null;
|
|
|
|
this._loginFailure = null;
|
|
|
|
this._reconnector = null;
|
|
|
|
this._session = null;
|
|
|
|
this._sync = null;
|
2020-04-21 01:56:04 +05:30
|
|
|
this._sessionId = null;
|
|
|
|
this._storage = null;
|
2020-09-22 20:09:41 +05:30
|
|
|
this._requestScheduler = null;
|
2021-12-22 21:49:37 +05:30
|
|
|
this._olmPromise = platform.loadOlm();
|
|
|
|
this._workerPromise = platform.loadOlmWorker();
|
2021-10-27 18:38:53 +05:30
|
|
|
this._accountSetup = undefined;
|
2020-04-10 02:49:49 +05:30
|
|
|
}
|
|
|
|
|
2020-04-21 02:19:14 +05:30
|
|
|
createNewSessionId() {
|
2020-10-26 20:14:11 +05:30
|
|
|
return (Math.floor(this._platform.random() * Number.MAX_SAFE_INTEGER)).toString();
|
2020-04-10 02:49:49 +05:30
|
|
|
}
|
|
|
|
|
2020-10-09 20:33:38 +05:30
|
|
|
get sessionId() {
|
|
|
|
return this._sessionId;
|
|
|
|
}
|
|
|
|
|
2020-04-18 22:46:16 +05:30
|
|
|
async startWithExistingSession(sessionId) {
|
|
|
|
if (this._status.get() !== LoadStatus.NotLoading) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._status.set(LoadStatus.Loading);
|
2021-02-24 14:28:50 +05:30
|
|
|
await this._platform.logger.run("load session", async log => {
|
2021-02-23 23:52:25 +05:30
|
|
|
log.set("id", sessionId);
|
|
|
|
try {
|
|
|
|
const sessionInfo = await this._platform.sessionInfoStorage.get(sessionId);
|
|
|
|
if (!sessionInfo) {
|
|
|
|
throw new Error("Invalid session id: " + sessionId);
|
|
|
|
}
|
2021-10-26 22:17:46 +05:30
|
|
|
await this._loadSessionInfo(sessionInfo, null, log);
|
2021-02-23 23:52:25 +05:30
|
|
|
log.set("status", this._status.get());
|
|
|
|
} catch (err) {
|
|
|
|
log.catch(err);
|
|
|
|
this._error = err;
|
|
|
|
this._status.set(LoadStatus.Error);
|
2020-04-21 02:19:14 +05:30
|
|
|
}
|
2021-02-23 23:52:25 +05:30
|
|
|
});
|
2020-04-10 02:49:49 +05:30
|
|
|
}
|
|
|
|
|
2021-08-23 22:56:39 +05:30
|
|
|
_parseLoginOptions(options, homeserver) {
|
2021-08-15 12:24:37 +05:30
|
|
|
/*
|
|
|
|
Take server response and return new object which has two props password and sso which
|
2021-07-30 13:45:35 +05:30
|
|
|
implements LoginMethod
|
|
|
|
*/
|
|
|
|
const flows = options.flows;
|
2021-08-23 22:56:39 +05:30
|
|
|
const result = {homeserver};
|
2021-07-30 13:45:35 +05:30
|
|
|
for (const flow of flows) {
|
|
|
|
if (flow.type === "m.login.password") {
|
2021-08-23 22:56:39 +05:30
|
|
|
result.password = (username, password) => new PasswordLoginMethod({homeserver, username, password});
|
2021-07-30 13:45:35 +05:30
|
|
|
}
|
2021-08-15 12:24:37 +05:30
|
|
|
else if (flow.type === "m.login.sso" && flows.find(flow => flow.type === "m.login.token")) {
|
2021-08-23 22:56:39 +05:30
|
|
|
result.sso = new SSOLoginHelper(homeserver);
|
2021-08-15 12:24:37 +05:30
|
|
|
}
|
|
|
|
else if (flow.type === "m.login.token") {
|
2021-08-23 22:56:39 +05:30
|
|
|
result.token = loginToken => new TokenLoginMethod({homeserver, loginToken});
|
2021-08-15 12:24:37 +05:30
|
|
|
}
|
2021-07-30 13:45:35 +05:30
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-08-23 22:56:39 +05:30
|
|
|
queryLogin(homeserver) {
|
2021-08-23 19:24:06 +05:30
|
|
|
return new AbortableOperation(async setAbortable => {
|
2021-08-23 22:56:39 +05:30
|
|
|
homeserver = await lookupHomeserver(homeserver, (url, options) => {
|
2021-08-23 22:17:36 +05:30
|
|
|
return setAbortable(this._platform.request(url, options));
|
|
|
|
});
|
2021-08-23 22:56:39 +05:30
|
|
|
const hsApi = new HomeServerApi({homeserver, request: this._platform.request});
|
2021-08-23 19:24:06 +05:30
|
|
|
const response = await setAbortable(hsApi.getLoginFlows()).response();
|
2021-08-23 22:56:39 +05:30
|
|
|
return this._parseLoginOptions(response, homeserver);
|
2021-08-23 19:24:06 +05:30
|
|
|
});
|
2021-07-27 19:23:46 +05:30
|
|
|
}
|
|
|
|
|
2022-04-27 12:27:19 +05:30
|
|
|
async startRegistration(homeserver, username, password, initialDeviceDisplayName, flowSelector) {
|
2022-01-05 12:45:41 +05:30
|
|
|
const request = this._platform.request;
|
|
|
|
const hsApi = new HomeServerApi({homeserver, request});
|
|
|
|
const registration = new Registration(hsApi, {
|
|
|
|
username,
|
|
|
|
password,
|
|
|
|
initialDeviceDisplayName,
|
2022-04-27 12:27:19 +05:30
|
|
|
},
|
|
|
|
flowSelector);
|
2022-02-03 15:10:56 +05:30
|
|
|
return registration;
|
2022-01-05 12:45:41 +05:30
|
|
|
}
|
|
|
|
|
2021-11-03 06:58:01 +05:30
|
|
|
async startWithLogin(loginMethod, {inspectAccountSetup} = {}) {
|
2021-08-20 20:05:36 +05:30
|
|
|
const currentStatus = this._status.get();
|
2021-08-23 15:12:40 +05:30
|
|
|
if (currentStatus !== LoadStatus.LoginFailed &&
|
|
|
|
currentStatus !== LoadStatus.NotLoading &&
|
|
|
|
currentStatus !== LoadStatus.Error) {
|
2020-04-18 22:46:16 +05:30
|
|
|
return;
|
|
|
|
}
|
2021-08-20 20:05:36 +05:30
|
|
|
this._resetStatus();
|
2021-02-24 14:28:50 +05:30
|
|
|
await this._platform.logger.run("login", async log => {
|
2021-02-23 23:52:25 +05:30
|
|
|
this._status.set(LoadStatus.Login);
|
|
|
|
const clock = this._platform.clock;
|
|
|
|
let sessionInfo;
|
|
|
|
try {
|
|
|
|
const request = this._platform.request;
|
2021-08-23 22:56:39 +05:30
|
|
|
const hsApi = new HomeServerApi({homeserver: loginMethod.homeserver, request});
|
2021-07-30 13:45:35 +05:30
|
|
|
const loginData = await loginMethod.login(hsApi, "Hydrogen", log);
|
2021-02-23 23:52:25 +05:30
|
|
|
const sessionId = this.createNewSessionId();
|
|
|
|
sessionInfo = {
|
|
|
|
id: sessionId,
|
|
|
|
deviceId: loginData.device_id,
|
|
|
|
userId: loginData.user_id,
|
2021-08-23 22:56:39 +05:30
|
|
|
homeServer: loginMethod.homeserver, // deprecate this over time
|
|
|
|
homeserver: loginMethod.homeserver,
|
2021-02-23 23:52:25 +05:30
|
|
|
accessToken: loginData.access_token,
|
|
|
|
lastUsed: clock.now()
|
|
|
|
};
|
|
|
|
log.set("id", sessionId);
|
|
|
|
} catch (err) {
|
|
|
|
this._error = err;
|
2021-04-09 20:00:53 +05:30
|
|
|
if (err.name === "HomeServerError") {
|
2021-02-23 23:52:25 +05:30
|
|
|
if (err.errcode === "M_FORBIDDEN") {
|
|
|
|
this._loginFailure = LoginFailure.Credentials;
|
|
|
|
} else {
|
|
|
|
this._loginFailure = LoginFailure.Unknown;
|
|
|
|
}
|
|
|
|
log.set("loginFailure", this._loginFailure);
|
|
|
|
this._status.set(LoadStatus.LoginFailed);
|
2021-04-09 20:00:53 +05:30
|
|
|
} else if (err.name === "ConnectionError") {
|
2021-02-23 23:52:25 +05:30
|
|
|
this._loginFailure = LoginFailure.Connection;
|
|
|
|
this._status.set(LoadStatus.LoginFailed);
|
2020-04-18 22:46:16 +05:30
|
|
|
} else {
|
2021-02-23 23:52:25 +05:30
|
|
|
this._status.set(LoadStatus.Error);
|
2020-04-18 22:46:16 +05:30
|
|
|
}
|
2021-02-23 23:52:25 +05:30
|
|
|
return;
|
|
|
|
}
|
2021-11-03 06:58:01 +05:30
|
|
|
let dehydratedDevice;
|
|
|
|
if (inspectAccountSetup) {
|
|
|
|
dehydratedDevice = await this._inspectAccountAfterLogin(sessionInfo, log);
|
|
|
|
if (dehydratedDevice) {
|
|
|
|
sessionInfo.deviceId = dehydratedDevice.deviceId;
|
|
|
|
}
|
2021-10-26 22:17:46 +05:30
|
|
|
}
|
|
|
|
await this._platform.sessionInfoStorage.add(sessionInfo);
|
2021-02-23 23:52:25 +05:30
|
|
|
// loading the session can only lead to
|
|
|
|
// LoadStatus.Error in case of an error,
|
|
|
|
// so separate try/catch
|
|
|
|
try {
|
2021-10-26 22:17:46 +05:30
|
|
|
await this._loadSessionInfo(sessionInfo, dehydratedDevice, log);
|
2021-02-23 23:52:25 +05:30
|
|
|
log.set("status", this._status.get());
|
|
|
|
} catch (err) {
|
|
|
|
log.catch(err);
|
2021-10-28 15:22:32 +05:30
|
|
|
// free olm Account that might be contained
|
|
|
|
dehydratedDevice?.dispose();
|
2021-02-23 23:52:25 +05:30
|
|
|
this._error = err;
|
2020-04-18 22:46:16 +05:30
|
|
|
this._status.set(LoadStatus.Error);
|
|
|
|
}
|
2021-02-23 23:52:25 +05:30
|
|
|
});
|
2020-04-10 02:49:49 +05:30
|
|
|
}
|
|
|
|
|
2021-10-26 22:17:46 +05:30
|
|
|
async _loadSessionInfo(sessionInfo, dehydratedDevice, log) {
|
2021-03-15 21:25:14 +05:30
|
|
|
log.set("appVersion", this._platform.version);
|
2020-10-26 20:14:11 +05:30
|
|
|
const clock = this._platform.clock;
|
2020-09-22 20:09:41 +05:30
|
|
|
this._sessionStartedByReconnector = false;
|
2020-04-18 22:46:16 +05:30
|
|
|
this._status.set(LoadStatus.Loading);
|
|
|
|
this._reconnector = new Reconnector({
|
2020-10-26 20:14:11 +05:30
|
|
|
onlineStatus: this._platform.onlineStatus,
|
|
|
|
retryDelay: new ExponentialRetryDelay(clock.createTimeout),
|
|
|
|
createMeasure: clock.createMeasure
|
2020-04-18 22:46:16 +05:30
|
|
|
});
|
|
|
|
const hsApi = new HomeServerApi({
|
2021-08-23 22:56:39 +05:30
|
|
|
homeserver: sessionInfo.homeServer,
|
2020-04-18 22:46:16 +05:30
|
|
|
accessToken: sessionInfo.accessToken,
|
2020-10-26 20:14:11 +05:30
|
|
|
request: this._platform.request,
|
2020-04-18 22:46:16 +05:30
|
|
|
reconnector: this._reconnector,
|
|
|
|
});
|
2020-04-21 01:56:04 +05:30
|
|
|
this._sessionId = sessionInfo.id;
|
2021-08-27 23:04:53 +05:30
|
|
|
this._storage = await this._platform.storageFactory.create(sessionInfo.id, log);
|
2020-04-18 22:46:16 +05:30
|
|
|
// no need to pass access token to session
|
|
|
|
const filteredSessionInfo = {
|
2021-03-19 01:14:16 +05:30
|
|
|
id: sessionInfo.id,
|
2020-04-18 22:46:16 +05:30
|
|
|
deviceId: sessionInfo.deviceId,
|
|
|
|
userId: sessionInfo.userId,
|
2021-08-23 22:56:39 +05:30
|
|
|
homeserver: sessionInfo.homeServer,
|
2020-04-18 22:46:16 +05:30
|
|
|
};
|
2020-08-27 16:54:55 +05:30
|
|
|
const olm = await this._olmPromise;
|
2020-09-11 14:13:17 +05:30
|
|
|
let olmWorker = null;
|
2020-09-10 22:11:23 +05:30
|
|
|
if (this._workerPromise) {
|
2020-09-11 14:13:17 +05:30
|
|
|
olmWorker = await this._workerPromise;
|
2020-09-10 22:11:23 +05:30
|
|
|
}
|
2020-10-26 20:14:11 +05:30
|
|
|
this._requestScheduler = new RequestScheduler({hsApi, clock});
|
2020-09-22 20:09:41 +05:30
|
|
|
this._requestScheduler.start();
|
2020-10-23 20:48:11 +05:30
|
|
|
const mediaRepository = new MediaRepository({
|
2021-08-23 22:56:39 +05:30
|
|
|
homeserver: sessionInfo.homeServer,
|
2020-10-30 19:48:27 +05:30
|
|
|
platform: this._platform,
|
2020-10-23 20:48:11 +05:30
|
|
|
});
|
2020-09-22 17:10:38 +05:30
|
|
|
this._session = new Session({
|
|
|
|
storage: this._storage,
|
|
|
|
sessionInfo: filteredSessionInfo,
|
2020-09-22 20:09:41 +05:30
|
|
|
hsApi: this._requestScheduler.hsApi,
|
2020-09-22 17:10:38 +05:30
|
|
|
olm,
|
|
|
|
olmWorker,
|
2020-10-26 21:38:29 +05:30
|
|
|
mediaRepository,
|
2020-10-26 20:14:11 +05:30
|
|
|
platform: this._platform,
|
2020-09-22 17:10:38 +05:30
|
|
|
});
|
2021-02-23 23:52:25 +05:30
|
|
|
await this._session.load(log);
|
2021-10-26 22:17:46 +05:30
|
|
|
if (dehydratedDevice) {
|
2021-10-27 13:56:36 +05:30
|
|
|
await log.wrap("dehydrateIdentity", log => this._session.dehydrateIdentity(dehydratedDevice, log));
|
2021-11-06 01:23:04 +05:30
|
|
|
await this._session.setupDehydratedDevice(dehydratedDevice.key, log);
|
2021-10-26 22:17:46 +05:30
|
|
|
} else if (!this._session.hasIdentity) {
|
2020-10-23 15:52:52 +05:30
|
|
|
this._status.set(LoadStatus.SessionSetup);
|
2021-02-23 23:52:25 +05:30
|
|
|
await log.wrap("createIdentity", log => this._session.createIdentity(log));
|
2020-10-23 15:52:52 +05:30
|
|
|
}
|
2020-04-18 22:46:16 +05:30
|
|
|
|
2021-02-12 23:26:26 +05:30
|
|
|
this._sync = new Sync({hsApi: this._requestScheduler.hsApi, storage: this._storage, session: this._session, logger: this._platform.logger});
|
2020-04-18 22:46:16 +05:30
|
|
|
// notify sync and session when back online
|
|
|
|
this._reconnectSubscription = this._reconnector.connectionStatus.subscribe(state => {
|
|
|
|
if (state === ConnectionStatus.Online) {
|
2021-02-23 23:52:25 +05:30
|
|
|
this._platform.logger.runDetached("reconnect", async log => {
|
|
|
|
// needs to happen before sync and session or it would abort all requests
|
|
|
|
this._requestScheduler.start();
|
|
|
|
this._sync.start();
|
|
|
|
this._sessionStartedByReconnector = true;
|
2021-10-29 22:47:31 +05:30
|
|
|
const d = dehydratedDevice;
|
|
|
|
dehydratedDevice = undefined;
|
|
|
|
await log.wrap("session start", log => this._session.start(this._reconnector.lastVersionsResponse, d, log));
|
2021-02-23 23:52:25 +05:30
|
|
|
});
|
2020-04-18 22:46:16 +05:30
|
|
|
}
|
|
|
|
});
|
2021-02-24 14:44:26 +05:30
|
|
|
await log.wrap("wait first sync", () => this._waitForFirstSync());
|
2021-10-26 16:19:31 +05:30
|
|
|
if (this._isDisposed) {
|
|
|
|
return;
|
|
|
|
}
|
2020-04-19 22:32:10 +05:30
|
|
|
this._status.set(LoadStatus.Ready);
|
|
|
|
|
2020-04-20 23:18:21 +05:30
|
|
|
// if the sync failed, and then the reconnector
|
|
|
|
// restored the connection, it would have already
|
|
|
|
// started to session, so check first
|
|
|
|
// to prevent an extra /versions request
|
2020-09-22 20:09:41 +05:30
|
|
|
if (!this._sessionStartedByReconnector) {
|
2021-02-23 23:52:25 +05:30
|
|
|
const lastVersionsResponse = await hsApi.versions({timeout: 10000, log}).response();
|
2021-10-26 16:19:31 +05:30
|
|
|
if (this._isDisposed) {
|
|
|
|
return;
|
|
|
|
}
|
2021-10-29 22:47:31 +05:30
|
|
|
const d = dehydratedDevice;
|
|
|
|
dehydratedDevice = undefined;
|
2021-02-23 23:52:25 +05:30
|
|
|
// log as ref as we don't want to await it
|
2021-10-29 22:47:31 +05:30
|
|
|
await log.wrap("session start", log => this._session.start(lastVersionsResponse, d, log));
|
2020-04-20 23:18:21 +05:30
|
|
|
}
|
2020-04-19 22:32:10 +05:30
|
|
|
}
|
|
|
|
|
2021-02-24 14:44:26 +05:30
|
|
|
async _waitForFirstSync() {
|
2021-04-09 19:58:14 +05:30
|
|
|
this._sync.start();
|
|
|
|
this._status.set(LoadStatus.FirstSync);
|
2020-04-18 22:46:16 +05:30
|
|
|
// only transition into Ready once the first sync has succeeded
|
2021-04-09 19:58:14 +05:30
|
|
|
this._waitForFirstSyncHandle = this._sync.status.waitFor(s => {
|
|
|
|
if (s === SyncStatus.Stopped) {
|
|
|
|
// keep waiting if there is a ConnectionError
|
|
|
|
// as the reconnector above will call
|
|
|
|
// sync.start again to retry in this case
|
2021-04-09 23:20:22 +05:30
|
|
|
return this._sync.error?.name !== "ConnectionError";
|
2021-04-09 19:58:14 +05:30
|
|
|
}
|
|
|
|
return s === SyncStatus.Syncing;
|
|
|
|
});
|
2020-04-19 22:32:10 +05:30
|
|
|
try {
|
|
|
|
await this._waitForFirstSyncHandle.promise;
|
2021-04-09 23:20:22 +05:30
|
|
|
if (this._sync.status.get() === SyncStatus.Stopped && this._sync.error) {
|
2020-11-06 01:52:29 +05:30
|
|
|
throw this._sync.error;
|
2020-06-27 02:56:24 +05:30
|
|
|
}
|
2020-04-19 22:32:10 +05:30
|
|
|
} catch (err) {
|
|
|
|
// if dispose is called from stop, bail out
|
2021-04-09 20:00:53 +05:30
|
|
|
if (err.name === "AbortError") {
|
2020-04-19 22:32:10 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
throw err;
|
|
|
|
} finally {
|
|
|
|
this._waitForFirstSyncHandle = null;
|
|
|
|
}
|
2020-04-18 22:46:16 +05:30
|
|
|
}
|
|
|
|
|
2021-10-27 13:56:36 +05:30
|
|
|
_inspectAccountAfterLogin(sessionInfo, log) {
|
|
|
|
return log.wrap("inspectAccount", async log => {
|
|
|
|
this._status.set(LoadStatus.QueryAccount);
|
|
|
|
const hsApi = new HomeServerApi({
|
|
|
|
homeserver: sessionInfo.homeServer,
|
|
|
|
accessToken: sessionInfo.accessToken,
|
|
|
|
request: this._platform.request,
|
|
|
|
});
|
|
|
|
const olm = await this._olmPromise;
|
2021-11-25 20:08:13 +05:30
|
|
|
let encryptedDehydratedDevice;
|
|
|
|
try {
|
|
|
|
encryptedDehydratedDevice = await getDehydratedDevice(hsApi, olm, this._platform, log);
|
|
|
|
} catch (err) {
|
2021-11-25 20:12:36 +05:30
|
|
|
if (err.name === "HomeServerError") {
|
2021-11-25 20:08:13 +05:30
|
|
|
log.set("not_supported", true);
|
|
|
|
} else {
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
2021-10-27 13:56:36 +05:30
|
|
|
if (encryptedDehydratedDevice) {
|
|
|
|
let resolveStageFinish;
|
|
|
|
const promiseStageFinish = new Promise(r => resolveStageFinish = r);
|
|
|
|
this._accountSetup = new AccountSetup(encryptedDehydratedDevice, resolveStageFinish);
|
2021-10-27 18:38:53 +05:30
|
|
|
this._status.set(LoadStatus.AccountSetup);
|
2021-10-27 13:56:36 +05:30
|
|
|
await promiseStageFinish;
|
|
|
|
const dehydratedDevice = this._accountSetup?._dehydratedDevice;
|
|
|
|
this._accountSetup = null;
|
|
|
|
return dehydratedDevice;
|
|
|
|
}
|
2021-10-26 22:17:46 +05:30
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
get accountSetup() {
|
|
|
|
return this._accountSetup;
|
|
|
|
}
|
2020-04-18 22:46:16 +05:30
|
|
|
|
|
|
|
get loadStatus() {
|
|
|
|
return this._status;
|
|
|
|
}
|
|
|
|
|
|
|
|
get loadError() {
|
|
|
|
return this._error;
|
|
|
|
}
|
|
|
|
|
2021-08-20 15:19:42 +05:30
|
|
|
get loginFailure() {
|
|
|
|
return this._loginFailure;
|
|
|
|
}
|
|
|
|
|
2020-04-18 22:46:16 +05:30
|
|
|
/** only set at loadStatus InitialSync, CatchupSync or Ready */
|
2020-04-10 02:49:49 +05:30
|
|
|
get sync() {
|
|
|
|
return this._sync;
|
|
|
|
}
|
|
|
|
|
2020-04-18 22:46:16 +05:30
|
|
|
/** only set at loadStatus InitialSync, CatchupSync or Ready */
|
2020-04-10 02:49:49 +05:30
|
|
|
get session() {
|
|
|
|
return this._session;
|
|
|
|
}
|
|
|
|
|
2020-05-06 02:46:51 +05:30
|
|
|
get reconnector() {
|
|
|
|
return this._reconnector;
|
|
|
|
}
|
|
|
|
|
2021-10-26 16:19:31 +05:30
|
|
|
get _isDisposed() {
|
|
|
|
return !this._reconnector;
|
|
|
|
}
|
|
|
|
|
2022-01-17 20:59:01 +05:30
|
|
|
startLogout(sessionId) {
|
2021-10-28 15:17:31 +05:30
|
|
|
return this._platform.logger.run("logout", async log => {
|
2022-01-17 20:59:01 +05:30
|
|
|
this._sessionId = sessionId;
|
|
|
|
log.set("id", this._sessionId);
|
|
|
|
const sessionInfo = await this._platform.sessionInfoStorage.get(this._sessionId);
|
|
|
|
if (!sessionInfo) {
|
|
|
|
throw new Error(`Could not find session for id ${this._sessionId}`);
|
|
|
|
}
|
2021-10-28 15:17:31 +05:30
|
|
|
try {
|
2022-01-17 20:59:01 +05:30
|
|
|
const hsApi = new HomeServerApi({
|
|
|
|
homeserver: sessionInfo.homeServer,
|
|
|
|
accessToken: sessionInfo.accessToken,
|
|
|
|
request: this._platform.request
|
|
|
|
});
|
|
|
|
await hsApi.logout({log}).response();
|
2021-10-28 15:17:31 +05:30
|
|
|
} catch (err) {}
|
|
|
|
await this.deleteSession(log);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-09-18 16:41:10 +05:30
|
|
|
dispose() {
|
2020-08-28 17:28:42 +05:30
|
|
|
if (this._reconnectSubscription) {
|
|
|
|
this._reconnectSubscription();
|
|
|
|
this._reconnectSubscription = null;
|
|
|
|
}
|
2021-10-26 16:19:31 +05:30
|
|
|
this._reconnector = null;
|
2020-09-22 20:09:41 +05:30
|
|
|
if (this._requestScheduler) {
|
|
|
|
this._requestScheduler.stop();
|
2021-10-28 15:18:25 +05:30
|
|
|
this._requestScheduler = null;
|
2020-09-22 20:09:41 +05:30
|
|
|
}
|
2020-08-28 17:28:42 +05:30
|
|
|
if (this._sync) {
|
|
|
|
this._sync.stop();
|
2021-10-28 15:18:25 +05:30
|
|
|
this._sync = null;
|
2020-08-28 17:28:42 +05:30
|
|
|
}
|
|
|
|
if (this._session) {
|
2020-09-18 16:41:10 +05:30
|
|
|
this._session.dispose();
|
2021-10-28 15:18:25 +05:30
|
|
|
this._session = null;
|
2020-08-28 17:28:42 +05:30
|
|
|
}
|
2020-04-19 22:32:10 +05:30
|
|
|
if (this._waitForFirstSyncHandle) {
|
|
|
|
this._waitForFirstSyncHandle.dispose();
|
|
|
|
this._waitForFirstSyncHandle = null;
|
|
|
|
}
|
2020-04-21 01:56:04 +05:30
|
|
|
if (this._storage) {
|
|
|
|
this._storage.close();
|
2020-04-21 02:19:14 +05:30
|
|
|
this._storage = null;
|
2020-04-21 01:56:04 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-26 16:19:31 +05:30
|
|
|
async deleteSession(log) {
|
2020-04-21 01:56:04 +05:30
|
|
|
if (this._sessionId) {
|
2021-10-26 16:19:31 +05:30
|
|
|
// need to dispose first, so the storage is closed,
|
|
|
|
// and also first sync finishing won't call Session.start anymore,
|
|
|
|
// which assumes that the storage works.
|
|
|
|
this.dispose();
|
2020-04-21 01:56:04 +05:30
|
|
|
// if one fails, don't block the other from trying
|
|
|
|
// also, run in parallel
|
|
|
|
await Promise.all([
|
2021-10-26 16:19:31 +05:30
|
|
|
log.wrap("storageFactory", () => this._platform.storageFactory.delete(this._sessionId)),
|
|
|
|
log.wrap("sessionInfoStorage", () => this._platform.sessionInfoStorage.delete(this._sessionId)),
|
2020-04-21 01:56:04 +05:30
|
|
|
]);
|
|
|
|
this._sessionId = null;
|
|
|
|
}
|
2020-04-10 02:49:49 +05:30
|
|
|
}
|
2021-08-20 15:19:42 +05:30
|
|
|
|
2021-08-20 20:05:36 +05:30
|
|
|
_resetStatus() {
|
2021-08-20 15:19:42 +05:30
|
|
|
this._status.set(LoadStatus.NotLoading);
|
|
|
|
this._error = null;
|
|
|
|
this._loginFailure = null;
|
|
|
|
}
|
2020-04-18 22:46:16 +05:30
|
|
|
}
|
2021-10-26 22:17:46 +05:30
|
|
|
|
|
|
|
class AccountSetup {
|
|
|
|
constructor(encryptedDehydratedDevice, finishStage) {
|
|
|
|
this._encryptedDehydratedDevice = encryptedDehydratedDevice;
|
|
|
|
this._dehydratedDevice = undefined;
|
|
|
|
this._finishStage = finishStage;
|
|
|
|
}
|
|
|
|
|
|
|
|
get encryptedDehydratedDevice() {
|
|
|
|
return this._encryptedDehydratedDevice;
|
|
|
|
}
|
|
|
|
|
|
|
|
finish(dehydratedDevice) {
|
|
|
|
this._dehydratedDevice = dehydratedDevice;
|
|
|
|
this._finishStage();
|
|
|
|
}
|
|
|
|
}
|