]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/video/video-channel-interface.ts
Begin activitypub
[github/Chocobozzz/PeerTube.git] / server / models / video / video-channel-interface.ts
CommitLineData
72c7248b
C
1import * as Sequelize from 'sequelize'
2import * as Promise from 'bluebird'
3
e4f97bab 4import { ResultList } from '../../../shared'
72c7248b
C
5
6// Don't use barrel, import just what we need
7import { VideoChannel as FormattedVideoChannel } from '../../../shared/models/videos/video-channel.model'
72c7248b 8import { VideoInstance } from './video-interface'
e4f97bab
C
9import { AccountInstance } from '../account/account-interface'
10import { VideoChannelObject } from '../../../shared/models/activitypub/objects/video-channel-object'
72c7248b
C
11
12export namespace VideoChannelMethods {
13 export type ToFormattedJSON = (this: VideoChannelInstance) => FormattedVideoChannel
e4f97bab 14 export type ToActivityPubObject = (this: VideoChannelInstance) => VideoChannelObject
72c7248b
C
15 export type IsOwned = (this: VideoChannelInstance) => boolean
16
e4f97bab 17 export type CountByAccount = (accountId: number) => Promise<number>
72c7248b
C
18 export type ListOwned = () => Promise<VideoChannelInstance[]>
19 export type ListForApi = (start: number, count: number, sort: string) => Promise< ResultList<VideoChannelInstance> >
e4f97bab
C
20 export type LoadByIdAndAccount = (id: number, accountId: number) => Promise<VideoChannelInstance>
21 export type ListByAccount = (accountId: number) => Promise< ResultList<VideoChannelInstance> >
22 export type LoadAndPopulateAccount = (id: number) => Promise<VideoChannelInstance>
23 export type LoadByUUIDAndPopulateAccount = (uuid: string) => Promise<VideoChannelInstance>
72c7248b
C
24 export type LoadByUUID = (uuid: string, t?: Sequelize.Transaction) => Promise<VideoChannelInstance>
25 export type LoadByHostAndUUID = (uuid: string, podHost: string, t?: Sequelize.Transaction) => Promise<VideoChannelInstance>
e4f97bab 26 export type LoadAndPopulateAccountAndVideos = (id: number) => Promise<VideoChannelInstance>
72c7248b
C
27}
28
29export interface VideoChannelClass {
e4f97bab 30 countByAccount: VideoChannelMethods.CountByAccount
72c7248b 31 listForApi: VideoChannelMethods.ListForApi
e4f97bab 32 listByAccount: VideoChannelMethods.ListByAccount
72c7248b 33 listOwned: VideoChannelMethods.ListOwned
e4f97bab 34 loadByIdAndAccount: VideoChannelMethods.LoadByIdAndAccount
72c7248b
C
35 loadByUUID: VideoChannelMethods.LoadByUUID
36 loadByHostAndUUID: VideoChannelMethods.LoadByHostAndUUID
e4f97bab
C
37 loadAndPopulateAccount: VideoChannelMethods.LoadAndPopulateAccount
38 loadByUUIDAndPopulateAccount: VideoChannelMethods.LoadByUUIDAndPopulateAccount
39 loadAndPopulateAccountAndVideos: VideoChannelMethods.LoadAndPopulateAccountAndVideos
72c7248b
C
40}
41
42export interface VideoChannelAttributes {
43 id?: number
44 uuid?: string
45 name: string
46 description: string
47 remote: boolean
e4f97bab 48 url: string
72c7248b 49
e4f97bab 50 Account?: AccountInstance
72c7248b
C
51 Videos?: VideoInstance[]
52}
53
54export interface VideoChannelInstance extends VideoChannelClass, VideoChannelAttributes, Sequelize.Instance<VideoChannelAttributes> {
55 id: number
56 createdAt: Date
57 updatedAt: Date
58
59 isOwned: VideoChannelMethods.IsOwned
60 toFormattedJSON: VideoChannelMethods.ToFormattedJSON
e4f97bab 61 toActivityPubObject: VideoChannelMethods.ToActivityPubObject
72c7248b
C
62}
63
64export interface VideoChannelModel extends VideoChannelClass, Sequelize.Model<VideoChannelInstance, VideoChannelAttributes> {}