2019-01-10 09:39:51 -05:00
|
|
|
import { AllowNull, BelongsTo, Column, CreatedAt, DataType, ForeignKey, Is, Model, Table, UpdatedAt } from 'sequelize-typescript'
|
2018-08-14 09:28:30 -04:00
|
|
|
import { getSortOnModel, SortType, throwIfNotValid } from '../utils'
|
2017-12-12 11:53:50 -05:00
|
|
|
import { VideoModel } from './video'
|
2018-08-13 10:57:13 -04:00
|
|
|
import { isVideoBlacklistReasonValid } from '../../helpers/custom-validators/video-blacklist'
|
2018-08-14 03:08:47 -04:00
|
|
|
import { VideoBlacklist } from '../../../shared/models/videos'
|
2018-08-13 10:57:13 -04:00
|
|
|
import { CONSTRAINTS_FIELDS } from '../../initializers'
|
2017-05-22 14:58:25 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@Table({
|
|
|
|
tableName: 'videoBlacklist',
|
|
|
|
indexes: [
|
2017-04-26 15:22:10 -04:00
|
|
|
{
|
2017-12-12 11:53:50 -05:00
|
|
|
fields: [ 'videoId' ],
|
|
|
|
unique: true
|
2017-04-26 15:22:10 -04:00
|
|
|
}
|
2017-05-22 14:58:25 -04:00
|
|
|
]
|
2017-12-12 11:53:50 -05:00
|
|
|
})
|
|
|
|
export class VideoBlacklistModel extends Model<VideoBlacklistModel> {
|
2017-04-26 15:22:10 -04:00
|
|
|
|
2018-08-13 10:57:13 -04:00
|
|
|
@AllowNull(true)
|
|
|
|
@Is('VideoBlacklistReason', value => throwIfNotValid(value, isVideoBlacklistReasonValid, 'reason'))
|
|
|
|
@Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_BLACKLIST.REASON.max))
|
|
|
|
reason: string
|
|
|
|
|
2019-01-10 09:39:51 -05:00
|
|
|
@AllowNull(false)
|
|
|
|
@Column
|
|
|
|
unfederated: boolean
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@CreatedAt
|
|
|
|
createdAt: Date
|
2017-04-26 15:22:10 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@UpdatedAt
|
|
|
|
updatedAt: Date
|
2017-04-26 15:22:10 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@ForeignKey(() => VideoModel)
|
|
|
|
@Column
|
|
|
|
videoId: number
|
2017-04-26 15:22:10 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
@BelongsTo(() => VideoModel, {
|
2017-07-11 10:01:56 -04:00
|
|
|
foreignKey: {
|
|
|
|
allowNull: false
|
|
|
|
},
|
2017-12-12 11:53:50 -05:00
|
|
|
onDelete: 'cascade'
|
2017-04-26 15:22:10 -04:00
|
|
|
})
|
2017-12-12 11:53:50 -05:00
|
|
|
Video: VideoModel
|
|
|
|
|
|
|
|
static listForApi (start: number, count: number, sort: SortType) {
|
|
|
|
const query = {
|
|
|
|
offset: start,
|
|
|
|
limit: count,
|
2018-02-19 03:41:03 -05:00
|
|
|
order: getSortOnModel(sort.sortModel, sort.sortValue),
|
2018-08-14 03:08:47 -04:00
|
|
|
include: [
|
|
|
|
{
|
|
|
|
model: VideoModel,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
]
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
2017-04-26 15:22:10 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
return VideoBlacklistModel.findAndCountAll(query)
|
|
|
|
.then(({ rows, count }) => {
|
|
|
|
return {
|
|
|
|
data: rows,
|
|
|
|
total: count
|
|
|
|
}
|
|
|
|
})
|
2017-04-26 15:22:10 -04:00
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
static loadByVideoId (id: number) {
|
|
|
|
const query = {
|
|
|
|
where: {
|
|
|
|
videoId: id
|
|
|
|
}
|
2017-07-05 07:26:25 -04:00
|
|
|
}
|
2017-04-26 15:22:10 -04:00
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
return VideoBlacklistModel.findOne(query)
|
2017-04-26 15:22:10 -04:00
|
|
|
}
|
|
|
|
|
2018-08-14 03:08:47 -04:00
|
|
|
toFormattedJSON (): VideoBlacklist {
|
2017-12-12 11:53:50 -05:00
|
|
|
const video = this.Video
|
|
|
|
|
|
|
|
return {
|
|
|
|
id: this.id,
|
|
|
|
createdAt: this.createdAt,
|
|
|
|
updatedAt: this.updatedAt,
|
2018-08-13 10:57:13 -04:00
|
|
|
reason: this.reason,
|
2019-01-10 09:39:51 -05:00
|
|
|
unfederated: this.unfederated,
|
2018-08-13 10:57:13 -04:00
|
|
|
|
|
|
|
video: {
|
|
|
|
id: video.id,
|
|
|
|
name: video.name,
|
|
|
|
uuid: video.uuid,
|
|
|
|
description: video.description,
|
|
|
|
duration: video.duration,
|
|
|
|
views: video.views,
|
|
|
|
likes: video.likes,
|
|
|
|
dislikes: video.dislikes,
|
|
|
|
nsfw: video.nsfw
|
|
|
|
}
|
2017-12-12 11:53:50 -05:00
|
|
|
}
|
|
|
|
}
|
2017-04-26 15:22:10 -04:00
|
|
|
}
|