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

310 lines
7.8 KiB
TypeScript
Raw Normal View History

2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
2017-09-04 18:07:54 +00:00
import * as Promise from 'bluebird'
2017-05-15 20:22:03 +00:00
2017-10-31 15:31:24 +00:00
import { getSort, addMethodsToModel } from '../utils'
2017-05-15 20:22:03 +00:00
import {
cryptPassword,
comparePassword,
isUserPasswordValid,
isUserUsernameValid,
2017-09-04 18:07:54 +00:00
isUserDisplayNSFWValid,
isUserVideoQuotaValid,
isUserRoleValid
2017-06-16 07:45:46 +00:00
} from '../../helpers'
import { UserRight, USER_ROLE_LABELS, hasUserRight } from '../../../shared'
2017-05-22 18:58:25 +00:00
import {
UserInstance,
UserAttributes,
UserMethods
} from './user-interface'
let User: Sequelize.Model<UserInstance, UserAttributes>
let isPasswordMatch: UserMethods.IsPasswordMatch
let hasRight: UserMethods.HasRight
2017-08-25 09:45:31 +00:00
let toFormattedJSON: UserMethods.ToFormattedJSON
2017-05-22 18:58:25 +00:00
let countTotal: UserMethods.CountTotal
let getByUsername: UserMethods.GetByUsername
let listForApi: UserMethods.ListForApi
let loadById: UserMethods.LoadById
let loadByUsername: UserMethods.LoadByUsername
2017-10-24 17:41:09 +00:00
let loadByUsernameAndPopulateChannels: UserMethods.LoadByUsernameAndPopulateChannels
2017-05-22 18:58:25 +00:00
let loadByUsernameOrEmail: UserMethods.LoadByUsernameOrEmail
2017-09-04 18:07:54 +00:00
let isAbleToUploadVideo: UserMethods.IsAbleToUploadVideo
2017-05-22 18:58:25 +00:00
2017-06-11 15:35:32 +00:00
export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) {
User = sequelize.define<UserInstance, UserAttributes>('User',
2016-12-11 20:50:51 +00:00
{
password: {
2016-12-28 14:49:23 +00:00
type: DataTypes.STRING,
allowNull: false,
validate: {
2017-07-11 15:04:57 +00:00
passwordValid: value => {
2017-05-15 20:22:03 +00:00
const res = isUserPasswordValid(value)
2016-12-28 14:49:23 +00:00
if (res === false) throw new Error('Password not valid.')
}
}
2016-12-11 20:50:51 +00:00
},
username: {
2016-12-28 14:49:23 +00:00
type: DataTypes.STRING,
allowNull: false,
validate: {
2017-07-11 15:04:57 +00:00
usernameValid: value => {
2017-05-15 20:22:03 +00:00
const res = isUserUsernameValid(value)
2016-12-28 14:49:23 +00:00
if (res === false) throw new Error('Username not valid.')
}
}
2016-12-11 20:50:51 +00:00
},
2017-02-18 08:29:59 +00:00
email: {
2017-02-18 10:56:28 +00:00
type: DataTypes.STRING(400),
2017-02-18 08:29:59 +00:00
allowNull: false,
validate: {
isEmail: true
}
},
2017-04-03 19:24:36 +00:00
displayNSFW: {
type: DataTypes.BOOLEAN,
allowNull: false,
defaultValue: false,
validate: {
2017-07-11 15:04:57 +00:00
nsfwValid: value => {
2017-05-15 20:22:03 +00:00
const res = isUserDisplayNSFWValid(value)
2017-04-03 19:24:36 +00:00
if (res === false) throw new Error('Display NSFW is not valid.')
}
}
},
2016-12-11 20:50:51 +00:00
role: {
type: DataTypes.INTEGER,
allowNull: false,
validate: {
roleValid: value => {
const res = isUserRoleValid(value)
if (res === false) throw new Error('Role is not valid.')
}
}
2017-09-04 18:07:54 +00:00
},
videoQuota: {
type: DataTypes.BIGINT,
allowNull: false,
validate: {
videoQuotaValid: value => {
const res = isUserVideoQuotaValid(value)
if (res === false) throw new Error('Video quota is not valid.')
}
}
2016-12-11 20:50:51 +00:00
}
},
{
2016-12-29 08:33:28 +00:00
indexes: [
{
2017-02-16 18:24:34 +00:00
fields: [ 'username' ],
unique: true
2017-02-18 08:29:59 +00:00
},
{
fields: [ 'email' ],
unique: true
2016-12-29 08:33:28 +00:00
}
],
2016-12-11 20:50:51 +00:00
hooks: {
beforeCreate: beforeCreateOrUpdate,
beforeUpdate: beforeCreateOrUpdate
}
}
)
2017-05-22 18:58:25 +00:00
const classMethods = [
associate,
countTotal,
getByUsername,
listForApi,
loadById,
loadByUsername,
2017-10-24 17:41:09 +00:00
loadByUsernameAndPopulateChannels,
2017-05-22 18:58:25 +00:00
loadByUsernameOrEmail
]
const instanceMethods = [
hasRight,
2017-05-22 18:58:25 +00:00
isPasswordMatch,
2017-08-25 09:45:31 +00:00
toFormattedJSON,
2017-09-04 18:07:54 +00:00
isAbleToUploadVideo
2017-05-22 18:58:25 +00:00
]
addMethodsToModel(User, classMethods, instanceMethods)
2016-12-11 20:50:51 +00:00
return User
}
2017-06-10 20:15:25 +00:00
function beforeCreateOrUpdate (user: UserInstance) {
return cryptPassword(user.password).then(hash => {
user.password = hash
return undefined
2016-08-25 15:57:37 +00:00
})
2016-12-11 20:50:51 +00:00
}
2016-08-25 15:57:37 +00:00
// ------------------------------ METHODS ------------------------------
hasRight = function (this: UserInstance, right: UserRight) {
return hasUserRight(this.role, right)
}
isPasswordMatch = function (this: UserInstance, password: string) {
return comparePassword(password, this.password)
2016-08-25 15:57:37 +00:00
}
2017-08-25 09:45:31 +00:00
toFormattedJSON = function (this: UserInstance) {
2017-10-24 17:41:09 +00:00
const json = {
2016-12-11 20:50:51 +00:00
id: this.id,
2016-08-25 15:57:37 +00:00
username: this.username,
2017-02-18 08:29:59 +00:00
email: this.email,
2017-04-03 19:24:36 +00:00
displayNSFW: this.displayNSFW,
role: this.role,
roleLabel: USER_ROLE_LABELS[this.role],
2017-09-04 18:07:54 +00:00
videoQuota: this.videoQuota,
2017-10-24 17:41:09 +00:00
createdAt: this.createdAt,
author: {
id: this.Author.id,
uuid: this.Author.uuid
}
2016-08-25 15:57:37 +00:00
}
2017-10-24 17:41:09 +00:00
if (Array.isArray(this.Author.VideoChannels) === true) {
const videoChannels = this.Author.VideoChannels
.map(c => c.toFormattedJSON())
.sort((v1, v2) => {
if (v1.createdAt < v2.createdAt) return -1
if (v1.createdAt === v2.createdAt) return 0
return 1
})
json['videoChannels'] = videoChannels
}
return json
2016-08-25 15:57:37 +00:00
}
Add ability for an administrator to remove any video (#61) * Add ability for an admin to remove every video on the pod. * Server: add BlacklistedVideos relation. * Server: Insert in BlacklistedVideos relation upon deletion of a video. * Server: Modify BlacklistedVideos schema to add Pod id information. * Server: Moving insertion of a blacklisted video from the `afterDestroy` hook into the process of deletion of a video. To avoid inserting a video when it is removed on its origin pod. When a video is removed on its origin pod, the `afterDestroy` hook is fire, but no request is made on the delete('/:videoId') interface. Hence, we insert into `BlacklistedVideos` only on request on delete('/:videoId') (if requirements for insertion are met). * Server: Add removeVideoFromBlacklist hook on deletion of a video. We are going to proceed in another way :). We will add a new route : /:videoId/blacklist to blacklist a video. We do not blacklist a video upon its deletion now (to distinguish a video blacklist from a regular video delete) When we blacklist a video, the video remains in the DB, so we don't have any concern about its update. It just doesn't appear in the video list. When we remove a video, we then have to remove it from the blacklist too. We could also remove a video from the blacklist to 'unremove' it and make it appear again in the video list (will be another feature). * Server: Add handler for new route post(/:videoId/blacklist) * Client: Add isBlacklistable method * Client: Update isRemovableBy method. * Client: Move 'Delete video' feature from the video-list to the video-watch module. * Server: Exclude blacklisted videos from the video list * Server: Use findAll() in BlacklistedVideos.list() method * Server: Fix addVideoToBlacklist function. * Client: Add blacklist feature. * Server: Use JavaScript Standard Style. * Server: In checkUserCanDeleteVideo, move the callback call inside the db callback function * Server: Modify BlacklistVideo relation * Server: Modifiy Videos methods. * Server: Add checkVideoIsBlacklistable method * Server: Rewrite addVideoToBlacklist method * Server: Fix checkVideoIsBlacklistable method * Server: Add return to addVideoToBlacklist method
2017-04-26 19:22:10 +00:00
2017-09-04 18:07:54 +00:00
isAbleToUploadVideo = function (this: UserInstance, videoFile: Express.Multer.File) {
if (this.videoQuota === -1) return Promise.resolve(true)
return getOriginalVideoFileTotalFromUser(this).then(totalBytes => {
return (videoFile.size + totalBytes) < this.videoQuota
})
}
2016-08-25 15:57:37 +00:00
// ------------------------------ STATICS ------------------------------
2016-12-11 20:50:51 +00:00
function associate (models) {
2017-05-22 18:58:25 +00:00
User.hasOne(models.Author, {
foreignKey: 'userId',
onDelete: 'cascade'
})
2017-05-22 18:58:25 +00:00
User.hasMany(models.OAuthToken, {
2016-12-11 20:50:51 +00:00
foreignKey: 'userId',
onDelete: 'cascade'
})
}
countTotal = function () {
return this.count()
}
2017-06-10 20:15:25 +00:00
getByUsername = function (username: string) {
2016-12-11 20:50:51 +00:00
const query = {
where: {
username: username
2017-10-24 17:41:09 +00:00
},
include: [ { model: User['sequelize'].models.Author, required: true } ]
2016-12-11 20:50:51 +00:00
}
2017-05-22 18:58:25 +00:00
return User.findOne(query)
}
listForApi = function (start: number, count: number, sort: string) {
2016-12-11 20:50:51 +00:00
const query = {
offset: start,
limit: count,
2017-10-24 17:41:09 +00:00
order: [ getSort(sort) ],
include: [ { model: User['sequelize'].models.Author, required: true } ]
2016-12-11 20:50:51 +00:00
}
return User.findAndCountAll(query).then(({ rows, count }) => {
return {
data: rows,
total: count
}
2016-12-11 20:50:51 +00:00
})
}
loadById = function (id: number) {
2017-10-24 17:41:09 +00:00
const options = {
include: [ { model: User['sequelize'].models.Author, required: true } ]
}
return User.findById(id, options)
}
loadByUsername = function (username: string) {
2016-12-11 20:50:51 +00:00
const query = {
where: {
2017-08-25 16:36:49 +00:00
username
2017-10-24 17:41:09 +00:00
},
include: [ { model: User['sequelize'].models.Author, required: true } ]
}
return User.findOne(query)
}
loadByUsernameAndPopulateChannels = function (username: string) {
const query = {
where: {
username
},
include: [
{
model: User['sequelize'].models.Author,
required: true,
include: [ User['sequelize'].models.VideoChannel ]
}
]
2016-12-11 20:50:51 +00:00
}
return User.findOne(query)
}
2017-02-18 08:29:59 +00:00
loadByUsernameOrEmail = function (username: string, email: string) {
2017-02-18 08:29:59 +00:00
const query = {
2017-10-24 17:41:09 +00:00
include: [ { model: User['sequelize'].models.Author, required: true } ],
2017-02-18 08:29:59 +00:00
where: {
2017-10-26 14:59:02 +00:00
[Sequelize.Op.or]: [ { username }, { email } ]
2017-02-18 08:29:59 +00:00
}
}
2017-08-25 16:36:49 +00:00
// FIXME: https://github.com/DefinitelyTyped/DefinitelyTyped/issues/18387
return (User as any).findOne(query)
2017-02-18 08:29:59 +00:00
}
2017-09-04 18:07:54 +00:00
// ---------------------------------------------------------------------------
function getOriginalVideoFileTotalFromUser (user: UserInstance) {
2017-10-24 17:41:09 +00:00
// Don't use sequelize because we need to use a sub query
const query = 'SELECT SUM("size") AS "total" FROM ' +
'(SELECT MAX("VideoFiles"."size") AS "size" FROM "VideoFiles" ' +
'INNER JOIN "Videos" ON "VideoFiles"."videoId" = "Videos"."id" ' +
2017-10-24 17:41:09 +00:00
'INNER JOIN "VideoChannels" ON "VideoChannels"."id" = "Videos"."channelId" ' +
'INNER JOIN "Authors" ON "VideoChannels"."authorId" = "Authors"."id" ' +
'INNER JOIN "Users" ON "Authors"."userId" = "Users"."id" ' +
'WHERE "Users"."id" = $userId GROUP BY "Videos"."id") t'
const options = {
bind: { userId: user.id },
type: Sequelize.QueryTypes.SELECT
2017-09-04 18:07:54 +00:00
}
return User['sequelize'].query(query, options).then(([ { total } ]) => {
if (total === null) return 0
2017-09-04 18:07:54 +00:00
return parseInt(total, 10)
})
2017-09-04 18:07:54 +00:00
}