bitwarden-android/src/App/Models/Page/VaultListPageModel.cs

76 lines
2.4 KiB
C#
Raw Normal View History

2016-05-02 09:52:09 +03:00
using System;
using System.Collections.Generic;
using Bit.App.Resources;
using System.Linq;
2016-05-02 09:52:09 +03:00
namespace Bit.App.Models.Page
2016-05-02 09:52:09 +03:00
{
public class VaultListPageModel
2016-05-02 09:52:09 +03:00
{
2017-01-03 08:17:15 +03:00
public class Login
2016-05-02 09:52:09 +03:00
{
public Login(Models.Cipher cipher)
2016-05-02 09:52:09 +03:00
{
Id = cipher.Id;
Shared = !string.IsNullOrWhiteSpace(cipher.OrganizationId);
HasAttachments = cipher.Attachments?.Any() ?? false;
FolderId = cipher.FolderId;
Name = cipher.Name?.Decrypt(cipher.OrganizationId);
Username = cipher.Login?.Username?.Decrypt(cipher.OrganizationId) ?? " ";
Password = new Lazy<string>(() => cipher.Login?.Password?.Decrypt(cipher.OrganizationId));
Uri = new Lazy<string>(() => cipher.Login?.Uri?.Decrypt(cipher.OrganizationId));
Totp = new Lazy<string>(() => cipher.Login?.Totp?.Decrypt(cipher.OrganizationId));
2016-05-02 09:52:09 +03:00
}
2016-05-03 09:08:50 +03:00
public string Id { get; set; }
2017-04-24 22:00:55 +03:00
public bool Shared { get; set; }
public bool HasAttachments { get; set; }
2016-05-04 02:49:49 +03:00
public string FolderId { get; set; }
2016-05-02 09:52:09 +03:00
public string Name { get; set; }
public string Username { get; set; }
public Lazy<string> Password { get; set; }
public Lazy<string> Uri { get; set; }
2017-07-21 18:39:22 +03:00
public Lazy<string> Totp { get; set; }
2016-05-02 09:52:09 +03:00
}
2017-02-14 06:10:34 +03:00
public class AutofillLogin : Login
{
public AutofillLogin(Models.Cipher login, bool fuzzy = false)
2017-02-14 06:10:34 +03:00
: base(login)
{
Fuzzy = fuzzy;
}
public bool Fuzzy { get; set; }
}
2017-01-03 08:17:15 +03:00
public class Folder : List<Login>
2016-05-02 09:52:09 +03:00
{
2016-07-11 08:12:31 +03:00
public Folder(Models.Folder folder)
2016-05-02 09:52:09 +03:00
{
2016-07-11 08:12:31 +03:00
Id = folder.Id;
Name = folder.Name?.Decrypt();
2016-05-02 09:52:09 +03:00
}
2017-01-03 08:17:15 +03:00
public Folder(List<Login> logins)
2016-05-02 09:52:09 +03:00
{
2017-01-03 08:17:15 +03:00
AddRange(logins);
2016-05-02 09:52:09 +03:00
}
2016-05-03 09:08:50 +03:00
public string Id { get; set; }
public string Name { get; set; } = AppResources.FolderNone;
2016-05-02 09:52:09 +03:00
}
2017-02-14 06:10:34 +03:00
public class AutofillGrouping : List<AutofillLogin>
{
2017-02-14 06:10:34 +03:00
public AutofillGrouping(List<AutofillLogin> logins, string name)
{
AddRange(logins);
Name = name;
}
public string Name { get; set; }
}
2016-05-02 09:52:09 +03:00
}
}