2019-07-05 07:54:32 -04:00
|
|
|
import { RegisteredPlugin } from '../lib/plugins/plugin-manager'
|
2019-08-15 05:53:26 -04:00
|
|
|
import {
|
|
|
|
MAccountDefault,
|
|
|
|
MActorAccountChannelId,
|
|
|
|
MActorFollowActorsDefault,
|
|
|
|
MActorFollowActorsDefaultSubscription,
|
|
|
|
MActorFull,
|
2019-08-20 07:52:49 -04:00
|
|
|
MChannelAccountDefault,
|
2019-08-15 05:53:26 -04:00
|
|
|
MComment,
|
|
|
|
MCommentOwnerVideoReply,
|
|
|
|
MUserDefault,
|
|
|
|
MVideoAbuse,
|
|
|
|
MVideoBlacklist,
|
|
|
|
MVideoCaptionVideo,
|
|
|
|
MVideoFullLight,
|
|
|
|
MVideoIdThumbnail,
|
|
|
|
MVideoRedundancyVideo,
|
|
|
|
MVideoShareActor,
|
|
|
|
MVideoThumbnail,
|
|
|
|
MVideoWithRights
|
|
|
|
} from './models'
|
|
|
|
import { MVideoPlaylistFull, MVideoPlaylistFullSummary } from './models/video/video-playlist'
|
|
|
|
import { MVideoImportDefault } from '@server/typings/models/video/video-import'
|
2020-02-04 09:00:47 -05:00
|
|
|
import { MAccountBlocklist, MActorUrl, MStreamingPlaylist, MVideoFile, MVideoImmutable } from '@server/typings/models'
|
2019-08-21 08:31:57 -04:00
|
|
|
import { MVideoPlaylistElement, MVideoPlaylistElementVideoUrlPlaylistPrivacy } from '@server/typings/models/video/video-playlist-element'
|
2019-08-15 05:53:26 -04:00
|
|
|
import { MAccountVideoRateAccountVideo } from '@server/typings/models/video/video-rate'
|
|
|
|
import { MVideoChangeOwnershipFull } from './models/video/video-change-ownership'
|
|
|
|
import { MPlugin, MServer } from '@server/typings/models/server'
|
|
|
|
import { MServerBlocklist } from './models/server/server-blocklist'
|
|
|
|
import { MOAuthTokenUser } from '@server/typings/models/oauth/oauth-token'
|
2020-04-22 10:07:04 -04:00
|
|
|
import { UserRole } from '@shared/models'
|
2020-04-28 08:49:03 -04:00
|
|
|
import { RegisterServerAuthExternalOptions } from '@shared/models/plugins/register-server-auth.model'
|
2019-03-19 05:35:15 -04:00
|
|
|
|
|
|
|
declare module 'express' {
|
|
|
|
interface Response {
|
2019-08-15 05:53:26 -04:00
|
|
|
|
2019-03-19 05:35:15 -04:00
|
|
|
locals: {
|
2020-04-22 10:07:04 -04:00
|
|
|
bypassLogin?: {
|
|
|
|
bypass: boolean
|
|
|
|
pluginName: string
|
2020-04-23 05:36:50 -04:00
|
|
|
authName?: string
|
2020-04-22 10:07:04 -04:00
|
|
|
user: {
|
|
|
|
username: string
|
|
|
|
email: string
|
|
|
|
displayName: string
|
|
|
|
role: UserRole
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-24 05:33:01 -04:00
|
|
|
refreshTokenAuthName?: string
|
|
|
|
|
2020-04-23 05:36:50 -04:00
|
|
|
explicitLogout: boolean
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
videoAll?: MVideoFullLight
|
2020-02-04 09:00:47 -05:00
|
|
|
onlyImmutableVideo?: MVideoImmutable
|
2019-08-15 05:53:26 -04:00
|
|
|
onlyVideo?: MVideoThumbnail
|
|
|
|
onlyVideoWithRights?: MVideoWithRights
|
|
|
|
videoId?: MVideoIdThumbnail
|
|
|
|
|
|
|
|
videoShare?: MVideoShareActor
|
|
|
|
|
|
|
|
videoFile?: MVideoFile
|
|
|
|
|
|
|
|
videoImport?: MVideoImportDefault
|
|
|
|
|
|
|
|
videoBlacklist?: MVideoBlacklist
|
|
|
|
|
|
|
|
videoCaption?: MVideoCaptionVideo
|
|
|
|
|
|
|
|
videoAbuse?: MVideoAbuse
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
videoStreamingPlaylist?: MStreamingPlaylist
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-20 07:52:49 -04:00
|
|
|
videoChannel?: MChannelAccountDefault
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
videoPlaylistFull?: MVideoPlaylistFull
|
|
|
|
videoPlaylistSummary?: MVideoPlaylistFullSummary
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
videoPlaylistElement?: MVideoPlaylistElement
|
2019-08-21 08:31:57 -04:00
|
|
|
videoPlaylistElementAP?: MVideoPlaylistElementVideoUrlPlaylistPrivacy
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
accountVideoRate?: MAccountVideoRateAccountVideo
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
videoCommentFull?: MCommentOwnerVideoReply
|
|
|
|
videoCommentThread?: MComment
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
follow?: MActorFollowActorsDefault
|
|
|
|
subscription?: MActorFollowActorsDefaultSubscription
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
nextOwner?: MAccountDefault
|
|
|
|
videoChangeOwnership?: MVideoChangeOwnershipFull
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
account?: MAccountDefault
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2020-01-28 08:45:17 -05:00
|
|
|
actorUrl?: MActorUrl
|
2019-08-15 05:53:26 -04:00
|
|
|
actorFull?: MActorFull
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
user?: MUserDefault
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
server?: MServer
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
videoRedundancy?: MVideoRedundancyVideo
|
2019-03-19 05:35:15 -04:00
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
accountBlock?: MAccountBlocklist
|
|
|
|
serverBlock?: MServerBlocklist
|
2019-03-19 05:35:15 -04:00
|
|
|
|
|
|
|
oauth?: {
|
2019-08-15 05:53:26 -04:00
|
|
|
token: MOAuthTokenUser
|
2019-03-19 05:35:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
signature?: {
|
2019-08-15 05:53:26 -04:00
|
|
|
actor: MActorAccountChannelId
|
2019-03-19 05:35:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
authenticated?: boolean
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
registeredPlugin?: RegisteredPlugin
|
2019-07-10 10:59:53 -04:00
|
|
|
|
2020-04-28 08:49:03 -04:00
|
|
|
externalAuth?: RegisterServerAuthExternalOptions
|
|
|
|
|
2019-08-15 05:53:26 -04:00
|
|
|
plugin?: MPlugin
|
2019-03-19 05:35:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|