mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 08:02:49 -05:00
85 lines
2.1 KiB
C#
85 lines
2.1 KiB
C#
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Utilities;
|
|
|
|
namespace Bit.Api.Models;
|
|
|
|
public class CipherLoginModel
|
|
{
|
|
public CipherLoginModel() { }
|
|
|
|
public CipherLoginModel(CipherLoginData data)
|
|
{
|
|
Uris = data.Uris?.Select(u => new CipherLoginUriModel(u))?.ToList();
|
|
if (!Uris?.Any() ?? true)
|
|
{
|
|
Uri = data.Uri;
|
|
}
|
|
|
|
Username = data.Username;
|
|
Password = data.Password;
|
|
PasswordRevisionDate = data.PasswordRevisionDate;
|
|
Totp = data.Totp;
|
|
AutofillOnPageLoad = data.AutofillOnPageLoad;
|
|
}
|
|
|
|
[EncryptedString]
|
|
[EncryptedStringLength(10000)]
|
|
public string Uri
|
|
{
|
|
get => Uris?.FirstOrDefault()?.Uri;
|
|
set
|
|
{
|
|
if (string.IsNullOrWhiteSpace(value))
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (Uris == null)
|
|
{
|
|
Uris = new List<CipherLoginUriModel>();
|
|
}
|
|
|
|
Uris.Add(new CipherLoginUriModel(value));
|
|
}
|
|
}
|
|
public List<CipherLoginUriModel> Uris { get; set; }
|
|
[EncryptedString]
|
|
[EncryptedStringLength(1000)]
|
|
public string Username { get; set; }
|
|
[EncryptedString]
|
|
[EncryptedStringLength(5000)]
|
|
public string Password { get; set; }
|
|
public DateTime? PasswordRevisionDate { get; set; }
|
|
[EncryptedString]
|
|
[EncryptedStringLength(1000)]
|
|
public string Totp { get; set; }
|
|
public bool? AutofillOnPageLoad { get; set; }
|
|
|
|
public class CipherLoginUriModel
|
|
{
|
|
public CipherLoginUriModel() { }
|
|
|
|
public CipherLoginUriModel(string uri)
|
|
{
|
|
Uri = uri;
|
|
}
|
|
|
|
public CipherLoginUriModel(CipherLoginData.CipherLoginUriData uri)
|
|
{
|
|
Uri = uri.Uri;
|
|
Match = uri.Match;
|
|
}
|
|
|
|
[EncryptedString]
|
|
[EncryptedStringLength(10000)]
|
|
public string Uri { get; set; }
|
|
public UriMatchType? Match { get; set; } = null;
|
|
|
|
public CipherLoginData.CipherLoginUriData ToCipherLoginUriData()
|
|
{
|
|
return new CipherLoginData.CipherLoginUriData { Uri = Uri, Match = Match, };
|
|
}
|
|
}
|
|
}
|