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

46 lines
1.5 KiB
TypeScript
Raw Normal View History

2017-05-22 18:58:25 +00:00
import * as Sequelize from 'sequelize'
import * as Promise from 'bluebird'
2017-05-22 18:58:25 +00:00
2017-09-07 13:27:35 +00:00
import { PodInstance } from '../pod/pod-interface'
2017-10-24 17:41:09 +00:00
import { RemoteVideoAuthorCreateData } from '../../../shared/models/pods/remote-video/remote-video-author-create-request.model'
import { VideoChannelInstance } from './video-channel-interface'
2017-06-10 20:15:25 +00:00
2017-05-22 18:58:25 +00:00
export namespace AuthorMethods {
2017-10-24 17:41:09 +00:00
export type Load = (id: number) => Promise<AuthorInstance>
export type LoadByUUID = (uuid: string) => Promise<AuthorInstance>
export type LoadAuthorByPodAndUUID = (uuid: string, podId: number, transaction: Sequelize.Transaction) => Promise<AuthorInstance>
export type ListOwned = () => Promise<AuthorInstance[]>
export type ToAddRemoteJSON = (this: AuthorInstance) => RemoteVideoAuthorCreateData
export type IsOwned = (this: AuthorInstance) => boolean
2017-05-22 18:58:25 +00:00
}
export interface AuthorClass {
2017-10-24 17:41:09 +00:00
loadAuthorByPodAndUUID: AuthorMethods.LoadAuthorByPodAndUUID
load: AuthorMethods.Load
loadByUUID: AuthorMethods.LoadByUUID
listOwned: AuthorMethods.ListOwned
2017-05-22 18:58:25 +00:00
}
export interface AuthorAttributes {
name: string
2017-10-24 17:41:09 +00:00
uuid?: string
podId?: number
userId?: number
2017-05-22 18:58:25 +00:00
}
export interface AuthorInstance extends AuthorClass, AuthorAttributes, Sequelize.Instance<AuthorAttributes> {
2017-10-24 17:41:09 +00:00
isOwned: AuthorMethods.IsOwned
toAddRemoteJSON: AuthorMethods.ToAddRemoteJSON
2017-05-22 18:58:25 +00:00
id: number
createdAt: Date
updatedAt: Date
2017-06-10 20:15:25 +00:00
Pod: PodInstance
2017-10-24 17:41:09 +00:00
VideoChannels: VideoChannelInstance[]
2017-05-22 18:58:25 +00:00
}
export interface AuthorModel extends AuthorClass, Sequelize.Model<AuthorInstance, AuthorAttributes> {}