1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-29 14:17:11 +02:00
uBlock/platform/chromium/vapi-cachestorage.js

305 lines
11 KiB
JavaScript
Raw Normal View History

/*******************************************************************************
uBlock Origin - a browser extension to block requests.
2018-08-06 18:34:41 +02:00
Copyright (C) 2016-present The uBlock Origin authors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see {http://www.gnu.org/licenses/}.
Home: https://github.com/gorhill/uBlock
*/
2018-08-06 18:34:41 +02:00
/* global IDBDatabase, indexedDB */
2017-08-30 00:32:00 +02:00
'use strict';
/******************************************************************************/
// The code below has been originally manually imported from:
// Commit: https://github.com/nikrolls/uBlock-Edge/commit/d1538ea9bea89d507219d3219592382eee306134
// Commit date: 29 October 2016
// Commit author: https://github.com/nikrolls
// Commit message: "Implement cacheStorage using IndexedDB"
2017-08-30 00:32:00 +02:00
// The original imported code has been subsequently modified as it was not
// compatible with Firefox.
// (a Promise thing, see https://github.com/dfahlander/Dexie.js/issues/317)
// Furthermore, code to migrate from browser.storage.local to vAPI.cacheStorage
// has been added, for seamless migration of cache-related entries into
// indexedDB.
vAPI.cacheStorage = (function() {
// Firefox-specific: we use indexedDB because chrome.storage.local() has
// poor performance in Firefox. See:
// https://bugzilla.mozilla.org/show_bug.cgi?id=1371255
if ( vAPI.webextFlavor.soup.has('firefox') === false ) {
return vAPI.cacheStorage;
}
2017-08-30 00:32:00 +02:00
const STORAGE_NAME = 'uBlock0CacheStorage';
2018-08-06 18:34:41 +02:00
let db;
let pendingInitialization;
2018-08-06 18:34:41 +02:00
let get = function get(input, callback) {
2017-08-30 00:32:00 +02:00
if ( typeof callback !== 'function' ) { return; }
if ( input === null ) {
return getAllFromDb(callback);
}
var toRead, output = {};
if ( typeof input === 'string' ) {
toRead = [ input ];
} else if ( Array.isArray(input) ) {
toRead = input;
} else /* if ( typeof input === 'object' ) */ {
toRead = Object.keys(input);
output = input;
}
return getFromDb(toRead, output, callback);
2018-08-06 18:34:41 +02:00
};
2018-08-06 18:34:41 +02:00
let set = function set(input, callback) {
2017-08-30 00:32:00 +02:00
putToDb(input, callback);
2018-08-06 18:34:41 +02:00
};
2018-08-06 18:34:41 +02:00
let remove = function remove(key, callback) {
2017-08-30 00:32:00 +02:00
deleteFromDb(key, callback);
2018-08-06 18:34:41 +02:00
};
2018-08-06 18:34:41 +02:00
let clear = function clear(callback) {
2017-08-30 00:32:00 +02:00
clearDb(callback);
2018-08-06 18:34:41 +02:00
};
2018-08-06 18:34:41 +02:00
let getBytesInUse = function getBytesInUse(keys, callback) {
// TODO: implement this
callback(0);
2018-08-06 18:34:41 +02:00
};
2018-08-06 18:34:41 +02:00
let api = { get, set, remove, clear, getBytesInUse, error: undefined };
2018-08-06 18:34:41 +02:00
let genericErrorHandler = function(ev) {
let error = ev.target && ev.target.error;
if ( error && error.name === 'QuotaExceededError' ) {
api.error = error.name;
}
2018-08-06 18:34:41 +02:00
console.error('[%s]', STORAGE_NAME, error && error.name);
};
function noopfn() {
}
2018-08-06 18:34:41 +02:00
let getDb = function getDb() {
if ( db instanceof IDBDatabase ) {
return Promise.resolve(db);
}
2018-08-06 18:34:41 +02:00
if ( db === null ) {
return Promise.resolve(null);
2017-08-30 00:32:00 +02:00
}
2018-08-06 18:34:41 +02:00
if ( pendingInitialization !== undefined ) {
return pendingInitialization;
2017-08-30 00:32:00 +02:00
}
2017-10-21 14:43:45 +02:00
// https://github.com/gorhill/uBlock/issues/3156
// I have observed that no event was fired in Tor Browser 7.0.7 +
// medium security level after the request to open the database was
// created. When this occurs, I have also observed that the `error`
// property was already set, so this means uBO can detect here whether
// the database can be opened successfully. A try-catch block is
// necessary when reading the `error` property because we are not
// allowed to read this propery outside of event handlers in newer
// implementation of IDBRequest (my understanding).
2018-08-06 18:34:41 +02:00
pendingInitialization = new Promise(resolve => {
let req;
try {
req = indexedDB.open(STORAGE_NAME, 1);
if ( req.error ) {
console.log(req.error);
req = undefined;
}
} catch(ex) {
2017-10-21 14:43:45 +02:00
}
2018-08-06 18:34:41 +02:00
if ( req === undefined ) {
pendingInitialization = undefined;
db = null;
resolve(null);
return;
}
req.onupgradeneeded = function(ev) {
req = undefined;
let db = ev.target.result;
db.onerror = db.onabort = genericErrorHandler;
let table = db.createObjectStore(STORAGE_NAME, { keyPath: 'key' });
table.createIndex('value', 'value', { unique: false });
};
req.onsuccess = function(ev) {
pendingInitialization = undefined;
req = undefined;
db = ev.target.result;
db.onerror = db.onabort = genericErrorHandler;
resolve(db);
};
req.onerror = req.onblocked = function() {
pendingInitialization = undefined;
req = undefined;
db = null;
console.log(this.error);
resolve(null);
};
});
return pendingInitialization;
};
2018-08-06 18:34:41 +02:00
let getFromDb = function(keys, keystore, callback) {
2017-08-30 00:32:00 +02:00
if ( typeof callback !== 'function' ) { return; }
2018-08-06 18:34:41 +02:00
if ( keys.length === 0 ) { return callback(keystore); }
let gotOne = function() {
2017-08-30 00:32:00 +02:00
if ( typeof this.result === 'object' ) {
2018-08-06 18:34:41 +02:00
keystore[this.result.key] = this.result.value;
2017-08-30 00:32:00 +02:00
}
};
2018-08-06 18:34:41 +02:00
getDb().then(( ) => {
2017-08-30 00:32:00 +02:00
if ( !db ) { return callback(); }
2018-08-06 18:34:41 +02:00
let transaction = db.transaction(STORAGE_NAME);
transaction.oncomplete =
transaction.onerror =
2018-08-06 18:34:41 +02:00
transaction.onabort = ( ) => callback(keystore);
let table = transaction.objectStore(STORAGE_NAME);
for ( let key of keys ) {
let req = table.get(key);
2017-08-30 00:32:00 +02:00
req.onsuccess = gotOne;
req.onerror = noopfn;
req = undefined;
2017-08-30 00:32:00 +02:00
}
});
2018-08-06 18:34:41 +02:00
};
2018-08-06 18:34:41 +02:00
let getAllFromDb = function(callback) {
2017-08-30 00:32:00 +02:00
if ( typeof callback !== 'function' ) {
callback = noopfn;
}
2018-08-06 18:34:41 +02:00
getDb().then(( ) => {
2017-08-30 00:32:00 +02:00
if ( !db ) { return callback(); }
2018-08-06 18:34:41 +02:00
let keystore = {};
let transaction = db.transaction(STORAGE_NAME);
transaction.oncomplete =
transaction.onerror =
2018-08-06 18:34:41 +02:00
transaction.onabort = ( ) => callback(keystore);
let table = transaction.objectStore(STORAGE_NAME),
2017-08-30 00:32:00 +02:00
req = table.openCursor();
req.onsuccess = function(ev) {
2018-08-06 18:34:41 +02:00
let cursor = ev.target.result;
2017-08-30 00:32:00 +02:00
if ( !cursor ) { return; }
2018-08-06 18:34:41 +02:00
keystore[cursor.key] = cursor.value;
2017-08-30 00:32:00 +02:00
cursor.continue();
};
});
2018-08-06 18:34:41 +02:00
};
// https://github.com/uBlockOrigin/uBlock-issues/issues/141
// Mind that IDBDatabase.transaction() and IDBObjectStore.put()
// can throw:
// https://developer.mozilla.org/en-US/docs/Web/API/IDBDatabase/transaction
// https://developer.mozilla.org/en-US/docs/Web/API/IDBObjectStore/put
2018-08-06 18:34:41 +02:00
let putToDb = function(keystore, callback) {
2017-08-30 00:32:00 +02:00
if ( typeof callback !== 'function' ) {
callback = noopfn;
}
2018-08-06 18:34:41 +02:00
let keys = Object.keys(keystore);
2017-08-30 00:32:00 +02:00
if ( keys.length === 0 ) { return callback(); }
2018-08-06 18:34:41 +02:00
getDb().then(( ) => {
2017-08-30 00:32:00 +02:00
if ( !db ) { return callback(); }
2018-08-06 18:34:41 +02:00
let finish = ( ) => {
if ( callback === undefined ) { return; }
let cb = callback;
callback = undefined;
cb();
};
try {
let transaction = db.transaction(STORAGE_NAME, 'readwrite');
transaction.oncomplete =
transaction.onerror =
transaction.onabort = finish;
let table = transaction.objectStore(STORAGE_NAME);
for ( let key of keys ) {
let entry = {};
entry.key = key;
2018-08-06 18:34:41 +02:00
entry.value = keystore[key];
table.put(entry);
entry = undefined;
}
} catch (ex) {
finish();
2017-08-30 00:32:00 +02:00
}
});
2018-08-06 18:34:41 +02:00
};
2018-08-06 18:34:41 +02:00
let deleteFromDb = function(input, callback) {
2017-08-30 00:32:00 +02:00
if ( typeof callback !== 'function' ) {
callback = noopfn;
}
2018-08-06 18:34:41 +02:00
let keys = Array.isArray(input) ? input.slice() : [ input ];
2017-08-30 00:32:00 +02:00
if ( keys.length === 0 ) { return callback(); }
2018-08-06 18:34:41 +02:00
getDb().then(db => {
2017-08-30 00:32:00 +02:00
if ( !db ) { return callback(); }
2018-08-06 18:34:41 +02:00
let finish = ( ) => {
if ( callback === undefined ) { return; }
let cb = callback;
callback = undefined;
cb();
};
try {
let transaction = db.transaction(STORAGE_NAME, 'readwrite');
transaction.oncomplete =
transaction.onerror =
transaction.onabort = finish;
let table = transaction.objectStore(STORAGE_NAME);
for ( let key of keys ) {
table.delete(key);
}
} catch (ex) {
finish();
2017-08-30 00:32:00 +02:00
}
});
2018-08-06 18:34:41 +02:00
};
2018-08-06 18:34:41 +02:00
let clearDb = function(callback) {
2017-08-30 00:32:00 +02:00
if ( typeof callback !== 'function' ) {
callback = noopfn;
}
2018-08-06 18:34:41 +02:00
getDb().then(db => {
2017-08-30 00:32:00 +02:00
if ( !db ) { return callback(); }
2018-08-06 18:34:41 +02:00
let finish = ( ) => {
if ( callback === undefined ) { return; }
let cb = callback;
callback = undefined;
cb();
};
try {
let req = db.transaction(STORAGE_NAME, 'readwrite')
.objectStore(STORAGE_NAME)
.clear();
req.onsuccess = req.onerror = finish;
} catch (ex) {
finish();
}
2017-08-30 00:32:00 +02:00
});
2018-08-06 18:34:41 +02:00
};
// prime the db so that it's ready asap for next access.
getDb(noopfn);
return api;
}());
/******************************************************************************/