2019-01-27 20:29:33 +00:00
|
|
|
import * as config from "../config.json"
|
2019-03-25 01:25:08 +00:00
|
|
|
import { Lock, Observable } from "@hibas123/utils"
|
2019-01-27 20:29:33 +00:00
|
|
|
|
|
|
|
import SecureFile, { IFile } from "@hibas123/secure-file-wrapper";
|
|
|
|
import * as b64 from "./helper/base64"
|
|
|
|
|
|
|
|
export class HttpError extends Error {
|
|
|
|
constructor(public status: number, public statusText: string) {
|
|
|
|
super(statusText);
|
|
|
|
console.log(statusText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// const newSymbol = Symbol("Symbol for new Notes")
|
|
|
|
|
|
|
|
export interface Note {
|
|
|
|
_id: string;
|
|
|
|
folder: string;
|
|
|
|
time: Date;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface DBNote extends Note {
|
|
|
|
__value: Uint8Array;
|
|
|
|
preview: Uint8Array;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface BaseNote extends Note {
|
|
|
|
preview: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ViewNote extends BaseNote {
|
|
|
|
__value: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
import * as aesjs from "aes-js";
|
|
|
|
import { sha256 } from "js-sha256"
|
|
|
|
import clonedeep = require("lodash.clonedeep");
|
|
|
|
import * as uuidv4 from "uuid/v4"
|
|
|
|
import IDB from "./helper/indexeddb";
|
|
|
|
import { Transaction } from "idb";
|
2019-03-05 02:48:31 +00:00
|
|
|
import Notifications, { MessageType } from "./notifications";
|
2019-01-27 20:29:33 +00:00
|
|
|
|
|
|
|
console.log(aesjs)
|
|
|
|
const Encoder = new TextEncoder();
|
|
|
|
const Decoder = new TextDecoder();
|
|
|
|
|
|
|
|
enum OpLogType {
|
|
|
|
CREATE,
|
|
|
|
CHANGE,
|
|
|
|
DELETE
|
|
|
|
}
|
|
|
|
|
|
|
|
interface OpLog {
|
|
|
|
/**
|
|
|
|
* Type of operation
|
|
|
|
*/
|
|
|
|
type: OpLogType;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The value
|
|
|
|
*/
|
|
|
|
values: {
|
|
|
|
value: Uint8Array,
|
|
|
|
preview: Uint8Array
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Date of change
|
|
|
|
*/
|
|
|
|
date: Date;
|
|
|
|
}
|
|
|
|
|
|
|
|
export type VaultList = { name: string, encrypted: boolean, id: string }[];
|
|
|
|
|
|
|
|
export interface IVault {
|
|
|
|
name: string;
|
|
|
|
id: string;
|
|
|
|
encrypted: boolean;
|
|
|
|
getAllNotes(): Promise<BaseNote[]>;
|
|
|
|
searchNote(term: string): Promise<BaseNote[]>
|
|
|
|
newNote(): ViewNote;
|
2019-03-05 02:48:31 +00:00
|
|
|
saveNote(note: ViewNote, date?: Date): Promise<void>;
|
2019-01-27 20:29:33 +00:00
|
|
|
getNote(id: string): Promise<ViewNote>;
|
|
|
|
deleteNote(id: string): Promise<void>;
|
|
|
|
}
|
|
|
|
|
2019-03-25 01:25:08 +00:00
|
|
|
const awaitTimeout = (ms: number) => new Promise<void>(resolve => setTimeout(resolve, ms));
|
|
|
|
|
2019-01-27 20:29:33 +00:00
|
|
|
class NotesProvider {
|
2019-03-25 01:25:08 +00:00
|
|
|
private notesObservableServer = new Observable<Note>()
|
2019-01-27 20:29:33 +00:00
|
|
|
public notesObservable = this.notesObservableServer.getPublicApi()
|
|
|
|
|
2019-03-25 01:25:08 +00:00
|
|
|
private syncObservableServer = new Observable<boolean>()
|
|
|
|
/**
|
|
|
|
* Will send false once finished and true on start
|
|
|
|
*/
|
2019-03-05 02:48:31 +00:00
|
|
|
public syncObservable = this.syncObservableServer.getPublicApi()
|
2019-01-27 20:29:33 +00:00
|
|
|
|
|
|
|
private database = new IDB("notes", ["notes", "oplog"]);
|
|
|
|
private noteDB = this.database.getStore<DBNote>("notes");
|
|
|
|
private oplogDB = this.database.getStore<{ id: string, logs: OpLog[] }>("oplog");
|
|
|
|
|
|
|
|
private vaultKeys = new Map<string, Uint8Array>();
|
|
|
|
|
|
|
|
|
|
|
|
public apiLock = new Lock();
|
|
|
|
public apiLockRls = this.apiLock.getLock()
|
|
|
|
|
|
|
|
private syncLock = new Lock();
|
|
|
|
|
|
|
|
private _secureFile: SecureFile;
|
|
|
|
|
|
|
|
private generalEncryption: Uint8Array = undefined;
|
|
|
|
|
2019-03-25 01:25:08 +00:00
|
|
|
private syncedObservableServer = new Observable<boolean>();
|
|
|
|
public syncedObservable = this.syncedObservableServer.getPublicApi();
|
|
|
|
|
|
|
|
public async isSynced() {
|
|
|
|
return (await this.oplogDB.getAll()).length <= 0
|
|
|
|
}
|
|
|
|
|
|
|
|
private _name;
|
|
|
|
public get name() {
|
|
|
|
return this._name;
|
|
|
|
}
|
|
|
|
|
2019-01-27 20:29:33 +00:00
|
|
|
loginRequired() {
|
|
|
|
return !localStorage.getItem("refreshtoken") || !this.generalEncryption;
|
|
|
|
}
|
|
|
|
|
|
|
|
login() {
|
|
|
|
window.location.href = `${config.auth_server}/auth?client_id=${config.client_id}&scope=${config.permission}&redirect_uri=${encodeURIComponent(config.callback_url)}&response_type=code`
|
|
|
|
}
|
|
|
|
|
|
|
|
async getToken(code: string) {
|
|
|
|
let req = await fetch(`${config.auth_server}/api/oauth/refresh?grant_type=authorization_code&client_id=${config.client_id}&code=${code}`);
|
|
|
|
let res = await req.json();
|
|
|
|
if (!res.error) {
|
|
|
|
localStorage.setItem("refreshtoken", res.token);
|
2019-03-25 01:25:08 +00:00
|
|
|
localStorage.setItem("name", res.profile.name);
|
|
|
|
this._name = res.profile.name;
|
2019-01-27 20:29:33 +00:00
|
|
|
let kb = this.passwordToKey(res.profile.enc_key);
|
|
|
|
localStorage.setItem("enc_key", b64.encode(kb));
|
|
|
|
this.generalEncryption = kb
|
|
|
|
} else {
|
|
|
|
return "Invalid Code"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor(public readonly baseurl = "") {
|
|
|
|
this._secureFile = new SecureFile(config.secure_file_server);
|
2019-03-25 01:25:08 +00:00
|
|
|
this._secureFile.jwtObservable.subscribe(async (callback) => {
|
2019-01-27 20:29:33 +00:00
|
|
|
let jwt = await this.getJWT();
|
|
|
|
callback(jwt);
|
|
|
|
})
|
|
|
|
|
|
|
|
let key = localStorage.getItem("enc_key");
|
|
|
|
if (key) {
|
|
|
|
this.generalEncryption = b64.decode(key)
|
|
|
|
}
|
2019-03-25 01:25:08 +00:00
|
|
|
this._name = localStorage.getItem("name");
|
2019-01-27 20:29:33 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 02:48:31 +00:00
|
|
|
public async start() {
|
|
|
|
const next = () => {
|
|
|
|
setTimeout(() => {
|
|
|
|
this.sync().then(() => next);
|
|
|
|
}, 30000)
|
|
|
|
}
|
2019-03-25 01:25:08 +00:00
|
|
|
this.syncedObservableServer.send((await this.oplogDB.getAll()).length <= 0);
|
|
|
|
let prs = this.apiLockRls.then(lock => lock.release());
|
|
|
|
prs.then(() => awaitTimeout(5000)).then(() => this.sync()).then(() => next());
|
|
|
|
return prs;
|
2019-01-27 20:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private async getJWT() {
|
|
|
|
let lock = await this.apiLock.getLock()
|
|
|
|
try {
|
|
|
|
console.log("Getting JWT");
|
|
|
|
let req = await fetch(config.auth_server + "/api/oauth/jwt?refreshtoken=" + localStorage.getItem("refreshtoken"));
|
|
|
|
if (req.status !== 200) {
|
2019-03-05 02:48:31 +00:00
|
|
|
Notifications.sendNotification("offline", MessageType.INFO);
|
|
|
|
throw new Error("Offline")
|
2019-01-27 20:29:33 +00:00
|
|
|
}
|
|
|
|
let res = await req.json();
|
|
|
|
if (res.error) {
|
|
|
|
console.log("Refresh token invalid, forward to login")
|
|
|
|
localStorage.removeItem("refreshtoken");
|
|
|
|
this.login()
|
|
|
|
throw new Error("Need login!")
|
|
|
|
} else {
|
|
|
|
return res.token
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
lock.release()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async Logout() {
|
|
|
|
localStorage.removeItem("refreshtoken");
|
|
|
|
window.location.reload();
|
|
|
|
}
|
|
|
|
|
2019-03-25 01:25:08 +00:00
|
|
|
async sync() {
|
2019-01-27 20:29:33 +00:00
|
|
|
const lock = await this.syncLock.getLock()
|
|
|
|
const log = (...message: any[]) => {
|
|
|
|
console.log("[SYNC]: ", ...message)
|
|
|
|
}
|
2019-03-25 01:25:08 +00:00
|
|
|
|
|
|
|
this.syncObservableServer.send(true);
|
2019-01-27 20:29:33 +00:00
|
|
|
log("Start")
|
|
|
|
try {
|
|
|
|
log("Fetching");
|
|
|
|
let [remotes, locals, oplogs] = await Promise.all([this._secureFile.list(), this.noteDB.getAll(), this.oplogDB.getAll()]);
|
|
|
|
log("Fetched");
|
|
|
|
// Create sync pairs (remote & local)
|
|
|
|
log("Building pairs");
|
|
|
|
let pairs: { local: DBNote, remote: IFile, id: string, oplog: OpLog[] }[] = [];
|
|
|
|
remotes.map(r => {
|
|
|
|
let lIdx = locals.findIndex(e => e._id === r._id);
|
|
|
|
let l: DBNote = undefined;
|
|
|
|
if (lIdx >= 0) {
|
|
|
|
l = locals[lIdx];
|
|
|
|
locals.splice(lIdx, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
let oIdx = oplogs.findIndex(e => e.id === r._id);
|
|
|
|
let oplog: OpLog[];
|
|
|
|
if (oIdx >= 0) {
|
|
|
|
oplog = oplogs[oIdx].logs;
|
|
|
|
oplogs.splice(oIdx, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pairs.push({
|
|
|
|
remote: r,
|
|
|
|
local: l,
|
|
|
|
oplog,
|
|
|
|
id: r._id
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
locals.forEach(l => {
|
|
|
|
let oIdx = oplogs.findIndex(e => e.id === l._id);
|
|
|
|
let oplog: OpLog[] = undefined;
|
|
|
|
if (oIdx >= 0) {
|
|
|
|
oplog = oplogs[oIdx].logs;
|
|
|
|
if (oplog.length <= 0) oplog = undefined;
|
|
|
|
oplogs.splice(oIdx, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pairs.push({
|
|
|
|
remote: undefined,
|
|
|
|
local: l,
|
|
|
|
oplog,
|
|
|
|
id: l._id
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
oplogs.forEach(oplog => {
|
|
|
|
if (!oplog) return;
|
|
|
|
if (oplog.logs.length > 0)
|
|
|
|
pairs.push({
|
|
|
|
remote: undefined,
|
|
|
|
local: undefined,
|
|
|
|
oplog: oplog.logs,
|
|
|
|
id: oplog.id
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
log("Pairs builded");
|
|
|
|
|
2019-03-05 02:48:31 +00:00
|
|
|
let stats = {
|
|
|
|
remote_change: 0,
|
|
|
|
remote_delete: 0,
|
|
|
|
remote_create: 0,
|
|
|
|
local_change: 0,
|
|
|
|
local_delete: 0,
|
|
|
|
do_nothing: 0,
|
|
|
|
error: 0
|
|
|
|
}
|
|
|
|
|
2019-01-27 20:29:33 +00:00
|
|
|
log("Start inspection");
|
|
|
|
for (let { local, remote, oplog, id } of pairs) {
|
|
|
|
const apply = async (old = false) => {
|
|
|
|
log("Apply OPLOG to", id);
|
|
|
|
for (let op of oplog) {
|
|
|
|
switch (op.type) {
|
|
|
|
case OpLogType.CHANGE:
|
|
|
|
log(id, "REMOTE CHANGE");
|
2019-03-05 02:48:31 +00:00
|
|
|
stats.remote_change++;
|
2019-01-27 20:29:33 +00:00
|
|
|
await this._secureFile.update(id, op.values.value, b64.encode(op.values.preview), op.date, old);
|
|
|
|
break;
|
|
|
|
case OpLogType.DELETE:
|
|
|
|
log(id, "REMOTE DELETE");
|
2019-03-05 02:48:31 +00:00
|
|
|
stats.remote_delete++;
|
2019-01-27 20:29:33 +00:00
|
|
|
if (old) break; // if the deletion is old, just ignore
|
|
|
|
await this._secureFile.delete(id)
|
|
|
|
break;
|
|
|
|
case OpLogType.CREATE:
|
|
|
|
log(id, "REMOTE CREATE");
|
2019-03-05 02:48:31 +00:00
|
|
|
stats.remote_create++;
|
2019-01-27 20:29:33 +00:00
|
|
|
await this._secureFile.create(
|
|
|
|
"",
|
|
|
|
op.values.value,
|
|
|
|
"binary",
|
|
|
|
local.folder,
|
|
|
|
b64.encode(op.values.preview),
|
|
|
|
id,
|
|
|
|
op.date
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 02:48:31 +00:00
|
|
|
const localChange = (id: string) => {
|
|
|
|
//TODO implement
|
|
|
|
}
|
|
|
|
|
2019-01-27 20:29:33 +00:00
|
|
|
const create = async () => {
|
|
|
|
log(id, "LOCAL CREATAE/UPDATE");
|
2019-03-05 02:48:31 +00:00
|
|
|
stats.local_change++;
|
2019-01-27 20:29:33 +00:00
|
|
|
let value = await this._secureFile.get(id);
|
|
|
|
let note: DBNote = {
|
|
|
|
_id: remote._id,
|
|
|
|
folder: remote.folder,
|
|
|
|
preview: b64.decode(remote.active.preview),
|
|
|
|
time: remote.active.time,
|
|
|
|
__value: new Uint8Array(value)
|
|
|
|
}
|
|
|
|
await this.noteDB.set(id, note);
|
2019-03-05 02:48:31 +00:00
|
|
|
localChange(id);
|
2019-01-27 20:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2019-03-05 02:48:31 +00:00
|
|
|
// log(id, "LRO: ", !!local, !!remote, !!oplog)
|
2019-01-27 20:29:33 +00:00
|
|
|
if (remote && !oplog) {
|
|
|
|
if (local) {
|
|
|
|
let old = remote.active.time.valueOf() > local.time.valueOf();
|
|
|
|
if (old)
|
|
|
|
await create()
|
2019-03-05 02:48:31 +00:00
|
|
|
else {
|
|
|
|
stats.do_nothing++;
|
2019-01-27 20:29:33 +00:00
|
|
|
log(id, "DO NOTHING");
|
2019-03-05 02:48:31 +00:00
|
|
|
}
|
2019-01-27 20:29:33 +00:00
|
|
|
} else {
|
|
|
|
await create()
|
|
|
|
}
|
|
|
|
} else if (!remote && local && !oplog) { // No local changes, but remote deleted
|
|
|
|
log("LOCAL DELETE");
|
2019-03-05 02:48:31 +00:00
|
|
|
stats.local_delete++;
|
2019-01-27 20:29:33 +00:00
|
|
|
await this.noteDB.delete(id);
|
2019-03-05 02:48:31 +00:00
|
|
|
localChange(id);
|
2019-01-27 20:29:33 +00:00
|
|
|
} else if (!remote && oplog) { // Remote does not exist, but oplog, just apply all changes including possible delete
|
|
|
|
await apply()
|
|
|
|
} else if (remote && oplog) {
|
|
|
|
let last = oplog[oplog.length - 1]
|
|
|
|
let old = remote.active.time.valueOf() > last.date.valueOf();
|
|
|
|
|
|
|
|
if (old)
|
|
|
|
await create() // Will recreate local entry
|
|
|
|
await apply(old) // Will apply changes to remote
|
|
|
|
} else {
|
|
|
|
log(id, "DO NOTHING");
|
2019-03-05 02:48:31 +00:00
|
|
|
stats.do_nothing++;
|
2019-01-27 20:29:33 +00:00
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
2019-03-05 02:48:31 +00:00
|
|
|
stats.error++;
|
|
|
|
Notifications.sendNotification("Error syncing: " + id, MessageType.ERROR);
|
2019-01-27 20:29:33 +00:00
|
|
|
}
|
|
|
|
await this.oplogDB.delete(id);
|
|
|
|
}
|
2019-03-05 02:48:31 +00:00
|
|
|
log("Stats", stats);
|
2019-03-25 01:25:08 +00:00
|
|
|
this.syncedObservableServer.send((await this.oplogDB.getAll()).length <= 0)
|
2019-01-27 20:29:33 +00:00
|
|
|
} finally {
|
|
|
|
log("Finished")
|
|
|
|
lock.release()
|
2019-03-25 01:25:08 +00:00
|
|
|
this.syncObservableServer.send(false);
|
2019-01-27 20:29:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 02:48:31 +00:00
|
|
|
public forgetVaultKey(vault_id: string) {
|
|
|
|
this.vaultKeys.delete(vault_id);
|
|
|
|
localStorage.removeItem("vault_" + vault_id);
|
|
|
|
}
|
|
|
|
|
2019-01-27 20:29:33 +00:00
|
|
|
public getVaultKey(vault_id: string) {
|
|
|
|
let key = this.vaultKeys.get(vault_id);
|
|
|
|
if (!key) {
|
|
|
|
let lsk = localStorage.getItem("vault_" + vault_id);
|
|
|
|
if (lsk) {
|
|
|
|
key = b64.decode(lsk);
|
|
|
|
this.vaultKeys.set(vault_id, key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
public saveVaultKey(vault_id: string, key: Uint8Array, permanent?: boolean) {
|
|
|
|
this.vaultKeys.set(vault_id, key);
|
|
|
|
if (permanent) {
|
|
|
|
localStorage.setItem("vault_" + vault_id, b64.encode(key));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public getVaults(): Promise<VaultList> {
|
|
|
|
return this.noteDB.getAll()
|
|
|
|
.then(notes => notes
|
|
|
|
.filter(e => Decoder.decode(e.preview) === "__VAULT__")
|
|
|
|
.map(e => {
|
|
|
|
let value = e.__value;
|
|
|
|
let encrypted = false;
|
2019-03-05 02:48:31 +00:00
|
|
|
if (this.decrypt(value) !== "__BASELINE__") encrypted = true;
|
2019-01-27 20:29:33 +00:00
|
|
|
return { name: e.folder, encrypted, id: e._id }
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
public async createVault(name: string, key?: Uint8Array) {
|
|
|
|
let vault: DBNote = {
|
|
|
|
__value: this.encrypt("__BASELINE__", key),
|
|
|
|
_id: uuidv4(),
|
|
|
|
folder: name,
|
|
|
|
preview: Encoder.encode("__VAULT__"),
|
|
|
|
time: new Date()
|
|
|
|
}
|
|
|
|
let tx = this.database.transaction();
|
|
|
|
await Promise.all([
|
|
|
|
this.addop(vault._id, OpLogType.CREATE, {
|
|
|
|
value: vault.__value,
|
|
|
|
preview: vault.preview
|
2019-03-05 02:48:31 +00:00
|
|
|
}, vault.time, tx),
|
2019-01-27 20:29:33 +00:00
|
|
|
this.noteDB.set(vault._id, vault)
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async getVault(vault_id: string, key?: Uint8Array): Promise<IVault> {
|
|
|
|
let vault = await this.noteDB.get(vault_id);
|
|
|
|
if (!vault) throw new Error("Vault not found!");
|
|
|
|
if (this.decrypt(vault.__value, key) !== "__BASELINE__") throw new Error("Invalid password!");
|
|
|
|
return new NotesProvider.Vault(vault, key)
|
|
|
|
}
|
|
|
|
|
2019-03-05 02:48:31 +00:00
|
|
|
public async deleteVault(vault_id: string) {
|
|
|
|
let vault = await this.noteDB.get(vault_id);
|
|
|
|
if (!vault) throw new Error("Vault not found!");
|
|
|
|
let v = new NotesProvider.Vault(vault);
|
|
|
|
await Promise.all((await v.getAllNotes()).map(note => this.delete(note._id)));
|
|
|
|
await this.delete(v.id); // This can also delete a vault
|
|
|
|
}
|
|
|
|
|
2019-01-27 20:29:33 +00:00
|
|
|
public passwordToKey(password: string) {
|
|
|
|
return new Uint8Array(sha256.arrayBuffer(password + config.client_id))
|
|
|
|
}
|
|
|
|
|
|
|
|
private _encrypt(value: Uint8Array, key?: Uint8Array): Uint8Array {
|
|
|
|
if (!key) return value;
|
|
|
|
var aesCtr = new aesjs.ModeOfOperation.ctr(key);
|
|
|
|
var encryptedBytes = aesCtr.encrypt(value);
|
|
|
|
return new Uint8Array(encryptedBytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
private encrypt(value: string, key?: Uint8Array): Uint8Array {
|
|
|
|
let msg = this._encrypt(Encoder.encode(value), key)
|
|
|
|
return new Uint8Array(this._encrypt(msg, this.generalEncryption))
|
|
|
|
}
|
|
|
|
|
|
|
|
private _decrypt(value: ArrayBuffer, key?: Uint8Array): Uint8Array {
|
2019-03-05 02:48:31 +00:00
|
|
|
if (!key) return new Uint8Array(value);
|
2019-01-27 20:29:33 +00:00
|
|
|
var aesCtr = new aesjs.ModeOfOperation.ctr(key);
|
|
|
|
var decryptedBytes = aesCtr.decrypt(value);
|
|
|
|
return new Uint8Array(decryptedBytes)
|
|
|
|
}
|
|
|
|
|
2019-03-05 02:48:31 +00:00
|
|
|
private decrypt(value: ArrayBuffer, key?: Uint8Array): string {
|
2019-01-27 20:29:33 +00:00
|
|
|
let msg = this._decrypt(value, key)
|
|
|
|
return Decoder.decode(this._decrypt(msg, this.generalEncryption))
|
|
|
|
}
|
|
|
|
|
2019-03-05 02:48:31 +00:00
|
|
|
async addop(note_id: string, type: OpLogType, values: { value: Uint8Array, preview: Uint8Array }, date: Date, transaction?: Transaction) {
|
|
|
|
let tx = transaction || this.oplogDB.transaction();
|
|
|
|
let oplog = await this.oplogDB.get(note_id, tx);
|
2019-01-27 20:29:33 +00:00
|
|
|
if (!oplog) oplog = { logs: [], id: note_id };
|
|
|
|
oplog.logs.push({
|
2019-03-05 02:48:31 +00:00
|
|
|
date: date,
|
2019-01-27 20:29:33 +00:00
|
|
|
type,
|
|
|
|
values
|
|
|
|
})
|
2019-03-25 01:25:08 +00:00
|
|
|
this.syncedObservableServer.send(false);
|
2019-03-05 02:48:31 +00:00
|
|
|
await this.oplogDB.set(note_id, oplog, tx);
|
|
|
|
}
|
|
|
|
|
|
|
|
async delete(id: string) {
|
|
|
|
let lock = await this.syncLock.getLock();
|
|
|
|
let tx = this.database.transaction(this.oplogDB, this.noteDB)
|
|
|
|
await Promise.all([
|
|
|
|
this.addop(id, OpLogType.DELETE, null, new Date(), tx),
|
|
|
|
this.noteDB.delete(id, tx)
|
|
|
|
])
|
|
|
|
lock.release();
|
2019-01-27 20:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static Vault = class implements IVault {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
encrypted: boolean = false;
|
|
|
|
constructor(private vault: Note, private key?: Uint8Array) {
|
|
|
|
if (key) this.encrypted = true;
|
|
|
|
this.id = vault._id;
|
|
|
|
this.name = vault.folder;
|
|
|
|
}
|
|
|
|
|
|
|
|
private encrypt(data: string) {
|
|
|
|
return Notes.encrypt(data, this.key);
|
|
|
|
}
|
|
|
|
|
|
|
|
private decrypt(data: ArrayBuffer) {
|
|
|
|
return Notes.decrypt(data, this.key);
|
|
|
|
}
|
|
|
|
|
|
|
|
async getAllNotes() {
|
|
|
|
return Notes.noteDB.getAll()
|
2019-03-05 02:48:31 +00:00
|
|
|
.then(all => all.filter(e => e.folder === this.vault._id)
|
2019-01-27 20:29:33 +00:00
|
|
|
.map<BaseNote>(e => {
|
|
|
|
let new_note = clonedeep(<Note>e) as BaseNote
|
|
|
|
delete (<any>new_note).__value
|
|
|
|
new_note.preview = this.decrypt(e.preview)
|
|
|
|
return new_note;
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
async searchNote(term: string) {
|
|
|
|
let all = await this.getAllNotes();
|
|
|
|
return all.filter(e => e.preview.indexOf(term) >= 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
newNote(): ViewNote {
|
|
|
|
return {
|
|
|
|
_id: uuidv4(),
|
|
|
|
folder: this.vault._id,
|
|
|
|
time: new Date(),
|
|
|
|
__value: "",
|
|
|
|
preview: ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 02:48:31 +00:00
|
|
|
async saveNote(note: ViewNote, date = new Date()) {
|
2019-01-27 20:29:33 +00:00
|
|
|
let lock = await Notes.syncLock.getLock();
|
|
|
|
const tx = Notes.database.transaction(Notes.noteDB, Notes.oplogDB);
|
|
|
|
let old_note = await Notes.noteDB.get(note._id, tx);
|
|
|
|
|
|
|
|
let new_note = clonedeep(<Note>note) as DBNote;
|
|
|
|
new_note.__value = this.encrypt(note.__value)
|
|
|
|
let [title, preview] = note.__value.split("\n");
|
|
|
|
if (preview) preview = "\n" + preview;
|
|
|
|
else preview = ""
|
2019-03-05 02:48:31 +00:00
|
|
|
new_note.preview = this.encrypt((title + preview).substr(0, 128))
|
|
|
|
new_note.time = date;
|
2019-01-27 20:29:33 +00:00
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
Notes.addop(note._id, !old_note ? OpLogType.CREATE : OpLogType.CHANGE, {
|
|
|
|
value: new_note.__value,
|
|
|
|
preview: new_note.preview
|
2019-03-05 02:48:31 +00:00
|
|
|
}, date, tx),
|
2019-01-27 20:29:33 +00:00
|
|
|
Notes.noteDB.set(note._id, new_note, tx)
|
|
|
|
])
|
|
|
|
lock.release();
|
|
|
|
}
|
|
|
|
|
|
|
|
async getNote(id: string): Promise<ViewNote> {
|
|
|
|
let note = await Notes.noteDB.get(id);
|
|
|
|
if (!note) return undefined;
|
|
|
|
let new_note = clonedeep(<Note>note) as ViewNote;
|
|
|
|
new_note.__value = this.decrypt(note.__value);
|
|
|
|
return new_note;
|
|
|
|
}
|
|
|
|
|
2019-03-05 02:48:31 +00:00
|
|
|
deleteNote(id: string) {
|
|
|
|
return Notes.delete(id);
|
2019-01-27 20:29:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Notes = new NotesProvider()
|
|
|
|
export default Notes;
|
|
|
|
|
|
|
|
(<any>window).api = Notes
|