public RegisterAuditMessage(User user)
 {
     AffectedEntity = new Entity
     {
         Type = UserTypeName,
         Id   = user.Id
     };
     Category          = "CREATED";
     Description       = $"User registered with email address {user.Email}";
     ChangedProperties = new List <PropertyUpdate>
     {
         PropertyUpdate.FromString(nameof(user.FirstName), user.FirstName),
         PropertyUpdate.FromString(nameof(user.LastName), user.LastName),
         PropertyUpdate.FromString(nameof(user.Email), user.Email),
         PropertyUpdate.FromString(nameof(user.Password), PasswordAuditValue),
         PropertyUpdate.FromString(nameof(user.Salt), SaltAuditValue),
         PropertyUpdate.FromString(nameof(user.PasswordProfileId), user.PasswordProfileId),
         PropertyUpdate.FromBool(nameof(user.IsActive), user.IsActive)
     };
     for (var i = 0; i < user.SecurityCodes.Length; i++)
     {
         var code = user.SecurityCodes[i];
         ChangedProperties.Add(PropertyUpdate.FromString($"{nameof(user.SecurityCodes)}[{i}].{nameof(code.Code)}", code.Code));
         ChangedProperties.Add(PropertyUpdate.FromString($"{nameof(user.SecurityCodes)}[{i}].{nameof(code.CodeType)}", code.CodeType.ToString()));
         ChangedProperties.Add(PropertyUpdate.FromDateTime($"{nameof(user.SecurityCodes)}[{i}].{nameof(code.ExpiryTime)}", code.ExpiryTime));
     }
 }
コード例 #2
0
 public ActivatedAuditMessage(User user)
 {
     AffectedEntity = new Entity
     {
         Type = UserTypeName,
         Id   = user.Id
     };
     Category          = "ACTIVATED";
     Description       = $"User {user.Email} (id: {user.Id}) activated their account";
     ChangedProperties = new List <PropertyUpdate>
     {
         PropertyUpdate.FromBool(nameof(user.IsActive), user.IsActive)
     };
 }
 public AccountLockedAuditMessage(User user)
 {
     Category       = "ACCOUNT_LOCKED";
     Description    = $"User {user.Email} (id: {user.Id}) has exceeded the limit of failed logins and the account has been locked";
     AffectedEntity = new Entity
     {
         Type = UserTypeName,
         Id   = user.Id
     };
     ChangedProperties = new List <PropertyUpdate>
     {
         PropertyUpdate.FromInt(nameof(user.FailedLoginAttempts), user.FailedLoginAttempts),
         PropertyUpdate.FromBool(nameof(user.IsLocked), user.IsLocked)
     };
 }
コード例 #4
0
 public UnlockedAuditMessage(User user)
 {
     AffectedEntity = new Entity
     {
         Type = UserTypeName,
         Id   = user.Id
     };
     Category          = "UNLOCK";
     Description       = $"User {user.Email} (id: {user.Id}) unlocked their account";
     ChangedProperties = new List <PropertyUpdate>
     {
         PropertyUpdate.FromBool(nameof(user.IsLocked), user.IsLocked),
         PropertyUpdate.FromInt(nameof(user.FailedLoginAttempts), user.FailedLoginAttempts)
     };
 }