1
0
Fork 0
peertube/server/models/user/user.ts

978 lines
25 KiB
TypeScript
Raw Normal View History

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