1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-24 04:04:34 +00:00

basic autofill

This commit is contained in:
kspearrin
2018-09-20 16:44:06 -04:00
parent 0baa07daa2
commit 6904ea118b
13 changed files with 1035 additions and 54 deletions

View File

@@ -1,57 +0,0 @@
using Bit.App.Enums;
using Bit.App.Models;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Bit.iOS.Extension.Models
{
public class CipherViewModel
{
public CipherViewModel(Cipher cipher)
{
Id = cipher.Id;
Name = cipher.Name?.Decrypt(cipher.OrganizationId);
Username = cipher.Login?.Username?.Decrypt(cipher.OrganizationId);
Password = cipher.Login?.Password?.Decrypt(cipher.OrganizationId);
Uris = cipher.Login?.Uris?.Select(u => new LoginUriModel(u, cipher.OrganizationId));
Totp = new Lazy<string>(() => cipher.Login?.Totp?.Decrypt(cipher.OrganizationId));
Fields = new Lazy<List<Tuple<string, string>>>(() =>
{
if(!cipher.Fields?.Any() ?? true)
{
return null;
}
var fields = new List<Tuple<string, string>>();
foreach(var field in cipher.Fields)
{
fields.Add(new Tuple<string, string>(
field.Name?.Decrypt(cipher.OrganizationId),
field.Value?.Decrypt(cipher.OrganizationId)));
}
return fields;
});
}
public string Id { get; set; }
public string Name { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public IEnumerable<LoginUriModel> Uris { get; set; }
public Lazy<string> Totp { get; set; }
public Lazy<List<Tuple<string, string>>> Fields { get; set; }
public class LoginUriModel
{
public LoginUriModel(LoginUri data, string orgId)
{
Uri = data?.Uri?.Decrypt(orgId);
Match = data?.Match;
}
public string Uri { get; set; }
public UriMatchType? Match { get; set; }
}
}
}