2017-11-09 11:51:58 -05:00
|
|
|
import * as Bluebird from 'bluebird'
|
2017-11-13 11:39:41 -05:00
|
|
|
import * as Sequelize from 'sequelize'
|
|
|
|
import { VideoTorrentObject } from '../../../shared/models/activitypub/objects/video-torrent-object'
|
|
|
|
import { ResultList } from '../../../shared/models/result-list.model'
|
|
|
|
import { Video as FormattedVideo, VideoDetails as FormattedDetailsVideo } from '../../../shared/models/videos/video.model'
|
2017-05-22 14:58:25 -04:00
|
|
|
|
2017-07-05 07:26:25 -04:00
|
|
|
import { TagAttributes, TagInstance } from './tag-interface'
|
2017-10-24 13:41:09 -04:00
|
|
|
import { VideoChannelInstance } from './video-channel-interface'
|
2017-11-13 11:39:41 -05:00
|
|
|
import { VideoFileAttributes, VideoFileInstance } from './video-file-interface'
|
2017-06-10 16:15:25 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
export namespace VideoMethods {
|
2017-06-16 03:54:59 -04:00
|
|
|
export type GetThumbnailName = (this: VideoInstance) => string
|
|
|
|
export type GetPreviewName = (this: VideoInstance) => string
|
|
|
|
export type IsOwned = (this: VideoInstance) => boolean
|
2017-08-25 05:45:31 -04:00
|
|
|
export type ToFormattedJSON = (this: VideoInstance) => FormattedVideo
|
2017-10-24 13:41:09 -04:00
|
|
|
export type ToFormattedDetailsJSON = (this: VideoInstance) => FormattedDetailsVideo
|
2017-06-10 16:15:25 -04:00
|
|
|
|
2017-10-02 06:20:26 -04:00
|
|
|
export type GetOriginalFile = (this: VideoInstance) => VideoFileInstance
|
2017-08-25 05:36:23 -04:00
|
|
|
export type GetTorrentFileName = (this: VideoInstance, videoFile: VideoFileInstance) => string
|
|
|
|
export type GetVideoFilename = (this: VideoInstance, videoFile: VideoFileInstance) => string
|
|
|
|
export type CreatePreview = (this: VideoInstance, videoFile: VideoFileInstance) => Promise<string>
|
|
|
|
export type CreateThumbnail = (this: VideoInstance, videoFile: VideoFileInstance) => Promise<string>
|
|
|
|
export type GetVideoFilePath = (this: VideoInstance, videoFile: VideoFileInstance) => string
|
|
|
|
export type CreateTorrentAndSetInfoHash = (this: VideoInstance, videoFile: VideoFileInstance) => Promise<void>
|
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
export type ToActivityPubObject = (this: VideoInstance) => VideoTorrentObject
|
2017-06-10 16:15:25 -04:00
|
|
|
|
2017-10-02 06:20:26 -04:00
|
|
|
export type OptimizeOriginalVideofile = (this: VideoInstance) => Promise<void>
|
|
|
|
export type TranscodeOriginalVideofile = (this: VideoInstance, resolution: number) => Promise<void>
|
|
|
|
export type GetOriginalFileHeight = (this: VideoInstance) => Promise<number>
|
2017-10-16 04:05:49 -04:00
|
|
|
export type GetEmbedPath = (this: VideoInstance) => string
|
|
|
|
export type GetThumbnailPath = (this: VideoInstance) => string
|
|
|
|
export type GetPreviewPath = (this: VideoInstance) => string
|
2017-10-30 05:16:27 -04:00
|
|
|
export type GetDescriptionPath = (this: VideoInstance) => string
|
|
|
|
export type GetTruncatedDescription = (this: VideoInstance) => string
|
2017-11-09 11:51:58 -05:00
|
|
|
export type GetCategoryLabel = (this: VideoInstance) => string
|
|
|
|
export type GetLicenceLabel = (this: VideoInstance) => string
|
|
|
|
export type GetLanguageLabel = (this: VideoInstance) => string
|
2017-07-05 07:26:25 -04:00
|
|
|
|
|
|
|
// Return thumbnail name
|
|
|
|
export type GenerateThumbnailFromData = (video: VideoInstance, thumbnailData: string) => Promise<string>
|
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
export type List = () => Bluebird<VideoInstance[]>
|
|
|
|
export type ListOwnedAndPopulateAccountAndTags = () => Bluebird<VideoInstance[]>
|
|
|
|
export type ListOwnedByAccount = (account: string) => Bluebird<VideoInstance[]>
|
2017-07-05 07:26:25 -04:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
export type ListForApi = (start: number, count: number, sort: string) => Bluebird< ResultList<VideoInstance> >
|
|
|
|
export type ListUserVideosForApi = (userId: number, start: number, count: number, sort: string) => Bluebird< ResultList<VideoInstance> >
|
2017-11-15 05:00:25 -05:00
|
|
|
export type SearchAndPopulateAccountAndServerAndTags = (
|
2017-07-05 07:26:25 -04:00
|
|
|
value: string,
|
|
|
|
field: string,
|
|
|
|
start: number,
|
|
|
|
count: number,
|
|
|
|
sort: string
|
2017-11-09 11:51:58 -05:00
|
|
|
) => Bluebird< ResultList<VideoInstance> >
|
2017-07-05 07:26:25 -04:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
export type Load = (id: number) => Bluebird<VideoInstance>
|
|
|
|
export type LoadByUUID = (uuid: string, t?: Sequelize.Transaction) => Bluebird<VideoInstance>
|
|
|
|
export type LoadByUrl = (url: string, t?: Sequelize.Transaction) => Bluebird<VideoInstance>
|
|
|
|
export type LoadLocalVideoByUUID = (uuid: string, t?: Sequelize.Transaction) => Bluebird<VideoInstance>
|
|
|
|
export type LoadByHostAndUUID = (fromHost: string, uuid: string, t?: Sequelize.Transaction) => Bluebird<VideoInstance>
|
|
|
|
export type LoadAndPopulateAccount = (id: number) => Bluebird<VideoInstance>
|
2017-11-15 05:00:25 -05:00
|
|
|
export type LoadAndPopulateAccountAndServerAndTags = (id: number) => Bluebird<VideoInstance>
|
|
|
|
export type LoadByUUIDAndPopulateAccountAndServerAndTags = (uuid: string) => Bluebird<VideoInstance>
|
2017-11-10 08:34:45 -05:00
|
|
|
export type LoadByUUIDOrURL = (uuid: string, url: string, t?: Sequelize.Transaction) => Bluebird<VideoInstance>
|
2017-08-25 05:36:23 -04:00
|
|
|
|
|
|
|
export type RemoveThumbnail = (this: VideoInstance) => Promise<void>
|
|
|
|
export type RemovePreview = (this: VideoInstance) => Promise<void>
|
|
|
|
export type RemoveFile = (this: VideoInstance, videoFile: VideoFileInstance) => Promise<void>
|
|
|
|
export type RemoveTorrent = (this: VideoInstance, videoFile: VideoFileInstance) => Promise<void>
|
2017-05-22 14:58:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface VideoClass {
|
|
|
|
generateThumbnailFromData: VideoMethods.GenerateThumbnailFromData
|
|
|
|
list: VideoMethods.List
|
|
|
|
listForApi: VideoMethods.ListForApi
|
2017-10-31 06:52:52 -04:00
|
|
|
listUserVideosForApi: VideoMethods.ListUserVideosForApi
|
2017-11-09 11:51:58 -05:00
|
|
|
listOwnedAndPopulateAccountAndTags: VideoMethods.ListOwnedAndPopulateAccountAndTags
|
|
|
|
listOwnedByAccount: VideoMethods.ListOwnedByAccount
|
2017-05-22 14:58:25 -04:00
|
|
|
load: VideoMethods.Load
|
2017-11-09 11:51:58 -05:00
|
|
|
loadAndPopulateAccount: VideoMethods.LoadAndPopulateAccount
|
2017-11-15 05:00:25 -05:00
|
|
|
loadAndPopulateAccountAndServerAndTags: VideoMethods.LoadAndPopulateAccountAndServerAndTags
|
2017-08-25 05:36:23 -04:00
|
|
|
loadByHostAndUUID: VideoMethods.LoadByHostAndUUID
|
|
|
|
loadByUUID: VideoMethods.LoadByUUID
|
2017-11-09 11:51:58 -05:00
|
|
|
loadByUrl: VideoMethods.LoadByUrl
|
2017-11-10 08:34:45 -05:00
|
|
|
loadByUUIDOrURL: VideoMethods.LoadByUUIDOrURL
|
2017-10-26 05:26:35 -04:00
|
|
|
loadLocalVideoByUUID: VideoMethods.LoadLocalVideoByUUID
|
2017-11-15 05:00:25 -05:00
|
|
|
loadByUUIDAndPopulateAccountAndServerAndTags: VideoMethods.LoadByUUIDAndPopulateAccountAndServerAndTags
|
|
|
|
searchAndPopulateAccountAndServerAndTags: VideoMethods.SearchAndPopulateAccountAndServerAndTags
|
2017-05-22 14:58:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface VideoAttributes {
|
2017-08-25 12:36:49 -04:00
|
|
|
id?: number
|
2017-07-11 10:01:56 -04:00
|
|
|
uuid?: string
|
2017-05-22 14:58:25 -04:00
|
|
|
name: string
|
|
|
|
category: number
|
|
|
|
licence: number
|
|
|
|
language: number
|
|
|
|
nsfw: boolean
|
|
|
|
description: string
|
|
|
|
duration: number
|
2017-10-31 06:52:52 -04:00
|
|
|
privacy: number
|
2017-05-22 14:58:25 -04:00
|
|
|
views?: number
|
|
|
|
likes?: number
|
|
|
|
dislikes?: number
|
2017-07-11 10:01:56 -04:00
|
|
|
remote: boolean
|
2017-11-10 08:34:45 -05:00
|
|
|
url?: string
|
|
|
|
|
|
|
|
createdAt?: Date
|
|
|
|
updatedAt?: Date
|
2017-06-10 16:15:25 -04:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
parentId?: number
|
2017-10-24 13:41:09 -04:00
|
|
|
channelId?: number
|
|
|
|
|
|
|
|
VideoChannel?: VideoChannelInstance
|
2017-07-05 07:26:25 -04:00
|
|
|
Tags?: TagInstance[]
|
2017-08-25 05:36:23 -04:00
|
|
|
VideoFiles?: VideoFileInstance[]
|
2017-05-22 14:58:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface VideoInstance extends VideoClass, VideoAttributes, Sequelize.Instance<VideoAttributes> {
|
2017-08-25 05:36:23 -04:00
|
|
|
createPreview: VideoMethods.CreatePreview
|
|
|
|
createThumbnail: VideoMethods.CreateThumbnail
|
|
|
|
createTorrentAndSetInfoHash: VideoMethods.CreateTorrentAndSetInfoHash
|
2017-10-02 06:20:26 -04:00
|
|
|
getOriginalFile: VideoMethods.GetOriginalFile
|
2017-06-17 05:28:11 -04:00
|
|
|
getPreviewName: VideoMethods.GetPreviewName
|
2017-10-16 04:05:49 -04:00
|
|
|
getPreviewPath: VideoMethods.GetPreviewPath
|
2017-08-25 05:36:23 -04:00
|
|
|
getThumbnailName: VideoMethods.GetThumbnailName
|
2017-10-16 04:05:49 -04:00
|
|
|
getThumbnailPath: VideoMethods.GetThumbnailPath
|
2017-08-25 05:36:23 -04:00
|
|
|
getTorrentFileName: VideoMethods.GetTorrentFileName
|
|
|
|
getVideoFilename: VideoMethods.GetVideoFilename
|
|
|
|
getVideoFilePath: VideoMethods.GetVideoFilePath
|
2017-06-17 05:28:11 -04:00
|
|
|
isOwned: VideoMethods.IsOwned
|
2017-08-25 05:36:23 -04:00
|
|
|
removeFile: VideoMethods.RemoveFile
|
|
|
|
removePreview: VideoMethods.RemovePreview
|
|
|
|
removeThumbnail: VideoMethods.RemoveThumbnail
|
|
|
|
removeTorrent: VideoMethods.RemoveTorrent
|
2017-11-09 11:51:58 -05:00
|
|
|
toActivityPubObject: VideoMethods.ToActivityPubObject
|
2017-08-25 05:45:31 -04:00
|
|
|
toFormattedJSON: VideoMethods.ToFormattedJSON
|
2017-10-24 13:41:09 -04:00
|
|
|
toFormattedDetailsJSON: VideoMethods.ToFormattedDetailsJSON
|
2017-10-02 06:20:26 -04:00
|
|
|
optimizeOriginalVideofile: VideoMethods.OptimizeOriginalVideofile
|
|
|
|
transcodeOriginalVideofile: VideoMethods.TranscodeOriginalVideofile
|
|
|
|
getOriginalFileHeight: VideoMethods.GetOriginalFileHeight
|
2017-10-16 04:05:49 -04:00
|
|
|
getEmbedPath: VideoMethods.GetEmbedPath
|
2017-10-30 05:16:27 -04:00
|
|
|
getDescriptionPath: VideoMethods.GetDescriptionPath
|
2017-10-30 15:26:06 -04:00
|
|
|
getTruncatedDescription: VideoMethods.GetTruncatedDescription
|
2017-11-09 11:51:58 -05:00
|
|
|
getCategoryLabel: VideoMethods.GetCategoryLabel
|
|
|
|
getLicenceLabel: VideoMethods.GetLicenceLabel
|
|
|
|
getLanguageLabel: VideoMethods.GetLanguageLabel
|
2017-07-05 07:26:25 -04:00
|
|
|
|
|
|
|
setTags: Sequelize.HasManySetAssociationsMixin<TagAttributes, string>
|
2017-10-02 06:20:26 -04:00
|
|
|
addVideoFile: Sequelize.HasManyAddAssociationMixin<VideoFileAttributes, string>
|
2017-08-25 05:36:23 -04:00
|
|
|
setVideoFiles: Sequelize.HasManySetAssociationsMixin<VideoFileAttributes, string>
|
2017-05-22 14:58:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface VideoModel extends VideoClass, Sequelize.Model<VideoInstance, VideoAttributes> {}
|