mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-05 17:15:04 -05:00
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
"use strict";
|
|
|
|
function DiscoStorage(storage) {
|
|
this.storage = storage;
|
|
}
|
|
|
|
DiscoStorage.prototype = {
|
|
constructor: {
|
|
value: DiscoStorage
|
|
},
|
|
setup: function (db) {
|
|
if (db.objectStoreNames.contains('disco')) {
|
|
db.deleteObjectStore('disco');
|
|
}
|
|
db.createObjectStore('disco', {
|
|
keyPath: 'ver'
|
|
});
|
|
},
|
|
transaction: function (mode) {
|
|
var trans = this.storage.db.transaction('disco', mode);
|
|
return trans.objectStore('disco');
|
|
},
|
|
add: function (ver, disco, cb) {
|
|
cb = cb || function () {};
|
|
var data = {
|
|
ver: ver,
|
|
disco: disco
|
|
};
|
|
var request = this.transaction('readwrite').put(data);
|
|
request.onsuccess = function () {
|
|
cb(false, data);
|
|
};
|
|
request.onerror = cb;
|
|
},
|
|
get: function (ver, cb) {
|
|
cb = cb || function () {};
|
|
if (!ver) {
|
|
return cb('not-found');
|
|
}
|
|
var request = this.transaction('readonly').get(ver);
|
|
request.onsuccess = function (e) {
|
|
var res = request.result;
|
|
if (res === undefined) {
|
|
return cb('not-found');
|
|
}
|
|
cb(false, res.disco);
|
|
};
|
|
request.onerror = cb;
|
|
}
|
|
};
|
|
|
|
|
|
module.exports = DiscoStorage;
|