62 lines
1.9 KiB
JavaScript
62 lines
1.9 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
module.metadata = {
|
|
"stability": "experimental"
|
|
};
|
|
|
|
const { Cc, Ci } = require("chrome");
|
|
const { id } = require("./self");
|
|
|
|
// placeholder, copied from bootstrap.js
|
|
let sanitizeId = function(id){
|
|
let uuidRe =
|
|
/^\{([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})\}$/;
|
|
|
|
let domain = id.
|
|
toLowerCase().
|
|
replace(/@/g, "-at-").
|
|
replace(/\./g, "-dot-").
|
|
replace(uuidRe, "$1");
|
|
|
|
return domain
|
|
};
|
|
|
|
const PSEUDOURI = "indexeddb://" + sanitizeId(id) // https://bugzilla.mozilla.org/show_bug.cgi?id=779197
|
|
|
|
// Injects `indexedDB` to `this` scope.
|
|
Cc["@mozilla.org/dom/indexeddb/manager;1"].
|
|
getService(Ci.nsIIndexedDatabaseManager).
|
|
initWindowless(this);
|
|
|
|
// Firefox 14 gets this with a prefix
|
|
if (typeof(indexedDB) === "undefined")
|
|
this.indexedDB = mozIndexedDB;
|
|
|
|
// Use XPCOM because `require("./url").URL` doesn't expose the raw uri object.
|
|
let principaluri = Cc["@mozilla.org/network/io-service;1"].
|
|
getService(Ci.nsIIOService).
|
|
newURI(PSEUDOURI, null, null);
|
|
|
|
let principal = Cc["@mozilla.org/scriptsecuritymanager;1"].
|
|
getService(Ci.nsIScriptSecurityManager).
|
|
getCodebasePrincipal(principaluri);
|
|
|
|
exports.indexedDB = Object.freeze({
|
|
open: indexedDB.openForPrincipal.bind(indexedDB, principal),
|
|
deleteDatabase: indexedDB.deleteForPrincipal.bind(indexedDB, principal),
|
|
cmp: indexedDB.cmp
|
|
});
|
|
|
|
exports.IDBKeyRange = IDBKeyRange;
|
|
exports.DOMException = Ci.nsIDOMDOMException;
|
|
exports.IDBCursor = Ci.nsIIDBCursor;
|
|
exports.IDBOpenDBRequest = Ci.nsIIDBOpenDBRequest;
|
|
exports.IDBDatabase = Ci.nsIIDBDatabase;
|
|
exports.IDBIndex = Ci.nsIIDBIndex;
|
|
exports.IDBObjectStore = Ci.nsIIDBObjectStore;
|
|
exports.IDBRequest = Ci.nsIIDBRequest;
|