X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fmodel-loaders%2Fvideo.ts;h=91057d40591a2dd2c7518e9488ec5c4db4e84441;hb=d9dd51aec75d59bd322e249ae1c3ae98277957d3;hp=07b373ed39e0dccdf6632924fd9f282d499b6ca7;hpb=ca4b4b2e5590c1b37cff1fe1be7f797b93351229;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/model-loaders/video.ts b/server/lib/model-loaders/video.ts index 07b373ed3..91057d405 100644 --- a/server/lib/model-loaders/video.ts +++ b/server/lib/model-loaders/video.ts @@ -3,46 +3,35 @@ import { MVideoAccountLightBlacklistAllFiles, MVideoFormattableDetails, MVideoFullLight, - MVideoIdThumbnail, + MVideoId, MVideoImmutable, - MVideoThumbnail, - MVideoWithRights + MVideoThumbnail } from '@server/types/models' -import { Hooks } from '../plugins/hooks' -type VideoLoadType = 'for-api' | 'all' | 'only-video' | 'only-video-with-rights' | 'id' | 'none' | 'only-immutable-attributes' +type VideoLoadType = 'for-api' | 'all' | 'only-video' | 'id' | 'none' | 'only-immutable-attributes' function loadVideo (id: number | string, fetchType: 'for-api', userId?: number): Promise function loadVideo (id: number | string, fetchType: 'all', userId?: number): Promise function loadVideo (id: number | string, fetchType: 'only-immutable-attributes'): Promise function loadVideo (id: number | string, fetchType: 'only-video', userId?: number): Promise -function loadVideo (id: number | string, fetchType: 'only-video-with-rights', userId?: number): Promise -function loadVideo (id: number | string, fetchType: 'id' | 'none', userId?: number): Promise +function loadVideo (id: number | string, fetchType: 'id' | 'none', userId?: number): Promise function loadVideo ( id: number | string, fetchType: VideoLoadType, userId?: number -): Promise +): Promise function loadVideo ( id: number | string, fetchType: VideoLoadType, userId?: number -): Promise { +): Promise { - if (fetchType === 'for-api') { - return Hooks.wrapPromiseFun( - VideoModel.loadForGetAPI, - { id, userId }, - 'filter:api.video.get.result' - ) - } + if (fetchType === 'for-api') return VideoModel.loadForGetAPI({ id, userId }) - if (fetchType === 'all') return VideoModel.loadAndPopulateAccountAndServerAndTags(id, undefined, userId) + if (fetchType === 'all') return VideoModel.loadFull(id, undefined, userId) if (fetchType === 'only-immutable-attributes') return VideoModel.loadImmutableAttributes(id) - if (fetchType === 'only-video-with-rights') return VideoModel.loadWithRights(id) - if (fetchType === 'only-video') return VideoModel.load(id) if (fetchType === 'id' || fetchType === 'none') return VideoModel.loadOnlyId(id)