2023-07-31 14:34:36 +02:00
|
|
|
import { forceNumber, hasUserRight, USER_ROLE_LABELS } from '@peertube/peertube-core-utils'
|
|
|
|
import {
|
|
|
|
AbuseState,
|
|
|
|
MyUser,
|
|
|
|
User,
|
|
|
|
UserAdminFlag,
|
|
|
|
UserRightType,
|
|
|
|
VideoPlaylistType,
|
|
|
|
type NSFWPolicyType,
|
|
|
|
type UserAdminFlagType,
|
|
|
|
type UserRoleType
|
|
|
|
} from '@peertube/peertube-models'
|
|
|
|
import { AttributesOnly } from '@peertube/peertube-typescript-utils'
|
|
|
|
import { TokensCache } from '@server/lib/auth/tokens-cache.js'
|
|
|
|
import { LiveQuotaStore } from '@server/lib/live/index.js'
|
|
|
|
import {
|
|
|
|
MMyUserFormattable,
|
|
|
|
MUser,
|
|
|
|
MUserDefault,
|
|
|
|
MUserFormattable,
|
|
|
|
MUserNotifSettingChannelDefault,
|
|
|
|
MUserWithNotificationSetting
|
|
|
|
} from '@server/types/models/index.js'
|
2020-04-16 15:13:46 +02:00
|
|
|
import { col, FindOptions, fn, literal, Op, QueryTypes, where, WhereOptions } from 'sequelize'
|
2017-12-12 17:53:50 +01:00
|
|
|
import {
|
2018-11-19 17:08:18 +01:00
|
|
|
AfterDestroy,
|
2018-09-20 11:31:48 +02:00
|
|
|
AfterUpdate,
|
2018-03-01 13:02:09 +01:00
|
|
|
AllowNull,
|
|
|
|
BeforeCreate,
|
|
|
|
BeforeUpdate,
|
|
|
|
Column,
|
|
|
|
CreatedAt,
|
|
|
|
DataType,
|
|
|
|
Default,
|
|
|
|
DefaultScope,
|
|
|
|
HasMany,
|
|
|
|
HasOne,
|
|
|
|
Is,
|
|
|
|
IsEmail,
|
2020-12-08 14:30:29 +01:00
|
|
|
IsUUID,
|
2018-03-01 13:02:09 +01:00
|
|
|
Model,
|
|
|
|
Scopes,
|
|
|
|
Table,
|
2020-12-08 14:30:29 +01:00
|
|
|
UpdatedAt
|
2017-12-12 17:53:50 +01:00
|
|
|
} from 'sequelize-typescript'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { isThemeNameValid } from '../../helpers/custom-validators/plugins.js'
|
2017-05-15 22:22:03 +02:00
|
|
|
import {
|
2019-04-15 10:49:46 +02:00
|
|
|
isUserAdminFlagsValid,
|
2019-12-11 20:20:42 +01:00
|
|
|
isUserAutoPlayNextVideoPlaylistValid,
|
2020-01-03 14:17:57 +01:00
|
|
|
isUserAutoPlayNextVideoValid,
|
|
|
|
isUserAutoPlayVideoValid,
|
2018-08-08 17:36:10 +02:00
|
|
|
isUserBlockedReasonValid,
|
2018-08-08 14:58:21 +02:00
|
|
|
isUserBlockedValid,
|
2018-08-31 09:18:19 +02:00
|
|
|
isUserEmailVerifiedValid,
|
2021-08-27 10:15:55 +02:00
|
|
|
isUserNoModal,
|
2018-09-04 10:22:10 +02:00
|
|
|
isUserNSFWPolicyValid,
|
2022-02-09 17:48:15 +01:00
|
|
|
isUserP2PEnabledValid,
|
2018-03-01 13:02:09 +01:00
|
|
|
isUserPasswordValid,
|
|
|
|
isUserRoleValid,
|
2019-06-19 14:55:58 +02:00
|
|
|
isUserVideoLanguages,
|
2018-09-04 10:22:10 +02:00
|
|
|
isUserVideoQuotaDailyValid,
|
2018-10-05 15:17:34 +02:00
|
|
|
isUserVideoQuotaValid,
|
2022-02-09 17:48:15 +01:00
|
|
|
isUserVideosHistoryEnabledValid
|
2023-07-31 14:34:36 +02:00
|
|
|
} from '../../helpers/custom-validators/users.js'
|
|
|
|
import { comparePassword, cryptPassword } from '../../helpers/peertube-crypto.js'
|
|
|
|
import { DEFAULT_USER_THEME_NAME, NSFW_POLICY_TYPES } from '../../initializers/constants.js'
|
|
|
|
import { getThemeOrDefault } from '../../lib/plugins/theme-utils.js'
|
|
|
|
import { AccountModel } from '../account/account.js'
|
|
|
|
import { ActorFollowModel } from '../actor/actor-follow.js'
|
|
|
|
import { ActorImageModel } from '../actor/actor-image.js'
|
|
|
|
import { ActorModel } from '../actor/actor.js'
|
|
|
|
import { OAuthTokenModel } from '../oauth/oauth-token.js'
|
|
|
|
import { getAdminUsersSort, throwIfNotValid } from '../shared/index.js'
|
|
|
|
import { VideoChannelModel } from '../video/video-channel.js'
|
|
|
|
import { VideoImportModel } from '../video/video-import.js'
|
|
|
|
import { VideoLiveModel } from '../video/video-live.js'
|
|
|
|
import { VideoPlaylistModel } from '../video/video-playlist.js'
|
|
|
|
import { VideoModel } from '../video/video.js'
|
|
|
|
import { UserNotificationSettingModel } from './user-notification-setting.js'
|
2017-12-12 17:53:50 +01:00
|
|
|
|
2018-06-19 14:02:57 +02:00
|
|
|
enum ScopeNames {
|
2020-03-27 15:19:03 +01:00
|
|
|
FOR_ME_API = 'FOR_ME_API',
|
|
|
|
WITH_VIDEOCHANNELS = 'WITH_VIDEOCHANNELS',
|
2022-05-04 10:07:06 +02:00
|
|
|
WITH_QUOTA = 'WITH_QUOTA',
|
2020-03-27 15:19:03 +01:00
|
|
|
WITH_STATS = 'WITH_STATS'
|
2018-06-19 14:02:57 +02:00
|
|
|
}
|
|
|
|
|
2019-04-23 09:50:57 +02:00
|
|
|
@DefaultScope(() => ({
|
2017-12-14 10:07:57 +01:00
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 09:50:57 +02:00
|
|
|
model: AccountModel,
|
2017-12-14 10:07:57 +01:00
|
|
|
required: true
|
2018-12-26 10:36:24 +01:00
|
|
|
},
|
|
|
|
{
|
2019-04-23 09:50:57 +02:00
|
|
|
model: UserNotificationSettingModel,
|
2018-12-26 10:36:24 +01:00
|
|
|
required: true
|
2017-12-14 10:07:57 +01:00
|
|
|
}
|
|
|
|
]
|
2019-04-23 09:50:57 +02:00
|
|
|
}))
|
|
|
|
@Scopes(() => ({
|
2020-01-03 14:17:57 +01:00
|
|
|
[ScopeNames.FOR_ME_API]: {
|
2017-12-14 10:07:57 +01:00
|
|
|
include: [
|
|
|
|
{
|
2019-04-23 09:50:57 +02:00
|
|
|
model: AccountModel,
|
2020-01-03 14:17:57 +01:00
|
|
|
include: [
|
|
|
|
{
|
2021-04-07 17:01:29 +02:00
|
|
|
model: VideoChannelModel.unscoped(),
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: ActorModel,
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: ActorImageModel,
|
2022-02-28 08:34:43 +01:00
|
|
|
as: 'Banners',
|
2021-04-07 17:01:29 +02:00
|
|
|
required: false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2020-01-03 14:17:57 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
attributes: [ 'id', 'name', 'type' ],
|
|
|
|
model: VideoPlaylistModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
type: {
|
2020-01-31 16:56:52 +01:00
|
|
|
[Op.ne]: VideoPlaylistType.REGULAR
|
2020-01-03 14:17:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2018-12-26 10:36:24 +01:00
|
|
|
},
|
|
|
|
{
|
2019-04-23 09:50:57 +02:00
|
|
|
model: UserNotificationSettingModel,
|
2018-12-26 10:36:24 +01:00
|
|
|
required: true
|
2017-12-14 10:07:57 +01:00
|
|
|
}
|
2019-04-23 09:50:57 +02:00
|
|
|
]
|
2020-03-27 15:19:03 +01: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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2022-05-04 10:07:06 +02:00
|
|
|
[ScopeNames.WITH_QUOTA]: {
|
2020-03-27 15:19:03 +01:00
|
|
|
attributes: {
|
|
|
|
include: [
|
2020-04-16 15:13:46 +02:00
|
|
|
[
|
|
|
|
literal(
|
|
|
|
'(' +
|
|
|
|
UserModel.generateUserQuotaBaseSQL({
|
|
|
|
withSelect: false,
|
2022-05-04 10:07:06 +02:00
|
|
|
whereUserId: '"UserModel"."id"',
|
|
|
|
daily: false
|
2020-04-16 15:13:46 +02:00
|
|
|
}) +
|
|
|
|
')'
|
|
|
|
),
|
|
|
|
'videoQuotaUsed'
|
|
|
|
],
|
2022-05-04 10:07:06 +02:00
|
|
|
[
|
|
|
|
literal(
|
|
|
|
'(' +
|
|
|
|
UserModel.generateUserQuotaBaseSQL({
|
|
|
|
withSelect: false,
|
|
|
|
whereUserId: '"UserModel"."id"',
|
|
|
|
daily: true
|
|
|
|
}) +
|
|
|
|
')'
|
|
|
|
),
|
|
|
|
'videoQuotaUsedDaily'
|
|
|
|
]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
[ScopeNames.WITH_STATS]: {
|
|
|
|
attributes: {
|
|
|
|
include: [
|
2020-03-27 15:19:03 +01: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 14:34:16 +02: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 15:19:03 +01:00
|
|
|
'WHERE "account"."userId" = "UserModel"."id"' +
|
|
|
|
') t' +
|
|
|
|
')'
|
|
|
|
),
|
2020-07-07 14:34:16 +02:00
|
|
|
'abusesCount'
|
2020-03-27 15:19:03 +01:00
|
|
|
],
|
|
|
|
[
|
|
|
|
literal(
|
|
|
|
'(' +
|
2020-07-07 14:34:16 +02:00
|
|
|
'SELECT COUNT("abuse"."id") ' +
|
|
|
|
'FROM "abuse" ' +
|
|
|
|
'INNER JOIN "account" ON "account"."id" = "abuse"."reporterAccountId" ' +
|
2020-03-27 15:19:03 +01:00
|
|
|
'WHERE "account"."userId" = "UserModel"."id"' +
|
|
|
|
')'
|
|
|
|
),
|
2020-07-07 14:34:16 +02:00
|
|
|
'abusesCreatedCount'
|
2020-03-27 15:19:03 +01: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 10:07:57 +01:00
|
|
|
}
|
2019-04-23 09:50:57 +02:00
|
|
|
}))
|
2017-12-12 17:53:50 +01:00
|
|
|
@Table({
|
|
|
|
tableName: 'user',
|
|
|
|
indexes: [
|
2016-12-11 21:50:51 +01:00
|
|
|
{
|
2017-12-12 17:53:50 +01:00
|
|
|
fields: [ 'username' ],
|
|
|
|
unique: true
|
2016-12-11 21:50:51 +01:00
|
|
|
},
|
|
|
|
{
|
2017-12-12 17:53:50 +01:00
|
|
|
fields: [ 'email' ],
|
|
|
|
unique: true
|
2016-12-11 21:50:51 +01:00
|
|
|
}
|
2017-05-22 20:58:25 +02:00
|
|
|
]
|
2017-12-12 17:53:50 +01:00
|
|
|
})
|
2021-05-12 14:09:04 +02:00
|
|
|
export class UserModel extends Model<Partial<AttributesOnly<UserModel>>> {
|
2017-12-12 17:53:50 +01:00
|
|
|
|
2020-04-22 16:07:04 +02:00
|
|
|
@AllowNull(true)
|
2020-04-23 11:36:50 +02:00
|
|
|
@Is('UserPassword', value => throwIfNotValid(value, isUserPasswordValid, 'user password', true))
|
2017-12-12 17:53:50 +01:00
|
|
|
@Column
|
|
|
|
password: string
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
username: string
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@IsEmail
|
|
|
|
@Column(DataType.STRING(400))
|
|
|
|
email: string
|
|
|
|
|
2019-06-11 11:54:33 +02:00
|
|
|
@AllowNull(true)
|
|
|
|
@IsEmail
|
|
|
|
@Column(DataType.STRING(400))
|
|
|
|
pendingEmail: string
|
|
|
|
|
2018-08-31 09:18:19 +02:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-04-18 11:28:17 +02:00
|
|
|
@Is('UserEmailVerified', value => throwIfNotValid(value, isUserEmailVerifiedValid, 'email verified boolean', true))
|
2018-08-31 09:18:19 +02:00
|
|
|
@Column
|
|
|
|
emailVerified: boolean
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@AllowNull(false)
|
2018-04-19 11:01:34 +02:00
|
|
|
@Is('UserNSFWPolicy', value => throwIfNotValid(value, isUserNSFWPolicyValid, 'NSFW policy'))
|
2022-08-17 15:36:03 +02:00
|
|
|
@Column(DataType.ENUM(...Object.values(NSFW_POLICY_TYPES)))
|
2018-04-19 11:01:34 +02:00
|
|
|
nsfwPolicy: NSFWPolicyType
|
2017-12-12 17:53:50 +01:00
|
|
|
|
2018-10-05 15:17:34 +02:00
|
|
|
@AllowNull(false)
|
2021-12-15 15:58:10 +01:00
|
|
|
@Is('p2pEnabled', value => throwIfNotValid(value, isUserP2PEnabledValid, 'P2P enabled'))
|
2018-10-12 18:12:39 +02:00
|
|
|
@Column
|
2021-12-15 15:58:10 +01:00
|
|
|
p2pEnabled: boolean
|
2018-10-05 15:17:34 +02:00
|
|
|
|
2018-12-17 15:52:38 +01:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(true)
|
|
|
|
@Is('UserVideosHistoryEnabled', value => throwIfNotValid(value, isUserVideosHistoryEnabledValid, 'Videos history enabled'))
|
|
|
|
@Column
|
|
|
|
videosHistoryEnabled: boolean
|
|
|
|
|
2017-12-19 10:45:49 +01:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(true)
|
|
|
|
@Is('UserAutoPlayVideo', value => throwIfNotValid(value, isUserAutoPlayVideoValid, 'auto play video boolean'))
|
|
|
|
@Column
|
|
|
|
autoPlayVideo: boolean
|
|
|
|
|
2019-09-24 08:48:01 +02:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is('UserAutoPlayNextVideo', value => throwIfNotValid(value, isUserAutoPlayNextVideoValid, 'auto play next video boolean'))
|
|
|
|
@Column
|
|
|
|
autoPlayNextVideo: boolean
|
|
|
|
|
2019-12-11 20:20:42 +01:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(true)
|
2020-01-31 16:56:52 +01:00
|
|
|
@Is(
|
|
|
|
'UserAutoPlayNextVideoPlaylist',
|
|
|
|
value => throwIfNotValid(value, isUserAutoPlayNextVideoPlaylistValid, 'auto play next video for playlists boolean')
|
|
|
|
)
|
2019-12-11 20:20:42 +01:00
|
|
|
@Column
|
|
|
|
autoPlayNextVideoPlaylist: boolean
|
|
|
|
|
2019-06-19 14:55:58 +02:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Is('UserVideoLanguages', value => throwIfNotValid(value, isUserVideoLanguages, 'video languages'))
|
|
|
|
@Column(DataType.ARRAY(DataType.STRING))
|
|
|
|
videoLanguages: string[]
|
|
|
|
|
2019-04-15 10:49:46 +02:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(UserAdminFlag.NONE)
|
|
|
|
@Is('UserAdminFlags', value => throwIfNotValid(value, isUserAdminFlagsValid, 'user admin flags'))
|
|
|
|
@Column
|
2023-07-31 14:34:36 +02:00
|
|
|
adminFlags?: UserAdminFlagType
|
2019-04-15 10:49:46 +02:00
|
|
|
|
2018-08-08 14:58:21 +02:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is('UserBlocked', value => throwIfNotValid(value, isUserBlockedValid, 'blocked boolean'))
|
|
|
|
@Column
|
|
|
|
blocked: boolean
|
|
|
|
|
2018-08-08 17:36:10 +02:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
2019-04-18 11:28:17 +02:00
|
|
|
@Is('UserBlockedReason', value => throwIfNotValid(value, isUserBlockedReasonValid, 'blocked reason', true))
|
2018-08-08 17:36:10 +02:00
|
|
|
@Column
|
|
|
|
blockedReason: string
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@AllowNull(false)
|
|
|
|
@Is('UserRole', value => throwIfNotValid(value, isUserRoleValid, 'role'))
|
|
|
|
@Column
|
2023-07-31 14:34:36 +02:00
|
|
|
role: UserRoleType
|
2017-12-12 17:53:50 +01:00
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Is('UserVideoQuota', value => throwIfNotValid(value, isUserVideoQuotaValid, 'video quota'))
|
|
|
|
@Column(DataType.BIGINT)
|
|
|
|
videoQuota: number
|
|
|
|
|
2018-08-28 09:01:35 +02:00
|
|
|
@AllowNull(false)
|
|
|
|
@Is('UserVideoQuotaDaily', value => throwIfNotValid(value, isUserVideoQuotaDailyValid, 'video quota daily'))
|
|
|
|
@Column(DataType.BIGINT)
|
|
|
|
videoQuotaDaily: number
|
|
|
|
|
2019-07-09 11:45:19 +02:00
|
|
|
@AllowNull(false)
|
2020-02-11 10:55:52 +01:00
|
|
|
@Default(DEFAULT_USER_THEME_NAME)
|
2019-07-15 15:41:56 +02:00
|
|
|
@Is('UserTheme', value => throwIfNotValid(value, isThemeNameValid, 'theme'))
|
2019-07-09 11:45:19 +02:00
|
|
|
@Column
|
|
|
|
theme: string
|
|
|
|
|
2019-08-28 14:40:06 +02:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is(
|
|
|
|
'UserNoInstanceConfigWarningModal',
|
2021-08-27 10:15:55 +02:00
|
|
|
value => throwIfNotValid(value, isUserNoModal, 'no instance config warning modal')
|
2019-08-28 14:40:06 +02:00
|
|
|
)
|
|
|
|
@Column
|
|
|
|
noInstanceConfigWarningModal: boolean
|
|
|
|
|
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is(
|
2021-08-27 10:15:55 +02:00
|
|
|
'UserNoWelcomeModal',
|
|
|
|
value => throwIfNotValid(value, isUserNoModal, 'no welcome modal')
|
2019-08-28 14:40:06 +02:00
|
|
|
)
|
|
|
|
@Column
|
|
|
|
noWelcomeModal: boolean
|
|
|
|
|
2021-08-27 10:15:55 +02:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Is(
|
|
|
|
'UserNoAccountSetupWarningModal',
|
|
|
|
value => throwIfNotValid(value, isUserNoModal, 'no account setup warning modal')
|
|
|
|
)
|
|
|
|
@Column
|
|
|
|
noAccountSetupWarningModal: boolean
|
|
|
|
|
2020-04-22 16:07:04 +02:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
|
|
|
pluginAuth: string
|
|
|
|
|
2020-08-13 15:07:23 +02:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(DataType.UUIDV4)
|
|
|
|
@IsUUID(4)
|
|
|
|
@Column(DataType.UUID)
|
|
|
|
feedToken: string
|
|
|
|
|
2020-05-07 10:39:09 +02:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
|
|
|
lastLoginDate: Date
|
|
|
|
|
Add Podcast RSS feeds (#5487)
* Initial test implementation of Podcast RSS
This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option.
I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort.
* Update to pfeed-podcast 1.2.2
* Initial test implementation of Podcast RSS
This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option.
I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort.
* Update to pfeed-podcast 1.2.2
* Initial test implementation of Podcast RSS
This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option.
I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort.
* Update to pfeed-podcast 1.2.2
* Add correct feed image to RSS channel
* Prefer HLS videos for podcast RSS
Remove video/stream titles, add optional height attribute to podcast RSS
* Prefix podcast RSS images with root server URL
* Add optional video query support to include captions
* Add transcripts & person images to podcast RSS feed
* Prefer webseed/webtorrent files over HLS fragmented mp4s
* Experimentally adding podcast fields to basic config page
* Add validation for new basic config fields
* Don't include "content" in podcast feed, use full description for "description"
* Initial test implementation of Podcast RSS
This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option.
I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort.
* Update to pfeed-podcast 1.2.2
* Add correct feed image to RSS channel
* Prefer HLS videos for podcast RSS
Remove video/stream titles, add optional height attribute to podcast RSS
* Prefix podcast RSS images with root server URL
* Add optional video query support to include captions
* Add transcripts & person images to podcast RSS feed
* Prefer webseed/webtorrent files over HLS fragmented mp4s
* Experimentally adding podcast fields to basic config page
* Add validation for new basic config fields
* Don't include "content" in podcast feed, use full description for "description"
* Add medium/socialInteract to podcast RSS feeds. Use HTML for description
* Change base production image to bullseye, install prosody in image
* Add liveItem and trackers to Podcast RSS feeds
Remove height from alternateEnclosure, replaced with title.
* Clear Podcast RSS feed cache when live streams start/end
* Upgrade to Node 16
* Refactor clearCacheRoute to use ApiCache
* Remove unnecessary type hint
* Update dockerfile to node 16, install python-is-python2
* Use new file paths for captions/playlists
* Fix legacy videos in RSS after migration to object storage
* Improve method of identifying non-fragmented mp4s in podcast RSS feeds
* Don't include fragmented MP4s in podcast RSS feeds
* Add experimental support for podcast:categories on the podcast RSS item
* Fix undefined category when no videos exist
Allows for empty feeds to exist (important for feeds that might only go live)
* Add support for podcast:locked -- user has to opt in to show their email
* Use comma for podcast:categories delimiter
* Make cache clearing async
* Fix merge, temporarily test with pfeed-podcast
* Syntax changes
* Add EXT_MIMETYPE constants for captions
* Update & fix tests, fix enclosure mimetypes, remove admin email
* Add test for podacst:socialInteract
* Add filters hooks for podcast customTags
* Remove showdown, updated to pfeed-podcast 6.1.2
* Add 'action:api.live-video.state.updated' hook
* Avoid assigning undefined category to podcast feeds
* Remove nvmrc
* Remove comment
* Remove unused podcast config
* Remove more unused podcast config
* Fix MChannelAccountDefault type hint missed in merge
* Remove extra line
* Re-add newline in config
* Fix lint errors for isEmailPublic
* Fix thumbnails in podcast feeds
* Requested changes based on review
* Provide podcast rss 2.0 only on video channels
* Misc cleanup for a less messy PR
* Lint fixes
* Remove pfeed-podcast
* Add peertube version to new hooks
* Don't use query include, remove TODO
* Remove film medium hack
* Clear podcast rss cache before video/channel update hooks
* Clear podcast rss cache before video uploaded/deleted hooks
* Refactor podcast feed cache clearing
* Set correct person name from video channel
* Styling
* Fix tests
---------
Co-authored-by: Chocobozzz <me@florianbigard.com>
2023-05-22 16:00:05 +02:00
|
|
|
@AllowNull(false)
|
|
|
|
@Default(false)
|
|
|
|
@Column
|
|
|
|
emailPublic: boolean
|
|
|
|
|
2022-10-05 15:37:15 +02:00
|
|
|
@AllowNull(true)
|
|
|
|
@Default(null)
|
|
|
|
@Column
|
|
|
|
otpSecret: string
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
|
|
|
|
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
|
|
|
|
|
|
|
@HasOne(() => AccountModel, {
|
|
|
|
foreignKey: 'userId',
|
2018-01-18 10:53:54 +01:00
|
|
|
onDelete: 'cascade',
|
|
|
|
hooks: true
|
2017-12-12 17:53:50 +01:00
|
|
|
})
|
2023-07-31 14:34:36 +02:00
|
|
|
Account: Awaited<AccountModel>
|
2016-07-01 16:03:53 +02:00
|
|
|
|
2018-12-26 10:36:24 +01:00
|
|
|
@HasOne(() => UserNotificationSettingModel, {
|
|
|
|
foreignKey: 'userId',
|
|
|
|
onDelete: 'cascade',
|
|
|
|
hooks: true
|
|
|
|
})
|
2023-07-31 14:34:36 +02:00
|
|
|
NotificationSetting: Awaited<UserNotificationSettingModel>
|
2018-12-26 10:36:24 +01:00
|
|
|
|
2019-01-02 16:37:43 +01:00
|
|
|
@HasMany(() => VideoImportModel, {
|
|
|
|
foreignKey: 'userId',
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2023-07-31 14:34:36 +02:00
|
|
|
VideoImports: Awaited<VideoImportModel>[]
|
2019-01-02 16:37:43 +01:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@HasMany(() => OAuthTokenModel, {
|
|
|
|
foreignKey: 'userId',
|
|
|
|
onDelete: 'cascade'
|
|
|
|
})
|
2023-07-31 14:34:36 +02:00
|
|
|
OAuthTokens: Awaited<OAuthTokenModel>[]
|
2017-12-12 17:53:50 +01:00
|
|
|
|
2023-01-19 09:27:16 +01:00
|
|
|
// Used if we already set an encrypted password in user model
|
|
|
|
skipPasswordEncryption = false
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
@BeforeCreate
|
|
|
|
@BeforeUpdate
|
2023-01-19 09:27:16 +01:00
|
|
|
static async cryptPasswordIfNeeded (instance: UserModel) {
|
|
|
|
if (instance.skipPasswordEncryption) return
|
|
|
|
if (!instance.changed('password')) return
|
|
|
|
if (!instance.password) return
|
|
|
|
|
|
|
|
instance.password = await cryptPassword(instance.password)
|
2017-11-04 18:09:23 +01:00
|
|
|
}
|
2016-08-25 17:57:37 +02:00
|
|
|
|
2018-09-20 11:31:48 +02:00
|
|
|
@AfterUpdate
|
2018-11-19 17:08:18 +01:00
|
|
|
@AfterDestroy
|
2018-09-20 11:31:48 +02:00
|
|
|
static removeTokenCache (instance: UserModel) {
|
2021-03-12 15:20:46 +01:00
|
|
|
return TokensCache.Instance.clearCacheByUserId(instance.id)
|
2018-09-20 11:31:48 +02:00
|
|
|
}
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
static countTotal () {
|
2023-01-19 15:23:06 +01:00
|
|
|
return UserModel.unscoped().count()
|
2017-12-12 17:53:50 +01:00
|
|
|
}
|
2017-10-27 16:55:03 +02:00
|
|
|
|
2022-05-24 15:05:39 +02:00
|
|
|
static listForAdminApi (parameters: {
|
2020-07-02 22:49:51 +02:00
|
|
|
start: number
|
|
|
|
count: number
|
|
|
|
sort: string
|
|
|
|
search?: string
|
|
|
|
blocked?: boolean
|
|
|
|
}) {
|
|
|
|
const { start, count, sort, search, blocked } = parameters
|
|
|
|
const where: WhereOptions = {}
|
2020-01-31 16:56:52 +01:00
|
|
|
|
2018-10-08 15:51:38 +02:00
|
|
|
if (search) {
|
2020-07-02 22:49:51 +02:00
|
|
|
Object.assign(where, {
|
2019-04-23 09:50:57 +02:00
|
|
|
[Op.or]: [
|
2018-10-08 15:51:38 +02:00
|
|
|
{
|
|
|
|
email: {
|
2019-04-23 09:50:57 +02:00
|
|
|
[Op.iLike]: '%' + search + '%'
|
2018-10-08 15:51:38 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
username: {
|
2020-01-31 16:56:52 +01:00
|
|
|
[Op.iLike]: '%' + search + '%'
|
2018-10-08 15:51:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2020-07-02 22:49:51 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if (blocked !== undefined) {
|
2022-07-13 11:58:01 +02:00
|
|
|
Object.assign(where, { blocked })
|
2018-10-08 15:51:38 +02:00
|
|
|
}
|
|
|
|
|
2019-04-23 09:50:57 +02:00
|
|
|
const query: FindOptions = {
|
2017-12-12 17:53:50 +01:00
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2022-05-24 15:05:39 +02:00
|
|
|
order: getAdminUsersSort(sort),
|
2018-10-08 15:51:38 +02:00
|
|
|
where
|
2017-12-12 17:53:50 +01:00
|
|
|
}
|
2017-10-24 19:41:09 +02:00
|
|
|
|
2022-02-28 08:34:43 +01:00
|
|
|
return Promise.all([
|
|
|
|
UserModel.unscoped().count(query),
|
2022-05-04 10:07:06 +02:00
|
|
|
UserModel.scope([ 'defaultScope', ScopeNames.WITH_QUOTA ]).findAll(query)
|
2022-02-28 08:34:43 +01:00
|
|
|
]).then(([ total, data ]) => ({ total, data }))
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
|
|
|
|
2023-07-31 14:34:36 +02:00
|
|
|
static listWithRight (right: UserRightType): Promise<MUserDefault[]> {
|
2018-02-01 11:08:10 +01:00
|
|
|
const roles = Object.keys(USER_ROLE_LABELS)
|
2023-07-31 14:34:36 +02:00
|
|
|
.map(k => parseInt(k, 10) as UserRoleType)
|
2020-01-31 16:56:52 +01:00
|
|
|
.filter(role => hasUserRight(role, right))
|
2018-02-01 11:08:10 +01:00
|
|
|
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
role: {
|
2019-04-23 09:50:57 +02:00
|
|
|
[Op.in]: roles
|
2018-02-01 11:08:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-26 10:36:24 +01:00
|
|
|
return UserModel.findAll(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static listUserSubscribersOf (actorId: number): Promise<MUserWithNotificationSetting[]> {
|
2018-12-26 10:36:24 +01:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: UserNotificationSettingModel.unscoped(),
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attributes: [ 'userId' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
include: [
|
|
|
|
{
|
2020-01-31 16:56:52 +01:00
|
|
|
attributes: [],
|
2018-12-26 10:36:24 +01:00
|
|
|
model: ActorModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
serverId: null
|
|
|
|
},
|
|
|
|
include: [
|
|
|
|
{
|
2020-01-31 16:56:52 +01:00
|
|
|
attributes: [],
|
2018-12-26 10:36:24 +01:00
|
|
|
as: 'ActorFollowings',
|
|
|
|
model: ActorFollowModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
where: {
|
2023-05-17 15:02:23 +02:00
|
|
|
state: 'accepted',
|
2018-12-26 10:36:24 +01:00
|
|
|
targetActorId: actorId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.unscoped().findAll(query)
|
2018-02-01 11:08:10 +01:00
|
|
|
}
|
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static listByUsernames (usernames: string[]): Promise<MUserDefault[]> {
|
2019-01-04 08:56:20 +01:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
username: usernames
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findAll(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static loadById (id: number): Promise<MUser> {
|
2020-09-25 16:19:35 +02:00
|
|
|
return UserModel.unscoped().findByPk(id)
|
|
|
|
}
|
|
|
|
|
2021-05-05 15:26:28 +02:00
|
|
|
static loadByIdFull (id: number): Promise<MUserDefault> {
|
|
|
|
return UserModel.findByPk(id)
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static loadByIdWithChannels (id: number, withStats = false): Promise<MUserDefault> {
|
2020-03-27 15:19:03 +01:00
|
|
|
const scopes = [
|
|
|
|
ScopeNames.WITH_VIDEOCHANNELS
|
|
|
|
]
|
|
|
|
|
2022-05-04 10:07:06 +02:00
|
|
|
if (withStats) {
|
|
|
|
scopes.push(ScopeNames.WITH_QUOTA)
|
|
|
|
scopes.push(ScopeNames.WITH_STATS)
|
|
|
|
}
|
2020-03-27 15:19:03 +01:00
|
|
|
|
|
|
|
return UserModel.scope(scopes).findByPk(id)
|
2017-12-12 17:53:50 +01:00
|
|
|
}
|
2016-12-11 21:50:51 +01:00
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static loadByUsername (username: string): Promise<MUserDefault> {
|
2017-12-12 17:53:50 +01:00
|
|
|
const query = {
|
|
|
|
where: {
|
2021-01-11 13:53:08 +01:00
|
|
|
username
|
2017-12-14 10:07:57 +01:00
|
|
|
}
|
2017-12-12 17:53:50 +01:00
|
|
|
}
|
2016-08-16 21:51:35 +02:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
return UserModel.findOne(query)
|
2016-12-11 21:50:51 +01:00
|
|
|
}
|
|
|
|
|
2021-01-11 13:53:08 +01:00
|
|
|
static loadForMeAPI (id: number): Promise<MUserNotifSettingChannelDefault> {
|
2017-12-12 17:53:50 +01:00
|
|
|
const query = {
|
|
|
|
where: {
|
2021-01-11 13:53:08 +01:00
|
|
|
id
|
2017-12-14 10:07:57 +01:00
|
|
|
}
|
2017-12-12 17:53:50 +01:00
|
|
|
}
|
2016-08-04 22:32:36 +02:00
|
|
|
|
2020-01-03 14:17:57 +01:00
|
|
|
return UserModel.scope(ScopeNames.FOR_ME_API).findOne(query)
|
2016-12-11 21:50:51 +01:00
|
|
|
}
|
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static loadByEmail (email: string): Promise<MUserDefault> {
|
2018-01-30 13:27:07 +01:00
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
email
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static loadByUsernameOrEmail (username: string, email?: string): Promise<MUserDefault> {
|
2018-01-29 16:09:50 +01:00
|
|
|
if (!email) email = username
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
const query = {
|
|
|
|
where: {
|
2020-01-31 16:56:52 +01:00
|
|
|
[Op.or]: [
|
2022-02-09 17:48:15 +01:00
|
|
|
where(fn('lower', col('username')), fn('lower', username) as any),
|
2020-01-09 14:00:34 +01:00
|
|
|
|
|
|
|
{ email }
|
|
|
|
]
|
2017-12-12 17:53:50 +01:00
|
|
|
}
|
2017-07-05 13:26:25 +02:00
|
|
|
}
|
2016-07-01 16:03:53 +02:00
|
|
|
|
2017-12-14 10:07:57 +01:00
|
|
|
return UserModel.findOne(query)
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static loadByVideoId (videoId: number): Promise<MUserDefault> {
|
2018-12-26 10:36:24 +01: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 14:30:29 +01:00
|
|
|
static loadByVideoImportId (videoImportId: number): Promise<MUserDefault> {
|
2019-01-02 16:37:43 +01:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: VideoImportModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
id: videoImportId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static loadByChannelActorId (videoChannelActorId: number): Promise<MUserDefault> {
|
2019-01-04 08:56:20 +01: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 14:30:29 +01:00
|
|
|
static loadByAccountActorId (accountActorId: number): Promise<MUserDefault> {
|
2019-01-04 08:56:20 +01:00
|
|
|
const query = {
|
|
|
|
include: [
|
|
|
|
{
|
|
|
|
required: true,
|
|
|
|
attributes: [ 'id' ],
|
|
|
|
model: AccountModel.unscoped(),
|
|
|
|
where: {
|
|
|
|
actorId: accountActorId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findOne(query)
|
|
|
|
}
|
|
|
|
|
2020-12-08 14:30:29 +01:00
|
|
|
static loadByLiveId (liveId: number): Promise<MUser> {
|
2020-09-25 16:19:35 +02: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 16:06:24 +01:00
|
|
|
attributes: [],
|
2020-09-25 16:19:35 +02:00
|
|
|
model: VideoLiveModel.unscoped(),
|
|
|
|
required: true,
|
|
|
|
where: {
|
|
|
|
id: liveId
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2020-10-27 16:06:24 +01:00
|
|
|
return UserModel.unscoped().findOne(query)
|
2020-09-25 16:19:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static generateUserQuotaBaseSQL (options: {
|
|
|
|
whereUserId: '$userId' | '"UserModel"."id"'
|
|
|
|
withSelect: boolean
|
2022-05-04 10:07:06 +02:00
|
|
|
daily: boolean
|
2020-09-25 16:19:35 +02:00
|
|
|
}) {
|
2022-05-04 10:07:06 +02:00
|
|
|
const andWhere = options.daily === true
|
|
|
|
? 'AND "video"."createdAt" > now() - interval \'24 hours\''
|
2020-09-25 16:19:35 +02:00
|
|
|
: ''
|
|
|
|
|
|
|
|
const videoChannelJoin = 'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
|
|
|
|
'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
|
|
|
|
`WHERE "account"."userId" = ${options.whereUserId} ${andWhere}`
|
|
|
|
|
2023-07-11 09:21:13 +02:00
|
|
|
const webVideoFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' +
|
2023-03-06 14:49:11 +01:00
|
|
|
'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" AND "video"."isLive" IS FALSE ' +
|
2020-09-25 16:19:35 +02:00
|
|
|
videoChannelJoin
|
|
|
|
|
|
|
|
const hlsFiles = 'SELECT "videoFile"."size" AS "size", "video"."id" AS "videoId" FROM "videoFile" ' +
|
|
|
|
'INNER JOIN "videoStreamingPlaylist" ON "videoFile"."videoStreamingPlaylistId" = "videoStreamingPlaylist".id ' +
|
2023-03-06 14:49:11 +01:00
|
|
|
'INNER JOIN "video" ON "videoStreamingPlaylist"."videoId" = "video"."id" AND "video"."isLive" IS FALSE ' +
|
2020-09-25 16:19:35 +02:00
|
|
|
videoChannelJoin
|
2018-08-28 09:01:35 +02:00
|
|
|
|
2020-09-25 16:19:35 +02:00
|
|
|
return 'SELECT COALESCE(SUM("size"), 0) AS "total" ' +
|
|
|
|
'FROM (' +
|
2023-07-11 09:21:13 +02:00
|
|
|
`SELECT MAX("t1"."size") AS "size" FROM (${webVideoFiles} UNION ${hlsFiles}) t1 ` +
|
2020-09-25 16:19:35 +02:00
|
|
|
'GROUP BY "t1"."videoId"' +
|
|
|
|
') t2'
|
2018-08-28 09:01:35 +02:00
|
|
|
}
|
|
|
|
|
2020-09-25 16:19:35 +02: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 21:44:45 +02:00
|
|
|
|
2020-09-25 16:19:35 +02:00
|
|
|
return parseInt(total, 10)
|
|
|
|
})
|
2017-10-24 19:41:09 +02:00
|
|
|
}
|
|
|
|
|
2018-02-28 18:04:46 +01:00
|
|
|
static async getStats () {
|
2020-05-07 10:39:09 +02:00
|
|
|
function getActiveUsers (days: number) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
[Op.and]: [
|
|
|
|
literal(`"lastLoginDate" > NOW() - INTERVAL '${days}d'`)
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-17 16:16:28 +02:00
|
|
|
return UserModel.unscoped().count(query)
|
2020-05-07 10:39:09 +02:00
|
|
|
}
|
|
|
|
|
2022-06-17 16:16:28 +02:00
|
|
|
const totalUsers = await UserModel.unscoped().count()
|
2020-05-07 10:39:09 +02:00
|
|
|
const totalDailyActiveUsers = await getActiveUsers(1)
|
|
|
|
const totalWeeklyActiveUsers = await getActiveUsers(7)
|
|
|
|
const totalMonthlyActiveUsers = await getActiveUsers(30)
|
2020-12-30 11:41:36 +01:00
|
|
|
const totalHalfYearActiveUsers = await getActiveUsers(180)
|
2018-02-28 18:04:46 +01:00
|
|
|
|
|
|
|
return {
|
2020-05-07 10:39:09 +02:00
|
|
|
totalUsers,
|
|
|
|
totalDailyActiveUsers,
|
|
|
|
totalWeeklyActiveUsers,
|
2020-12-30 11:41:36 +01:00
|
|
|
totalMonthlyActiveUsers,
|
|
|
|
totalHalfYearActiveUsers
|
2018-02-28 18:04:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 10:22:10 +02:00
|
|
|
static autoComplete (search: string) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
username: {
|
2020-01-31 16:56:52 +01:00
|
|
|
[Op.like]: `%${search}%`
|
2018-09-04 10:22:10 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
limit: 10
|
|
|
|
}
|
|
|
|
|
|
|
|
return UserModel.findAll(query)
|
|
|
|
.then(u => u.map(u => u.username))
|
|
|
|
}
|
|
|
|
|
2023-07-31 14:34:36 +02:00
|
|
|
hasRight (right: UserRightType) {
|
2017-12-12 17:53:50 +01:00
|
|
|
return hasUserRight(this.role, right)
|
|
|
|
}
|
2017-10-24 19:41:09 +02:00
|
|
|
|
2023-07-31 14:34:36 +02:00
|
|
|
hasAdminFlag (flag: UserAdminFlagType) {
|
2019-04-15 10:49:46 +02:00
|
|
|
return this.adminFlags & flag
|
|
|
|
}
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
isPasswordMatch (password: string) {
|
2023-12-06 08:43:19 +01:00
|
|
|
if (!password || !this.password) return false
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
return comparePassword(password, this.password)
|
2016-12-11 21:50:51 +01:00
|
|
|
}
|
|
|
|
|
2020-01-03 14:17:57 +01:00
|
|
|
toFormattedJSON (this: MUserFormattable, parameters: { withAdminFlags?: boolean } = {}): User {
|
2018-08-14 17:56:51 +02:00
|
|
|
const videoQuotaUsed = this.get('videoQuotaUsed')
|
2018-08-28 09:01:35 +02:00
|
|
|
const videoQuotaUsedDaily = this.get('videoQuotaUsedDaily')
|
2020-03-27 15:19:03 +01:00
|
|
|
const videosCount = this.get('videosCount')
|
2020-07-07 14:34:16 +02:00
|
|
|
const [ abusesCount, abusesAcceptedCount ] = (this.get('abusesCount') as string || ':').split(':')
|
|
|
|
const abusesCreatedCount = this.get('abusesCreatedCount')
|
2020-03-27 15:19:03 +01:00
|
|
|
const videoCommentsCount = this.get('videoCommentsCount')
|
2018-08-14 17:56:51 +02:00
|
|
|
|
2020-01-03 14:17:57 +01:00
|
|
|
const json: User = {
|
2017-12-12 17:53:50 +01:00
|
|
|
id: this.id,
|
|
|
|
username: this.username,
|
|
|
|
email: this.email,
|
2019-08-28 14:40:06 +02:00
|
|
|
theme: getThemeOrDefault(this.theme, DEFAULT_USER_THEME_NAME),
|
|
|
|
|
2019-06-11 11:54:33 +02:00
|
|
|
pendingEmail: this.pendingEmail,
|
Add Podcast RSS feeds (#5487)
* Initial test implementation of Podcast RSS
This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option.
I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort.
* Update to pfeed-podcast 1.2.2
* Initial test implementation of Podcast RSS
This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option.
I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort.
* Update to pfeed-podcast 1.2.2
* Initial test implementation of Podcast RSS
This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option.
I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort.
* Update to pfeed-podcast 1.2.2
* Add correct feed image to RSS channel
* Prefer HLS videos for podcast RSS
Remove video/stream titles, add optional height attribute to podcast RSS
* Prefix podcast RSS images with root server URL
* Add optional video query support to include captions
* Add transcripts & person images to podcast RSS feed
* Prefer webseed/webtorrent files over HLS fragmented mp4s
* Experimentally adding podcast fields to basic config page
* Add validation for new basic config fields
* Don't include "content" in podcast feed, use full description for "description"
* Initial test implementation of Podcast RSS
This is a pretty simple implementation to add support for The Podcast Namespace in RSS -- instead of affecting the existing RSS implementation, this adds a new UI option.
I attempted to retain compatibility with the rest of the RSS feed implementation as much as possible and have created a temporary fork of the "pfeed" library to support this effort.
* Update to pfeed-podcast 1.2.2
* Add correct feed image to RSS channel
* Prefer HLS videos for podcast RSS
Remove video/stream titles, add optional height attribute to podcast RSS
* Prefix podcast RSS images with root server URL
* Add optional video query support to include captions
* Add transcripts & person images to podcast RSS feed
* Prefer webseed/webtorrent files over HLS fragmented mp4s
* Experimentally adding podcast fields to basic config page
* Add validation for new basic config fields
* Don't include "content" in podcast feed, use full description for "description"
* Add medium/socialInteract to podcast RSS feeds. Use HTML for description
* Change base production image to bullseye, install prosody in image
* Add liveItem and trackers to Podcast RSS feeds
Remove height from alternateEnclosure, replaced with title.
* Clear Podcast RSS feed cache when live streams start/end
* Upgrade to Node 16
* Refactor clearCacheRoute to use ApiCache
* Remove unnecessary type hint
* Update dockerfile to node 16, install python-is-python2
* Use new file paths for captions/playlists
* Fix legacy videos in RSS after migration to object storage
* Improve method of identifying non-fragmented mp4s in podcast RSS feeds
* Don't include fragmented MP4s in podcast RSS feeds
* Add experimental support for podcast:categories on the podcast RSS item
* Fix undefined category when no videos exist
Allows for empty feeds to exist (important for feeds that might only go live)
* Add support for podcast:locked -- user has to opt in to show their email
* Use comma for podcast:categories delimiter
* Make cache clearing async
* Fix merge, temporarily test with pfeed-podcast
* Syntax changes
* Add EXT_MIMETYPE constants for captions
* Update & fix tests, fix enclosure mimetypes, remove admin email
* Add test for podacst:socialInteract
* Add filters hooks for podcast customTags
* Remove showdown, updated to pfeed-podcast 6.1.2
* Add 'action:api.live-video.state.updated' hook
* Avoid assigning undefined category to podcast feeds
* Remove nvmrc
* Remove comment
* Remove unused podcast config
* Remove more unused podcast config
* Fix MChannelAccountDefault type hint missed in merge
* Remove extra line
* Re-add newline in config
* Fix lint errors for isEmailPublic
* Fix thumbnails in podcast feeds
* Requested changes based on review
* Provide podcast rss 2.0 only on video channels
* Misc cleanup for a less messy PR
* Lint fixes
* Remove pfeed-podcast
* Add peertube version to new hooks
* Don't use query include, remove TODO
* Remove film medium hack
* Clear podcast rss cache before video/channel update hooks
* Clear podcast rss cache before video uploaded/deleted hooks
* Refactor podcast feed cache clearing
* Set correct person name from video channel
* Styling
* Fix tests
---------
Co-authored-by: Chocobozzz <me@florianbigard.com>
2023-05-22 16:00:05 +02:00
|
|
|
emailPublic: this.emailPublic,
|
2018-08-31 09:18:19 +02:00
|
|
|
emailVerified: this.emailVerified,
|
2019-08-28 14:40:06 +02:00
|
|
|
|
2018-04-19 11:01:34 +02:00
|
|
|
nsfwPolicy: this.nsfwPolicy,
|
2021-12-15 15:58:10 +01:00
|
|
|
|
|
|
|
p2pEnabled: this.p2pEnabled,
|
|
|
|
|
2018-12-18 11:32:37 +01:00
|
|
|
videosHistoryEnabled: this.videosHistoryEnabled,
|
2017-12-19 10:45:49 +01:00
|
|
|
autoPlayVideo: this.autoPlayVideo,
|
2019-09-24 08:48:01 +02:00
|
|
|
autoPlayNextVideo: this.autoPlayNextVideo,
|
2019-12-11 20:20:42 +01:00
|
|
|
autoPlayNextVideoPlaylist: this.autoPlayNextVideoPlaylist,
|
2019-06-19 14:55:58 +02:00
|
|
|
videoLanguages: this.videoLanguages,
|
2019-08-28 14:40:06 +02:00
|
|
|
|
2022-10-28 16:15:04 +02:00
|
|
|
role: {
|
|
|
|
id: this.role,
|
|
|
|
label: USER_ROLE_LABELS[this.role]
|
|
|
|
},
|
2019-08-28 14:40:06 +02:00
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
videoQuota: this.videoQuota,
|
2018-08-28 09:01:35 +02:00
|
|
|
videoQuotaDaily: this.videoQuotaDaily,
|
2022-05-04 10:07:06 +02:00
|
|
|
|
2019-08-28 14:40:06 +02:00
|
|
|
videoQuotaUsed: videoQuotaUsed !== undefined
|
2022-11-15 14:41:55 +01:00
|
|
|
? forceNumber(videoQuotaUsed) + LiveQuotaStore.Instance.getLiveQuotaOf(this.id)
|
2019-08-28 14:40:06 +02:00
|
|
|
: undefined,
|
2022-05-04 10:07:06 +02:00
|
|
|
|
2019-08-28 14:40:06 +02:00
|
|
|
videoQuotaUsedDaily: videoQuotaUsedDaily !== undefined
|
2022-11-15 14:41:55 +01:00
|
|
|
? forceNumber(videoQuotaUsedDaily) + LiveQuotaStore.Instance.getLiveQuotaOf(this.id)
|
2019-08-28 14:40:06 +02:00
|
|
|
: undefined,
|
2022-05-04 10:07:06 +02:00
|
|
|
|
2020-03-27 15:19:03 +01:00
|
|
|
videosCount: videosCount !== undefined
|
2022-11-15 14:41:55 +01:00
|
|
|
? forceNumber(videosCount)
|
2020-03-27 15:19:03 +01:00
|
|
|
: undefined,
|
2020-07-07 14:34:16 +02:00
|
|
|
abusesCount: abusesCount
|
2022-11-15 14:41:55 +01:00
|
|
|
? forceNumber(abusesCount)
|
2020-03-27 15:19:03 +01:00
|
|
|
: undefined,
|
2020-07-07 14:34:16 +02:00
|
|
|
abusesAcceptedCount: abusesAcceptedCount
|
2022-11-15 14:41:55 +01:00
|
|
|
? forceNumber(abusesAcceptedCount)
|
2020-03-27 15:19:03 +01:00
|
|
|
: undefined,
|
2020-07-07 14:34:16 +02:00
|
|
|
abusesCreatedCount: abusesCreatedCount !== undefined
|
2022-11-15 14:41:55 +01:00
|
|
|
? forceNumber(abusesCreatedCount)
|
2020-03-27 15:19:03 +01:00
|
|
|
: undefined,
|
|
|
|
videoCommentsCount: videoCommentsCount !== undefined
|
2022-11-15 14:41:55 +01:00
|
|
|
? forceNumber(videoCommentsCount)
|
2020-03-27 15:19:03 +01:00
|
|
|
: undefined,
|
2019-08-28 14:40:06 +02:00
|
|
|
|
|
|
|
noInstanceConfigWarningModal: this.noInstanceConfigWarningModal,
|
|
|
|
noWelcomeModal: this.noWelcomeModal,
|
2021-08-27 10:15:55 +02:00
|
|
|
noAccountSetupWarningModal: this.noAccountSetupWarningModal,
|
2019-08-28 14:40:06 +02:00
|
|
|
|
2018-08-08 17:36:10 +02:00
|
|
|
blocked: this.blocked,
|
|
|
|
blockedReason: this.blockedReason,
|
2019-08-28 14:40:06 +02:00
|
|
|
|
2017-12-29 19:10:13 +01:00
|
|
|
account: this.Account.toFormattedJSON(),
|
2019-08-28 14:40:06 +02:00
|
|
|
|
|
|
|
notificationSettings: this.NotificationSetting
|
|
|
|
? this.NotificationSetting.toFormattedJSON()
|
|
|
|
: undefined,
|
|
|
|
|
2018-08-14 17:56:51 +02:00
|
|
|
videoChannels: [],
|
2019-08-28 14:40:06 +02:00
|
|
|
|
2020-05-05 09:44:53 +02:00
|
|
|
createdAt: this.createdAt,
|
|
|
|
|
2020-05-07 10:39:09 +02:00
|
|
|
pluginAuth: this.pluginAuth,
|
|
|
|
|
2022-10-05 15:37:15 +02:00
|
|
|
lastLoginDate: this.lastLoginDate,
|
|
|
|
|
|
|
|
twoFactorEnabled: !!this.otpSecret
|
2017-12-12 17:53:50 +01:00
|
|
|
}
|
|
|
|
|
2019-04-15 10:49:46 +02:00
|
|
|
if (parameters.withAdminFlags) {
|
|
|
|
Object.assign(json, { adminFlags: this.adminFlags })
|
|
|
|
}
|
|
|
|
|
2017-12-12 17:53:50 +01:00
|
|
|
if (Array.isArray(this.Account.VideoChannels) === true) {
|
2017-12-29 19:10:13 +01:00
|
|
|
json.videoChannels = this.Account.VideoChannels
|
2020-01-31 16:56:52 +01: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 09:29:59 +01:00
|
|
|
|
2020-01-31 16:56:52 +01:00
|
|
|
return 1
|
|
|
|
})
|
2017-02-18 09:29:59 +01:00
|
|
|
}
|
2017-12-12 17:53:50 +01:00
|
|
|
|
|
|
|
return json
|
2017-02-18 09:29:59 +01:00
|
|
|
}
|
|
|
|
|
2020-01-03 14:17:57 +01:00
|
|
|
toMeFormattedJSON (this: MMyUserFormattable): MyUser {
|
2021-08-25 11:38:10 +02:00
|
|
|
const formatted = this.toFormattedJSON({ withAdminFlags: true })
|
2020-01-03 14:17:57 +01:00
|
|
|
|
|
|
|
const specialPlaylists = this.Account.VideoPlaylists
|
2020-01-31 16:56:52 +01:00
|
|
|
.map(p => ({ id: p.id, name: p.name, type: p.type }))
|
2020-01-03 14:17:57 +01:00
|
|
|
|
|
|
|
return Object.assign(formatted, { specialPlaylists })
|
|
|
|
}
|
2017-09-04 20:07:54 +02:00
|
|
|
}
|