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