mirror of
https://github.com/bitwarden/server.git
synced 2025-04-13 00:58:13 -05:00
47 lines
1.7 KiB
C#
47 lines
1.7 KiB
C#
using System;
|
|
using Bit.Core.Models.Table;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Models.Api
|
|
{
|
|
public class ProfileResponseModel : ResponseModel
|
|
{
|
|
public ProfileResponseModel(User user, IEnumerable<OrganizationUserOrganizationDetails> organizationsUserDetails)
|
|
: base("profile")
|
|
{
|
|
if(user == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(user));
|
|
}
|
|
|
|
Id = user.Id.ToString();
|
|
Name = user.Name;
|
|
Email = user.Email;
|
|
EmailVerified = user.EmailVerified;
|
|
Premium = user.Premium;
|
|
MasterPasswordHint = string.IsNullOrWhiteSpace(user.MasterPasswordHint) ? null : user.MasterPasswordHint;
|
|
Culture = user.Culture;
|
|
TwoFactorEnabled = user.TwoFactorIsEnabled();
|
|
Key = user.Key;
|
|
PrivateKey = user.PrivateKey;
|
|
SecurityStamp = user.SecurityStamp;
|
|
Organizations = organizationsUserDetails?.Select(o => new ProfileOrganizationResponseModel(o));
|
|
}
|
|
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public bool EmailVerified { get; set; }
|
|
public bool Premium { get; set; }
|
|
public string MasterPasswordHint { get; set; }
|
|
public string Culture { get; set; }
|
|
public bool TwoFactorEnabled { get; set; }
|
|
public string Key { get; set; }
|
|
public string PrivateKey { get; set; }
|
|
public string SecurityStamp { get; set; }
|
|
public IEnumerable<ProfileOrganizationResponseModel> Organizations { get; set; }
|
|
}
|
|
}
|