1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.AspNetCore.Identity;
using System.Collections.Generic;
namespace Models.Classes
{
[Table("Users")]
public class User<T> : IdentityUser<int>
{
private string firstName;
private string lastName;
private string profilePicture;
[Required]
[Range(3, 50)]
[Display(Name = "Username")]
public override string UserName {
get => base.UserName;
set {
ValidateString("Username", 3, 50, value, true);
base.UserName = value;
}
}
[Required]
[Range(3, 30)]
public string FirstName {
get => this.firstName;
set {
ValidateString("FirstName", 3, 30, value, false);
this.firstName = value;
}
}
[Required]
[Range(3, 30)]
public string LastName {
get => this.lastName;
set {
ValidateString("LastName", 3, 30, value, false);
this.lastName = value;
}
}
public string ProfilePicture {
get => this.profilePicture;
set {
ValidateURL(value);
this.profilePicture = value;
}
}
public List<User<T>> Friends { get; set; }
/// <summary>
/// Throws an argument exception if the given value is not composed only of letters, and if specified, also of digits.
/// Does nothing otherwise.
/// </summary>
private static void ValidateString(string name, int minLength, int maxLength, string value, bool canBeDigit) {
if (value.Length < minLength || value.Length > maxLength)
throw new ArgumentException($"{name} length cannot be less than {minLength} and more than {maxLength}.");
foreach (char character in value) { // more efficient than Linq
if (!Char.IsLetter(character) || (canBeDigit && !Char.IsDigit(character)))
throw new ArgumentException($"{name} contains invalid characters.");
}
}
/// <summary>
/// Throws an exception if the absolute url isn't valid.
/// Does nothing otherwise.
/// </summary>
private static void ValidateURL(string urlValue) {
// Throws an error is URL is invalid
Uri validatedUri;
Uri.TryCreate(urlValue, UriKind.Absolute, out validatedUri);
}
}
}
|