133 lines
3.3 KiB
TypeScript
133 lines
3.3 KiB
TypeScript
"use strict";
|
|
|
|
// License: MIT
|
|
|
|
const VERSION = 1;
|
|
const STORE = "queue";
|
|
|
|
export const DB = new class DB {
|
|
private db?: IDBDatabase;
|
|
|
|
constructor() {
|
|
this.db = undefined;
|
|
this.getAllInternal = this.getAllInternal.bind(this);
|
|
}
|
|
|
|
async init() {
|
|
if (this.db) {
|
|
return;
|
|
}
|
|
await new Promise((resolve, reject) => {
|
|
const req = indexedDB.open("downloads", VERSION);
|
|
req.onupgradeneeded = evt => {
|
|
const db = req.result;
|
|
switch (evt.oldVersion) {
|
|
case 0: {
|
|
const queueStore = db.createObjectStore(STORE, {
|
|
keyPath: "dbId",
|
|
autoIncrement: true
|
|
});
|
|
queueStore.createIndex("by_position", "position", {unique: false});
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
req.onerror = ex => reject(ex);
|
|
req.onsuccess = () => {
|
|
this.db = req.result;
|
|
resolve();
|
|
};
|
|
});
|
|
}
|
|
|
|
getAllInternal(resolve: (items: any[]) => void, reject: Function) {
|
|
if (!this.db) {
|
|
reject(new Error("db closed"));
|
|
return;
|
|
}
|
|
const items: any[] = [];
|
|
const transaction = this.db.transaction(STORE, "readonly");
|
|
transaction.onerror = ex => reject(ex);
|
|
const store = transaction.objectStore(STORE);
|
|
const index = store.index("by_position");
|
|
index.openCursor().onsuccess = event => {
|
|
const cursor = (event.target as IDBRequest<IDBCursorWithValue>).result;
|
|
if (!cursor) {
|
|
resolve(items);
|
|
return;
|
|
}
|
|
items.push(cursor.value);
|
|
cursor.continue();
|
|
};
|
|
}
|
|
|
|
async getAll() {
|
|
await this.init();
|
|
return await new Promise(this.getAllInternal);
|
|
}
|
|
|
|
saveItemsInternal(items: any[], resolve: Function, reject: Function) {
|
|
if (!items || !items.length || !this.db) {
|
|
resolve();
|
|
return;
|
|
}
|
|
try {
|
|
const transaction = this.db.transaction(STORE, "readwrite");
|
|
transaction.onerror = ex => reject(ex);
|
|
transaction.oncomplete = () => resolve();
|
|
const store = transaction.objectStore(STORE);
|
|
for (const item of items) {
|
|
if (item.private) {
|
|
continue;
|
|
}
|
|
const req = store.put(item.toJSON());
|
|
if (!("dbId" in item) || item.dbId < 0) {
|
|
req.onsuccess = () => item.dbId = req.result;
|
|
}
|
|
}
|
|
}
|
|
catch (ex) {
|
|
reject(ex);
|
|
}
|
|
}
|
|
|
|
async saveItems(items: any[]) {
|
|
await this.init();
|
|
return await new Promise(this.saveItemsInternal.bind(this, items));
|
|
}
|
|
|
|
deleteItemsInternal(items: any[], resolve: Function, reject: Function) {
|
|
if (!items || !items.length || !this.db) {
|
|
resolve();
|
|
return;
|
|
}
|
|
try {
|
|
const transaction = this.db.transaction(STORE, "readwrite");
|
|
transaction.onerror = ex => reject(ex);
|
|
transaction.oncomplete = () => resolve();
|
|
const store = transaction.objectStore(STORE);
|
|
for (const item of items) {
|
|
if (item.private) {
|
|
continue;
|
|
}
|
|
if (!("dbId" in item)) {
|
|
continue;
|
|
}
|
|
store.delete(item.dbId);
|
|
}
|
|
}
|
|
catch (ex) {
|
|
console.error(ex.message, ex);
|
|
reject(ex);
|
|
}
|
|
}
|
|
|
|
async deleteItems(items: any[]) {
|
|
if (!items.length) {
|
|
return;
|
|
}
|
|
await this.init();
|
|
await new Promise(this.deleteItemsInternal.bind(this, items));
|
|
}
|
|
}();
|