X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=server%2Fmodels%2Fvideo%2Fvideo-blacklist.ts;h=26167174abe8ff6234045ae0ab14897f6e64e234;hb=3bb6c52645af84832212c99fdec04143e4230180;hp=8c42dbc21fbb2dc74681e5bb7c9ea7e9cf17cd72;hpb=6fcd19ba737f1f5614a56c6925adb882dea43b8d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/models/video/video-blacklist.ts b/server/models/video/video-blacklist.ts index 8c42dbc21..26167174a 100644 --- a/server/models/video/video-blacklist.ts +++ b/server/models/video/video-blacklist.ts @@ -1,103 +1,80 @@ -import * as Sequelize from 'sequelize' - -import { addMethodsToModel, getSort } from '../utils' -import { - BlacklistedVideoInstance, - BlacklistedVideoAttributes, - - BlacklistedVideoMethods -} from './video-blacklist-interface' - -let BlacklistedVideo: Sequelize.Model -let toFormatedJSON: BlacklistedVideoMethods.ToFormatedJSON -let countTotal: BlacklistedVideoMethods.CountTotal -let list: BlacklistedVideoMethods.List -let listForApi: BlacklistedVideoMethods.ListForApi -let loadById: BlacklistedVideoMethods.LoadById -let loadByVideoId: BlacklistedVideoMethods.LoadByVideoId - -export default function (sequelize: Sequelize.Sequelize, DataTypes: Sequelize.DataTypes) { - BlacklistedVideo = sequelize.define('BlacklistedVideo', - {}, +import { BelongsTo, Column, CreatedAt, ForeignKey, Model, Table, UpdatedAt } from 'sequelize-typescript' +import { SortType } from '../../helpers/utils' +import { getSortOnModel } from '../utils' +import { VideoModel } from './video' + +@Table({ + tableName: 'videoBlacklist', + indexes: [ { - indexes: [ - { - fields: [ 'videoId' ], - unique: true - } - ] + fields: [ 'videoId' ], + unique: true } - ) - - const classMethods = [ - associate, - - countTotal, - list, - listForApi, - loadById, - loadByVideoId ] - const instanceMethods = [ - toFormatedJSON - ] - addMethodsToModel(BlacklistedVideo, classMethods, instanceMethods) +}) +export class VideoBlacklistModel extends Model { - return BlacklistedVideo -} + @CreatedAt + createdAt: Date -// ------------------------------ METHODS ------------------------------ + @UpdatedAt + updatedAt: Date -toFormatedJSON = function (this: BlacklistedVideoInstance) { - return { - id: this.id, - videoId: this.videoId, - createdAt: this.createdAt - } -} + @ForeignKey(() => VideoModel) + @Column + videoId: number -// ------------------------------ STATICS ------------------------------ - -function associate (models) { - BlacklistedVideo.belongsTo(models.Video, { - foreignKey: 'videoId', + @BelongsTo(() => VideoModel, { + foreignKey: { + allowNull: false + }, onDelete: 'cascade' }) -} - -countTotal = function () { - return BlacklistedVideo.count() -} - -list = function () { - return BlacklistedVideo.findAll() -} + Video: VideoModel + + static listForApi (start: number, count: number, sort: SortType) { + const query = { + offset: start, + limit: count, + order: getSortOnModel(sort.sortModel, sort.sortValue), + include: [ { model: VideoModel } ] + } -listForApi = function (start: number, count: number, sort: string) { - const query = { - offset: start, - limit: count, - order: [ getSort(sort) ] + return VideoBlacklistModel.findAndCountAll(query) + .then(({ rows, count }) => { + return { + data: rows, + total: count + } + }) } - return BlacklistedVideo.findAndCountAll(query).then(({ rows, count }) => { - return { - data: rows, - total: count + static loadByVideoId (id: number) { + const query = { + where: { + videoId: id + } } - }) -} -loadById = function (id: number) { - return BlacklistedVideo.findById(id) -} + return VideoBlacklistModel.findOne(query) + } -loadByVideoId = function (id: string) { - const query = { - where: { - videoId: id + toFormattedJSON () { + const video = this.Video + + return { + id: this.id, + videoId: this.videoId, + createdAt: this.createdAt, + updatedAt: this.updatedAt, + name: video.name, + uuid: video.uuid, + description: video.description, + duration: video.duration, + views: video.views, + likes: video.likes, + dislikes: video.dislikes, + nsfw: video.nsfw } } - - return BlacklistedVideo.findOne(query) }