]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/user/user.ts
Add Podcast RSS feeds (#5487)
[github/Chocobozzz/PeerTube.git] / server / models / user / user.ts
CommitLineData
5600def4 1import { col, FindOptions, fn, literal, Op, QueryTypes, where, WhereOptions } 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,
b49f22d8 17 IsUUID,
a73c582e
C
18 Model,
19 Scopes,
20 Table,
b49f22d8 21 UpdatedAt
3fd3ab2d 22} from 'sequelize-typescript'
f43db2f4 23import { TokensCache } from '@server/lib/auth/tokens-cache'
d493e2d4 24import { LiveQuotaStore } from '@server/lib/live'
bd45d503
C
25import {
26 MMyUserFormattable,
fb719404 27 MUser,
bd45d503
C
28 MUserDefault,
29 MUserFormattable,
bd45d503 30 MUserNotifSettingChannelDefault,
ff9d43f6 31 MUserWithNotificationSetting
bd45d503 32} from '@server/types/models'
8c4bbd94 33import { forceNumber } from '@shared/core-utils'
6b5f72be 34import { AttributesOnly } from '@shared/typescript-utils'
bd45d503 35import { hasUserRight, USER_ROLE_LABELS } from '../../../shared/core-utils/users'
ff9d43f6 36import { AbuseState, MyUser, UserRight, VideoPlaylistType } from '../../../shared/models'
ba75d268 37import { User, UserRole } from '../../../shared/models/users'
bd45d503
C
38import { UserAdminFlag } from '../../../shared/models/users/user-flag.model'
39import { NSFWPolicyType } from '../../../shared/models/videos/nsfw-policy.type'
40import { isThemeNameValid } from '../../helpers/custom-validators/plugins'
65fcc311 41import {
1eddc9a7 42 isUserAdminFlagsValid,
bee29df8 43 isUserAutoPlayNextVideoPlaylistValid,
ac0868bc
C
44 isUserAutoPlayNextVideoValid,
45 isUserAutoPlayVideoValid,
eacb25c4 46 isUserBlockedReasonValid,
e6921918 47 isUserBlockedValid,
d9eaee39 48 isUserEmailVerifiedValid,
8f581725 49 isUserNoModal,
5cf84858 50 isUserNSFWPolicyValid,
9d8ef212 51 isUserP2PEnabledValid,
a73c582e
C
52 isUserPasswordValid,
53 isUserRoleValid,
3caf77d3 54 isUserVideoLanguages,
5cf84858 55 isUserVideoQuotaDailyValid,
64cc5e85 56 isUserVideoQuotaValid,
9d8ef212 57 isUserVideosHistoryEnabledValid
3fd3ab2d 58} from '../../helpers/custom-validators/users'
da854ddd 59import { comparePassword, cryptPassword } from '../../helpers/peertube-crypto'
bd45d503 60import { DEFAULT_USER_THEME_NAME, NSFW_POLICY_TYPES } from '../../initializers/constants'
bd45d503 61import { getThemeOrDefault } from '../../lib/plugins/theme-utils'
7d9ba5c0
C
62import { AccountModel } from '../account/account'
63import { ActorModel } from '../actor/actor'
64import { ActorFollowModel } from '../actor/actor-follow'
65import { ActorImageModel } from '../actor/actor-image'
3fd3ab2d 66import { OAuthTokenModel } from '../oauth/oauth-token'
8c4bbd94 67import { getAdminUsersSort, throwIfNotValid } from '../shared'
bd45d503 68import { VideoModel } from '../video/video'
3fd3ab2d 69import { VideoChannelModel } from '../video/video-channel'
bd45d503 70import { VideoImportModel } from '../video/video-import'
97969c4e 71import { VideoLiveModel } from '../video/video-live'
29128b2f 72import { VideoPlaylistModel } from '../video/video-playlist'
cef534ed 73import { UserNotificationSettingModel } from './user-notification-setting'
3fd3ab2d 74
9c2e0dbf 75enum ScopeNames {
76314386
RK
76 FOR_ME_API = 'FOR_ME_API',
77 WITH_VIDEOCHANNELS = 'WITH_VIDEOCHANNELS',
9a82ce24 78 WITH_QUOTA = 'WITH_QUOTA',
76314386 79 WITH_STATS = 'WITH_STATS'
9c2e0dbf
C
80}
81
3acc5084 82@DefaultScope(() => ({
d48ff09d
C
83 include: [
84 {
3acc5084 85 model: AccountModel,
d48ff09d 86 required: true
cef534ed
C
87 },
88 {
3acc5084 89 model: UserNotificationSettingModel,
cef534ed 90 required: true
d48ff09d
C
91 }
92 ]
3acc5084
C
93}))
94@Scopes(() => ({
ac0868bc 95 [ScopeNames.FOR_ME_API]: {
d48ff09d
C
96 include: [
97 {
3acc5084 98 model: AccountModel,
ac0868bc
C
99 include: [
100 {
cdeddff1
C
101 model: VideoChannelModel.unscoped(),
102 include: [
103 {
104 model: ActorModel,
105 required: true,
106 include: [
107 {
108 model: ActorImageModel,
d0800f76 109 as: 'Banners',
cdeddff1
C
110 required: false
111 }
112 ]
113 }
114 ]
ac0868bc
C
115 },
116 {
117 attributes: [ 'id', 'name', 'type' ],
118 model: VideoPlaylistModel.unscoped(),
119 required: true,
120 where: {
121 type: {
a1587156 122 [Op.ne]: VideoPlaylistType.REGULAR
ac0868bc
C
123 }
124 }
125 }
126 ]
cef534ed
C
127 },
128 {
3acc5084 129 model: UserNotificationSettingModel,
cef534ed 130 required: true
d48ff09d 131 }
3acc5084 132 ]
76314386
RK
133 },
134 [ScopeNames.WITH_VIDEOCHANNELS]: {
135 include: [
136 {
137 model: AccountModel,
138 include: [
139 {
140 model: VideoChannelModel
141 },
142 {
143 attributes: [ 'id', 'name', 'type' ],
144 model: VideoPlaylistModel.unscoped(),
145 required: true,
146 where: {
147 type: {
148 [Op.ne]: VideoPlaylistType.REGULAR
149 }
150 }
151 }
152 ]
153 }
154 ]
155 },
9a82ce24 156 [ScopeNames.WITH_QUOTA]: {
76314386
RK
157 attributes: {
158 include: [
5600def4
C
159 [
160 literal(
161 '(' +
162 UserModel.generateUserQuotaBaseSQL({
163 withSelect: false,
9a82ce24
C
164 whereUserId: '"UserModel"."id"',
165 daily: false
5600def4
C
166 }) +
167 ')'
168 ),
169 'videoQuotaUsed'
170 ],
9a82ce24
C
171 [
172 literal(
173 '(' +
174 UserModel.generateUserQuotaBaseSQL({
175 withSelect: false,
176 whereUserId: '"UserModel"."id"',
177 daily: true
178 }) +
179 ')'
180 ),
181 'videoQuotaUsedDaily'
182 ]
183 ]
184 }
185 },
186 [ScopeNames.WITH_STATS]: {
187 attributes: {
188 include: [
76314386
RK
189 [
190 literal(
191 '(' +
192 'SELECT COUNT("video"."id") ' +
193 'FROM "video" ' +
194 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
195 'INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId" ' +
196 'WHERE "account"."userId" = "UserModel"."id"' +
197 ')'
198 ),
199 'videosCount'
200 ],
201 [
202 literal(
203 '(' +
204 `SELECT concat_ws(':', "abuses", "acceptedAbuses") ` +
205 'FROM (' +
4f32032f
C
206 'SELECT COUNT("abuse"."id") AS "abuses", ' +
207 `COUNT("abuse"."id") FILTER (WHERE "abuse"."state" = ${AbuseState.ACCEPTED}) AS "acceptedAbuses" ` +
208 'FROM "abuse" ' +
209 'INNER JOIN "account" ON "account"."id" = "abuse"."flaggedAccountId" ' +
76314386
RK
210 'WHERE "account"."userId" = "UserModel"."id"' +
211 ') t' +
212 ')'
213 ),
4f32032f 214 'abusesCount'
76314386
RK
215 ],
216 [
217 literal(
218 '(' +
4f32032f
C
219 'SELECT COUNT("abuse"."id") ' +
220 'FROM "abuse" ' +
221 'INNER JOIN "account" ON "account"."id" = "abuse"."reporterAccountId" ' +
76314386
RK
222 'WHERE "account"."userId" = "UserModel"."id"' +
223 ')'
224 ),
4f32032f 225 'abusesCreatedCount'
76314386
RK
226 ],
227 [
228 literal(
229 '(' +
230 'SELECT COUNT("videoComment"."id") ' +
231 'FROM "videoComment" ' +
232 'INNER JOIN "account" ON "account"."id" = "videoComment"."accountId" ' +
233 'WHERE "account"."userId" = "UserModel"."id"' +
234 ')'
235 ),
236 'videoCommentsCount'
237 ]
238 ]
239 }
d48ff09d 240 }
3acc5084 241}))
3fd3ab2d
C
242@Table({
243 tableName: 'user',
244 indexes: [
feb4bdfd 245 {
3fd3ab2d
C
246 fields: [ 'username' ],
247 unique: true
feb4bdfd
C
248 },
249 {
3fd3ab2d
C
250 fields: [ 'email' ],
251 unique: true
feb4bdfd 252 }
e02643f3 253 ]
3fd3ab2d 254})
16c016e8 255export class UserModel extends Model<Partial<AttributesOnly<UserModel>>> {
3fd3ab2d 256
7fed6375 257 @AllowNull(true)
e1c55031 258 @Is('UserPassword', value => throwIfNotValid(value, isUserPasswordValid, 'user password', true))
3fd3ab2d
C
259 @Column
260 password: string
261
262 @AllowNull(false)
3fd3ab2d
C
263 @Column
264 username: string
265
266 @AllowNull(false)
267 @IsEmail
268 @Column(DataType.STRING(400))
269 email: string
270
d1ab89de
C
271 @AllowNull(true)
272 @IsEmail
273 @Column(DataType.STRING(400))
274 pendingEmail: string
275
d9eaee39
JM
276 @AllowNull(true)
277 @Default(null)
1735c825 278 @Is('UserEmailVerified', value => throwIfNotValid(value, isUserEmailVerifiedValid, 'email verified boolean', true))
d9eaee39
JM
279 @Column
280 emailVerified: boolean
281
3fd3ab2d 282 @AllowNull(false)
0883b324 283 @Is('UserNSFWPolicy', value => throwIfNotValid(value, isUserNSFWPolicyValid, 'NSFW policy'))
690bb8f9 284 @Column(DataType.ENUM(...Object.values(NSFW_POLICY_TYPES)))
0883b324 285 nsfwPolicy: NSFWPolicyType
3fd3ab2d 286
64cc5e85 287 @AllowNull(false)
a9bfa85d 288 @Is('p2pEnabled', value => throwIfNotValid(value, isUserP2PEnabledValid, 'P2P enabled'))
ed638e53 289 @Column
a9bfa85d 290 p2pEnabled: boolean
64cc5e85 291
8b9a525a
C
292 @AllowNull(false)
293 @Default(true)
294 @Is('UserVideosHistoryEnabled', value => throwIfNotValid(value, isUserVideosHistoryEnabledValid, 'Videos history enabled'))
295 @Column
296 videosHistoryEnabled: boolean
297
7efe153b
AL
298 @AllowNull(false)
299 @Default(true)
300 @Is('UserAutoPlayVideo', value => throwIfNotValid(value, isUserAutoPlayVideoValid, 'auto play video boolean'))
301 @Column
302 autoPlayVideo: boolean
303
6aa54148
L
304 @AllowNull(false)
305 @Default(false)
306 @Is('UserAutoPlayNextVideo', value => throwIfNotValid(value, isUserAutoPlayNextVideoValid, 'auto play next video boolean'))
307 @Column
308 autoPlayNextVideo: boolean
309
bee29df8
RK
310 @AllowNull(false)
311 @Default(true)
a1587156
C
312 @Is(
313 'UserAutoPlayNextVideoPlaylist',
314 value => throwIfNotValid(value, isUserAutoPlayNextVideoPlaylistValid, 'auto play next video for playlists boolean')
315 )
bee29df8
RK
316 @Column
317 autoPlayNextVideoPlaylist: boolean
318
3caf77d3
C
319 @AllowNull(true)
320 @Default(null)
321 @Is('UserVideoLanguages', value => throwIfNotValid(value, isUserVideoLanguages, 'video languages'))
322 @Column(DataType.ARRAY(DataType.STRING))
323 videoLanguages: string[]
324
1eddc9a7
C
325 @AllowNull(false)
326 @Default(UserAdminFlag.NONE)
327 @Is('UserAdminFlags', value => throwIfNotValid(value, isUserAdminFlagsValid, 'user admin flags'))
328 @Column
329 adminFlags?: UserAdminFlag
330
e6921918
C
331 @AllowNull(false)
332 @Default(false)
333 @Is('UserBlocked', value => throwIfNotValid(value, isUserBlockedValid, 'blocked boolean'))
334 @Column
335 blocked: boolean
336
eacb25c4
C
337 @AllowNull(true)
338 @Default(null)
1735c825 339 @Is('UserBlockedReason', value => throwIfNotValid(value, isUserBlockedReasonValid, 'blocked reason', true))
eacb25c4
C
340 @Column
341 blockedReason: string
342
3fd3ab2d
C
343 @AllowNull(false)
344 @Is('UserRole', value => throwIfNotValid(value, isUserRoleValid, 'role'))
345 @Column
346 role: number
347
348 @AllowNull(false)
349 @Is('UserVideoQuota', value => throwIfNotValid(value, isUserVideoQuotaValid, 'video quota'))
350 @Column(DataType.BIGINT)
351 videoQuota: number
352
bee0abff
FA
353 @AllowNull(false)
354 @Is('UserVideoQuotaDaily', value => throwIfNotValid(value, isUserVideoQuotaDailyValid, 'video quota daily'))
355 @Column(DataType.BIGINT)
356 videoQuotaDaily: number
357
7cd4d2ba 358 @AllowNull(false)
3f87a46f 359 @Default(DEFAULT_USER_THEME_NAME)
503c6f44 360 @Is('UserTheme', value => throwIfNotValid(value, isThemeNameValid, 'theme'))
7cd4d2ba
C
361 @Column
362 theme: string
363
43d0ea7f
C
364 @AllowNull(false)
365 @Default(false)
366 @Is(
367 'UserNoInstanceConfigWarningModal',
8f581725 368 value => throwIfNotValid(value, isUserNoModal, 'no instance config warning modal')
43d0ea7f
C
369 )
370 @Column
371 noInstanceConfigWarningModal: boolean
372
373 @AllowNull(false)
374 @Default(false)
375 @Is(
8f581725
C
376 'UserNoWelcomeModal',
377 value => throwIfNotValid(value, isUserNoModal, 'no welcome modal')
43d0ea7f
C
378 )
379 @Column
380 noWelcomeModal: boolean
381
8f581725
C
382 @AllowNull(false)
383 @Default(false)
384 @Is(
385 'UserNoAccountSetupWarningModal',
386 value => throwIfNotValid(value, isUserNoModal, 'no account setup warning modal')
387 )
388 @Column
389 noAccountSetupWarningModal: boolean
390
7fed6375
C
391 @AllowNull(true)
392 @Default(null)
393 @Column
394 pluginAuth: string
395
afff310e
RK
396 @AllowNull(false)
397 @Default(DataType.UUIDV4)
398 @IsUUID(4)
399 @Column(DataType.UUID)
400 feedToken: string
401
3cc665f4
C
402 @AllowNull(true)
403 @Default(null)
404 @Column
405 lastLoginDate: Date
406
cb0eda56
AG
407 @AllowNull(false)
408 @Default(false)
409 @Column
410 emailPublic: boolean
411
56f47830
C
412 @AllowNull(true)
413 @Default(null)
414 @Column
415 otpSecret: string
416
3fd3ab2d
C
417 @CreatedAt
418 createdAt: Date
419
420 @UpdatedAt
421 updatedAt: Date
422
423 @HasOne(() => AccountModel, {
424 foreignKey: 'userId',
f05a1c30
C
425 onDelete: 'cascade',
426 hooks: true
3fd3ab2d
C
427 })
428 Account: AccountModel
69b0a27c 429
cef534ed
C
430 @HasOne(() => UserNotificationSettingModel, {
431 foreignKey: 'userId',
432 onDelete: 'cascade',
433 hooks: true
434 })
435 NotificationSetting: UserNotificationSettingModel
436
dc133480
C
437 @HasMany(() => VideoImportModel, {
438 foreignKey: 'userId',
439 onDelete: 'cascade'
440 })
441 VideoImports: VideoImportModel[]
442
3fd3ab2d
C
443 @HasMany(() => OAuthTokenModel, {
444 foreignKey: 'userId',
445 onDelete: 'cascade'
446 })
447 OAuthTokens: OAuthTokenModel[]
448
e364e31e
C
449 // Used if we already set an encrypted password in user model
450 skipPasswordEncryption = false
451
3fd3ab2d
C
452 @BeforeCreate
453 @BeforeUpdate
e364e31e
C
454 static async cryptPasswordIfNeeded (instance: UserModel) {
455 if (instance.skipPasswordEncryption) return
456 if (!instance.changed('password')) return
457 if (!instance.password) return
458
459 instance.password = await cryptPassword(instance.password)
59557c46 460 }
26d7d31b 461
f201a749 462 @AfterUpdate
d175a6f7 463 @AfterDestroy
f201a749 464 static removeTokenCache (instance: UserModel) {
f43db2f4 465 return TokensCache.Instance.clearCacheByUserId(instance.id)
f201a749
C
466 }
467
3fd3ab2d 468 static countTotal () {
823e411f 469 return UserModel.unscoped().count()
3fd3ab2d 470 }
954605a8 471
87a0cac6 472 static listForAdminApi (parameters: {
8491293b
RK
473 start: number
474 count: number
475 sort: string
476 search?: string
477 blocked?: boolean
478 }) {
479 const { start, count, sort, search, blocked } = parameters
480 const where: WhereOptions = {}
a1587156 481
24b9417c 482 if (search) {
8491293b 483 Object.assign(where, {
3acc5084 484 [Op.or]: [
24b9417c
C
485 {
486 email: {
3acc5084 487 [Op.iLike]: '%' + search + '%'
24b9417c
C
488 }
489 },
490 {
491 username: {
a1587156 492 [Op.iLike]: '%' + search + '%'
24b9417c
C
493 }
494 }
495 ]
8491293b
RK
496 })
497 }
498
499 if (blocked !== undefined) {
ba2684ce 500 Object.assign(where, { blocked })
24b9417c
C
501 }
502
3acc5084 503 const query: FindOptions = {
3fd3ab2d
C
504 offset: start,
505 limit: count,
87a0cac6 506 order: getAdminUsersSort(sort),
24b9417c 507 where
3fd3ab2d 508 }
72c7248b 509
d0800f76 510 return Promise.all([
511 UserModel.unscoped().count(query),
9a82ce24 512 UserModel.scope([ 'defaultScope', ScopeNames.WITH_QUOTA ]).findAll(query)
d0800f76 513 ]).then(([ total, data ]) => ({ total, data }))
72c7248b
C
514 }
515
b49f22d8 516 static listWithRight (right: UserRight): Promise<MUserDefault[]> {
ba75d268 517 const roles = Object.keys(USER_ROLE_LABELS)
a1587156
C
518 .map(k => parseInt(k, 10) as UserRole)
519 .filter(role => hasUserRight(role, right))
ba75d268 520
ba75d268 521 const query = {
ba75d268
C
522 where: {
523 role: {
3acc5084 524 [Op.in]: roles
ba75d268
C
525 }
526 }
527 }
528
cef534ed
C
529 return UserModel.findAll(query)
530 }
531
b49f22d8 532 static listUserSubscribersOf (actorId: number): Promise<MUserWithNotificationSetting[]> {
cef534ed
C
533 const query = {
534 include: [
535 {
536 model: UserNotificationSettingModel.unscoped(),
537 required: true
538 },
539 {
540 attributes: [ 'userId' ],
541 model: AccountModel.unscoped(),
542 required: true,
543 include: [
544 {
a1587156 545 attributes: [],
cef534ed
C
546 model: ActorModel.unscoped(),
547 required: true,
548 where: {
549 serverId: null
550 },
551 include: [
552 {
a1587156 553 attributes: [],
cef534ed
C
554 as: 'ActorFollowings',
555 model: ActorFollowModel.unscoped(),
556 required: true,
557 where: {
f530dde2 558 state: 'accepted',
cef534ed
C
559 targetActorId: actorId
560 }
561 }
562 ]
563 }
564 ]
565 }
566 ]
567 }
568
569 return UserModel.unscoped().findAll(query)
ba75d268
C
570 }
571
b49f22d8 572 static listByUsernames (usernames: string[]): Promise<MUserDefault[]> {
f7cc67b4
C
573 const query = {
574 where: {
575 username: usernames
576 }
577 }
578
579 return UserModel.findAll(query)
580 }
581
b49f22d8 582 static loadById (id: number): Promise<MUser> {
fb719404
C
583 return UserModel.unscoped().findByPk(id)
584 }
585
b31d7262
C
586 static loadByIdFull (id: number): Promise<MUserDefault> {
587 return UserModel.findByPk(id)
588 }
589
b49f22d8 590 static loadByIdWithChannels (id: number, withStats = false): Promise<MUserDefault> {
76314386
RK
591 const scopes = [
592 ScopeNames.WITH_VIDEOCHANNELS
593 ]
594
9a82ce24
C
595 if (withStats) {
596 scopes.push(ScopeNames.WITH_QUOTA)
597 scopes.push(ScopeNames.WITH_STATS)
598 }
76314386
RK
599
600 return UserModel.scope(scopes).findByPk(id)
3fd3ab2d 601 }
feb4bdfd 602
b49f22d8 603 static loadByUsername (username: string): Promise<MUserDefault> {
3fd3ab2d
C
604 const query = {
605 where: {
1acb9475 606 username
d48ff09d 607 }
3fd3ab2d 608 }
089ff2f2 609
3fd3ab2d 610 return UserModel.findOne(query)
feb4bdfd
C
611 }
612
1acb9475 613 static loadForMeAPI (id: number): Promise<MUserNotifSettingChannelDefault> {
3fd3ab2d
C
614 const query = {
615 where: {
1acb9475 616 id
d48ff09d 617 }
3fd3ab2d 618 }
9bd26629 619
ac0868bc 620 return UserModel.scope(ScopeNames.FOR_ME_API).findOne(query)
feb4bdfd
C
621 }
622
b49f22d8 623 static loadByEmail (email: string): Promise<MUserDefault> {
ecb4e35f
C
624 const query = {
625 where: {
626 email
627 }
628 }
629
630 return UserModel.findOne(query)
631 }
632
b49f22d8 633 static loadByUsernameOrEmail (username: string, email?: string): Promise<MUserDefault> {
ba12e8b3
C
634 if (!email) email = username
635
3fd3ab2d 636 const query = {
3fd3ab2d 637 where: {
a1587156 638 [Op.or]: [
9d8ef212 639 where(fn('lower', col('username')), fn('lower', username) as any),
c4a1811e
C
640
641 { email }
642 ]
3fd3ab2d 643 }
6fcd19ba 644 }
69b0a27c 645
d48ff09d 646 return UserModel.findOne(query)
72c7248b
C
647 }
648
b49f22d8 649 static loadByVideoId (videoId: number): Promise<MUserDefault> {
cef534ed
C
650 const query = {
651 include: [
652 {
653 required: true,
654 attributes: [ 'id' ],
655 model: AccountModel.unscoped(),
656 include: [
657 {
658 required: true,
659 attributes: [ 'id' ],
660 model: VideoChannelModel.unscoped(),
661 include: [
662 {
663 required: true,
664 attributes: [ 'id' ],
665 model: VideoModel.unscoped(),
666 where: {
667 id: videoId
668 }
669 }
670 ]
671 }
672 ]
673 }
674 ]
675 }
676
677 return UserModel.findOne(query)
678 }
679
b49f22d8 680 static loadByVideoImportId (videoImportId: number): Promise<MUserDefault> {
dc133480
C
681 const query = {
682 include: [
683 {
684 required: true,
685 attributes: [ 'id' ],
686 model: VideoImportModel.unscoped(),
687 where: {
688 id: videoImportId
689 }
690 }
691 ]
692 }
693
694 return UserModel.findOne(query)
695 }
696
b49f22d8 697 static loadByChannelActorId (videoChannelActorId: number): Promise<MUserDefault> {
f7cc67b4
C
698 const query = {
699 include: [
700 {
701 required: true,
702 attributes: [ 'id' ],
703 model: AccountModel.unscoped(),
704 include: [
705 {
706 required: true,
707 attributes: [ 'id' ],
708 model: VideoChannelModel.unscoped(),
709 where: {
710 actorId: videoChannelActorId
711 }
712 }
713 ]
714 }
715 ]
716 }
717
718 return UserModel.findOne(query)
719 }
720
b49f22d8 721 static loadByAccountActorId (accountActorId: number): Promise<MUserDefault> {
f7cc67b4
C
722 const query = {
723 include: [
724 {
725 required: true,
726 attributes: [ 'id' ],
727 model: AccountModel.unscoped(),
728 where: {
729 actorId: accountActorId
730 }
731 }
732 ]
733 }
734
735 return UserModel.findOne(query)
736 }
737
b49f22d8 738 static loadByLiveId (liveId: number): Promise<MUser> {
fb719404
C
739 const query = {
740 include: [
741 {
742 attributes: [ 'id' ],
743 model: AccountModel.unscoped(),
744 required: true,
745 include: [
746 {
747 attributes: [ 'id' ],
748 model: VideoChannelModel.unscoped(),
749 required: true,
750 include: [
751 {
752 attributes: [ 'id' ],
753 model: VideoModel.unscoped(),
754 required: true,
755 include: [
756 {
31c82cd9 757 attributes: [],
fb719404
C
758 model: VideoLiveModel.unscoped(),
759 required: true,
760 where: {
761 id: liveId
762 }
763 }
764 ]
765 }
766 ]
767 }
768 ]
769 }
770 ]
771 }
772
31c82cd9 773 return UserModel.unscoped().findOne(query)
fb719404
C
774 }
775
776 static generateUserQuotaBaseSQL (options: {
777 whereUserId: '$userId' | '"UserModel"."id"'
778 withSelect: boolean
9a82ce24 779 daily: boolean
fb719404 780 }) {
9a82ce24
C
781 const andWhere = options.daily === true
782 ? 'AND "video"."createdAt" > now() - interval \'24 hours\''
fb719404
C
783 : ''
784
785 const videoChannelJoin = 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
786 'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
787 `WHERE "account"."userId" = ${options.whereUserId} ${andWhere}`
788
789 const webtorrentFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' +
f2dbbf6a 790 'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" AND "video"."isLive" IS FALSE ' +
fb719404
C
791 videoChannelJoin
792
793 const hlsFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' +
794 'INNER JOIN "videoStreamingPlaylist" ON "videoFile"."videoStreamingPlaylistId" = "videoStreamingPlaylist".id ' +
f2dbbf6a 795 'INNER JOIN "video" ON "videoStreamingPlaylist"."videoId" = "video"."id" AND "video"."isLive" IS FALSE ' +
fb719404 796 videoChannelJoin
bee0abff 797
fb719404
C
798 return 'SELECT COALESCE(SUM("size"), 0) AS "total" ' +
799 'FROM (' +
800 `SELECT MAX("t1"."size") AS "size" FROM (${webtorrentFiles} UNION ${hlsFiles}) t1 ` +
801 'GROUP BY "t1"."videoId"' +
802 ') t2'
bee0abff
FA
803 }
804
fb719404
C
805 static getTotalRawQuery (query: string, userId: number) {
806 const options = {
807 bind: { userId },
808 type: QueryTypes.SELECT as QueryTypes.SELECT
809 }
810
811 return UserModel.sequelize.query<{ total: string }>(query, options)
812 .then(([ { total } ]) => {
813 if (total === null) return 0
68a3b9f2 814
fb719404
C
815 return parseInt(total, 10)
816 })
72c7248b
C
817 }
818
09cababd 819 static async getStats () {
3cc665f4
C
820 function getActiveUsers (days: number) {
821 const query = {
822 where: {
823 [Op.and]: [
824 literal(`"lastLoginDate" > NOW() - INTERVAL '${days}d'`)
825 ]
826 }
827 }
828
5e0dbb3e 829 return UserModel.unscoped().count(query)
3cc665f4
C
830 }
831
5e0dbb3e 832 const totalUsers = await UserModel.unscoped().count()
3cc665f4
C
833 const totalDailyActiveUsers = await getActiveUsers(1)
834 const totalWeeklyActiveUsers = await getActiveUsers(7)
835 const totalMonthlyActiveUsers = await getActiveUsers(30)
47d8e266 836 const totalHalfYearActiveUsers = await getActiveUsers(180)
09cababd
C
837
838 return {
3cc665f4
C
839 totalUsers,
840 totalDailyActiveUsers,
841 totalWeeklyActiveUsers,
47d8e266
C
842 totalMonthlyActiveUsers,
843 totalHalfYearActiveUsers
09cababd
C
844 }
845 }
846
5cf84858
C
847 static autoComplete (search: string) {
848 const query = {
849 where: {
850 username: {
a1587156 851 [Op.like]: `%${search}%`
5cf84858
C
852 }
853 },
854 limit: 10
855 }
856
857 return UserModel.findAll(query)
858 .then(u => u.map(u => u.username))
859 }
860
3fd3ab2d
C
861 hasRight (right: UserRight) {
862 return hasUserRight(this.role, right)
863 }
72c7248b 864
1eddc9a7
C
865 hasAdminFlag (flag: UserAdminFlag) {
866 return this.adminFlags & flag
867 }
868
3fd3ab2d
C
869 isPasswordMatch (password: string) {
870 return comparePassword(password, this.password)
feb4bdfd
C
871 }
872
ac0868bc 873 toFormattedJSON (this: MUserFormattable, parameters: { withAdminFlags?: boolean } = {}): User {
a76138ff 874 const videoQuotaUsed = this.get('videoQuotaUsed')
bee0abff 875 const videoQuotaUsedDaily = this.get('videoQuotaUsedDaily')
76314386 876 const videosCount = this.get('videosCount')
4f32032f
C
877 const [ abusesCount, abusesAcceptedCount ] = (this.get('abusesCount') as string || ':').split(':')
878 const abusesCreatedCount = this.get('abusesCreatedCount')
76314386 879 const videoCommentsCount = this.get('videoCommentsCount')
a76138ff 880
ac0868bc 881 const json: User = {
3fd3ab2d
C
882 id: this.id,
883 username: this.username,
884 email: this.email,
43d0ea7f
C
885 theme: getThemeOrDefault(this.theme, DEFAULT_USER_THEME_NAME),
886
d1ab89de 887 pendingEmail: this.pendingEmail,
cb0eda56 888 emailPublic: this.emailPublic,
d9eaee39 889 emailVerified: this.emailVerified,
43d0ea7f 890
0883b324 891 nsfwPolicy: this.nsfwPolicy,
a9bfa85d
C
892
893 // FIXME: deprecated in 4.1
894 webTorrentEnabled: this.p2pEnabled,
895 p2pEnabled: this.p2pEnabled,
896
276d9652 897 videosHistoryEnabled: this.videosHistoryEnabled,
7efe153b 898 autoPlayVideo: this.autoPlayVideo,
6aa54148 899 autoPlayNextVideo: this.autoPlayNextVideo,
bee29df8 900 autoPlayNextVideoPlaylist: this.autoPlayNextVideoPlaylist,
3caf77d3 901 videoLanguages: this.videoLanguages,
43d0ea7f 902
9e5cf66b
C
903 role: {
904 id: this.role,
905 label: USER_ROLE_LABELS[this.role]
906 },
43d0ea7f 907
3fd3ab2d 908 videoQuota: this.videoQuota,
bee0abff 909 videoQuotaDaily: this.videoQuotaDaily,
9a82ce24 910
43d0ea7f 911 videoQuotaUsed: videoQuotaUsed !== undefined
4638cd71 912 ? forceNumber(videoQuotaUsed) + LiveQuotaStore.Instance.getLiveQuotaOf(this.id)
43d0ea7f 913 : undefined,
9a82ce24 914
43d0ea7f 915 videoQuotaUsedDaily: videoQuotaUsedDaily !== undefined
4638cd71 916 ? forceNumber(videoQuotaUsedDaily) + LiveQuotaStore.Instance.getLiveQuotaOf(this.id)
43d0ea7f 917 : undefined,
9a82ce24 918
76314386 919 videosCount: videosCount !== undefined
4638cd71 920 ? forceNumber(videosCount)
76314386 921 : undefined,
4f32032f 922 abusesCount: abusesCount
4638cd71 923 ? forceNumber(abusesCount)
76314386 924 : undefined,
4f32032f 925 abusesAcceptedCount: abusesAcceptedCount
4638cd71 926 ? forceNumber(abusesAcceptedCount)
76314386 927 : undefined,
4f32032f 928 abusesCreatedCount: abusesCreatedCount !== undefined
4638cd71 929 ? forceNumber(abusesCreatedCount)
76314386
RK
930 : undefined,
931 videoCommentsCount: videoCommentsCount !== undefined
4638cd71 932 ? forceNumber(videoCommentsCount)
76314386 933 : undefined,
43d0ea7f
C
934
935 noInstanceConfigWarningModal: this.noInstanceConfigWarningModal,
936 noWelcomeModal: this.noWelcomeModal,
8f581725 937 noAccountSetupWarningModal: this.noAccountSetupWarningModal,
43d0ea7f 938
eacb25c4
C
939 blocked: this.blocked,
940 blockedReason: this.blockedReason,
43d0ea7f 941
c5911fd3 942 account: this.Account.toFormattedJSON(),
43d0ea7f
C
943
944 notificationSettings: this.NotificationSetting
945 ? this.NotificationSetting.toFormattedJSON()
946 : undefined,
947
a76138ff 948 videoChannels: [],
43d0ea7f 949
8bb71f2e
C
950 createdAt: this.createdAt,
951
3cc665f4
C
952 pluginAuth: this.pluginAuth,
953
56f47830
C
954 lastLoginDate: this.lastLoginDate,
955
956 twoFactorEnabled: !!this.otpSecret
3fd3ab2d
C
957 }
958
1eddc9a7
C
959 if (parameters.withAdminFlags) {
960 Object.assign(json, { adminFlags: this.adminFlags })
961 }
962
3fd3ab2d 963 if (Array.isArray(this.Account.VideoChannels) === true) {
c5911fd3 964 json.videoChannels = this.Account.VideoChannels
a1587156
C
965 .map(c => c.toFormattedJSON())
966 .sort((v1, v2) => {
967 if (v1.createdAt < v2.createdAt) return -1
968 if (v1.createdAt === v2.createdAt) return 0
ad4a8a1c 969
a1587156
C
970 return 1
971 })
ad4a8a1c 972 }
3fd3ab2d
C
973
974 return json
ad4a8a1c
C
975 }
976
ac0868bc 977 toMeFormattedJSON (this: MMyUserFormattable): MyUser {
4e1592da 978 const formatted = this.toFormattedJSON({ withAdminFlags: true })
ac0868bc
C
979
980 const specialPlaylists = this.Account.VideoPlaylists
a1587156 981 .map(p => ({ id: p.id, name: p.name, type: p.type }))
ac0868bc
C
982
983 return Object.assign(formatted, { specialPlaylists })
984 }
b0f9f39e 985}