1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

api models and services

This commit is contained in:
Kyle Spearrin
2016-09-03 01:13:09 -04:00
parent 8fa3caaa3e
commit c39aab4ee7
5 changed files with 186 additions and 6 deletions

View File

@@ -0,0 +1,47 @@
var SiteRequest = function () {
this.folderId = null;
this.name = null;
this.uri = null;
this.username = null;
this.password = null;
this.notes = null;
this.favorite = false;
};
var FolderRequest = function () {
this.name = null;
};
var TokenRequest = function () {
this.email = null;
this.masterPasswordHash = null;
this.device = null;
};
var RegisterRequest = function () {
this.name = null;
this.email = null;
this.masterPasswordHash = null;
this.masterPasswordHint = null;
};
var PasswordHintRequest = function () {
this.email = null;
};
var TokenTwoFactorRequest = function () {
this.code = null;
this.provider = null;
this.device = null;
};
var DeviceTokenRequest = function () {
this.pushToken = null;
};
var DeviceRequest = function () {
this.type = null;
this.name = null;
this.identifier = null;
this.pushToken = null;
};

View File

@@ -0,0 +1,75 @@
var CipherResponse = function (response) {
this.id = response.Id;
this.folderId = response.FolderId;
this.type = response.Type;
this.favorite = response.favorite;
this.data = response.Data;
this.revisionDate = response.RevisionDate;
};
var FolderResponse = function (response) {
this.id = response.Id;
this.name = response.Name;
this.revisionDate = response.RevisionDate;
};
var SiteResponse = function (response) {
this.id = response.Id;
this.folderId = response.FolderId;
this.name = response.Name;
this.uri = response.Uri;
this.username = response.Username;
this.password = response.Password;
this.notes = response.Notes;
this.favorite = response.favorite;
this.revisionDate = response.RevisionDate;
if(response.Folder) {
this.folder = new FolderResponse(response.Folder);
}
};
var ProfileResponse = function (response) {
this.id = response.Id;
this.name = response.Name;
this.email = response.Email;
this.masterPasswordHint = response.MasterPasswordHint;
this.culture = response.Culture;
this.twoFactorEnabled = response.TwoFactorEnabled;
};
var TokenResponse = function (response) {
this.token = response.Token;
if (response.Profile) {
this.profile = new ProfileResponse(response.Profile);
}
};
var ListResponse = function (data) {
this.Data = data;
};
var ErrorResponse = function (response) {
this.message = response.Message;
this.validationErrors = response.ValidationErrors;
};
var DeviceResponse = function (response) {
this.id = response.Id;
this.name = response.Name;
this.identifier = response.Identifier;
this.type = response.Type;
this.creationDate = response.CreationDate;
};
var CipherHistoryResponse = function (response) {
this.revised = [];
var revised = response.Revised;
for (var i = 0; i < revised.length; i++) {
revised.push(new CipherResponse(revised[i]));
}
this.deleted = response.Deleted;
};