2020-08-06 08:58:01 -04:00
|
|
|
import { values } from 'lodash'
|
2020-04-16 09:13:46 -04:00
|
|
|
import { col, FindOptions, fn, literal, Op, QueryTypes, where, WhereOptions } from 'sequelize'
|
2017-12-12 11:53:50 -05:00
|
|
|
import {
|
2018-11-19 11:08:18 -05:00
|
|
|
AfterDestroy,
|
2018-09-20 05:31:48 -04:00
|
|
|
AfterUpdate,
|
2018-03-01 07:02:09 -05:00
|
|
|
AllowNull,
|
|
|
|
BeforeCreate,
|
|
|
|
BeforeUpdate,
|
|
|
|
Column,
|
|
|
|
CreatedAt,
|
|
|
|
DataType,
|
|
|
|
Default,
|
|
|
|
DefaultScope,
|
|
|
|
HasMany,
|
|
|
|
HasOne,
|
|
|
|
Is,
|
|
|
|
IsEmail,
|
2020-12-08 08:30:29 -05:00
|
|
|
IsUUID,
|
2018-03-01 07:02:09 -05:00
|
|
|
Model,
|
|
|
|
Scopes,
|
|
|
|
Table,
|
2020-12-08 08:30:29 -05:00
|
|
|
UpdatedAt
|
2017-12-12 11:53:50 -05:00
|
|
|
} from 'sequelize-typescript'
|
2021-03-12 09:20:46 -05:00
|
|
|
import { TokensCache } from '@server/lib/auth/tokens-cache'
|
2020-08-06 08:58:01 -04:00
|
|
|
import {
|
|
|
|
MMyUserFormattable,
|
2020-09-25 10:19:35 -04:00
|
|
|
MUser,
|
2020-08-06 08:58:01 -04:00
|
|
|
MUserDefault,
|
|
|
|
MUserFormattable,
|
|
|
|
MUserNotifSettingChannelDefault,
|
|
|
|
MUserWithNotificationSetting,
|
2021-02-25 05:17:53 -05:00
|
|
|
MVideoWithRights
|
2020-08-06 08:58:01 -04:00
|
|
|
} from '@server/types/models'
|
|
|
|
import { hasUserRight, USER_ROLE_LABELS } from '../../../shared/core-utils/users'
|
|
|
|
import { AbuseState, MyUser, UserRight, VideoPlaylistType, VideoPrivacy } from '../../../shared/models'
|
2018-02-01 05:08:10 -05:00
|
|
|
import { User, UserRole } from '../../../shared/models/users'
|
2020-08-06 08:58:01 -04:00
|
|
|
import { UserAdminFlag } from '../../../shared/models/users/user-flag.model'
|
|
|
|
import { NSFWPolicyType } from '../../../shared/models/videos/nsfw-policy.type'
|
|
|
|
import { isThemeNameValid } from '../../helpers/custom-validators/plugins'
|
2017-05-15 16:22:03 -04:00
|
|
|
import {
|
2019-08-28 08:40:06 -04:00
|
|
|
isNoInstanceConfigWarningModal,
|
2020-01-03 08:17:57 -05:00
|
|
|
isNoWelcomeModal,
|
2019-04-15 04:49:46 -04:00
|
|
|
isUserAdminFlagsValid,
|
2019-12-11 14:20:42 -05:00
|
|
|
isUserAutoPlayNextVideoPlaylistValid,
|
2020-01-03 08:17:57 -05:00
|
|
|
isUserAutoPlayNextVideoValid,
|
|
|
|
isUserAutoPlayVideoValid,
|
2018-08-08 11:36:10 -04:00
|
|
|
isUserBlockedReasonValid,
|
2018-08-08 08:58:21 -04:00
|
|
|
isUserBlockedValid,
|
2018-08-31 03:18:19 -04:00
|
|
|
isUserEmailVerifiedValid,
|
2018-09-04 04:22:10 -04:00
|
|
|
isUserNSFWPolicyValid,
|
2018-03-01 07:02:09 -05:00
|
|
|
isUserPasswordValid,
|
|
|
|
isUserRoleValid,
|
|
|
|
isUserUsernameValid,
|
2019-06-19 08:55:58 -04:00
|
|
|
isUserVideoLanguages,
|
2018-09-04 04:22:10 -04:00
|
|
|
isUserVideoQuotaDailyValid,
|
2018-10-05 09:17:34 -04:00
|
|
|
isUserVideoQuotaValid,
|
2018-12-26 04:36:24 -05:00
|
|
|
isUserVideosHistoryEnabledValid,
|
2020-01-03 08:17:57 -05:00
|
|
|
isUserWebTorrentEnabledValid
|
2017-12-12 11:53:50 -05:00
|
|
|
} from '../../helpers/custom-validators/users'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { comparePassword, cryptPassword } from '../../helpers/peertube-crypto'
|
2020-08-06 08:58:01 -04:00
|
|
|
import { DEFAULT_USER_THEME_NAME, NSFW_POLICY_TYPES } from '../../initializers/constants'
|
|
|
|
import { getThemeOrDefault } from '../../lib/plugins/theme-utils'
|
|
|
|
import { ActorModel } from '../activitypub/actor'
|
|
|
|
import { ActorFollowModel } from '../activitypub/actor-follow'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { OAuthTokenModel } from '../oauth/oauth-token'
|
|
|
|
import { getSort, throwIfNotValid } from '../utils'
|
2020-08-06 08:58:01 -04:00
|
|
|
import { VideoModel } from '../video/video'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoChannelModel } from '../video/video-channel'
|
2020-08-06 08:58:01 -04:00
|
|
|
import { VideoImportModel } from '../video/video-import'
|
2020-11-03 09:33:30 -05:00
|
|
|
import { VideoLiveModel } from '../video/video-live'
|
2020-01-02 07:07:18 -05:00
|
|
|
import { VideoPlaylistModel } from '../video/video-playlist'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { AccountModel } from './account'
|
2018-12-26 04:36:24 -05:00
|
|
|
import { UserNotificationSettingModel } from './user-notification-setting'
|
2021-04-07 11:01:29 -04:00
|
|
|
import { ActorImageModel } from './actor-image'
|
2017-12-12 11:53:50 -05:00
|
|
|
|
2018-06-19 08:02:57 -04:00
|
|
|
enum ScopeNames {
|
2020-03-27 10:19:03 -04:00
|
|
|
FOR_ME_API = 'FOR_ME_API',
|
|
|
|
WITH_VIDEOCHANNELS = 'WITH_VIDEOCHANNELS',
|
|
|
|
WITH_STATS = 'WITH_STATS'
|
2018-06-19 08:02:57 -04:00
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
@DefaultScope(() => ({
|
2017-12-14 04:07:57 -05:00
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AccountModel,
|
2017-12-14 04:07:57 -05:00
|
|
|
required: true
|
2018-12-26 04:36:24 -05:00
|
|
|
},
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: UserNotificationSettingModel,
|
2018-12-26 04:36:24 -05:00
|
|
|
required: true
|
2017-12-14 04:07:57 -05:00
|
|
|
}
|
|
|
|
]
|
2019-04-23 03:50:57 -04:00
|
|
|
}))
|
|
|
|
@Scopes(() => ({
|
2020-01-03 08:17:57 -05:00
|
|
|
[ScopeNames.FOR_ME_API]: {
|
2017-12-14 04:07:57 -05:00
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: AccountModel,
|
2020-01-03 08:17:57 -05:00
|
|
|
include: [
|
|
|
|
{
|
2021-04-07 11:01:29 -04:00
|
|
|
model: VideoChannelModel.unscoped(),
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: ActorModel,
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: ActorImageModel,
|
|
|
|
as: 'Banner',
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2020-01-03 08:17:57 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
attributes: [ 'id', 'name', 'type' ],
|
|
|
|
model: VideoPlaylistModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
type: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.ne]: VideoPlaylistType.REGULAR
|
2020-01-03 08:17:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2018-12-26 04:36:24 -05:00
|
|
|
},
|
|
|
|
{
|
2019-04-23 03:50:57 -04:00
|
|
|
model: UserNotificationSettingModel,
|
2018-12-26 04:36:24 -05:00
|
|
|
required: true
|
2017-12-14 04:07:57 -05:00
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
]
|
2020-03-27 10:19:03 -04:00
|
|
|
},
|
|
|
|
[ScopeNames.WITH_VIDEOCHANNELS]: {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: AccountModel,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoChannelModel
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attributes: [ 'id', 'name', 'type' ],
|
|
|
|
model: VideoPlaylistModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
type: {
|
|
|
|
[Op.ne]: VideoPlaylistType.REGULAR
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
[ScopeNames.WITH_STATS]: {
|
|
|
|
attributes: {
|
|
|
|
include: [
|
2020-04-16 09:13:46 -04:00
|
|
|
[
|
|
|
|
literal(
|
|
|
|
'(' +
|
|
|
|
UserModel.generateUserQuotaBaseSQL({
|
|
|
|
withSelect: false,
|
|
|
|
whereUserId: '"UserModel"."id"'
|
|
|
|
}) +
|
|
|
|
')'
|
|
|
|
),
|
|
|
|
'videoQuotaUsed'
|
|
|
|
],
|
2020-03-27 10:19:03 -04:00
|
|
|
[
|
|
|
|
literal(
|
|
|
|
'(' +
|
|
|
|
'SELECT COUNT("video"."id") ' +
|
|
|
|
'FROM "video" ' +
|
|
|
|
'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
|
|
|
|
'INNER JOIN "account" ON "account"."id" = "videoChannel"."accountId" ' +
|
|
|
|
'WHERE "account"."userId" = "UserModel"."id"' +
|
|
|
|
')'
|
|
|
|
),
|
|
|
|
'videosCount'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
literal(
|
|
|
|
'(' +
|
|
|
|
`SELECT concat_ws(':', "abuses", "acceptedAbuses") ` +
|
|
|
|
'FROM (' +
|
2020-07-07 08:34:16 -04:00
|
|
|
'SELECT COUNT("abuse"."id") AS "abuses", ' +
|
|
|
|
`COUNT("abuse"."id") FILTER (WHERE "abuse"."state" = ${AbuseState.ACCEPTED}) AS "acceptedAbuses" ` +
|
|
|
|
'FROM "abuse" ' +
|
|
|
|
'INNER JOIN "account" ON "account"."id" = "abuse"."flaggedAccountId" ' +
|
2020-03-27 10:19:03 -04:00
|
|
|
'WHERE "account"."userId" = "UserModel"."id"' +
|
|
|
|
') t' +
|
|
|
|
')'
|
|
|
|
),
|
2020-07-07 08:34:16 -04:00
|
|
|
'abusesCount'
|
2020-03-27 10:19:03 -04:00
|
|
|
],
|
|
|
|
[
|
|
|
|
literal(
|
|
|
|
'(' +
|
2020-07-07 08:34:16 -04:00
|
|
|
'SELECT COUNT("abuse"."id") ' +
|
|
|
|
'FROM "abuse" ' +
|
|
|
|
'INNER JOIN "account" ON "account"."id" = "abuse"."reporterAccountId" ' +
|
2020-03-27 10:19:03 -04:00
|
|
|
'WHERE "account"."userId" = "UserModel"."id"' +
|
|
|
|
')'
|
|
|
|
),
|
2020-07-07 08:34:16 -04:00
|
|
|
'abusesCreatedCount'
|
2020-03-27 10:19:03 -04:00
|
|
|
],
|
|
|
|
[
|
|
|
|
literal(
|
|
|
|
'(' +
|
|
|
|
'SELECT COUNT("videoComment"."id") ' +
|
|
|
|
'FROM "videoComment" ' +
|
|
|
|
'INNER JOIN "account" ON "account"."id" = "videoComment"."accountId" ' +
|
|
|
|
'WHERE "account"."userId" = "UserModel"."id"' +
|
|
|
|
')'
|
|
|
|
),
|
|
|
|
'videoCommentsCount'
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
2017-12-14 04:07:57 -05:00
|
|
|
}
|
2019-04-23 03:50:57 -04:00
|
|
|
}))
|
2017-12-12 11:53:50 -05:00
|
|
|
@Table({
|
|
|
|
tableName: 'user',
|
|
|
|
indexes: [
|
2016-12-11 15:50:51 -05:00
|
|
|
{
|
2017-12-12 11:53:50 -05:00
|
|
|
fields: [ 'username' ],
|
|
|
|
unique: true
|
2016-12-11 15:50:51 -05:00
|
|
|
},
|
|
|
|
{
|
2017-12-12 11:53:50 -05:00
|
|
|
fields: [ 'email' ],
|
|
|
|
unique: true
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
2017-05-22 14:58:25 -04:00
|
|
|
]
|
2017-12-12 11:53:50 -05:00
|
|
|
})
|
2020-12-08 08:30:29 -05:00
|
|
|
export class UserModel extends Model {
|
2017-12-12 11:53:50 -05:00
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
@AllowNull(true)
|
2020-04-23 05:36:50 -04:00
|
|
|
@Is('UserPassword', value => throwIfNotValid(value, isUserPasswordValid, 'user password', true))
|
2017-12-12 11:53:50 -05:00
|
|
|
@Column
|
|
|
|
password: string
|
|
|
|
|
|
|
|
@AllowNull(false)
|
2020-04-03 08:08:27 -04:00
|
|
|
@Is('UserUsername', value => throwIfNotValid(value, isUserUsernameValid, 'user name'))
|
2017-12-12 11:53:50 -05:00
|
|
|
@Column
|
|
|
|
username: string
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@IsEmail
|
|
|
|
@Column(DataType.STRING(400))
|
|
|
|
email: string
|
|
|
|
|
2019-06-11 05:54:33 -04:00
|
|
|
@AllowNull(true)
|
|
|
|
@IsEmail
|
|
|
|
@Column(DataType.STRING(400))
|
|
|
|
pendingEmail: string
|
|
|
|
|
2018-08-31 03:18:19 -04:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-04-18 05:28:17 -04:00
|
|
|
@Is('UserEmailVerified', value => throwIfNotValid(value, isUserEmailVerifiedValid, 'email verified boolean', true))
|
2018-08-31 03:18:19 -04:00
|
|
|
@Column
|
|
|
|
emailVerified: boolean
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@AllowNull(false)
|
2018-04-19 05:01:34 -04:00
|
|
|
@Is('UserNSFWPolicy', value => throwIfNotValid(value, isUserNSFWPolicyValid, 'NSFW policy'))
|
2019-04-18 05:28:17 -04:00
|
|
|
@Column(DataType.ENUM(...values(NSFW_POLICY_TYPES)))
|
2018-04-19 05:01:34 -04:00
|
|
|
nsfwPolicy: NSFWPolicyType
|
2017-12-12 11:53:50 -05:00
|
|
|
|
2018-10-05 09:17:34 -04:00
|
|
|
@AllowNull(false)
|
2018-10-17 07:10:58 -04:00
|
|
|
@Default(true)
|
2018-10-12 12:12:39 -04:00
|
|
|
@Is('UserWebTorrentEnabled', value => throwIfNotValid(value, isUserWebTorrentEnabledValid, 'WebTorrent enabled'))
|
|
|
|
@Column
|
|
|
|
webTorrentEnabled: boolean
|
2018-10-05 09:17:34 -04:00
|
|
|
|
2018-12-17 09:52:38 -05:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(true)
|
|
|
|
@Is('UserVideosHistoryEnabled', value => throwIfNotValid(value, isUserVideosHistoryEnabledValid, 'Videos history enabled'))
|
|
|
|
@Column
|
|
|
|
videosHistoryEnabled: boolean
|
|
|
|
|
2017-12-19 04:45:49 -05:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(true)
|
|
|
|
@Is('UserAutoPlayVideo', value => throwIfNotValid(value, isUserAutoPlayVideoValid, 'auto play video boolean'))
|
|
|
|
@Column
|
|
|
|
autoPlayVideo: boolean
|
|
|
|
|
2019-09-24 02:48:01 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is('UserAutoPlayNextVideo', value => throwIfNotValid(value, isUserAutoPlayNextVideoValid, 'auto play next video boolean'))
|
|
|
|
@Column
|
|
|
|
autoPlayNextVideo: boolean
|
|
|
|
|
2019-12-11 14:20:42 -05:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(true)
|
2020-01-31 10:56:52 -05:00
|
|
|
@Is(
|
|
|
|
'UserAutoPlayNextVideoPlaylist',
|
|
|
|
value => throwIfNotValid(value, isUserAutoPlayNextVideoPlaylistValid, 'auto play next video for playlists boolean')
|
|
|
|
)
|
2019-12-11 14:20:42 -05:00
|
|
|
@Column
|
|
|
|
autoPlayNextVideoPlaylist: boolean
|
|
|
|
|
2019-06-19 08:55:58 -04:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Is('UserVideoLanguages', value => throwIfNotValid(value, isUserVideoLanguages, 'video languages'))
|
|
|
|
@Column(DataType.ARRAY(DataType.STRING))
|
|
|
|
videoLanguages: string[]
|
|
|
|
|
2019-04-15 04:49:46 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(UserAdminFlag.NONE)
|
|
|
|
@Is('UserAdminFlags', value => throwIfNotValid(value, isUserAdminFlagsValid, 'user admin flags'))
|
|
|
|
@Column
|
|
|
|
adminFlags?: UserAdminFlag
|
|
|
|
|
2018-08-08 08:58:21 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is('UserBlocked', value => throwIfNotValid(value, isUserBlockedValid, 'blocked boolean'))
|
|
|
|
@Column
|
|
|
|
blocked: boolean
|
|
|
|
|
2018-08-08 11:36:10 -04:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-04-18 05:28:17 -04:00
|
|
|
@Is('UserBlockedReason', value => throwIfNotValid(value, isUserBlockedReasonValid, 'blocked reason', true))
|
2018-08-08 11:36:10 -04:00
|
|
|
@Column
|
|
|
|
blockedReason: string
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@AllowNull(false)
|
|
|
|
@Is('UserRole', value => throwIfNotValid(value, isUserRoleValid, 'role'))
|
|
|
|
@Column
|
|
|
|
role: number
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Is('UserVideoQuota', value => throwIfNotValid(value, isUserVideoQuotaValid, 'video quota'))
|
|
|
|
@Column(DataType.BIGINT)
|
|
|
|
videoQuota: number
|
|
|
|
|
2018-08-28 03:01:35 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Is('UserVideoQuotaDaily', value => throwIfNotValid(value, isUserVideoQuotaDailyValid, 'video quota daily'))
|
|
|
|
@Column(DataType.BIGINT)
|
|
|
|
videoQuotaDaily: number
|
|
|
|
|
2019-07-09 05:45:19 -04:00
|
|
|
@AllowNull(false)
|
2020-02-11 04:55:52 -05:00
|
|
|
@Default(DEFAULT_USER_THEME_NAME)
|
2019-07-15 09:41:56 -04:00
|
|
|
@Is('UserTheme', value => throwIfNotValid(value, isThemeNameValid, 'theme'))
|
2019-07-09 05:45:19 -04:00
|
|
|
@Column
|
|
|
|
theme: string
|
|
|
|
|
2019-08-28 08:40:06 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is(
|
|
|
|
'UserNoInstanceConfigWarningModal',
|
|
|
|
value => throwIfNotValid(value, isNoInstanceConfigWarningModal, 'no instance config warning modal')
|
|
|
|
)
|
|
|
|
@Column
|
|
|
|
noInstanceConfigWarningModal: boolean
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is(
|
|
|
|
'UserNoInstanceConfigWarningModal',
|
|
|
|
value => throwIfNotValid(value, isNoWelcomeModal, 'no welcome modal')
|
|
|
|
)
|
|
|
|
@Column
|
|
|
|
noWelcomeModal: boolean
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
|
|
|
pluginAuth: string
|
|
|
|
|
2020-08-13 09:07:23 -04:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(DataType.UUIDV4)
|
|
|
|
@IsUUID(4)
|
|
|
|
@Column(DataType.UUID)
|
|
|
|
feedToken: string
|
|
|
|
|
2020-05-07 04:39:09 -04:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
|
|
|
lastLoginDate: Date
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
|
|
|
@HasOne(() => AccountModel, {
|
|
|
|
foreignKey: 'userId',
|
2018-01-18 04:53:54 -05:00
|
|
|
onDelete: 'cascade',
|
|
|
|
hooks: true
|
2017-12-12 11:53:50 -05:00
|
|
|
})
|
|
|
|
Account: AccountModel
|
2016-07-01 10:03:53 -04:00
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
@HasOne(() => UserNotificationSettingModel, {
|
|
|
|
foreignKey: 'userId',
|
|
|
|
onDelete: 'cascade',
|
|
|
|
hooks: true
|
|
|
|
})
|
|
|
|
NotificationSetting: UserNotificationSettingModel
|
|
|
|
|
2019-01-02 10:37:43 -05:00
|
|
|
@HasMany(() => VideoImportModel, {
|
|
|
|
foreignKey: 'userId',
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
VideoImports: VideoImportModel[]
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@HasMany(() => OAuthTokenModel, {
|
|
|
|
foreignKey: 'userId',
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
|
|
|
OAuthTokens: OAuthTokenModel[]
|
|
|
|
|
|
|
|
@BeforeCreate
|
|
|
|
@BeforeUpdate
|
|
|
|
static cryptPasswordIfNeeded (instance: UserModel) {
|
2020-04-23 05:36:50 -04:00
|
|
|
if (instance.changed('password') && instance.password) {
|
2017-12-12 11:53:50 -05:00
|
|
|
return cryptPassword(instance.password)
|
|
|
|
.then(hash => {
|
|
|
|
instance.password = hash
|
|
|
|
return undefined
|
|
|
|
})
|
|
|
|
}
|
2017-11-04 13:09:23 -04:00
|
|
|
}
|
2016-08-25 11:57:37 -04:00
|
|
|
|
2018-09-20 05:31:48 -04:00
|
|
|
@AfterUpdate
|
2018-11-19 11:08:18 -05:00
|
|
|
@AfterDestroy
|
2018-09-20 05:31:48 -04:00
|
|
|
static removeTokenCache (instance: UserModel) {
|
2021-03-12 09:20:46 -05:00
|
|
|
return TokensCache.Instance.clearCacheByUserId(instance.id)
|
2018-09-20 05:31:48 -04:00
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
static countTotal () {
|
|
|
|
return this.count()
|
|
|
|
}
|
2017-10-27 10:55:03 -04:00
|
|
|
|
2020-07-02 16:49:51 -04:00
|
|
|
static listForApi (parameters: {
|
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
sort: string
|
|
|
|
search?: string
|
|
|
|
blocked?: boolean
|
|
|
|
}) {
|
|
|
|
const { start, count, sort, search, blocked } = parameters
|
|
|
|
const where: WhereOptions = {}
|
2020-01-31 10:56:52 -05:00
|
|
|
|
2018-10-08 09:51:38 -04:00
|
|
|
if (search) {
|
2020-07-02 16:49:51 -04:00
|
|
|
Object.assign(where, {
|
2019-04-23 03:50:57 -04:00
|
|
|
[Op.or]: [
|
2018-10-08 09:51:38 -04:00
|
|
|
{
|
|
|
|
email: {
|
2019-04-23 03:50:57 -04:00
|
|
|
[Op.iLike]: '%' + search + '%'
|
2018-10-08 09:51:38 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
username: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.iLike]: '%' + search + '%'
|
2018-10-08 09:51:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2020-07-02 16:49:51 -04:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (blocked !== undefined) {
|
|
|
|
Object.assign(where, {
|
|
|
|
blocked: blocked
|
|
|
|
})
|
2018-10-08 09:51:38 -04:00
|
|
|
}
|
|
|
|
|
2019-04-23 03:50:57 -04:00
|
|
|
const query: FindOptions = {
|
2018-08-14 11:56:51 -04:00
|
|
|
attributes: {
|
2020-04-16 09:13:46 -04:00
|
|
|
include: [
|
|
|
|
[
|
|
|
|
literal(
|
|
|
|
'(' +
|
|
|
|
UserModel.generateUserQuotaBaseSQL({
|
|
|
|
withSelect: false,
|
|
|
|
whereUserId: '"UserModel"."id"'
|
|
|
|
}) +
|
|
|
|
')'
|
|
|
|
),
|
|
|
|
'videoQuotaUsed'
|
|
|
|
] as any // FIXME: typings
|
|
|
|
]
|
2018-08-14 11:56:51 -04:00
|
|
|
},
|
2017-12-12 11:53:50 -05:00
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2018-10-08 09:51:38 -04:00
|
|
|
order: getSort(sort),
|
|
|
|
where
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-10-24 13:41:09 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
return UserModel.findAndCountAll(query)
|
2020-01-31 10:56:52 -05:00
|
|
|
.then(({ rows, count }) => {
|
|
|
|
return {
|
|
|
|
data: rows,
|
|
|
|
total: count
|
|
|
|
}
|
|
|
|
})
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static listWithRight (right: UserRight): Promise<MUserDefault[]> {
|
2018-02-01 05:08:10 -05:00
|
|
|
const roles = Object.keys(USER_ROLE_LABELS)
|
2020-01-31 10:56:52 -05:00
|
|
|
.map(k => parseInt(k, 10) as UserRole)
|
|
|
|
.filter(role => hasUserRight(role, right))
|
2018-02-01 05:08:10 -05:00
|
|
|
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
role: {
|
2019-04-23 03:50:57 -04:00
|
|
|
[Op.in]: roles
|
2018-02-01 05:08:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-26 04:36:24 -05:00
|
|
|
return UserModel.findAll(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static listUserSubscribersOf (actorId: number): Promise<MUserWithNotificationSetting[]> {
|
2018-12-26 04:36:24 -05:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: UserNotificationSettingModel.unscoped(),
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attributes: [ 'userId' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
attributes: [],
|
2018-12-26 04:36:24 -05:00
|
|
|
model: ActorModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
serverId: null
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
2020-01-31 10:56:52 -05:00
|
|
|
attributes: [],
|
2018-12-26 04:36:24 -05:00
|
|
|
as: 'ActorFollowings',
|
|
|
|
model: ActorFollowModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
targetActorId: actorId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.unscoped().findAll(query)
|
2018-02-01 05:08:10 -05:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static listByUsernames (usernames: string[]): Promise<MUserDefault[]> {
|
2019-01-04 02:56:20 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
username: usernames
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findAll(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadById (id: number): Promise<MUser> {
|
2020-09-25 10:19:35 -04:00
|
|
|
return UserModel.unscoped().findByPk(id)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByIdWithChannels (id: number, withStats = false): Promise<MUserDefault> {
|
2020-03-27 10:19:03 -04:00
|
|
|
const scopes = [
|
|
|
|
ScopeNames.WITH_VIDEOCHANNELS
|
|
|
|
]
|
|
|
|
|
|
|
|
if (withStats) scopes.push(ScopeNames.WITH_STATS)
|
|
|
|
|
|
|
|
return UserModel.scope(scopes).findByPk(id)
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByUsername (username: string): Promise<MUserDefault> {
|
2017-12-12 11:53:50 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
2021-01-11 07:53:08 -05:00
|
|
|
username
|
2017-12-14 04:07:57 -05:00
|
|
|
}
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2016-08-16 15:51:35 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
return UserModel.findOne(query)
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2021-01-11 07:53:08 -05:00
|
|
|
static loadForMeAPI (id: number): Promise<MUserNotifSettingChannelDefault> {
|
2017-12-12 11:53:50 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
2021-01-11 07:53:08 -05:00
|
|
|
id
|
2017-12-14 04:07:57 -05:00
|
|
|
}
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2016-08-04 16:32:36 -04:00
|
|
|
|
2020-01-03 08:17:57 -05:00
|
|
|
return UserModel.scope(ScopeNames.FOR_ME_API).findOne(query)
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByEmail (email: string): Promise<MUserDefault> {
|
2018-01-30 07:27:07 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
email
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByUsernameOrEmail (username: string, email?: string): Promise<MUserDefault> {
|
2018-01-29 10:09:50 -05:00
|
|
|
if (!email) email = username
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
const query = {
|
|
|
|
where: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.or]: [
|
2020-01-09 08:00:34 -05:00
|
|
|
where(fn('lower', col('username')), fn('lower', username)),
|
|
|
|
|
|
|
|
{ email }
|
|
|
|
]
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
}
|
2016-07-01 10:03:53 -04:00
|
|
|
|
2017-12-14 04:07:57 -05:00
|
|
|
return UserModel.findOne(query)
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByVideoId (videoId: number): Promise<MUserDefault> {
|
2018-12-26 04:36:24 -05:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: VideoChannelModel.unscoped(),
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: VideoModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
id: videoId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByVideoImportId (videoImportId: number): Promise<MUserDefault> {
|
2019-01-02 10:37:43 -05:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: VideoImportModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
id: videoImportId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByChannelActorId (videoChannelActorId: number): Promise<MUserDefault> {
|
2019-01-04 02:56:20 -05:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: VideoChannelModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
actorId: videoChannelActorId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByAccountActorId (accountActorId: number): Promise<MUserDefault> {
|
2019-01-04 02:56:20 -05:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
actorId: accountActorId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 08:30:29 -05:00
|
|
|
static loadByLiveId (liveId: number): Promise<MUser> {
|
2020-09-25 10:19:35 -04:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: VideoChannelModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: VideoModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
2020-10-27 11:06:24 -04:00
|
|
|
attributes: [],
|
2020-09-25 10:19:35 -04:00
|
|
|
model: VideoLiveModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
id: liveId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2020-10-27 11:06:24 -04:00
|
|
|
return UserModel.unscoped().findOne(query)
|
2020-09-25 10:19:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static generateUserQuotaBaseSQL (options: {
|
|
|
|
whereUserId: '$userId' | '"UserModel"."id"'
|
|
|
|
withSelect: boolean
|
|
|
|
where?: string
|
|
|
|
}) {
|
|
|
|
const andWhere = options.where
|
|
|
|
? 'AND ' + options.where
|
|
|
|
: ''
|
|
|
|
|
|
|
|
const videoChannelJoin = 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
|
|
|
|
'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
|
|
|
|
`WHERE "account"."userId" = ${options.whereUserId} ${andWhere}`
|
|
|
|
|
|
|
|
const webtorrentFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' +
|
|
|
|
'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" ' +
|
|
|
|
videoChannelJoin
|
|
|
|
|
|
|
|
const hlsFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' +
|
|
|
|
'INNER JOIN "videoStreamingPlaylist" ON "videoFile"."videoStreamingPlaylistId" = "videoStreamingPlaylist".id ' +
|
|
|
|
'INNER JOIN "video" ON "videoStreamingPlaylist"."videoId" = "video"."id" ' +
|
|
|
|
videoChannelJoin
|
2018-08-28 03:01:35 -04:00
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
return 'SELECT COALESCE(SUM("size"), 0) AS "total" ' +
|
|
|
|
'FROM (' +
|
|
|
|
`SELECT MAX("t1"."size") AS "size" FROM (${webtorrentFiles} UNION ${hlsFiles}) t1 ` +
|
|
|
|
'GROUP BY "t1"."videoId"' +
|
|
|
|
') t2'
|
2018-08-28 03:01:35 -04:00
|
|
|
}
|
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
static getTotalRawQuery (query: string, userId: number) {
|
|
|
|
const options = {
|
|
|
|
bind: { userId },
|
|
|
|
type: QueryTypes.SELECT as QueryTypes.SELECT
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.sequelize.query<{ total: string }>(query, options)
|
|
|
|
.then(([ { total } ]) => {
|
|
|
|
if (total === null) return 0
|
2016-08-09 15:44:45 -04:00
|
|
|
|
2020-09-25 10:19:35 -04:00
|
|
|
return parseInt(total, 10)
|
|
|
|
})
|
2017-10-24 13:41:09 -04:00
|
|
|
}
|
|
|
|
|
2018-02-28 12:04:46 -05:00
|
|
|
static async getStats () {
|
2020-05-07 04:39:09 -04:00
|
|
|
function getActiveUsers (days: number) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
[Op.and]: [
|
|
|
|
literal(`"lastLoginDate" > NOW() - INTERVAL '${days}d'`)
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.count(query)
|
|
|
|
}
|
|
|
|
|
2018-02-28 12:04:46 -05:00
|
|
|
const totalUsers = await UserModel.count()
|
2020-05-07 04:39:09 -04:00
|
|
|
const totalDailyActiveUsers = await getActiveUsers(1)
|
|
|
|
const totalWeeklyActiveUsers = await getActiveUsers(7)
|
|
|
|
const totalMonthlyActiveUsers = await getActiveUsers(30)
|
2020-12-30 05:41:36 -05:00
|
|
|
const totalHalfYearActiveUsers = await getActiveUsers(180)
|
2018-02-28 12:04:46 -05:00
|
|
|
|
|
|
|
return {
|
2020-05-07 04:39:09 -04:00
|
|
|
totalUsers,
|
|
|
|
totalDailyActiveUsers,
|
|
|
|
totalWeeklyActiveUsers,
|
2020-12-30 05:41:36 -05:00
|
|
|
totalMonthlyActiveUsers,
|
|
|
|
totalHalfYearActiveUsers
|
2018-02-28 12:04:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 04:22:10 -04:00
|
|
|
static autoComplete (search: string) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
username: {
|
2020-01-31 10:56:52 -05:00
|
|
|
[Op.like]: `%${search}%`
|
2018-09-04 04:22:10 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
limit: 10
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findAll(query)
|
|
|
|
.then(u => u.map(u => u.username))
|
|
|
|
}
|
|
|
|
|
2021-02-25 05:17:53 -05:00
|
|
|
canGetVideo (video: MVideoWithRights) {
|
2019-12-18 10:38:39 -05:00
|
|
|
const videoUserId = video.VideoChannel.Account.userId
|
2019-12-12 09:47:47 -05:00
|
|
|
|
2019-12-18 10:38:39 -05:00
|
|
|
if (video.isBlacklisted()) {
|
|
|
|
return videoUserId === this.id || this.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST)
|
2019-12-12 09:47:47 -05:00
|
|
|
}
|
|
|
|
|
2019-12-18 10:38:39 -05:00
|
|
|
if (video.privacy === VideoPrivacy.PRIVATE) {
|
|
|
|
return video.VideoChannel && videoUserId === this.id || this.hasRight(UserRight.MANAGE_VIDEO_BLACKLIST)
|
2019-12-12 09:47:47 -05:00
|
|
|
}
|
|
|
|
|
2019-12-18 10:38:39 -05:00
|
|
|
if (video.privacy === VideoPrivacy.INTERNAL) return true
|
|
|
|
|
2019-12-12 09:47:47 -05:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
hasRight (right: UserRight) {
|
|
|
|
return hasUserRight(this.role, right)
|
|
|
|
}
|
2017-10-24 13:41:09 -04:00
|
|
|
|
2019-04-15 04:49:46 -04:00
|
|
|
hasAdminFlag (flag: UserAdminFlag) {
|
|
|
|
return this.adminFlags & flag
|
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
isPasswordMatch (password: string) {
|
|
|
|
return comparePassword(password, this.password)
|
2016-12-11 15:50:51 -05:00
|
|
|
}
|
|
|
|
|
2020-01-03 08:17:57 -05:00
|
|
|
toFormattedJSON (this: MUserFormattable, parameters: { withAdminFlags?: boolean } = {}): User {
|
2018-08-14 11:56:51 -04:00
|
|
|
const videoQuotaUsed = this.get('videoQuotaUsed')
|
2018-08-28 03:01:35 -04:00
|
|
|
const videoQuotaUsedDaily = this.get('videoQuotaUsedDaily')
|
2020-03-27 10:19:03 -04:00
|
|
|
const videosCount = this.get('videosCount')
|
2020-07-07 08:34:16 -04:00
|
|
|
const [ abusesCount, abusesAcceptedCount ] = (this.get('abusesCount') as string || ':').split(':')
|
|
|
|
const abusesCreatedCount = this.get('abusesCreatedCount')
|
2020-03-27 10:19:03 -04:00
|
|
|
const videoCommentsCount = this.get('videoCommentsCount')
|
2018-08-14 11:56:51 -04:00
|
|
|
|
2020-01-03 08:17:57 -05:00
|
|
|
const json: User = {
|
2017-12-12 11:53:50 -05:00
|
|
|
id: this.id,
|
|
|
|
username: this.username,
|
|
|
|
email: this.email,
|
2019-08-28 08:40:06 -04:00
|
|
|
theme: getThemeOrDefault(this.theme, DEFAULT_USER_THEME_NAME),
|
|
|
|
|
2019-06-11 05:54:33 -04:00
|
|
|
pendingEmail: this.pendingEmail,
|
2018-08-31 03:18:19 -04:00
|
|
|
emailVerified: this.emailVerified,
|
2019-08-28 08:40:06 -04:00
|
|
|
|
2018-04-19 05:01:34 -04:00
|
|
|
nsfwPolicy: this.nsfwPolicy,
|
2018-10-12 12:12:39 -04:00
|
|
|
webTorrentEnabled: this.webTorrentEnabled,
|
2018-12-18 05:32:37 -05:00
|
|
|
videosHistoryEnabled: this.videosHistoryEnabled,
|
2017-12-19 04:45:49 -05:00
|
|
|
autoPlayVideo: this.autoPlayVideo,
|
2019-09-24 02:48:01 -04:00
|
|
|
autoPlayNextVideo: this.autoPlayNextVideo,
|
2019-12-11 14:20:42 -05:00
|
|
|
autoPlayNextVideoPlaylist: this.autoPlayNextVideoPlaylist,
|
2019-06-19 08:55:58 -04:00
|
|
|
videoLanguages: this.videoLanguages,
|
2019-08-28 08:40:06 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
role: this.role,
|
2020-01-31 10:56:52 -05:00
|
|
|
roleLabel: USER_ROLE_LABELS[this.role],
|
2019-08-28 08:40:06 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
videoQuota: this.videoQuota,
|
2018-08-28 03:01:35 -04:00
|
|
|
videoQuotaDaily: this.videoQuotaDaily,
|
2019-08-28 08:40:06 -04:00
|
|
|
videoQuotaUsed: videoQuotaUsed !== undefined
|
|
|
|
? parseInt(videoQuotaUsed + '', 10)
|
|
|
|
: undefined,
|
|
|
|
videoQuotaUsedDaily: videoQuotaUsedDaily !== undefined
|
|
|
|
? parseInt(videoQuotaUsedDaily + '', 10)
|
|
|
|
: undefined,
|
2020-03-27 10:19:03 -04:00
|
|
|
videosCount: videosCount !== undefined
|
|
|
|
? parseInt(videosCount + '', 10)
|
|
|
|
: undefined,
|
2020-07-07 08:34:16 -04:00
|
|
|
abusesCount: abusesCount
|
|
|
|
? parseInt(abusesCount, 10)
|
2020-03-27 10:19:03 -04:00
|
|
|
: undefined,
|
2020-07-07 08:34:16 -04:00
|
|
|
abusesAcceptedCount: abusesAcceptedCount
|
|
|
|
? parseInt(abusesAcceptedCount, 10)
|
2020-03-27 10:19:03 -04:00
|
|
|
: undefined,
|
2020-07-07 08:34:16 -04:00
|
|
|
abusesCreatedCount: abusesCreatedCount !== undefined
|
|
|
|
? parseInt(abusesCreatedCount + '', 10)
|
2020-03-27 10:19:03 -04:00
|
|
|
: undefined,
|
|
|
|
videoCommentsCount: videoCommentsCount !== undefined
|
|
|
|
? parseInt(videoCommentsCount + '', 10)
|
|
|
|
: undefined,
|
2019-08-28 08:40:06 -04:00
|
|
|
|
|
|
|
noInstanceConfigWarningModal: this.noInstanceConfigWarningModal,
|
|
|
|
noWelcomeModal: this.noWelcomeModal,
|
|
|
|
|
2018-08-08 11:36:10 -04:00
|
|
|
blocked: this.blocked,
|
|
|
|
blockedReason: this.blockedReason,
|
2019-08-28 08:40:06 -04:00
|
|
|
|
2017-12-29 13:10:13 -05:00
|
|
|
account: this.Account.toFormattedJSON(),
|
2019-08-28 08:40:06 -04:00
|
|
|
|
|
|
|
notificationSettings: this.NotificationSetting
|
|
|
|
? this.NotificationSetting.toFormattedJSON()
|
|
|
|
: undefined,
|
|
|
|
|
2018-08-14 11:56:51 -04:00
|
|
|
videoChannels: [],
|
2019-08-28 08:40:06 -04:00
|
|
|
|
2020-05-05 03:44:53 -04:00
|
|
|
createdAt: this.createdAt,
|
|
|
|
|
2020-05-07 04:39:09 -04:00
|
|
|
pluginAuth: this.pluginAuth,
|
|
|
|
|
|
|
|
lastLoginDate: this.lastLoginDate
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
|
|
|
|
2019-04-15 04:49:46 -04:00
|
|
|
if (parameters.withAdminFlags) {
|
|
|
|
Object.assign(json, { adminFlags: this.adminFlags })
|
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
if (Array.isArray(this.Account.VideoChannels) === true) {
|
2017-12-29 13:10:13 -05:00
|
|
|
json.videoChannels = this.Account.VideoChannels
|
2020-01-31 10:56:52 -05:00
|
|
|
.map(c => c.toFormattedJSON())
|
|
|
|
.sort((v1, v2) => {
|
|
|
|
if (v1.createdAt < v2.createdAt) return -1
|
|
|
|
if (v1.createdAt === v2.createdAt) return 0
|
2017-02-18 03:29:59 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
return 1
|
|
|
|
})
|
2017-02-18 03:29:59 -05:00
|
|
|
}
|
2017-12-12 11:53:50 -05:00
|
|
|
|
|
|
|
return json
|
2017-02-18 03:29:59 -05:00
|
|
|
}
|
|
|
|
|
2020-01-03 08:17:57 -05:00
|
|
|
toMeFormattedJSON (this: MMyUserFormattable): MyUser {
|
|
|
|
const formatted = this.toFormattedJSON()
|
|
|
|
|
|
|
|
const specialPlaylists = this.Account.VideoPlaylists
|
2020-01-31 10:56:52 -05:00
|
|
|
.map(p => ({ id: p.id, name: p.name, type: p.type }))
|
2020-01-03 08:17:57 -05:00
|
|
|
|
|
|
|
return Object.assign(formatted, { specialPlaylists })
|
|
|
|
}
|
2017-09-04 14:07:54 -04:00
|
|
|
}
|