1
0
Fork 0
peertube/server/models/account/account-video-rate.ts

269 lines
6.6 KiB
TypeScript
Raw Normal View History

2017-05-15 20:22:03 +00:00
import { values } from 'lodash'
2020-12-08 13:30:29 +00:00
import { FindOptions, Op, QueryTypes, Transaction } from 'sequelize'
2018-11-14 14:01:28 +00:00
import { AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
2019-08-20 17:05:31 +00:00
import {
MAccountVideoRate,
MAccountVideoRateAccountUrl,
MAccountVideoRateAccountVideo,
MAccountVideoRateFormattable
2020-06-18 08:45:25 +00:00
} from '@server/types/models/video/video-rate'
2020-12-08 13:30:29 +00:00
import { AccountVideoRate } from '../../../shared'
import { VideoRateType } from '../../../shared/models/videos'
import { isActivityPubUrlValid } from '../../helpers/custom-validators/activitypub/misc'
import { CONSTRAINTS_FIELDS, VIDEO_RATE_TYPES } from '../../initializers/constants'
import { ActorModel } from '../activitypub/actor'
import { buildLocalAccountIdsIn, getSort, throwIfNotValid } from '../utils'
import { VideoModel } from '../video/video'
import { ScopeNames as VideoChannelScopeNames, SummaryOptions, VideoChannelModel } from '../video/video-channel'
import { AccountModel } from './account'
2017-03-08 20:35:43 +00:00
2017-12-12 16:53:50 +00:00
/*
Account rates per video.
*/
@Table({
tableName: 'accountVideoRate',
indexes: [
2017-03-08 20:35:43 +00:00
{
2017-12-12 16:53:50 +00:00
fields: [ 'videoId', 'accountId' ],
unique: true
2018-07-23 18:13:30 +00:00
},
{
fields: [ 'videoId' ]
},
{
fields: [ 'accountId' ]
},
{
fields: [ 'videoId', 'type' ]
2018-11-14 14:01:28 +00:00
},
{
fields: [ 'url' ],
unique: true
2017-03-08 20:35:43 +00:00
}
2017-12-12 16:53:50 +00:00
]
})
2020-12-08 13:30:29 +00:00
export class AccountVideoRateModel extends Model {
2017-03-08 20:35:43 +00:00
2017-12-12 16:53:50 +00:00
@AllowNull(false)
2019-04-18 09:28:17 +00:00
@Column(DataType.ENUM(...values(VIDEO_RATE_TYPES)))
2017-12-12 16:53:50 +00:00
type: VideoRateType
2017-05-22 18:58:25 +00:00
2018-11-14 14:01:28 +00:00
@AllowNull(false)
@Is('AccountVideoRateUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url'))
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_RATES.URL.max))
url: string
2017-12-12 16:53:50 +00:00
@CreatedAt
createdAt: Date
2017-05-22 18:58:25 +00:00
2017-12-12 16:53:50 +00:00
@UpdatedAt
updatedAt: Date
2017-03-08 20:35:43 +00:00
2017-12-12 16:53:50 +00:00
@ForeignKey(() => VideoModel)
@Column
videoId: number
2017-03-08 20:35:43 +00:00
2017-12-12 16:53:50 +00:00
@BelongsTo(() => VideoModel, {
2017-03-08 20:35:43 +00:00
foreignKey: {
allowNull: false
},
onDelete: 'CASCADE'
})
2017-12-12 16:53:50 +00:00
Video: VideoModel
2017-03-08 20:35:43 +00:00
2017-12-12 16:53:50 +00:00
@ForeignKey(() => AccountModel)
@Column
accountId: number
@BelongsTo(() => AccountModel, {
2017-03-08 20:35:43 +00:00
foreignKey: {
allowNull: false
},
onDelete: 'CASCADE'
})
2017-12-12 16:53:50 +00:00
Account: AccountModel
2017-03-08 20:35:43 +00:00
2020-12-08 13:30:29 +00:00
static load (accountId: number, videoId: number, transaction?: Transaction): Promise<MAccountVideoRate> {
2019-04-18 09:28:17 +00:00
const options: FindOptions = {
2017-12-12 16:53:50 +00:00
where: {
accountId,
videoId
}
2017-03-08 20:35:43 +00:00
}
2017-12-12 16:53:50 +00:00
if (transaction) options.transaction = transaction
2017-03-08 20:35:43 +00:00
2017-12-12 16:53:50 +00:00
return AccountVideoRateModel.findOne(options)
}
2020-12-08 13:30:29 +00:00
static loadByAccountAndVideoOrUrl (accountId: number, videoId: number, url: string, t?: Transaction): Promise<MAccountVideoRate> {
2019-08-01 08:15:28 +00:00
const options: FindOptions = {
where: {
2020-01-31 15:56:52 +00:00
[Op.or]: [
2019-08-01 08:15:28 +00:00
{
accountId,
videoId
},
{
url
}
]
}
}
2019-08-15 09:53:26 +00:00
if (t) options.transaction = t
2019-08-01 08:15:28 +00:00
return AccountVideoRateModel.findOne(options)
}
static listByAccountForApi (options: {
2020-01-31 15:56:52 +00:00
start: number
count: number
sort: string
type?: string
accountId: number
}) {
2019-04-18 09:28:17 +00:00
const query: FindOptions = {
offset: options.start,
limit: options.count,
order: getSort(options.sort),
where: {
accountId: options.accountId
},
include: [
{
model: VideoModel,
required: true,
include: [
{
2020-01-31 15:56:52 +00:00
model: VideoChannelModel.scope({ method: [ VideoChannelScopeNames.SUMMARY, { withAccount: true } as SummaryOptions ] }),
required: true
}
]
}
]
}
if (options.type) query.where['type'] = options.type
return AccountVideoRateModel.findAndCountAll(query)
}
2019-08-15 09:53:26 +00:00
static loadLocalAndPopulateVideo (
rateType: VideoRateType,
accountName: string,
2019-10-21 12:50:55 +00:00
videoId: number | string,
2019-08-15 09:53:26 +00:00
t?: Transaction
2020-12-08 13:30:29 +00:00
): Promise<MAccountVideoRateAccountVideo> {
2019-04-18 09:28:17 +00:00
const options: FindOptions = {
2018-11-14 14:01:28 +00:00
where: {
videoId,
type: rateType
},
include: [
{
model: AccountModel.unscoped(),
required: true,
include: [
{
2019-08-15 09:53:26 +00:00
attributes: [ 'id', 'url', 'followersUrl', 'preferredUsername' ],
2018-11-14 14:01:28 +00:00
model: ActorModel.unscoped(),
required: true,
where: {
2020-11-20 10:21:08 +00:00
preferredUsername: accountName,
serverId: null
2018-11-14 14:01:28 +00:00
}
}
]
},
{
model: VideoModel.unscoped(),
required: true
}
]
}
2019-08-15 09:53:26 +00:00
if (t) options.transaction = t
2018-11-14 14:01:28 +00:00
return AccountVideoRateModel.findOne(options)
}
static loadByUrl (url: string, transaction: Transaction) {
2019-04-18 09:28:17 +00:00
const options: FindOptions = {
2018-11-14 14:01:28 +00:00
where: {
url
}
}
if (transaction) options.transaction = transaction
return AccountVideoRateModel.findOne(options)
}
static listAndCountAccountUrlsByVideoId (rateType: VideoRateType, videoId: number, start: number, count: number, t?: Transaction) {
const query = {
offset: start,
limit: count,
where: {
videoId,
type: rateType
},
transaction: t,
include: [
{
attributes: [ 'actorId' ],
model: AccountModel.unscoped(),
required: true,
include: [
{
attributes: [ 'url' ],
model: ActorModel.unscoped(),
required: true
}
]
}
]
}
2019-08-15 09:53:26 +00:00
return AccountVideoRateModel.findAndCountAll<MAccountVideoRateAccountUrl>(query)
}
2019-03-19 15:23:02 +00:00
static cleanOldRatesOf (videoId: number, type: VideoRateType, beforeUpdatedAt: Date) {
return AccountVideoRateModel.sequelize.transaction(async t => {
const query = {
where: {
updatedAt: {
[Op.lt]: beforeUpdatedAt
},
videoId,
2019-08-06 15:19:53 +00:00
type,
accountId: {
[Op.notIn]: buildLocalAccountIdsIn()
2019-08-01 08:15:28 +00:00
}
2019-08-06 15:19:53 +00:00
},
2019-03-19 15:23:02 +00:00
transaction: t
}
2020-12-08 13:30:29 +00:00
await AccountVideoRateModel.destroy(query)
2019-03-19 15:23:02 +00:00
2020-12-08 13:30:29 +00:00
const field = type === 'like'
? 'likes'
: 'dislikes'
const rawQuery = `UPDATE "video" SET "${field}" = ` +
'(' +
'SELECT COUNT(id) FROM "accountVideoRate" WHERE "accountVideoRate"."videoId" = "video"."id" AND type = :rateType' +
') ' +
'WHERE "video"."id" = :videoId'
2019-03-19 15:23:02 +00:00
2020-12-08 13:30:29 +00:00
return AccountVideoRateModel.sequelize.query(rawQuery, {
transaction: t,
replacements: { videoId, rateType: type },
type: QueryTypes.UPDATE
})
2019-03-19 15:23:02 +00:00
})
}
2019-08-20 17:05:31 +00:00
toFormattedJSON (this: MAccountVideoRateFormattable): AccountVideoRate {
return {
video: this.Video.toFormattedJSON(),
rating: this.type
}
}
2017-03-08 20:35:43 +00:00
}