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

250 lines
6.1 KiB
TypeScript
Raw Normal View History

2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
2017-12-12 16:53:50 +00:00
import {
2017-12-14 16:38:41 +00:00
AllowNull, BeforeCreate, BeforeUpdate, Column, CreatedAt, DataType, Default, DefaultScope, HasMany, HasOne, Is, IsEmail, Model,
Scopes, Table, UpdatedAt
2017-12-12 16:53:50 +00:00
} from 'sequelize-typescript'
2017-11-14 09:57:56 +00:00
import { hasUserRight, USER_ROLE_LABELS, UserRight } from '../../../shared'
2017-05-15 20:22:03 +00:00
import {
2017-12-14 16:38:41 +00:00
isUserAutoPlayVideoValid, isUserDisplayNSFWValid, isUserPasswordValid, isUserRoleValid, isUserUsernameValid,
isUserVideoQuotaValid
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'
2017-12-12 16:53:50 +00:00
import { OAuthTokenModel } from '../oauth/oauth-token'
import { getSort, throwIfNotValid } from '../utils'
import { VideoChannelModel } from '../video/video-channel'
import { AccountModel } from './account'
2017-12-14 09:07:57 +00:00
@DefaultScope({
include: [
{
model: () => AccountModel,
required: true
}
]
})
@Scopes({
withVideoChannel: {
include: [
{
model: () => AccountModel,
required: true,
include: [ () => VideoChannelModel ]
}
]
}
})
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
})
export class UserModel extends Model<UserModel> {
@AllowNull(false)
@Is('UserPassword', value => throwIfNotValid(value, isUserPasswordValid, 'user password'))
@Column
password: string
@AllowNull(false)
@Is('UserPassword', value => throwIfNotValid(value, isUserUsernameValid, 'user name'))
@Column
username: string
@AllowNull(false)
@IsEmail
@Column(DataType.STRING(400))
email: string
@AllowNull(false)
@Default(false)
@Is('UserDisplayNSFW', value => throwIfNotValid(value, isUserDisplayNSFWValid, 'display NSFW boolean'))
@Column
displayNSFW: boolean
@AllowNull(false)
@Default(true)
@Is('UserAutoPlayVideo', value => throwIfNotValid(value, isUserAutoPlayVideoValid, 'auto play video boolean'))
@Column
autoPlayVideo: boolean
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
@CreatedAt
createdAt: Date
@UpdatedAt
updatedAt: Date
@HasOne(() => AccountModel, {
foreignKey: 'userId',
onDelete: 'cascade'
})
Account: AccountModel
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')) {
return cryptPassword(instance.password)
.then(hash => {
instance.password = hash
return undefined
})
}
}
2016-08-25 15:57:37 +00:00
2017-12-12 16:53:50 +00:00
static countTotal () {
return this.count()
}
2017-12-12 16:53:50 +00:00
static getByUsername (username: string) {
const query = {
where: {
username: username
},
include: [ { model: AccountModel, required: true } ]
}
2016-08-25 15:57:37 +00:00
2017-12-12 16:53:50 +00:00
return UserModel.findOne(query)
2016-08-25 15:57:37 +00:00
}
2017-10-24 17:41:09 +00:00
2017-12-12 16:53:50 +00:00
static listForApi (start: number, count: number, sort: string) {
const query = {
offset: start,
limit: count,
2017-12-14 09:07:57 +00:00
order: [ getSort(sort) ]
2017-12-12 16:53:50 +00:00
}
2017-10-24 17:41:09 +00:00
2017-12-12 16:53:50 +00:00
return UserModel.findAndCountAll(query)
.then(({ rows, count }) => {
return {
data: rows,
total: count
}
2017-10-24 17:41:09 +00:00
})
}
2017-12-12 16:53:50 +00:00
static loadById (id: number) {
2017-12-14 09:07:57 +00:00
return UserModel.findById(id)
2017-12-12 16:53:50 +00:00
}
2016-12-11 20:50:51 +00:00
2017-12-12 16:53:50 +00:00
static loadByUsername (username: string) {
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
}
2017-12-12 16:53:50 +00:00
static loadByUsernameAndPopulateChannels (username: string) {
const query = {
where: {
username
2017-12-14 09:07:57 +00:00
}
2017-12-12 16:53:50 +00:00
}
2017-12-14 09:07:57 +00:00
return UserModel.scope('withVideoChannel').findOne(query)
2016-12-11 20:50:51 +00:00
}
2017-12-12 16:53:50 +00:00
static loadByUsernameOrEmail (username: string, email: string) {
const query = {
where: {
[ Sequelize.Op.or ]: [ { username }, { email } ]
}
}
2017-12-14 09:07:57 +00:00
return UserModel.findOne(query)
2017-10-24 17:41:09 +00:00
}
2017-12-12 16:53:50 +00:00
private static getOriginalVideoFileTotalFromUser (user: UserModel) {
// Don't use sequelize because we need to use a sub query
const query = 'SELECT SUM("size") AS "total" FROM ' +
'(SELECT MAX("videoFile"."size") AS "size" FROM "videoFile" ' +
'INNER JOIN "video" ON "videoFile"."videoId" = "video"."id" ' +
'INNER JOIN "videoChannel" ON "videoChannel"."id" = "video"."channelId" ' +
'INNER JOIN "account" ON "videoChannel"."accountId" = "account"."id" ' +
'INNER JOIN "user" ON "account"."userId" = "user"."id" ' +
'WHERE "user"."id" = $userId GROUP BY "video"."id") t'
const options = {
bind: { userId: user.id },
type: Sequelize.QueryTypes.SELECT
}
return UserModel.sequelize.query(query, options)
.then(([ { total } ]) => {
if (total === null) return 0
2017-12-12 16:53:50 +00:00
return parseInt(total, 10)
})
2017-10-24 17:41:09 +00:00
}
2017-12-12 16:53:50 +00:00
hasRight (right: UserRight) {
return hasUserRight(this.role, right)
}
2017-10-24 17:41:09 +00:00
2017-12-12 16:53:50 +00:00
isPasswordMatch (password: string) {
return comparePassword(password, this.password)
2016-12-11 20:50:51 +00:00
}
2017-12-12 16:53:50 +00:00
toFormattedJSON () {
const json = {
id: this.id,
username: this.username,
email: this.email,
displayNSFW: this.displayNSFW,
autoPlayVideo: this.autoPlayVideo,
2017-12-12 16:53:50 +00:00
role: this.role,
roleLabel: USER_ROLE_LABELS[ this.role ],
videoQuota: this.videoQuota,
createdAt: this.createdAt,
account: this.Account.toFormattedJSON()
}
if (Array.isArray(this.Account.VideoChannels) === true) {
json['videoChannels'] = this.Account.VideoChannels
.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
2017-12-12 16:53:50 +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
}
2017-12-12 16:53:50 +00:00
isAbleToUploadVideo (videoFile: Express.Multer.File) {
if (this.videoQuota === -1) return Promise.resolve(true)
2017-09-04 18:07:54 +00:00
2017-12-12 16:53:50 +00:00
return UserModel.getOriginalVideoFileTotalFromUser(this)
.then(totalBytes => {
return (videoFile.size + totalBytes) < this.videoQuota
})
2017-09-04 18:07:54 +00:00
}
}