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