using System.ComponentModel.DataAnnotations;
using System.Text.Json.Serialization;
using Bit.Api.Models.Public.Response;
using Bit.Core.Entities;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
using Bit.Core.Models.Data.Organizations.OrganizationUsers;
namespace Bit.Api.AdminConsole.Public.Models.Response;
///
/// An organization member.
///
public class MemberResponseModel : MemberBaseModel, IResponseModel
{
[JsonConstructor]
public MemberResponseModel() { }
public MemberResponseModel(OrganizationUser user, IEnumerable collections,
bool flexibleCollectionsEnabled)
: base(user, flexibleCollectionsEnabled)
{
if (user == null)
{
throw new ArgumentNullException(nameof(user));
}
Id = user.Id;
UserId = user.UserId;
Email = user.Email;
Status = user.Status;
Collections = collections?.Select(c => new AssociationWithPermissionsResponseModel(c));
}
public MemberResponseModel(OrganizationUserUserDetails user, bool twoFactorEnabled,
IEnumerable collections, bool flexibleCollectionsEnabled)
: base(user, flexibleCollectionsEnabled)
{
if (user == null)
{
throw new ArgumentNullException(nameof(user));
}
Id = user.Id;
UserId = user.UserId;
Name = user.Name;
Email = user.Email;
TwoFactorEnabled = twoFactorEnabled;
Status = user.Status;
Collections = collections?.Select(c => new AssociationWithPermissionsResponseModel(c));
}
///
/// String representing the object's type. Objects of the same type share the same properties.
///
/// member
[Required]
public string Object => "member";
///
/// The member's unique identifier within the organization.
///
/// 539a36c5-e0d2-4cf9-979e-51ecf5cf6593
[Required]
public Guid Id { get; set; }
///
/// The member's unique identifier across Bitwarden.
///
/// 48b47ee1-493e-4c67-aef7-014996c40eca
[Required]
public Guid? UserId { get; set; }
///
/// The member's name, set from their user account profile.
///
/// John Smith
public string Name { get; set; }
///
/// The member's email address.
///
/// jsmith@example.com
[Required]
public string Email { get; set; }
///
/// Returns true if the member has a two-step login method enabled on their user account.
///
[Required]
public bool TwoFactorEnabled { get; set; }
///
/// The member's status within the organization. All created members start with a status of "Invited".
/// Once a member accept's their invitation to join the organization, their status changes to "Accepted".
/// Accepted members are then "Confirmed" by an organization administrator. Once a member is "Confirmed",
/// their status can no longer change.
///
[Required]
public OrganizationUserStatusType Status { get; set; }
///
/// The associated collections that this member can access.
///
public IEnumerable Collections { get; set; }
}