mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
132 lines
3.8 KiB
JavaScript
132 lines
3.8 KiB
JavaScript
function SiteService(cryptoService, userService, apiService) {
|
|
this.cryptoService = cryptoService;
|
|
this.userService = userService;
|
|
this.apiService = apiService;
|
|
};
|
|
|
|
!function () {
|
|
var ciphersKey = 'ciphers_' + this.userService.userId;
|
|
|
|
SiteService.prototype.get = function (id, callback) {
|
|
if (!callback || typeof callback !== 'function') {
|
|
throw 'callback function required';
|
|
}
|
|
|
|
chrome.storage.local.get(ciphersKey, function (obj) {
|
|
if (!obj) {
|
|
callback(null);
|
|
}
|
|
|
|
var sites = obj[ciphersKey];
|
|
if (id in sites) {
|
|
callback(new Site(sites[id]));
|
|
return;
|
|
}
|
|
|
|
callback(null);
|
|
});
|
|
};
|
|
|
|
SiteService.prototype.getAll = function (callback) {
|
|
if (!callback || typeof callback !== 'function') {
|
|
throw 'callback function required';
|
|
}
|
|
|
|
chrome.storage.local.get(ciphersKey, function (obj) {
|
|
if (!obj) {
|
|
callback([]);
|
|
}
|
|
|
|
var sites = obj[ciphersKey];
|
|
var response = [];
|
|
for (var id in sites) {
|
|
response.push(new Site(sites[id]));
|
|
}
|
|
|
|
callback(response);
|
|
});
|
|
};
|
|
|
|
SiteService.prototype.save = function (site, callback) {
|
|
if (!callback || typeof callback !== 'function') {
|
|
throw 'callback function required';
|
|
}
|
|
|
|
var newRecord = site.id === null,
|
|
self = this;
|
|
|
|
var request = new SiteRequest(site);
|
|
if (newRecord) {
|
|
self.apiService.postSite(request, apiSuccess, handleError);
|
|
}
|
|
else {
|
|
self.apiService.putSite(site.id, request, apiSuccess, handleError);
|
|
}
|
|
|
|
function apiSuccess(response) {
|
|
userService.getUserId(function (userId) {
|
|
var data = new SiteData(response, userId);
|
|
|
|
chrome.storage.local.get(ciphersKey, function (obj) {
|
|
if (!obj) {
|
|
obj = {};
|
|
obj[ciphersKey] = [];
|
|
}
|
|
|
|
var sites = obj[ciphersKey];
|
|
if (!newRecord && site.id in sites) {
|
|
sites[site.id] = data;
|
|
}
|
|
else {
|
|
sites.push(data);
|
|
site.id = data.id;
|
|
}
|
|
|
|
obj[ciphersKey] = sites;
|
|
chrome.storage.local.set(obj, function () {
|
|
callback(site);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
SiteService.prototype.delete = function (id, callback) {
|
|
if (!callback || typeof callback !== 'function') {
|
|
throw 'callback function required';
|
|
}
|
|
|
|
self.apiService.deleteCipher(id, apiSuccess, handleError);
|
|
|
|
function apiSuccess(response) {
|
|
userService.getUserId(function (userId) {
|
|
chrome.storage.local.get(ciphersKey, function (obj) {
|
|
if (!obj) {
|
|
obj = {};
|
|
obj[ciphersKey] = [];
|
|
}
|
|
|
|
var sites = obj[ciphersKey];
|
|
if (id in sites) {
|
|
var index = sites.indexOf(sites[id]);
|
|
sites.splice(index, 1);
|
|
|
|
obj[ciphersKey] = sites;
|
|
chrome.storage.local.set(obj, function () {
|
|
callback();
|
|
});
|
|
}
|
|
else {
|
|
callback();
|
|
}
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
|
|
function handleError() {
|
|
// TODO: check for unauth or forbidden and logout
|
|
}
|
|
}();
|