1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-26 10:36:21 +02:00
bitwarden-mobile/src/Core/Models/Data/CipherData.cs

91 lines
3.7 KiB
C#
Raw Normal View History

2022-04-26 17:21:17 +02:00
using System;
2019-04-12 22:55:14 +02:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
2022-04-26 17:21:17 +02:00
using Bit.Core.Models.Response;
2019-04-12 22:55:14 +02:00
namespace Bit.Core.Models.Data
{
public class CipherData : Data
{
public CipherData() { }
2019-04-16 17:09:05 +02:00
public CipherData(CipherResponse response, string userId = null, HashSet<string> collectionIds = null)
2019-04-12 22:55:14 +02:00
{
Id = response.Id;
OrganizationId = response.OrganizationId;
FolderId = response.FolderId;
UserId = userId;
Edit = response.Edit;
ViewPassword = response.ViewPassword;
2019-04-12 22:55:14 +02:00
OrganizationUseTotp = response.OrganizationUseTotp;
Favorite = response.Favorite;
RevisionDate = response.RevisionDate;
Type = response.Type;
Name = response.Name;
Notes = response.Notes;
2019-04-16 17:09:05 +02:00
CollectionIds = collectionIds?.ToList() ?? response.CollectionIds;
Reprompt = response.Reprompt;
2019-04-12 22:55:14 +02:00
try // Added to address Issue (https://github.com/bitwarden/mobile/issues/1006)
2019-04-12 22:55:14 +02:00
{
switch (Type)
{
case Enums.CipherType.Login:
Login = new LoginData(response.Login);
break;
case Enums.CipherType.SecureNote:
SecureNote = new SecureNoteData(response.SecureNote);
break;
case Enums.CipherType.Card:
Card = new CardData(response.Card);
break;
case Enums.CipherType.Identity:
Identity = new IdentityData(response.Identity);
break;
default:
break;
}
}
catch
{
System.Diagnostics.Trace.WriteLine(new StringBuilder()
.Append("BitWarden CipherData constructor failed to initialize CyperType '")
.Append(Type)
.Append("'; id = {")
.Append(Id)
.AppendLine("}")
.ToString(), "BitWarden CipherData constructor");
2019-04-12 22:55:14 +02:00
}
Fields = response.Fields?.Select(f => new FieldData(f)).ToList();
Attachments = response.Attachments?.Select(a => new AttachmentData(a)).ToList();
PasswordHistory = response.PasswordHistory?.Select(ph => new PasswordHistoryData(ph)).ToList();
DeletedDate = response.DeletedDate;
2019-04-12 22:55:14 +02:00
}
public string Id { get; set; }
public string OrganizationId { get; set; }
public string FolderId { get; set; }
public string UserId { get; set; }
public bool Edit { get; set; }
public bool ViewPassword { get; set; } = true; // Fallback for old server versions
2019-04-12 22:55:14 +02:00
public bool OrganizationUseTotp { get; set; }
public bool Favorite { get; set; }
public DateTime RevisionDate { get; set; }
public Enums.CipherType Type { get; set; }
public string Name { get; set; }
public string Notes { get; set; }
public LoginData Login { get; set; }
public SecureNoteData SecureNote { get; set; }
public CardData Card { get; set; }
public IdentityData Identity { get; set; }
public List<FieldData> Fields { get; set; }
public List<AttachmentData> Attachments { get; set; }
public List<PasswordHistoryData> PasswordHistory { get; set; }
public List<string> CollectionIds { get; set; }
public DateTime? DeletedDate { get; set; }
public Enums.CipherRepromptType Reprompt { get; set; }
2019-04-12 22:55:14 +02:00
}
}