]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/account/user.ts
Add user adminFlags
[github/Chocobozzz/PeerTube.git] / server / models / account / user.ts
CommitLineData
e02643f3 1import * as Sequelize from 'sequelize'
3fd3ab2d 2import {
d175a6f7 3 AfterDestroy,
f201a749 4 AfterUpdate,
a73c582e
C
5 AllowNull,
6 BeforeCreate,
7 BeforeUpdate,
8 Column,
9 CreatedAt,
10 DataType,
11 Default,
12 DefaultScope,
13 HasMany,
14 HasOne,
15 Is,
16 IsEmail,
17 Model,
18 Scopes,
19 Table,
20 UpdatedAt
3fd3ab2d 21} from 'sequelize-typescript'
e34c85e5 22import { hasUserRight, USER_ROLE_LABELS, UserRight } from '../../../shared'
ba75d268 23import { User, UserRole } from '../../../shared/models/users'
65fcc311 24import {
1eddc9a7 25 isUserAdminFlagsValid,
a73c582e 26 isUserAutoPlayVideoValid,
eacb25c4 27 isUserBlockedReasonValid,
e6921918 28 isUserBlockedValid,
d9eaee39 29 isUserEmailVerifiedValid,
5cf84858 30 isUserNSFWPolicyValid,
a73c582e
C
31 isUserPasswordValid,
32 isUserRoleValid,
33 isUserUsernameValid,
5cf84858 34 isUserVideoQuotaDailyValid,
64cc5e85 35 isUserVideoQuotaValid,
cef534ed
C
36 isUserVideosHistoryEnabledValid,
37 isUserWebTorrentEnabledValid
3fd3ab2d 38} from '../../helpers/custom-validators/users'
da854ddd 39import { comparePassword, cryptPassword } from '../../helpers/peertube-crypto'
3fd3ab2d
C
40import { OAuthTokenModel } from '../oauth/oauth-token'
41import { getSort, throwIfNotValid } from '../utils'
42import { VideoChannelModel } from '../video/video-channel'
43import { AccountModel } from './account'
0883b324
C
44import { NSFWPolicyType } from '../../../shared/models/videos/nsfw-policy.type'
45import { values } from 'lodash'
74dc3bca 46import { NSFW_POLICY_TYPES } from '../../initializers/constants'
f201a749 47import { clearCacheByUserId } from '../../lib/oauth-model'
cef534ed
C
48import { UserNotificationSettingModel } from './user-notification-setting'
49import { VideoModel } from '../video/video'
50import { ActorModel } from '../activitypub/actor'
51import { ActorFollowModel } from '../activitypub/actor-follow'
dc133480 52import { VideoImportModel } from '../video/video-import'
1eddc9a7 53import { UserAdminFlag } from '../../../shared/models/users/user-flag.model'
3fd3ab2d 54
9c2e0dbf
C
55enum ScopeNames {
56 WITH_VIDEO_CHANNEL = 'WITH_VIDEO_CHANNEL'
57}
58
d48ff09d
C
59@DefaultScope({
60 include: [
61 {
62 model: () => AccountModel,
63 required: true
cef534ed
C
64 },
65 {
66 model: () => UserNotificationSettingModel,
67 required: true
d48ff09d
C
68 }
69 ]
70})
71@Scopes({
9c2e0dbf 72 [ScopeNames.WITH_VIDEO_CHANNEL]: {
d48ff09d
C
73 include: [
74 {
75 model: () => AccountModel,
76 required: true,
77 include: [ () => VideoChannelModel ]
cef534ed
C
78 },
79 {
80 model: () => UserNotificationSettingModel,
81 required: true
d48ff09d
C
82 }
83 ]
84 }
85})
3fd3ab2d
C
86@Table({
87 tableName: 'user',
88 indexes: [
feb4bdfd 89 {
3fd3ab2d
C
90 fields: [ 'username' ],
91 unique: true
feb4bdfd
C
92 },
93 {
3fd3ab2d
C
94 fields: [ 'email' ],
95 unique: true
feb4bdfd 96 }
e02643f3 97 ]
3fd3ab2d
C
98})
99export class UserModel extends Model<UserModel> {
100
101 @AllowNull(false)
102 @Is('UserPassword', value => throwIfNotValid(value, isUserPasswordValid, 'user password'))
103 @Column
104 password: string
105
106 @AllowNull(false)
107 @Is('UserPassword', value => throwIfNotValid(value, isUserUsernameValid, 'user name'))
108 @Column
109 username: string
110
111 @AllowNull(false)
112 @IsEmail
113 @Column(DataType.STRING(400))
114 email: string
115
d9eaee39
JM
116 @AllowNull(true)
117 @Default(null)
118 @Is('UserEmailVerified', value => throwIfNotValid(value, isUserEmailVerifiedValid, 'email verified boolean'))
119 @Column
120 emailVerified: boolean
121
3fd3ab2d 122 @AllowNull(false)
0883b324
C
123 @Is('UserNSFWPolicy', value => throwIfNotValid(value, isUserNSFWPolicyValid, 'NSFW policy'))
124 @Column(DataType.ENUM(values(NSFW_POLICY_TYPES)))
125 nsfwPolicy: NSFWPolicyType
3fd3ab2d 126
64cc5e85 127 @AllowNull(false)
0229b014 128 @Default(true)
ed638e53
RK
129 @Is('UserWebTorrentEnabled', value => throwIfNotValid(value, isUserWebTorrentEnabledValid, 'WebTorrent enabled'))
130 @Column
131 webTorrentEnabled: boolean
64cc5e85 132
8b9a525a
C
133 @AllowNull(false)
134 @Default(true)
135 @Is('UserVideosHistoryEnabled', value => throwIfNotValid(value, isUserVideosHistoryEnabledValid, 'Videos history enabled'))
136 @Column
137 videosHistoryEnabled: boolean
138
7efe153b
AL
139 @AllowNull(false)
140 @Default(true)
141 @Is('UserAutoPlayVideo', value => throwIfNotValid(value, isUserAutoPlayVideoValid, 'auto play video boolean'))
142 @Column
143 autoPlayVideo: boolean
144
1eddc9a7
C
145 @AllowNull(false)
146 @Default(UserAdminFlag.NONE)
147 @Is('UserAdminFlags', value => throwIfNotValid(value, isUserAdminFlagsValid, 'user admin flags'))
148 @Column
149 adminFlags?: UserAdminFlag
150
e6921918
C
151 @AllowNull(false)
152 @Default(false)
153 @Is('UserBlocked', value => throwIfNotValid(value, isUserBlockedValid, 'blocked boolean'))
154 @Column
155 blocked: boolean
156
eacb25c4
C
157 @AllowNull(true)
158 @Default(null)
159 @Is('UserBlockedReason', value => throwIfNotValid(value, isUserBlockedReasonValid, 'blocked reason'))
160 @Column
161 blockedReason: string
162
3fd3ab2d
C
163 @AllowNull(false)
164 @Is('UserRole', value => throwIfNotValid(value, isUserRoleValid, 'role'))
165 @Column
166 role: number
167
168 @AllowNull(false)
169 @Is('UserVideoQuota', value => throwIfNotValid(value, isUserVideoQuotaValid, 'video quota'))
170 @Column(DataType.BIGINT)
171 videoQuota: number
172
bee0abff
FA
173 @AllowNull(false)
174 @Is('UserVideoQuotaDaily', value => throwIfNotValid(value, isUserVideoQuotaDailyValid, 'video quota daily'))
175 @Column(DataType.BIGINT)
176 videoQuotaDaily: number
177
3fd3ab2d
C
178 @CreatedAt
179 createdAt: Date
180
181 @UpdatedAt
182 updatedAt: Date
183
184 @HasOne(() => AccountModel, {
185 foreignKey: 'userId',
f05a1c30
C
186 onDelete: 'cascade',
187 hooks: true
3fd3ab2d
C
188 })
189 Account: AccountModel
69b0a27c 190
cef534ed
C
191 @HasOne(() => UserNotificationSettingModel, {
192 foreignKey: 'userId',
193 onDelete: 'cascade',
194 hooks: true
195 })
196 NotificationSetting: UserNotificationSettingModel
197
dc133480
C
198 @HasMany(() => VideoImportModel, {
199 foreignKey: 'userId',
200 onDelete: 'cascade'
201 })
202 VideoImports: VideoImportModel[]
203
3fd3ab2d
C
204 @HasMany(() => OAuthTokenModel, {
205 foreignKey: 'userId',
206 onDelete: 'cascade'
207 })
208 OAuthTokens: OAuthTokenModel[]
209
210 @BeforeCreate
211 @BeforeUpdate
212 static cryptPasswordIfNeeded (instance: UserModel) {
213 if (instance.changed('password')) {
214 return cryptPassword(instance.password)
215 .then(hash => {
216 instance.password = hash
217 return undefined
218 })
219 }
59557c46 220 }
26d7d31b 221
f201a749 222 @AfterUpdate
d175a6f7 223 @AfterDestroy
f201a749
C
224 static removeTokenCache (instance: UserModel) {
225 return clearCacheByUserId(instance.id)
226 }
227
3fd3ab2d
C
228 static countTotal () {
229 return this.count()
230 }
954605a8 231
24b9417c
C
232 static listForApi (start: number, count: number, sort: string, search?: string) {
233 let where = undefined
234 if (search) {
235 where = {
236 [Sequelize.Op.or]: [
237 {
238 email: {
239 [Sequelize.Op.iLike]: '%' + search + '%'
240 }
241 },
242 {
243 username: {
244 [ Sequelize.Op.iLike ]: '%' + search + '%'
245 }
246 }
247 ]
248 }
249 }
250
3fd3ab2d 251 const query = {
a76138ff
C
252 attributes: {
253 include: [
254 [
255 Sequelize.literal(
256 '(' +
8b604880
C
257 'SELECT COALESCE(SUM("size"), 0) ' +
258 'FROM (' +
a76138ff
C
259 'SELECT MAX("videoFile"."size") AS "size" FROM "videoFile" ' +
260 'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" ' +
261 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
262 'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
263 'WHERE "account"."userId" = "UserModel"."id" GROUP BY "video"."id"' +
264 ') t' +
265 ')'
266 ),
267 'videoQuotaUsed'
268 ] as any // FIXME: typings
269 ]
270 },
3fd3ab2d
C
271 offset: start,
272 limit: count,
24b9417c
C
273 order: getSort(sort),
274 where
3fd3ab2d 275 }
72c7248b 276
3fd3ab2d
C
277 return UserModel.findAndCountAll(query)
278 .then(({ rows, count }) => {
279 return {
280 data: rows,
281 total: count
282 }
72c7248b 283 })
72c7248b
C
284 }
285
cef534ed 286 static listWithRight (right: UserRight) {
ba75d268
C
287 const roles = Object.keys(USER_ROLE_LABELS)
288 .map(k => parseInt(k, 10) as UserRole)
289 .filter(role => hasUserRight(role, right))
290
ba75d268 291 const query = {
ba75d268
C
292 where: {
293 role: {
294 [Sequelize.Op.in]: roles
295 }
296 }
297 }
298
cef534ed
C
299 return UserModel.findAll(query)
300 }
301
302 static listUserSubscribersOf (actorId: number) {
303 const query = {
304 include: [
305 {
306 model: UserNotificationSettingModel.unscoped(),
307 required: true
308 },
309 {
310 attributes: [ 'userId' ],
311 model: AccountModel.unscoped(),
312 required: true,
313 include: [
314 {
315 attributes: [ ],
316 model: ActorModel.unscoped(),
317 required: true,
318 where: {
319 serverId: null
320 },
321 include: [
322 {
323 attributes: [ ],
324 as: 'ActorFollowings',
325 model: ActorFollowModel.unscoped(),
326 required: true,
327 where: {
328 targetActorId: actorId
329 }
330 }
331 ]
332 }
333 ]
334 }
335 ]
336 }
337
338 return UserModel.unscoped().findAll(query)
ba75d268
C
339 }
340
f7cc67b4
C
341 static listByUsernames (usernames: string[]) {
342 const query = {
343 where: {
344 username: usernames
345 }
346 }
347
348 return UserModel.findAll(query)
349 }
350
3fd3ab2d 351 static loadById (id: number) {
9b39106d 352 return UserModel.findByPk(id)
3fd3ab2d 353 }
feb4bdfd 354
3fd3ab2d
C
355 static loadByUsername (username: string) {
356 const query = {
357 where: {
358 username
d48ff09d 359 }
3fd3ab2d 360 }
089ff2f2 361
3fd3ab2d 362 return UserModel.findOne(query)
feb4bdfd
C
363 }
364
3fd3ab2d
C
365 static loadByUsernameAndPopulateChannels (username: string) {
366 const query = {
367 where: {
368 username
d48ff09d 369 }
3fd3ab2d 370 }
9bd26629 371
9c2e0dbf 372 return UserModel.scope(ScopeNames.WITH_VIDEO_CHANNEL).findOne(query)
feb4bdfd
C
373 }
374
ecb4e35f
C
375 static loadByEmail (email: string) {
376 const query = {
377 where: {
378 email
379 }
380 }
381
382 return UserModel.findOne(query)
383 }
384
ba12e8b3
C
385 static loadByUsernameOrEmail (username: string, email?: string) {
386 if (!email) email = username
387
3fd3ab2d 388 const query = {
3fd3ab2d
C
389 where: {
390 [ Sequelize.Op.or ]: [ { username }, { email } ]
391 }
6fcd19ba 392 }
69b0a27c 393
d48ff09d 394 return UserModel.findOne(query)
72c7248b
C
395 }
396
cef534ed
C
397 static loadByVideoId (videoId: number) {
398 const query = {
399 include: [
400 {
401 required: true,
402 attributes: [ 'id' ],
403 model: AccountModel.unscoped(),
404 include: [
405 {
406 required: true,
407 attributes: [ 'id' ],
408 model: VideoChannelModel.unscoped(),
409 include: [
410 {
411 required: true,
412 attributes: [ 'id' ],
413 model: VideoModel.unscoped(),
414 where: {
415 id: videoId
416 }
417 }
418 ]
419 }
420 ]
421 }
422 ]
423 }
424
425 return UserModel.findOne(query)
426 }
427
dc133480
C
428 static loadByVideoImportId (videoImportId: number) {
429 const query = {
430 include: [
431 {
432 required: true,
433 attributes: [ 'id' ],
434 model: VideoImportModel.unscoped(),
435 where: {
436 id: videoImportId
437 }
438 }
439 ]
440 }
441
442 return UserModel.findOne(query)
443 }
444
f7cc67b4
C
445 static loadByChannelActorId (videoChannelActorId: number) {
446 const query = {
447 include: [
448 {
449 required: true,
450 attributes: [ 'id' ],
451 model: AccountModel.unscoped(),
452 include: [
453 {
454 required: true,
455 attributes: [ 'id' ],
456 model: VideoChannelModel.unscoped(),
457 where: {
458 actorId: videoChannelActorId
459 }
460 }
461 ]
462 }
463 ]
464 }
465
466 return UserModel.findOne(query)
467 }
468
469 static loadByAccountActorId (accountActorId: number) {
470 const query = {
471 include: [
472 {
473 required: true,
474 attributes: [ 'id' ],
475 model: AccountModel.unscoped(),
476 where: {
477 actorId: accountActorId
478 }
479 }
480 ]
481 }
482
483 return UserModel.findOne(query)
484 }
485
ce5496d6 486 static getOriginalVideoFileTotalFromUser (user: UserModel) {
3fd3ab2d 487 // Don't use sequelize because we need to use a sub query
8b604880 488 const query = UserModel.generateUserQuotaBaseSQL()
bee0abff 489
8b604880 490 return UserModel.getTotalRawQuery(query, user.id)
bee0abff
FA
491 }
492
8b604880 493 // Returns cumulative size of all video files uploaded in the last 24 hours.
bee0abff
FA
494 static getOriginalVideoFileTotalDailyFromUser (user: UserModel) {
495 // Don't use sequelize because we need to use a sub query
8b604880 496 const query = UserModel.generateUserQuotaBaseSQL('"video"."createdAt" > now() - interval \'24 hours\'')
68a3b9f2 497
8b604880 498 return UserModel.getTotalRawQuery(query, user.id)
72c7248b
C
499 }
500
09cababd
C
501 static async getStats () {
502 const totalUsers = await UserModel.count()
503
504 return {
505 totalUsers
506 }
507 }
508
5cf84858
C
509 static autoComplete (search: string) {
510 const query = {
511 where: {
512 username: {
513 [ Sequelize.Op.like ]: `%${search}%`
514 }
515 },
516 limit: 10
517 }
518
519 return UserModel.findAll(query)
520 .then(u => u.map(u => u.username))
521 }
522
3fd3ab2d
C
523 hasRight (right: UserRight) {
524 return hasUserRight(this.role, right)
525 }
72c7248b 526
1eddc9a7
C
527 hasAdminFlag (flag: UserAdminFlag) {
528 return this.adminFlags & flag
529 }
530
3fd3ab2d
C
531 isPasswordMatch (password: string) {
532 return comparePassword(password, this.password)
feb4bdfd
C
533 }
534
1eddc9a7 535 toFormattedJSON (parameters: { withAdminFlags?: boolean } = {}): User {
a76138ff 536 const videoQuotaUsed = this.get('videoQuotaUsed')
bee0abff 537 const videoQuotaUsedDaily = this.get('videoQuotaUsedDaily')
a76138ff 538
3fd3ab2d
C
539 const json = {
540 id: this.id,
541 username: this.username,
542 email: this.email,
d9eaee39 543 emailVerified: this.emailVerified,
0883b324 544 nsfwPolicy: this.nsfwPolicy,
ed638e53 545 webTorrentEnabled: this.webTorrentEnabled,
276d9652 546 videosHistoryEnabled: this.videosHistoryEnabled,
7efe153b 547 autoPlayVideo: this.autoPlayVideo,
3fd3ab2d
C
548 role: this.role,
549 roleLabel: USER_ROLE_LABELS[ this.role ],
550 videoQuota: this.videoQuota,
bee0abff 551 videoQuotaDaily: this.videoQuotaDaily,
3fd3ab2d 552 createdAt: this.createdAt,
eacb25c4
C
553 blocked: this.blocked,
554 blockedReason: this.blockedReason,
c5911fd3 555 account: this.Account.toFormattedJSON(),
cef534ed 556 notificationSettings: this.NotificationSetting ? this.NotificationSetting.toFormattedJSON() : undefined,
a76138ff 557 videoChannels: [],
bee0abff
FA
558 videoQuotaUsed: videoQuotaUsed !== undefined
559 ? parseInt(videoQuotaUsed, 10)
560 : undefined,
561 videoQuotaUsedDaily: videoQuotaUsedDaily !== undefined
562 ? parseInt(videoQuotaUsedDaily, 10)
563 : undefined
3fd3ab2d
C
564 }
565
1eddc9a7
C
566 if (parameters.withAdminFlags) {
567 Object.assign(json, { adminFlags: this.adminFlags })
568 }
569
3fd3ab2d 570 if (Array.isArray(this.Account.VideoChannels) === true) {
c5911fd3 571 json.videoChannels = this.Account.VideoChannels
3fd3ab2d
C
572 .map(c => c.toFormattedJSON())
573 .sort((v1, v2) => {
574 if (v1.createdAt < v2.createdAt) return -1
575 if (v1.createdAt === v2.createdAt) return 0
ad4a8a1c 576
3fd3ab2d
C
577 return 1
578 })
ad4a8a1c 579 }
3fd3ab2d
C
580
581 return json
ad4a8a1c
C
582 }
583
bee0abff
FA
584 async isAbleToUploadVideo (videoFile: { size: number }) {
585 if (this.videoQuota === -1 && this.videoQuotaDaily === -1) return Promise.resolve(true)
b0f9f39e 586
bee0abff
FA
587 const [ totalBytes, totalBytesDaily ] = await Promise.all([
588 UserModel.getOriginalVideoFileTotalFromUser(this),
589 UserModel.getOriginalVideoFileTotalDailyFromUser(this)
590 ])
591
592 const uploadedTotal = videoFile.size + totalBytes
593 const uploadedDaily = videoFile.size + totalBytesDaily
594 if (this.videoQuotaDaily === -1) {
595 return uploadedTotal < this.videoQuota
596 }
597 if (this.videoQuota === -1) {
598 return uploadedDaily < this.videoQuotaDaily
599 }
600
601 return (uploadedTotal < this.videoQuota) &&
602 (uploadedDaily < this.videoQuotaDaily)
b0f9f39e 603 }
8b604880
C
604
605 private static generateUserQuotaBaseSQL (where?: string) {
606 const andWhere = where ? 'AND ' + where : ''
607
608 return 'SELECT SUM("size") AS "total" ' +
609 'FROM (' +
610 'SELECT MAX("videoFile"."size") AS "size" FROM "videoFile" ' +
611 'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" ' +
612 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
613 'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
614 'WHERE "account"."userId" = $userId ' + andWhere +
615 'GROUP BY "video"."id"' +
616 ') t'
617 }
618
619 private static getTotalRawQuery (query: string, userId: number) {
620 const options = {
621 bind: { userId },
622 type: Sequelize.QueryTypes.SELECT
623 }
624
625 return UserModel.sequelize.query(query, options)
626 .then(([ { total } ]) => {
627 if (total === null) return 0
628
629 return parseInt(total, 10)
630 })
631 }
b0f9f39e 632}