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
82
83
84
85
86
87
88
89
90
91
92
|
import {
Account as AccountServerModel,
hasUserRight,
User as UserServerModel,
UserRight,
UserRole,
VideoChannel
} from '../../../../../shared'
import { NSFWPolicyType } from '../../../../../shared/models/videos/nsfw-policy.type'
import { Actor } from '@app/shared/actor/actor.model'
import { Account } from '@app/shared/account/account.model'
import { Avatar } from '../../../../../shared/models/avatars/avatar.model'
export type UserConstructorHash = {
id: number,
username: string,
email: string,
role: UserRole,
videoQuota?: number,
nsfwPolicy?: NSFWPolicyType,
autoPlayVideo?: boolean,
createdAt?: Date,
account?: AccountServerModel,
videoChannels?: VideoChannel[]
}
export class User implements UserServerModel {
id: number
username: string
email: string
role: UserRole
nsfwPolicy: NSFWPolicyType
autoPlayVideo: boolean
videoQuota: number
account: Account
videoChannels: VideoChannel[]
createdAt: Date
constructor (hash: UserConstructorHash) {
this.id = hash.id
this.username = hash.username
this.email = hash.email
this.role = hash.role
if (hash.account !== undefined) {
this.account = new Account(hash.account)
}
if (hash.videoChannels !== undefined) {
this.videoChannels = hash.videoChannels
}
if (hash.videoQuota !== undefined) {
this.videoQuota = hash.videoQuota
}
if (hash.nsfwPolicy !== undefined) {
this.nsfwPolicy = hash.nsfwPolicy
}
if (hash.autoPlayVideo !== undefined) {
this.autoPlayVideo = hash.autoPlayVideo
}
if (hash.createdAt !== undefined) {
this.createdAt = hash.createdAt
}
}
get accountAvatarUrl () {
if (!this.account) return ''
return this.account.avatarUrl
}
hasRight (right: UserRight) {
return hasUserRight(this.role, right)
}
patch (obj: UserServerModel) {
for (const key of Object.keys(obj)) {
this[key] = obj[key]
}
if (obj.account !== undefined) {
this.account = new Account(obj.account)
}
}
updateAccountAvatar (newAccountAvatar: Avatar) {
this.account.updateAvatar(newAccountAvatar)
}
}
|