PeerTube/server/typings/express/index.d.ts

137 lines
3.3 KiB
TypeScript
Raw Normal View History

2020-06-23 14:10:17 +02:00
import { RegisterServerAuthExternalOptions } from '@server/types'
import {
2020-07-24 15:05:51 +02:00
MAbuseMessage,
2020-07-28 11:12:16 +02:00
MAbuseReporter,
2020-06-23 14:10:17 +02:00
MAccountBlocklist,
MActorUrl,
MStreamingPlaylist,
MVideoChangeOwnershipFull,
MVideoFile,
MVideoImmutable,
MVideoPlaylistFull,
2020-07-28 11:12:16 +02:00
MVideoPlaylistFullSummary
2020-06-23 14:10:17 +02:00
} 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 { UserRole } from '@shared/models'
2020-06-18 13:38:20 +02:00
import { RegisteredPlugin } from '../../lib/plugins/plugin-manager'
2019-08-15 11:53:26 +02:00
import {
MAccountDefault,
MActorAccountChannelId,
MActorFollowActorsDefault,
MActorFollowActorsDefaultSubscription,
MActorFull,
2019-08-20 13:52:49 +02:00
MChannelAccountDefault,
2019-08-15 11:53:26 +02:00
MComment,
MCommentOwnerVideoReply,
MUserDefault,
MVideoBlacklist,
MVideoCaptionVideo,
MVideoFullLight,
MVideoIdThumbnail,
MVideoRedundancyVideo,
MVideoShareActor,
MVideoThumbnail,
MVideoWithRights
2020-06-18 13:38:20 +02:00
} from '../../types/models'
2019-03-19 10:35:15 +01:00
declare module 'express' {
2020-06-18 10:45:25 +02:00
export interface Request {
2020-06-17 10:55:40 +02:00
query: any
}
2019-03-19 10:35:15 +01:00
interface Response {
2019-08-15 11:53:26 +02:00
2019-03-19 10:35:15 +01:00
locals: {
2020-04-22 16:07:04 +02:00
bypassLogin?: {
bypass: boolean
pluginName: string
authName?: string
2020-04-22 16:07:04 +02:00
user: {
username: string
email: string
displayName: string
role: UserRole
}
}
refreshTokenAuthName?: string
explicitLogout: boolean
2019-08-15 11:53:26 +02:00
videoAll?: MVideoFullLight
onlyImmutableVideo?: MVideoImmutable
2019-08-15 11:53:26 +02:00
onlyVideo?: MVideoThumbnail
onlyVideoWithRights?: MVideoWithRights
videoId?: MVideoIdThumbnail
videoShare?: MVideoShareActor
videoFile?: MVideoFile
videoImport?: MVideoImportDefault
videoBlacklist?: MVideoBlacklist
videoCaption?: MVideoCaptionVideo
abuse?: MAbuseReporter
2020-07-24 15:05:51 +02:00
abuseMessage?: MAbuseMessage
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
videoStreamingPlaylist?: MStreamingPlaylist
2019-03-19 10:35:15 +01:00
2019-08-20 13:52:49 +02:00
videoChannel?: MChannelAccountDefault
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
videoPlaylistFull?: MVideoPlaylistFull
videoPlaylistSummary?: MVideoPlaylistFullSummary
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
videoPlaylistElement?: MVideoPlaylistElement
2019-08-21 14:31:57 +02:00
videoPlaylistElementAP?: MVideoPlaylistElementVideoUrlPlaylistPrivacy
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
accountVideoRate?: MAccountVideoRateAccountVideo
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
videoCommentFull?: MCommentOwnerVideoReply
videoCommentThread?: MComment
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
follow?: MActorFollowActorsDefault
subscription?: MActorFollowActorsDefaultSubscription
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
nextOwner?: MAccountDefault
videoChangeOwnership?: MVideoChangeOwnershipFull
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
account?: MAccountDefault
2019-03-19 10:35:15 +01:00
2020-01-28 14:45:17 +01:00
actorUrl?: MActorUrl
2019-08-15 11:53:26 +02:00
actorFull?: MActorFull
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
user?: MUserDefault
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
server?: MServer
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
videoRedundancy?: MVideoRedundancyVideo
2019-03-19 10:35:15 +01:00
2019-08-15 11:53:26 +02:00
accountBlock?: MAccountBlocklist
serverBlock?: MServerBlocklist
2019-03-19 10:35:15 +01:00
oauth?: {
2019-08-15 11:53:26 +02:00
token: MOAuthTokenUser
2019-03-19 10:35:15 +01:00
}
signature?: {
2019-08-15 11:53:26 +02:00
actor: MActorAccountChannelId
2019-03-19 10:35:15 +01:00
}
authenticated?: boolean
registeredPlugin?: RegisteredPlugin
2020-04-28 14:49:03 +02:00
externalAuth?: RegisterServerAuthExternalOptions
2019-08-15 11:53:26 +02:00
plugin?: MPlugin
2019-03-19 10:35:15 +01:00
}
}
}