2020-04-29 03:04:42 -04:00
|
|
|
import * as express from 'express'
|
2020-04-28 08:49:03 -04:00
|
|
|
import { logger } from '@server/helpers/logger'
|
2020-04-29 03:04:42 -04:00
|
|
|
import {
|
|
|
|
VIDEO_CATEGORIES,
|
|
|
|
VIDEO_LANGUAGES,
|
|
|
|
VIDEO_LICENCES,
|
|
|
|
VIDEO_PLAYLIST_PRIVACIES,
|
|
|
|
VIDEO_PRIVACIES
|
|
|
|
} from '@server/initializers/constants'
|
2020-04-28 08:49:03 -04:00
|
|
|
import { onExternalUserAuthenticated } from '@server/lib/auth'
|
2020-04-10 09:07:54 -04:00
|
|
|
import { PluginModel } from '@server/models/server/plugin'
|
2020-04-29 03:04:42 -04:00
|
|
|
import {
|
|
|
|
RegisterServerAuthExternalOptions,
|
|
|
|
RegisterServerAuthExternalResult,
|
|
|
|
RegisterServerAuthPassOptions,
|
2020-06-23 08:10:17 -04:00
|
|
|
RegisterServerExternalAuthenticatedResult,
|
|
|
|
RegisterServerOptions
|
|
|
|
} from '@server/types/plugins'
|
|
|
|
import {
|
2021-01-28 09:52:44 -05:00
|
|
|
EncoderOptionsBuilder,
|
2020-06-23 08:10:17 -04:00
|
|
|
PluginPlaylistPrivacyManager,
|
|
|
|
PluginSettingsManager,
|
|
|
|
PluginStorageManager,
|
|
|
|
PluginVideoCategoryManager,
|
|
|
|
PluginVideoLanguageManager,
|
|
|
|
PluginVideoLicenceManager,
|
|
|
|
PluginVideoPrivacyManager,
|
|
|
|
RegisterServerHookOptions,
|
|
|
|
RegisterServerSettingOptions
|
|
|
|
} from '@shared/models'
|
2020-04-28 08:49:03 -04:00
|
|
|
import { serverHookObject } from '@shared/models/plugins/server-hook.model'
|
2021-01-28 09:52:44 -05:00
|
|
|
import { VideoTranscodingProfilesManager } from '../video-transcoding-profiles'
|
|
|
|
import { buildPluginHelpers } from './plugin-helpers-builder'
|
2020-04-10 09:07:54 -04:00
|
|
|
|
2020-04-20 09:32:11 -04:00
|
|
|
type AlterableVideoConstant = 'language' | 'licence' | 'category' | 'privacy' | 'playlistPrivacy'
|
2020-04-10 09:07:54 -04:00
|
|
|
type VideoConstant = { [key in number | string]: string }
|
|
|
|
|
|
|
|
type UpdatedVideoConstant = {
|
|
|
|
[name in AlterableVideoConstant]: {
|
|
|
|
added: { key: number | string, label: string }[]
|
|
|
|
deleted: { key: number | string, label: string }[]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
export class RegisterHelpers {
|
2020-04-10 09:07:54 -04:00
|
|
|
private readonly updatedVideoConstants: UpdatedVideoConstant = {
|
2020-04-20 09:32:11 -04:00
|
|
|
playlistPrivacy: { added: [], deleted: [] },
|
|
|
|
privacy: { added: [], deleted: [] },
|
2020-04-10 09:07:54 -04:00
|
|
|
language: { added: [], deleted: [] },
|
|
|
|
licence: { added: [], deleted: [] },
|
|
|
|
category: { added: [], deleted: [] }
|
|
|
|
}
|
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
private readonly transcodingProfiles: {
|
|
|
|
[ npmName: string ]: {
|
|
|
|
type: 'vod' | 'live'
|
|
|
|
encoder: string
|
|
|
|
profile: string
|
|
|
|
}[]
|
|
|
|
} = {}
|
|
|
|
|
|
|
|
private readonly transcodingEncoders: {
|
|
|
|
[ npmName: string ]: {
|
|
|
|
type: 'vod' | 'live'
|
|
|
|
streamType: 'audio' | 'video'
|
|
|
|
encoder: string
|
|
|
|
priority: number
|
|
|
|
}[]
|
|
|
|
} = {}
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
private readonly settings: RegisterServerSettingOptions[] = []
|
|
|
|
|
2020-04-30 04:03:09 -04:00
|
|
|
private idAndPassAuths: RegisterServerAuthPassOptions[] = []
|
|
|
|
private externalAuths: RegisterServerAuthExternalOptions[] = []
|
2020-04-22 10:07:04 -04:00
|
|
|
|
2020-04-30 03:28:39 -04:00
|
|
|
private readonly onSettingsChangeCallbacks: ((settings: any) => void)[] = []
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
private readonly router: express.Router
|
|
|
|
|
|
|
|
constructor (
|
|
|
|
private readonly npmName: string,
|
|
|
|
private readonly plugin: PluginModel,
|
|
|
|
private readonly onHookAdded: (options: RegisterServerHookOptions) => void
|
|
|
|
) {
|
|
|
|
this.router = express.Router()
|
|
|
|
}
|
|
|
|
|
|
|
|
buildRegisterHelpers (): RegisterServerOptions {
|
|
|
|
const registerHook = this.buildRegisterHook()
|
|
|
|
const registerSetting = this.buildRegisterSetting()
|
|
|
|
|
|
|
|
const getRouter = this.buildGetRouter()
|
|
|
|
|
|
|
|
const settingsManager = this.buildSettingsManager()
|
|
|
|
const storageManager = this.buildStorageManager()
|
|
|
|
|
|
|
|
const videoLanguageManager = this.buildVideoLanguageManager()
|
|
|
|
|
|
|
|
const videoLicenceManager = this.buildVideoLicenceManager()
|
|
|
|
const videoCategoryManager = this.buildVideoCategoryManager()
|
|
|
|
|
2020-04-20 09:32:11 -04:00
|
|
|
const videoPrivacyManager = this.buildVideoPrivacyManager()
|
|
|
|
const playlistPrivacyManager = this.buildPlaylistPrivacyManager()
|
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
const transcodingManager = this.buildTranscodingManager()
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
const registerIdAndPassAuth = this.buildRegisterIdAndPassAuth()
|
|
|
|
const registerExternalAuth = this.buildRegisterExternalAuth()
|
2020-04-30 04:03:09 -04:00
|
|
|
const unregisterIdAndPassAuth = this.buildUnregisterIdAndPassAuth()
|
|
|
|
const unregisterExternalAuth = this.buildUnregisterExternalAuth()
|
2020-04-22 10:07:04 -04:00
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
const peertubeHelpers = buildPluginHelpers(this.npmName)
|
|
|
|
|
|
|
|
return {
|
|
|
|
registerHook,
|
|
|
|
registerSetting,
|
|
|
|
|
|
|
|
getRouter,
|
|
|
|
|
|
|
|
settingsManager,
|
|
|
|
storageManager,
|
|
|
|
|
|
|
|
videoLanguageManager,
|
|
|
|
videoCategoryManager,
|
|
|
|
videoLicenceManager,
|
|
|
|
|
2020-04-20 09:32:11 -04:00
|
|
|
videoPrivacyManager,
|
|
|
|
playlistPrivacyManager,
|
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
transcodingManager,
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
registerIdAndPassAuth,
|
|
|
|
registerExternalAuth,
|
2020-04-30 04:03:09 -04:00
|
|
|
unregisterIdAndPassAuth,
|
|
|
|
unregisterExternalAuth,
|
2020-04-22 10:07:04 -04:00
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
peertubeHelpers
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
reinitVideoConstants (npmName: string) {
|
|
|
|
const hash = {
|
|
|
|
language: VIDEO_LANGUAGES,
|
|
|
|
licence: VIDEO_LICENCES,
|
2020-04-20 09:32:11 -04:00
|
|
|
category: VIDEO_CATEGORIES,
|
|
|
|
privacy: VIDEO_PRIVACIES,
|
|
|
|
playlistPrivacy: VIDEO_PLAYLIST_PRIVACIES
|
2020-04-10 09:07:54 -04:00
|
|
|
}
|
2020-04-20 09:32:11 -04:00
|
|
|
const types: AlterableVideoConstant[] = [ 'language', 'licence', 'category', 'privacy', 'playlistPrivacy' ]
|
2020-04-10 09:07:54 -04:00
|
|
|
|
|
|
|
for (const type of types) {
|
|
|
|
const updatedConstants = this.updatedVideoConstants[type][npmName]
|
|
|
|
if (!updatedConstants) continue
|
|
|
|
|
|
|
|
for (const added of updatedConstants.added) {
|
|
|
|
delete hash[type][added.key]
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const deleted of updatedConstants.deleted) {
|
|
|
|
hash[type][deleted.key] = deleted.label
|
|
|
|
}
|
|
|
|
|
|
|
|
delete this.updatedVideoConstants[type][npmName]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
reinitTranscodingProfilesAndEncoders (npmName: string) {
|
|
|
|
const profiles = this.transcodingProfiles[npmName]
|
|
|
|
if (Array.isArray(profiles)) {
|
|
|
|
for (const profile of profiles) {
|
|
|
|
VideoTranscodingProfilesManager.Instance.removeProfile(profile)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const encoders = this.transcodingEncoders[npmName]
|
|
|
|
if (Array.isArray(encoders)) {
|
|
|
|
for (const o of encoders) {
|
|
|
|
VideoTranscodingProfilesManager.Instance.removeEncoderPriority(o.type, o.streamType, o.encoder, o.priority)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
getSettings () {
|
|
|
|
return this.settings
|
|
|
|
}
|
|
|
|
|
|
|
|
getRouter () {
|
|
|
|
return this.router
|
|
|
|
}
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
getIdAndPassAuths () {
|
|
|
|
return this.idAndPassAuths
|
|
|
|
}
|
|
|
|
|
|
|
|
getExternalAuths () {
|
|
|
|
return this.externalAuths
|
|
|
|
}
|
|
|
|
|
2020-04-30 03:28:39 -04:00
|
|
|
getOnSettingsChangedCallbacks () {
|
|
|
|
return this.onSettingsChangeCallbacks
|
|
|
|
}
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
private buildGetRouter () {
|
|
|
|
return () => this.router
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildRegisterSetting () {
|
|
|
|
return (options: RegisterServerSettingOptions) => {
|
|
|
|
this.settings.push(options)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildRegisterHook () {
|
|
|
|
return (options: RegisterServerHookOptions) => {
|
|
|
|
if (serverHookObject[options.target] !== true) {
|
|
|
|
logger.warn('Unknown hook %s of plugin %s. Skipping.', options.target, this.npmName)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.onHookAdded(options)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
private buildRegisterIdAndPassAuth () {
|
|
|
|
return (options: RegisterServerAuthPassOptions) => {
|
2020-04-23 05:36:50 -04:00
|
|
|
if (!options.authName || typeof options.getWeight !== 'function' || typeof options.login !== 'function') {
|
2020-04-30 04:03:09 -04:00
|
|
|
logger.error('Cannot register auth plugin %s: authName, getWeight or login are not valid.', this.npmName, { options })
|
2020-04-23 05:36:50 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
this.idAndPassAuths.push(options)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildRegisterExternalAuth () {
|
|
|
|
const self = this
|
|
|
|
|
|
|
|
return (options: RegisterServerAuthExternalOptions) => {
|
2020-04-30 03:28:39 -04:00
|
|
|
if (!options.authName || typeof options.authDisplayName !== 'function' || typeof options.onAuthRequest !== 'function') {
|
2020-04-30 04:03:09 -04:00
|
|
|
logger.error('Cannot register auth plugin %s: authName, authDisplayName or onAuthRequest are not valid.', this.npmName, { options })
|
2020-04-29 03:04:42 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
this.externalAuths.push(options)
|
|
|
|
|
|
|
|
return {
|
2020-04-28 08:49:03 -04:00
|
|
|
userAuthenticated (result: RegisterServerExternalAuthenticatedResult): void {
|
|
|
|
onExternalUserAuthenticated({
|
|
|
|
npmName: self.npmName,
|
|
|
|
authName: options.authName,
|
|
|
|
authResult: result
|
|
|
|
}).catch(err => {
|
|
|
|
logger.error('Cannot execute onExternalUserAuthenticated.', { npmName: self.npmName, authName: options.authName, err })
|
|
|
|
})
|
2020-04-22 10:07:04 -04:00
|
|
|
}
|
|
|
|
} as RegisterServerAuthExternalResult
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-30 04:03:09 -04:00
|
|
|
private buildUnregisterExternalAuth () {
|
|
|
|
return (authName: string) => {
|
|
|
|
this.externalAuths = this.externalAuths.filter(a => a.authName !== authName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildUnregisterIdAndPassAuth () {
|
|
|
|
return (authName: string) => {
|
|
|
|
this.idAndPassAuths = this.idAndPassAuths.filter(a => a.authName !== authName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
private buildSettingsManager (): PluginSettingsManager {
|
|
|
|
return {
|
2020-04-30 09:03:09 -04:00
|
|
|
getSetting: (name: string) => PluginModel.getSetting(this.plugin.name, this.plugin.type, name, this.settings),
|
2020-04-10 09:07:54 -04:00
|
|
|
|
2020-04-30 09:03:09 -04:00
|
|
|
getSettings: (names: string[]) => PluginModel.getSettings(this.plugin.name, this.plugin.type, names, this.settings),
|
2020-04-27 04:19:14 -04:00
|
|
|
|
2020-04-30 03:28:39 -04:00
|
|
|
setSetting: (name: string, value: string) => PluginModel.setSetting(this.plugin.name, this.plugin.type, name, value),
|
|
|
|
|
|
|
|
onSettingsChange: (cb: (settings: any) => void) => this.onSettingsChangeCallbacks.push(cb)
|
2020-04-10 09:07:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildStorageManager (): PluginStorageManager {
|
|
|
|
return {
|
|
|
|
getData: (key: string) => PluginModel.getData(this.plugin.name, this.plugin.type, key),
|
|
|
|
|
|
|
|
storeData: (key: string, data: any) => PluginModel.storeData(this.plugin.name, this.plugin.type, key, data)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildVideoLanguageManager (): PluginVideoLanguageManager {
|
|
|
|
return {
|
|
|
|
addLanguage: (key: string, label: string) => {
|
|
|
|
return this.addConstant({ npmName: this.npmName, type: 'language', obj: VIDEO_LANGUAGES, key, label })
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteLanguage: (key: string) => {
|
|
|
|
return this.deleteConstant({ npmName: this.npmName, type: 'language', obj: VIDEO_LANGUAGES, key })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildVideoCategoryManager (): PluginVideoCategoryManager {
|
|
|
|
return {
|
|
|
|
addCategory: (key: number, label: string) => {
|
|
|
|
return this.addConstant({ npmName: this.npmName, type: 'category', obj: VIDEO_CATEGORIES, key, label })
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteCategory: (key: number) => {
|
|
|
|
return this.deleteConstant({ npmName: this.npmName, type: 'category', obj: VIDEO_CATEGORIES, key })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-20 09:32:11 -04:00
|
|
|
private buildVideoPrivacyManager (): PluginVideoPrivacyManager {
|
|
|
|
return {
|
|
|
|
deletePrivacy: (key: number) => {
|
|
|
|
return this.deleteConstant({ npmName: this.npmName, type: 'privacy', obj: VIDEO_PRIVACIES, key })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private buildPlaylistPrivacyManager (): PluginPlaylistPrivacyManager {
|
|
|
|
return {
|
|
|
|
deletePlaylistPrivacy: (key: number) => {
|
|
|
|
return this.deleteConstant({ npmName: this.npmName, type: 'playlistPrivacy', obj: VIDEO_PLAYLIST_PRIVACIES, key })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
private buildVideoLicenceManager (): PluginVideoLicenceManager {
|
|
|
|
return {
|
|
|
|
addLicence: (key: number, label: string) => {
|
|
|
|
return this.addConstant({ npmName: this.npmName, type: 'licence', obj: VIDEO_LICENCES, key, label })
|
|
|
|
},
|
|
|
|
|
|
|
|
deleteLicence: (key: number) => {
|
|
|
|
return this.deleteConstant({ npmName: this.npmName, type: 'licence', obj: VIDEO_LICENCES, key })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private addConstant<T extends string | number> (parameters: {
|
|
|
|
npmName: string
|
|
|
|
type: AlterableVideoConstant
|
|
|
|
obj: VideoConstant
|
|
|
|
key: T
|
|
|
|
label: string
|
|
|
|
}) {
|
|
|
|
const { npmName, type, obj, key, label } = parameters
|
|
|
|
|
|
|
|
if (obj[key]) {
|
|
|
|
logger.warn('Cannot add %s %s by plugin %s: key already exists.', type, npmName, key)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.updatedVideoConstants[type][npmName]) {
|
|
|
|
this.updatedVideoConstants[type][npmName] = {
|
|
|
|
added: [],
|
|
|
|
deleted: []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.updatedVideoConstants[type][npmName].added.push({ key, label })
|
|
|
|
obj[key] = label
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
private deleteConstant<T extends string | number> (parameters: {
|
|
|
|
npmName: string
|
|
|
|
type: AlterableVideoConstant
|
|
|
|
obj: VideoConstant
|
|
|
|
key: T
|
|
|
|
}) {
|
|
|
|
const { npmName, type, obj, key } = parameters
|
|
|
|
|
|
|
|
if (!obj[key]) {
|
|
|
|
logger.warn('Cannot delete %s %s by plugin %s: key does not exist.', type, npmName, key)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.updatedVideoConstants[type][npmName]) {
|
|
|
|
this.updatedVideoConstants[type][npmName] = {
|
|
|
|
added: [],
|
|
|
|
deleted: []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.updatedVideoConstants[type][npmName].deleted.push({ key, label: obj[key] })
|
|
|
|
delete obj[key]
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
2021-01-28 09:52:44 -05:00
|
|
|
|
|
|
|
private buildTranscodingManager () {
|
|
|
|
const self = this
|
|
|
|
|
|
|
|
function addProfile (type: 'live' | 'vod', encoder: string, profile: string, builder: EncoderOptionsBuilder) {
|
|
|
|
if (profile === 'default') {
|
|
|
|
logger.error('A plugin cannot add a default live transcoding profile')
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
VideoTranscodingProfilesManager.Instance.addProfile({
|
|
|
|
type,
|
|
|
|
encoder,
|
|
|
|
profile,
|
|
|
|
builder
|
|
|
|
})
|
|
|
|
|
|
|
|
if (!self.transcodingProfiles[self.npmName]) self.transcodingProfiles[self.npmName] = []
|
|
|
|
self.transcodingProfiles[self.npmName].push({ type, encoder, profile })
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
function addEncoderPriority (type: 'live' | 'vod', streamType: 'audio' | 'video', encoder: string, priority: number) {
|
|
|
|
VideoTranscodingProfilesManager.Instance.addEncoderPriority(type, streamType, encoder, priority)
|
|
|
|
|
|
|
|
if (!self.transcodingEncoders[self.npmName]) self.transcodingEncoders[self.npmName] = []
|
|
|
|
self.transcodingEncoders[self.npmName].push({ type, streamType, encoder, priority })
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
addLiveProfile (encoder: string, profile: string, builder: EncoderOptionsBuilder) {
|
|
|
|
return addProfile('live', encoder, profile, builder)
|
|
|
|
},
|
|
|
|
|
|
|
|
addVODProfile (encoder: string, profile: string, builder: EncoderOptionsBuilder) {
|
|
|
|
return addProfile('vod', encoder, profile, builder)
|
|
|
|
},
|
|
|
|
|
|
|
|
addLiveEncoderPriority (streamType: 'audio' | 'video', encoder: string, priority: number) {
|
|
|
|
return addEncoderPriority('live', streamType, encoder, priority)
|
|
|
|
},
|
|
|
|
|
|
|
|
addVODEncoderPriority (streamType: 'audio' | 'video', encoder: string, priority: number) {
|
|
|
|
return addEncoderPriority('vod', streamType, encoder, priority)
|
2021-01-29 04:23:33 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
removeAllProfilesAndEncoderPriorities () {
|
|
|
|
return self.reinitTranscodingProfilesAndEncoders(self.npmName)
|
2021-01-28 09:52:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-10 09:07:54 -04:00
|
|
|
}
|