122 lines
2.9 KiB
TypeScript
122 lines
2.9 KiB
TypeScript
import { RegisterServerAuthExternalOptions } from '@server/types'
|
|
import {
|
|
MAbuseMessage,
|
|
MAbuseReporter,
|
|
MAccountBlocklist,
|
|
MActorFollowActorsDefault,
|
|
MActorUrl,
|
|
MChannelBannerAccountDefault,
|
|
MStreamingPlaylist,
|
|
MVideoChangeOwnershipFull,
|
|
MVideoFile,
|
|
MVideoImmutable,
|
|
MVideoLive,
|
|
MVideoPlaylistFull,
|
|
MVideoPlaylistFullSummary
|
|
} from '@server/types/models'
|
|
import { MOAuthTokenUser } from '@server/types/models/oauth/oauth-token'
|
|
import { MPlugin, MServer, MServerBlocklist } from '@server/types/models/server'
|
|
import { MVideoImportDefault } from '@server/types/models/video/video-import'
|
|
import { MVideoPlaylistElement, MVideoPlaylistElementVideoUrlPlaylistPrivacy } from '@server/types/models/video/video-playlist-element'
|
|
import { MAccountVideoRateAccountVideo } from '@server/types/models/video/video-rate'
|
|
import { RegisteredPlugin } from '../../lib/plugins/plugin-manager'
|
|
import {
|
|
MAccountDefault,
|
|
MActorAccountChannelId,
|
|
MActorFollowActorsDefaultSubscription,
|
|
MActorFull,
|
|
MComment,
|
|
MCommentOwnerVideoReply,
|
|
MUserDefault,
|
|
MVideoBlacklist,
|
|
MVideoCaptionVideo,
|
|
MVideoFullLight,
|
|
MVideoIdThumbnail,
|
|
MVideoRedundancyVideo,
|
|
MVideoShareActor,
|
|
MVideoThumbnail,
|
|
MVideoWithRights
|
|
} from '../../types/models'
|
|
|
|
declare module 'express' {
|
|
export interface Request {
|
|
query: any
|
|
}
|
|
interface Response {
|
|
locals: PeerTubeLocals
|
|
}
|
|
}
|
|
|
|
interface PeerTubeLocals {
|
|
videoAll?: MVideoFullLight
|
|
onlyImmutableVideo?: MVideoImmutable
|
|
onlyVideo?: MVideoThumbnail
|
|
onlyVideoWithRights?: MVideoWithRights
|
|
videoId?: MVideoIdThumbnail
|
|
|
|
videoLive?: MVideoLive
|
|
|
|
videoShare?: MVideoShareActor
|
|
|
|
videoFile?: MVideoFile
|
|
|
|
videoImport?: MVideoImportDefault
|
|
|
|
videoBlacklist?: MVideoBlacklist
|
|
|
|
videoCaption?: MVideoCaptionVideo
|
|
|
|
abuse?: MAbuseReporter
|
|
abuseMessage?: MAbuseMessage
|
|
|
|
videoStreamingPlaylist?: MStreamingPlaylist
|
|
|
|
videoChannel?: MChannelBannerAccountDefault
|
|
|
|
videoPlaylistFull?: MVideoPlaylistFull
|
|
videoPlaylistSummary?: MVideoPlaylistFullSummary
|
|
|
|
videoPlaylistElement?: MVideoPlaylistElement
|
|
videoPlaylistElementAP?: MVideoPlaylistElementVideoUrlPlaylistPrivacy
|
|
|
|
accountVideoRate?: MAccountVideoRateAccountVideo
|
|
|
|
videoCommentFull?: MCommentOwnerVideoReply
|
|
videoCommentThread?: MComment
|
|
|
|
follow?: MActorFollowActorsDefault
|
|
subscription?: MActorFollowActorsDefaultSubscription
|
|
|
|
nextOwner?: MAccountDefault
|
|
videoChangeOwnership?: MVideoChangeOwnershipFull
|
|
|
|
account?: MAccountDefault
|
|
|
|
actorUrl?: MActorUrl
|
|
actorFull?: MActorFull
|
|
|
|
user?: MUserDefault
|
|
|
|
server?: MServer
|
|
|
|
videoRedundancy?: MVideoRedundancyVideo
|
|
|
|
accountBlock?: MAccountBlocklist
|
|
serverBlock?: MServerBlocklist
|
|
|
|
oauth?: {
|
|
token: MOAuthTokenUser
|
|
}
|
|
|
|
signature?: {
|
|
actor: MActorAccountChannelId
|
|
}
|
|
|
|
authenticated?: boolean
|
|
|
|
registeredPlugin?: RegisteredPlugin
|
|
|
|
externalAuth?: RegisterServerAuthExternalOptions
|
|
|
|
plugin?: MPlugin
|
|
}
|