2017-05-22 20:58:25 +02:00
|
|
|
import * as Sequelize from 'sequelize'
|
2017-07-05 13:26:25 +02:00
|
|
|
import * as Promise from 'bluebird'
|
|
|
|
|
2017-09-22 09:13:43 +02:00
|
|
|
import { SortType } from '../../helpers'
|
2017-07-05 13:26:25 +02:00
|
|
|
import { ResultList } from '../../../shared'
|
2017-09-22 09:13:43 +02:00
|
|
|
import { VideoInstance } from './video-interface'
|
2017-05-22 20:58:25 +02:00
|
|
|
|
2017-06-10 22:15:25 +02:00
|
|
|
// Don't use barrel, import just what we need
|
2017-08-25 11:45:31 +02:00
|
|
|
import { BlacklistedVideo as FormattedBlacklistedVideo } from '../../../shared/models/videos/video-blacklist.model'
|
2017-06-10 22:15:25 +02:00
|
|
|
|
2017-05-22 20:58:25 +02:00
|
|
|
export namespace BlacklistedVideoMethods {
|
2017-08-25 11:45:31 +02:00
|
|
|
export type ToFormattedJSON = (this: BlacklistedVideoInstance) => FormattedBlacklistedVideo
|
2017-09-22 09:13:43 +02:00
|
|
|
export type ListForApi = (start: number, count: number, sort: SortType) => Promise< ResultList<BlacklistedVideoInstance> >
|
2017-07-11 16:01:56 +02:00
|
|
|
export type LoadByVideoId = (id: number) => Promise<BlacklistedVideoInstance>
|
2017-05-22 20:58:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface BlacklistedVideoClass {
|
2017-08-25 11:45:31 +02:00
|
|
|
toFormattedJSON: BlacklistedVideoMethods.ToFormattedJSON
|
2017-05-22 20:58:25 +02:00
|
|
|
listForApi: BlacklistedVideoMethods.ListForApi
|
|
|
|
loadByVideoId: BlacklistedVideoMethods.LoadByVideoId
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface BlacklistedVideoAttributes {
|
2017-07-11 16:01:56 +02:00
|
|
|
videoId: number
|
2017-09-22 09:13:43 +02:00
|
|
|
|
|
|
|
Video?: VideoInstance
|
2017-05-22 20:58:25 +02:00
|
|
|
}
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
export interface BlacklistedVideoInstance
|
|
|
|
extends BlacklistedVideoClass, BlacklistedVideoAttributes, Sequelize.Instance<BlacklistedVideoAttributes> {
|
2017-05-22 20:58:25 +02:00
|
|
|
id: number
|
|
|
|
createdAt: Date
|
|
|
|
updatedAt: Date
|
2017-06-17 11:28:11 +02:00
|
|
|
|
2017-08-25 11:45:31 +02:00
|
|
|
toFormattedJSON: BlacklistedVideoMethods.ToFormattedJSON
|
2017-05-22 20:58:25 +02:00
|
|
|
}
|
|
|
|
|
2017-07-05 13:26:25 +02:00
|
|
|
export interface BlacklistedVideoModel
|
|
|
|
extends BlacklistedVideoClass, Sequelize.Model<BlacklistedVideoInstance, BlacklistedVideoAttributes> {}
|