1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/lib/models/MasterKey.ts

88 lines
2.1 KiB
TypeScript
Raw Normal View History

import BaseModel from '../BaseModel';
2021-08-17 13:03:19 +02:00
import { MasterKeyEntity } from '../services/e2ee/types';
import { localSyncInfo, saveLocalSyncInfo } from '../services/synchronizer/syncInfoUtils';
import BaseItem from './BaseItem';
import uuid from '../uuid';
export default class MasterKey extends BaseItem {
public static tableName() {
return 'master_keys';
}
public static modelType() {
return BaseModel.TYPE_MASTER_KEY;
}
public static encryptionSupported() {
return false;
}
public static latest() {
let output: MasterKeyEntity = null;
const syncInfo = localSyncInfo();
for (const mk of syncInfo.masterKeys) {
if (!output || output.updated_time < mk.updated_time) {
output = mk;
}
}
return output;
}
public static allWithoutEncryptionMethod(masterKeys: MasterKeyEntity[], methods: number[]) {
return masterKeys.filter(m => !methods.includes(m.encryption_method));
}
public static async all(): Promise<MasterKeyEntity[]> {
return localSyncInfo().masterKeys;
}
public static async allIds(): Promise<string[]> {
return localSyncInfo().masterKeys.map(k => k.id);
}
public static async count(): Promise<number> {
return localSyncInfo().masterKeys.length;
}
public static async load(id: string): Promise<MasterKeyEntity> {
return localSyncInfo().masterKeys.find(mk => mk.id === id);
}
public static async save(o: MasterKeyEntity): Promise<MasterKeyEntity> {
const syncInfo = localSyncInfo();
const masterKey = { ...o };
if (!masterKey.id) {
masterKey.id = uuid.create();
masterKey.created_time = Date.now();
}
masterKey.updated_time = Date.now();
const idx = syncInfo.masterKeys.findIndex(mk => mk.id === masterKey.id);
if (idx >= 0) {
syncInfo.masterKeys[idx] = masterKey;
} else {
syncInfo.masterKeys.push(masterKey);
}
saveLocalSyncInfo(syncInfo);
this.dispatch({
type: 'MASTERKEY_UPDATE_ONE',
item: masterKey,
});
return masterKey;
// return super.save(o, options).then(item => {
// this.dispatch({
// type: 'MASTERKEY_UPDATE_ONE',
// item: item,
// });
// return item;
// });
}
}