mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* feat(NewDeviceVerification) : - Added constant to constants in Bit.Core because the cache key format needs to be shared between the Identity Server and the MVC project Admin. - Updated DeviceValidator class to handle checking cache for user information to allow pass through. - Updated and Added tests to handle new flow. - Adding exception flow to admin project. Added tests for new methods in UserService.
75 lines
2.6 KiB
C#
75 lines
2.6 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using Bit.Core.Billing.Models;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Settings;
|
|
using Bit.Core.Utilities;
|
|
using Bit.Core.Vault.Entities;
|
|
|
|
namespace Bit.Admin.Models;
|
|
|
|
public class UserEditModel
|
|
{
|
|
public UserEditModel() { }
|
|
|
|
public UserEditModel(
|
|
User user,
|
|
bool isTwoFactorEnabled,
|
|
IEnumerable<Cipher> ciphers,
|
|
BillingInfo billingInfo,
|
|
BillingHistoryInfo billingHistoryInfo,
|
|
GlobalSettings globalSettings,
|
|
bool? claimedAccount,
|
|
bool? activeNewDeviceVerificationException)
|
|
{
|
|
User = UserViewModel.MapViewModel(user, isTwoFactorEnabled, ciphers, claimedAccount);
|
|
|
|
ActiveNewDeviceVerificationException = activeNewDeviceVerificationException ?? false;
|
|
|
|
BillingInfo = billingInfo;
|
|
BillingHistoryInfo = billingHistoryInfo;
|
|
BraintreeMerchantId = globalSettings.Braintree.MerchantId;
|
|
|
|
Name = user.Name;
|
|
Email = user.Email;
|
|
EmailVerified = user.EmailVerified;
|
|
Premium = user.Premium;
|
|
MaxStorageGb = user.MaxStorageGb;
|
|
Gateway = user.Gateway;
|
|
GatewayCustomerId = user.GatewayCustomerId;
|
|
GatewaySubscriptionId = user.GatewaySubscriptionId;
|
|
LicenseKey = user.LicenseKey;
|
|
PremiumExpirationDate = user.PremiumExpirationDate;
|
|
}
|
|
|
|
public UserViewModel User { get; init; }
|
|
public BillingInfo BillingInfo { get; init; }
|
|
public BillingHistoryInfo BillingHistoryInfo { get; init; }
|
|
public string RandomLicenseKey => CoreHelpers.SecureRandomString(20);
|
|
public string OneYearExpirationDate => DateTime.Now.AddYears(1).ToString("yyyy-MM-ddTHH:mm");
|
|
public string BraintreeMerchantId { get; init; }
|
|
public bool ActiveNewDeviceVerificationException { get; init; }
|
|
|
|
|
|
[Display(Name = "Name")]
|
|
public string Name { get; init; }
|
|
[Required]
|
|
[Display(Name = "Email")]
|
|
public string Email { get; init; }
|
|
[Display(Name = "Email Verified")]
|
|
public bool EmailVerified { get; init; }
|
|
[Display(Name = "Premium")]
|
|
public bool Premium { get; init; }
|
|
[Display(Name = "Max. Storage GB")]
|
|
public short? MaxStorageGb { get; init; }
|
|
[Display(Name = "Gateway")]
|
|
public Core.Enums.GatewayType? Gateway { get; init; }
|
|
[Display(Name = "Gateway Customer Id")]
|
|
public string GatewayCustomerId { get; init; }
|
|
[Display(Name = "Gateway Subscription Id")]
|
|
public string GatewaySubscriptionId { get; init; }
|
|
[Display(Name = "License Key")]
|
|
public string LicenseKey { get; init; }
|
|
[Display(Name = "Premium Expiration Date")]
|
|
public DateTime? PremiumExpirationDate { get; init; }
|
|
}
|