* optimize room typing members hook * remove unused code - WIP * remove old code from initMatrix * remove twemojify function * remove old sanitize util * delete old markdown util * delete Math atom component * uninstall unused dependencies * remove old notification system * decrypt message in inbox notification center and fix refresh in background * improve notification --------- Co-authored-by: Krishan <33421343+kfiven@users.noreply.github.com>
128 lines
3.1 KiB
JavaScript
128 lines
3.1 KiB
JavaScript
import EventEmitter from 'events';
|
|
import * as sdk from 'matrix-js-sdk';
|
|
import Olm from '@matrix-org/olm';
|
|
import { logger } from 'matrix-js-sdk/lib/logger';
|
|
|
|
import { getSecret } from './state/auth';
|
|
import { cryptoCallbacks } from './state/secretStorageKeys';
|
|
|
|
global.Olm = Olm;
|
|
|
|
if (import.meta.env.PROD) {
|
|
logger.disableAll();
|
|
}
|
|
|
|
class InitMatrix extends EventEmitter {
|
|
async init() {
|
|
if (this.matrixClient || this.initializing) {
|
|
console.warn('Client is already initialized!')
|
|
return;
|
|
}
|
|
this.initializing = true;
|
|
|
|
try {
|
|
await this.startClient();
|
|
this.setupSync();
|
|
this.listenEvents();
|
|
this.initializing = false;
|
|
} catch {
|
|
this.initializing = false;
|
|
}
|
|
}
|
|
|
|
async startClient() {
|
|
const indexedDBStore = new sdk.IndexedDBStore({
|
|
indexedDB: global.indexedDB,
|
|
localStorage: global.localStorage,
|
|
dbName: 'web-sync-store',
|
|
});
|
|
await indexedDBStore.startup();
|
|
const secret = getSecret();
|
|
|
|
this.matrixClient = sdk.createClient({
|
|
baseUrl: secret.baseUrl,
|
|
accessToken: secret.accessToken,
|
|
userId: secret.userId,
|
|
store: indexedDBStore,
|
|
cryptoStore: new sdk.IndexedDBCryptoStore(global.indexedDB, 'crypto-store'),
|
|
deviceId: secret.deviceId,
|
|
timelineSupport: true,
|
|
cryptoCallbacks,
|
|
verificationMethods: [
|
|
'm.sas.v1',
|
|
],
|
|
});
|
|
|
|
await this.matrixClient.initCrypto();
|
|
|
|
await this.matrixClient.startClient({
|
|
lazyLoadMembers: true,
|
|
});
|
|
this.matrixClient.setGlobalErrorOnUnknownDevices(false);
|
|
this.matrixClient.setMaxListeners(50);
|
|
}
|
|
|
|
setupSync() {
|
|
const sync = {
|
|
NULL: () => {
|
|
console.log('NULL state');
|
|
},
|
|
SYNCING: () => {
|
|
console.log('SYNCING state');
|
|
},
|
|
PREPARED: (prevState) => {
|
|
console.log('PREPARED state');
|
|
console.log('Previous state: ', prevState);
|
|
global.initMatrix = this;
|
|
if (prevState === null) {
|
|
this.emit('init_loading_finished');
|
|
}
|
|
},
|
|
RECONNECTING: () => {
|
|
console.log('RECONNECTING state');
|
|
},
|
|
CATCHUP: () => {
|
|
console.log('CATCHUP state');
|
|
},
|
|
ERROR: () => {
|
|
console.log('ERROR state');
|
|
},
|
|
STOPPED: () => {
|
|
console.log('STOPPED state');
|
|
},
|
|
};
|
|
this.matrixClient.on('sync', (state, prevState) => sync[state](prevState));
|
|
}
|
|
|
|
listenEvents() {
|
|
this.matrixClient.on('Session.logged_out', async () => {
|
|
this.matrixClient.stopClient();
|
|
await this.matrixClient.clearStores();
|
|
window.localStorage.clear();
|
|
window.location.reload();
|
|
});
|
|
}
|
|
|
|
async logout() {
|
|
this.matrixClient.stopClient();
|
|
try {
|
|
await this.matrixClient.logout();
|
|
} catch {
|
|
// ignore if failed to logout
|
|
}
|
|
await this.matrixClient.clearStores();
|
|
window.localStorage.clear();
|
|
window.location.reload();
|
|
}
|
|
|
|
clearCacheAndReload() {
|
|
this.matrixClient.stopClient();
|
|
this.matrixClient.store.deleteAllData().then(() => {
|
|
window.location.reload();
|
|
});
|
|
}
|
|
}
|
|
|
|
const initMatrix = new InitMatrix();
|
|
|
|
export default initMatrix;
|