using System.Runtime.CompilerServices; using System.Runtime.Serialization; using System.ComponentModel; namespace Model { /// /// A user is an entity with a _name, a surname, mail, profilePict and a list of priority. /// This user can login with an Id and a password /// [DataContract(Name = "user")] public class User : IEquatable , INotifyPropertyChanged { #region Private Attributes [DataMember] private string name=""; [DataMember] private string surname=""; [DataMember] private string mail = ""; [DataMember] private string picture = ""; [DataMember] private string password = ""; [DataMember] private List priorities; public event PropertyChangedEventHandler? PropertyChanged; #endregion #region Properties /// /// Property to get Name of users and a setter /// /// Setter have Exception which is trigger when Name is null public string Name { get { return name; } set { name = value; OnPropertyChanged(); } } /// /// Property to get Surname of users and a setter /// /// Setter have Exception which is trigger when Surname is null public string Surname { get { return surname; } set { surname = value; OnPropertyChanged(); } } /// /// Property to get mail of users and a setter /// /// User's mail will serve to log the user. So there's no setter, just an init. User will enter one time his email at his /// account creation. public string Mail { get { return mail; } private init { if (string.IsNullOrWhiteSpace(value)) { throw new ArgumentException("Impossible d'avoir un champ Email vide!"); } mail = value; } } public string Password { get => password; set => password = value; } /// /// For now, we define the ProfilPict as a string which is "PhotoParDefaut" /// when the value is null. /// public string ProfilPict { get => picture; set => picture = value; } /// /// This is the list of priorities specific tu the user. This list is initiate /// by default. User could change it at will. /// public List Priorities { get => priorities; set=> priorities = value; } public override bool Equals(object? other) { if (other == null) return false; if (other == this) return true; return Equals(other); } public bool Equals(User? other) { if (other == null) return false; return Name.Equals(other.Name) && Surname.Equals(other.Surname) && Mail.Equals(other.Mail); } public override int GetHashCode() { throw new NotImplementedException(); } protected void OnPropertyChanged ([CallerMemberName] string? propertyName = null) { if (PropertyChanged != null) PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } public override string ToString() { return $"{Name} {Surname}"; } [DataMember(Name = "passmgr")] public IPasswordManager psswMgr { get; private set; } #endregion #region Constructors /// /// Construtors of user. /// /// The name of the user /// The surname of the user /// The user needs an email to login. /// The password of the new user. /// The password manager to manage the user password. public User(string name, string surname, string mail, string password, IPasswordManager passwordManager) { Name = name; Surname = surname; Mail = mail; psswMgr = passwordManager; Password = psswMgr.HashPassword(password); priorities = new List { Priority.Gourmet, Priority.Economic, Priority.Fast, Priority.Light, Priority.Easy}; ProfilPict = picture; } /// /// /// public User(string name, string surname, string mail, string password) : this(name, surname,mail, password, new PasswordSHA256()) { } /// /// /// public User() : this("John", "Doe", "truc@gmail.com", "mdp") { } /// /// /// public User (User user) { Name = user.Name; Surname = user.Surname; Mail = user.Mail; psswMgr = user.psswMgr; Password = user.Password; priorities = user.Priorities; ProfilPict = user.ProfilPict; } #endregion } }