2018-10-10 17:26:24 +00:00
|
|
|
/* global tryCatch chromeLocal ignoreChromeError */
|
|
|
|
/* exported db */
|
2018-10-04 04:46:19 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-10-03 19:35:07 +00:00
|
|
|
const db = (() => {
|
|
|
|
let exec;
|
|
|
|
const preparing = prepare();
|
|
|
|
return {
|
|
|
|
exec: (...args) =>
|
|
|
|
preparing.then(() => exec(...args))
|
|
|
|
};
|
|
|
|
|
|
|
|
function prepare() {
|
|
|
|
// we use chrome.storage.local fallback if IndexedDB doesn't save data,
|
|
|
|
// which, once detected on the first run, is remembered in chrome.storage.local
|
|
|
|
// for reliablility and in localStorage for fast synchronous access
|
|
|
|
// (FF may block localStorage depending on its privacy options)
|
|
|
|
|
|
|
|
// test localStorage
|
|
|
|
const fallbackSet = localStorage.dbInChromeStorage;
|
|
|
|
if (fallbackSet === 'true' || !tryCatch(() => indexedDB)) {
|
|
|
|
useChromeStorage();
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
if (fallbackSet === 'false') {
|
|
|
|
useIndexedDB();
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
// test storage.local
|
|
|
|
return chromeLocal.get('dbInChromeStorage')
|
|
|
|
.then(data =>
|
|
|
|
data && data.dbInChromeStorage && Promise.reject())
|
|
|
|
.then(() =>
|
|
|
|
tryCatch(dbExecIndexedDB, 'getAllKeys', IDBKeyRange.lowerBound(1), 1) ||
|
|
|
|
Promise.reject())
|
|
|
|
.then(({target}) => (
|
|
|
|
(target.result || [])[0] ?
|
|
|
|
Promise.reject('ok') :
|
|
|
|
dbExecIndexedDB('put', {id: -1})))
|
|
|
|
.then(() =>
|
|
|
|
dbExecIndexedDB('get', -1))
|
|
|
|
.then(({target}) => (
|
|
|
|
(target.result || {}).id === -1 ?
|
|
|
|
dbExecIndexedDB('delete', -1) :
|
|
|
|
Promise.reject()))
|
|
|
|
.then(() =>
|
|
|
|
Promise.reject('ok'))
|
|
|
|
.catch(result => {
|
|
|
|
if (result === 'ok') {
|
|
|
|
useIndexedDB();
|
|
|
|
} else {
|
|
|
|
useChromeStorage();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function useChromeStorage() {
|
|
|
|
exec = dbExecChromeStorage;
|
|
|
|
chromeLocal.set({dbInChromeStorage: true}, ignoreChromeError);
|
|
|
|
localStorage.dbInChromeStorage = 'true';
|
|
|
|
}
|
|
|
|
|
|
|
|
function useIndexedDB() {
|
|
|
|
exec = dbExecIndexedDB;
|
|
|
|
chromeLocal.set({dbInChromeStorage: false}, ignoreChromeError);
|
|
|
|
localStorage.dbInChromeStorage = 'false';
|
|
|
|
}
|
|
|
|
|
|
|
|
function dbExecIndexedDB(method, ...args) {
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Object.assign(indexedDB.open('stylish', 2), {
|
|
|
|
onsuccess(event) {
|
|
|
|
const database = event.target.result;
|
|
|
|
if (!method) {
|
|
|
|
resolve(database);
|
|
|
|
} else {
|
|
|
|
const transaction = database.transaction(['styles'], 'readwrite');
|
|
|
|
const store = transaction.objectStore('styles');
|
2018-10-10 15:05:20 +00:00
|
|
|
try {
|
|
|
|
Object.assign(store[method](...args), {
|
|
|
|
onsuccess: event => resolve(event, store, transaction, database),
|
|
|
|
onerror: reject,
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
reject(err);
|
|
|
|
}
|
2018-10-03 19:35:07 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
onerror(event) {
|
|
|
|
console.warn(event.target.error || event.target.errorCode);
|
|
|
|
reject(event);
|
|
|
|
},
|
|
|
|
onupgradeneeded(event) {
|
|
|
|
if (event.oldVersion === 0) {
|
|
|
|
event.target.result.createObjectStore('styles', {
|
|
|
|
keyPath: 'id',
|
|
|
|
autoIncrement: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function dbExecChromeStorage(method, data) {
|
|
|
|
const STYLE_KEY_PREFIX = 'style-';
|
|
|
|
switch (method) {
|
|
|
|
case 'get':
|
|
|
|
return chromeLocal.getValue(STYLE_KEY_PREFIX + data)
|
|
|
|
.then(result => ({target: {result}}));
|
|
|
|
|
|
|
|
case 'put':
|
|
|
|
if (!data.id) {
|
2018-10-04 04:46:19 +00:00
|
|
|
return getAllStyles().then(styles => {
|
2018-10-03 19:35:07 +00:00
|
|
|
data.id = 1;
|
2018-10-04 04:46:19 +00:00
|
|
|
for (const style of styles) {
|
2018-10-03 19:35:07 +00:00
|
|
|
data.id = Math.max(data.id, style.id + 1);
|
|
|
|
}
|
|
|
|
return dbExecChromeStorage('put', data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return chromeLocal.setValue(STYLE_KEY_PREFIX + data.id, data)
|
|
|
|
.then(() => (chrome.runtime.lastError ? Promise.reject() : data.id));
|
|
|
|
|
|
|
|
case 'delete':
|
|
|
|
return chromeLocal.remove(STYLE_KEY_PREFIX + data);
|
|
|
|
|
|
|
|
case 'getAll':
|
2018-10-04 04:46:19 +00:00
|
|
|
return getAllStyles()
|
|
|
|
.then(styles => ({target: {result: styles}}));
|
2018-10-03 19:35:07 +00:00
|
|
|
}
|
|
|
|
return Promise.reject();
|
2018-10-04 04:46:19 +00:00
|
|
|
|
|
|
|
function getAllStyles() {
|
|
|
|
return chromeLocal.get(null).then(storage => {
|
|
|
|
const styles = [];
|
|
|
|
for (const key in storage) {
|
|
|
|
if (key.startsWith(STYLE_KEY_PREFIX) &&
|
|
|
|
Number(key.substr(STYLE_KEY_PREFIX.length))) {
|
|
|
|
styles.push(storage[key]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return styles;
|
|
|
|
});
|
|
|
|
}
|
2018-10-03 19:35:07 +00:00
|
|
|
}
|
|
|
|
})();
|