PeerTube/server/models/video/video-abuse-interface.ts

42 lines
1.4 KiB
TypeScript
Raw Normal View History

import * as Promise from 'bluebird'
2017-11-15 15:12:23 +01:00
import * as Sequelize from 'sequelize'
import { ResultList } from '../../../shared'
2017-08-25 11:45:31 +02:00
import { VideoAbuse as FormattedVideoAbuse } from '../../../shared/models/videos/video-abuse.model'
2017-11-15 15:12:23 +01:00
import { AccountInstance } from '../account/account-interface'
import { ServerInstance } from '../server/server-interface'
import { VideoInstance } from './video-interface'
2017-11-16 17:04:19 +01:00
import { VideoAbuseObject } from '../../../shared/models/activitypub/objects/video-abuse-object'
2017-06-10 22:15:25 +02:00
2017-05-22 20:58:25 +02:00
export namespace VideoAbuseMethods {
2017-08-25 11:45:31 +02:00
export type ToFormattedJSON = (this: VideoAbuseInstance) => FormattedVideoAbuse
2017-05-22 20:58:25 +02:00
export type ListForApi = (start: number, count: number, sort: string) => Promise< ResultList<VideoAbuseInstance> >
2017-11-16 17:04:19 +01:00
export type ToActivityPubObject = () => VideoAbuseObject
2017-05-22 20:58:25 +02:00
}
export interface VideoAbuseClass {
listForApi: VideoAbuseMethods.ListForApi
2017-11-16 17:04:19 +01:00
toActivityPubObject: VideoAbuseMethods.ToActivityPubObject
2017-05-22 20:58:25 +02:00
}
export interface VideoAbuseAttributes {
reason: string
videoId: number
2017-11-15 15:12:23 +01:00
reporterAccountId: number
Account?: AccountInstance
Video?: VideoInstance
2017-05-22 20:58:25 +02:00
}
2017-06-10 22:15:25 +02:00
export interface VideoAbuseInstance extends VideoAbuseClass, VideoAbuseAttributes, Sequelize.Instance<VideoAbuseAttributes> {
2017-05-22 20:58:25 +02:00
id: number
createdAt: Date
updatedAt: Date
2017-11-15 11:00:25 +01:00
Server: ServerInstance
2017-06-17 11:28:11 +02:00
2017-08-25 11:45:31 +02:00
toFormattedJSON: VideoAbuseMethods.ToFormattedJSON
2017-05-22 20:58:25 +02:00
}
export interface VideoAbuseModel extends VideoAbuseClass, Sequelize.Model<VideoAbuseInstance, VideoAbuseAttributes> {}