mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-03-30 21:55:18 +00:00
135 lines
4.7 KiB
TypeScript
135 lines
4.7 KiB
TypeScript
import PouchDB from "pouchdb-core";
|
|
|
|
import HttpPouch from "pouchdb-adapter-http";
|
|
import mapreduce from "pouchdb-mapreduce";
|
|
import replication from "pouchdb-replication";
|
|
|
|
import LevelDBAdapter from "pouchdb-adapter-leveldb";
|
|
|
|
import find from "pouchdb-find";
|
|
import transform from "transform-pouch";
|
|
//@ts-ignore
|
|
import { findPathToLeaf } from "pouchdb-merge";
|
|
//@ts-ignore
|
|
import { adapterFun } from "pouchdb-utils";
|
|
//@ts-ignore
|
|
import { createError, MISSING_DOC, UNKNOWN_ERROR } from "pouchdb-errors";
|
|
import { mapAllTasksWithConcurrencyLimit, unwrapTaskResult } from "octagonal-wheels/concurrency/task";
|
|
|
|
PouchDB.plugin(LevelDBAdapter).plugin(HttpPouch).plugin(mapreduce).plugin(replication).plugin(find).plugin(transform);
|
|
|
|
type PurgeMultiResult = {
|
|
ok: true;
|
|
deletedRevs: string[];
|
|
documentWasRemovedCompletely: boolean;
|
|
};
|
|
type PurgeMultiParam = [docId: string, rev$$1: string];
|
|
function appendPurgeSeqs(db: PouchDB.Database, docs: PurgeMultiParam[]) {
|
|
return db
|
|
.get("_local/purges")
|
|
.then(function (doc: any) {
|
|
for (const [docId, rev$$1] of docs) {
|
|
const purgeSeq = doc.purgeSeq + 1;
|
|
doc.purges.push({
|
|
docId,
|
|
rev: rev$$1,
|
|
purgeSeq,
|
|
});
|
|
//@ts-ignore : missing type def
|
|
if (doc.purges.length > db.purged_infos_limit) {
|
|
//@ts-ignore : missing type def
|
|
doc.purges.splice(0, doc.purges.length - db.purged_infos_limit);
|
|
}
|
|
doc.purgeSeq = purgeSeq;
|
|
}
|
|
return doc;
|
|
})
|
|
.catch(function (err) {
|
|
if (err.status !== 404) {
|
|
throw err;
|
|
}
|
|
return {
|
|
_id: "_local/purges",
|
|
purges: docs.map(([docId, rev$$1], idx) => ({
|
|
docId,
|
|
rev: rev$$1,
|
|
purgeSeq: idx,
|
|
})),
|
|
purgeSeq: docs.length,
|
|
};
|
|
})
|
|
.then(function (doc) {
|
|
return db.put(doc);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* purge multiple documents at once.
|
|
*/
|
|
PouchDB.prototype.purgeMulti = adapterFun(
|
|
"_purgeMulti",
|
|
function (
|
|
docs: PurgeMultiParam[],
|
|
callback: (
|
|
error: Error,
|
|
result?: {
|
|
[x: string]: PurgeMultiResult | Error;
|
|
}
|
|
) => void
|
|
) {
|
|
//@ts-ignore
|
|
if (typeof this._purge === "undefined") {
|
|
return callback(
|
|
//@ts-ignore: this ts-ignore might be hiding a `this` bug where we don't have "this" conext.
|
|
createError(UNKNOWN_ERROR, "Purge is not implemented in the " + this.adapter + " adapter.")
|
|
);
|
|
}
|
|
//@ts-ignore
|
|
// eslint-disable-next-line @typescript-eslint/no-this-alias
|
|
const self = this;
|
|
const tasks = docs.map(
|
|
(param) => () =>
|
|
new Promise<[PurgeMultiParam, PurgeMultiResult | Error]>((res, rej) => {
|
|
const [docId, rev$$1] = param;
|
|
self._getRevisionTree(docId, (error: Error, revs: string[]) => {
|
|
if (error) {
|
|
return res([param, error]);
|
|
}
|
|
if (!revs) {
|
|
return res([param, createError(MISSING_DOC)]);
|
|
}
|
|
let path;
|
|
try {
|
|
path = findPathToLeaf(revs, rev$$1);
|
|
} catch (error) {
|
|
//@ts-ignore
|
|
return res([param, error.message || error]);
|
|
}
|
|
self._purge(docId, path, (error: Error, result: PurgeMultiResult) => {
|
|
if (error) {
|
|
return res([param, error]);
|
|
} else {
|
|
return res([param, result]);
|
|
}
|
|
});
|
|
});
|
|
})
|
|
);
|
|
(async () => {
|
|
const ret = await mapAllTasksWithConcurrencyLimit(1, tasks);
|
|
const retAll = ret.map((e) => unwrapTaskResult(e)) as [PurgeMultiParam, PurgeMultiResult | Error][];
|
|
await appendPurgeSeqs(
|
|
self,
|
|
retAll.filter((e) => "ok" in e[1]).map((e) => e[0])
|
|
);
|
|
const result = Object.fromEntries(retAll.map((e) => [e[0][0], e[1]]));
|
|
return result;
|
|
})()
|
|
//@ts-ignore
|
|
.then((result) => callback(undefined, result))
|
|
.catch((error) => callback(error));
|
|
}
|
|
);
|
|
|
|
export { PouchDB };
|