]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/models/account/user.ts
4226bcb35a579b09d81ecf06f6fc13129a2bb962
[github/Chocobozzz/PeerTube.git] / server / models / account / user.ts
1 import * as Sequelize from 'sequelize'
2 import {
3 AllowNull, BeforeCreate, BeforeUpdate, Column, CreatedAt, DataType, Default, DefaultScope, HasMany, HasOne, Is, IsEmail, Model,
4 Scopes, Table, UpdatedAt
5 } from 'sequelize-typescript'
6 import { hasUserRight, USER_ROLE_LABELS, UserRight } from '../../../shared'
7 import { User } from '../../../shared/models/users'
8 import {
9 isUserAutoPlayVideoValid, isUserDisplayNSFWValid, isUserPasswordValid, isUserRoleValid, isUserUsernameValid,
10 isUserVideoQuotaValid
11 } from '../../helpers/custom-validators/users'
12 import { comparePassword, cryptPassword } from '../../helpers/peertube-crypto'
13 import { OAuthTokenModel } from '../oauth/oauth-token'
14 import { getSort, throwIfNotValid } from '../utils'
15 import { VideoChannelModel } from '../video/video-channel'
16 import { AccountModel } from './account'
17
18 @DefaultScope({
19 include: [
20 {
21 model: () => AccountModel,
22 required: true
23 }
24 ]
25 })
26 @Scopes({
27 withVideoChannel: {
28 include: [
29 {
30 model: () => AccountModel,
31 required: true,
32 include: [ () => VideoChannelModel ]
33 }
34 ]
35 }
36 })
37 @Table({
38 tableName: 'user',
39 indexes: [
40 {
41 fields: [ 'username' ],
42 unique: true
43 },
44 {
45 fields: [ 'email' ],
46 unique: true
47 }
48 ]
49 })
50 export class UserModel extends Model<UserModel> {
51
52 @AllowNull(false)
53 @Is('UserPassword', value => throwIfNotValid(value, isUserPasswordValid, 'user password'))
54 @Column
55 password: string
56
57 @AllowNull(false)
58 @Is('UserPassword', value => throwIfNotValid(value, isUserUsernameValid, 'user name'))
59 @Column
60 username: string
61
62 @AllowNull(false)
63 @IsEmail
64 @Column(DataType.STRING(400))
65 email: string
66
67 @AllowNull(false)
68 @Default(false)
69 @Is('UserDisplayNSFW', value => throwIfNotValid(value, isUserDisplayNSFWValid, 'display NSFW boolean'))
70 @Column
71 displayNSFW: boolean
72
73 @AllowNull(false)
74 @Default(true)
75 @Is('UserAutoPlayVideo', value => throwIfNotValid(value, isUserAutoPlayVideoValid, 'auto play video boolean'))
76 @Column
77 autoPlayVideo: boolean
78
79 @AllowNull(false)
80 @Is('UserRole', value => throwIfNotValid(value, isUserRoleValid, 'role'))
81 @Column
82 role: number
83
84 @AllowNull(false)
85 @Is('UserVideoQuota', value => throwIfNotValid(value, isUserVideoQuotaValid, 'video quota'))
86 @Column(DataType.BIGINT)
87 videoQuota: number
88
89 @CreatedAt
90 createdAt: Date
91
92 @UpdatedAt
93 updatedAt: Date
94
95 @HasOne(() => AccountModel, {
96 foreignKey: 'userId',
97 onDelete: 'cascade'
98 })
99 Account: AccountModel
100
101 @HasMany(() => OAuthTokenModel, {
102 foreignKey: 'userId',
103 onDelete: 'cascade'
104 })
105 OAuthTokens: OAuthTokenModel[]
106
107 @BeforeCreate
108 @BeforeUpdate
109 static cryptPasswordIfNeeded (instance: UserModel) {
110 if (instance.changed('password')) {
111 return cryptPassword(instance.password)
112 .then(hash => {
113 instance.password = hash
114 return undefined
115 })
116 }
117 }
118
119 static countTotal () {
120 return this.count()
121 }
122
123 static getByUsername (username: string) {
124 const query = {
125 where: {
126 username: username
127 },
128 include: [ { model: AccountModel, required: true } ]
129 }
130
131 return UserModel.findOne(query)
132 }
133
134 static listForApi (start: number, count: number, sort: string) {
135 const query = {
136 offset: start,
137 limit: count,
138 order: [ getSort(sort) ]
139 }
140
141 return UserModel.findAndCountAll(query)
142 .then(({ rows, count }) => {
143 return {
144 data: rows,
145 total: count
146 }
147 })
148 }
149
150 static loadById (id: number) {
151 return UserModel.findById(id)
152 }
153
154 static loadByUsername (username: string) {
155 const query = {
156 where: {
157 username
158 }
159 }
160
161 return UserModel.findOne(query)
162 }
163
164 static loadByUsernameAndPopulateChannels (username: string) {
165 const query = {
166 where: {
167 username
168 }
169 }
170
171 return UserModel.scope('withVideoChannel').findOne(query)
172 }
173
174 static loadByUsernameOrEmail (username: string, email: string) {
175 const query = {
176 where: {
177 [ Sequelize.Op.or ]: [ { username }, { email } ]
178 }
179 }
180
181 return UserModel.findOne(query)
182 }
183
184 private static getOriginalVideoFileTotalFromUser (user: UserModel) {
185 // Don't use sequelize because we need to use a sub query
186 const query = 'SELECT SUM("size") AS "total" FROM ' +
187 '(SELECT MAX("videoFile"."size") AS "size" FROM "videoFile" ' +
188 'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" ' +
189 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
190 'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
191 'INNER JOIN "user" ON "account"."userId" = "user"."id" ' +
192 'WHERE "user"."id" = $userId GROUP BY "video"."id") t'
193
194 const options = {
195 bind: { userId: user.id },
196 type: Sequelize.QueryTypes.SELECT
197 }
198 return UserModel.sequelize.query(query, options)
199 .then(([ { total } ]) => {
200 if (total === null) return 0
201
202 return parseInt(total, 10)
203 })
204 }
205
206 hasRight (right: UserRight) {
207 return hasUserRight(this.role, right)
208 }
209
210 isPasswordMatch (password: string) {
211 return comparePassword(password, this.password)
212 }
213
214 toFormattedJSON (): User {
215 const json = {
216 id: this.id,
217 username: this.username,
218 email: this.email,
219 displayNSFW: this.displayNSFW,
220 autoPlayVideo: this.autoPlayVideo,
221 role: this.role,
222 roleLabel: USER_ROLE_LABELS[ this.role ],
223 videoQuota: this.videoQuota,
224 createdAt: this.createdAt,
225 account: this.Account.toFormattedJSON(),
226 videoChannels: []
227 }
228
229 if (Array.isArray(this.Account.VideoChannels) === true) {
230 json.videoChannels = this.Account.VideoChannels
231 .map(c => c.toFormattedJSON())
232 .sort((v1, v2) => {
233 if (v1.createdAt < v2.createdAt) return -1
234 if (v1.createdAt === v2.createdAt) return 0
235
236 return 1
237 })
238 }
239
240 return json
241 }
242
243 isAbleToUploadVideo (videoFile: Express.Multer.File) {
244 if (this.videoQuota === -1) return Promise.resolve(true)
245
246 return UserModel.getOriginalVideoFileTotalFromUser(this)
247 .then(totalBytes => {
248 return (videoFile.size + totalBytes) < this.videoQuota
249 })
250 }
251 }