2021-08-27 08:32:44 -04:00
|
|
|
import express from 'express'
|
2020-04-10 09:07:54 -04:00
|
|
|
import { body, param, query, ValidationChain } from 'express-validator'
|
2021-07-16 04:42:24 -04:00
|
|
|
import { HttpStatusCode } from '../../../shared/models/http/http-error-codes'
|
2021-05-11 06:04:47 -04:00
|
|
|
import { PluginType } from '../../../shared/models/plugins/plugin.type'
|
|
|
|
import { InstallOrUpdatePlugin } from '../../../shared/models/plugins/server/api/install-plugin.model'
|
|
|
|
import { exists, isBooleanValid, isSafePath, toBooleanOrNull, toIntOrNull } from '../../helpers/custom-validators/misc'
|
2019-07-12 05:39:58 -04:00
|
|
|
import { isNpmPluginNameValid, isPluginNameValid, isPluginTypeValid, isPluginVersionValid } from '../../helpers/custom-validators/plugins'
|
2021-05-11 06:04:47 -04:00
|
|
|
import { CONFIG } from '../../initializers/config'
|
2019-07-05 07:54:32 -04:00
|
|
|
import { PluginManager } from '../../lib/plugins/plugin-manager'
|
2019-07-10 10:59:53 -04:00
|
|
|
import { PluginModel } from '../../models/server/plugin'
|
2021-06-03 11:33:44 -04:00
|
|
|
import { areValidationErrors } from './shared'
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
const getPluginValidator = (pluginType: PluginType, withVersion = true) => {
|
|
|
|
const validators: (ValidationChain | express.Handler)[] = [
|
2022-08-17 08:27:04 -04:00
|
|
|
param('pluginName')
|
|
|
|
.custom(isPluginNameValid)
|
2020-04-10 09:07:54 -04:00
|
|
|
]
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
if (withVersion) {
|
|
|
|
validators.push(
|
2022-08-17 08:27:04 -04:00
|
|
|
param('pluginVersion')
|
|
|
|
.custom(isPluginVersionValid)
|
2020-04-10 09:07:54 -04:00
|
|
|
)
|
|
|
|
}
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
return validators.concat([
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
const npmName = PluginModel.buildNpmName(req.params.pluginName, pluginType)
|
|
|
|
const plugin = PluginManager.Instance.getRegisteredPluginOrTheme(npmName)
|
|
|
|
|
2021-05-31 19:36:53 -04:00
|
|
|
if (!plugin) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'No plugin found named ' + npmName
|
|
|
|
})
|
|
|
|
}
|
|
|
|
if (withVersion && plugin.version !== req.params.pluginVersion) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'No plugin found named ' + npmName + ' with version ' + req.params.pluginVersion
|
|
|
|
})
|
|
|
|
}
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
res.locals.registeredPlugin = plugin
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
return next()
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
2020-04-10 09:07:54 -04:00
|
|
|
])
|
|
|
|
}
|
|
|
|
|
2020-04-28 08:49:03 -04:00
|
|
|
const getExternalAuthValidator = [
|
2022-08-17 08:27:04 -04:00
|
|
|
param('authName')
|
|
|
|
.custom(exists),
|
2020-04-28 08:49:03 -04:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
const plugin = res.locals.registeredPlugin
|
2021-05-31 19:36:53 -04:00
|
|
|
if (!plugin.registerHelpers) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'No registered helpers were found for this plugin'
|
|
|
|
})
|
|
|
|
}
|
2020-04-28 08:49:03 -04:00
|
|
|
|
2021-01-28 09:52:44 -05:00
|
|
|
const externalAuth = plugin.registerHelpers.getExternalAuths().find(a => a.authName === req.params.authName)
|
2021-05-31 19:36:53 -04:00
|
|
|
if (!externalAuth) {
|
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'No external auths were found for this plugin'
|
|
|
|
})
|
|
|
|
}
|
2020-04-28 08:49:03 -04:00
|
|
|
|
|
|
|
res.locals.externalAuth = externalAuth
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
const pluginStaticDirectoryValidator = [
|
2022-08-17 08:27:04 -04:00
|
|
|
param('staticEndpoint')
|
|
|
|
.custom(isSafePath),
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
const listPluginsValidator = [
|
2019-07-16 05:33:22 -04:00
|
|
|
query('pluginType')
|
2019-07-10 10:59:53 -04:00
|
|
|
.optional()
|
2020-08-06 10:14:58 -04:00
|
|
|
.customSanitizer(toIntOrNull)
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isPluginTypeValid),
|
2019-07-10 10:59:53 -04:00
|
|
|
query('uninstalled')
|
|
|
|
.optional()
|
2019-07-25 10:23:44 -04:00
|
|
|
.customSanitizer(toBooleanOrNull)
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isBooleanValid),
|
2019-07-10 10:59:53 -04:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
const installOrUpdatePluginValidator = [
|
2019-07-11 11:23:24 -04:00
|
|
|
body('npmName')
|
|
|
|
.optional()
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isNpmPluginNameValid),
|
2021-12-03 04:14:01 -05:00
|
|
|
body('pluginVersion')
|
|
|
|
.optional()
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isPluginVersionValid),
|
2019-07-11 11:23:24 -04:00
|
|
|
body('path')
|
|
|
|
.optional()
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isSafePath),
|
2019-07-10 10:59:53 -04:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
const body: InstallOrUpdatePlugin = req.body
|
2019-07-11 11:23:24 -04:00
|
|
|
if (!body.path && !body.npmName) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({ message: 'Should have either a npmName or a path' })
|
2019-07-11 11:23:24 -04:00
|
|
|
}
|
2021-12-03 04:14:01 -05:00
|
|
|
if (body.pluginVersion && !body.npmName) {
|
|
|
|
return res.fail({ message: 'Should have a npmName when specifying a pluginVersion' })
|
|
|
|
}
|
2019-07-11 11:23:24 -04:00
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const uninstallPluginValidator = [
|
2022-08-17 08:27:04 -04:00
|
|
|
body('npmName')
|
|
|
|
.custom(isNpmPluginNameValid),
|
2019-07-10 10:59:53 -04:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-07-11 08:40:19 -04:00
|
|
|
const existingPluginValidator = [
|
2022-08-17 08:27:04 -04:00
|
|
|
param('npmName')
|
|
|
|
.custom(isNpmPluginNameValid),
|
2019-07-10 10:59:53 -04:00
|
|
|
|
|
|
|
async (req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
2019-07-11 08:40:19 -04:00
|
|
|
const plugin = await PluginModel.loadByNpmName(req.params.npmName)
|
2019-07-10 10:59:53 -04:00
|
|
|
if (!plugin) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({
|
|
|
|
status: HttpStatusCode.NOT_FOUND_404,
|
|
|
|
message: 'Plugin not found'
|
|
|
|
})
|
2019-07-10 10:59:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
res.locals.plugin = plugin
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
const updatePluginSettingsValidator = [
|
2022-08-17 08:27:04 -04:00
|
|
|
body('settings')
|
|
|
|
.exists(),
|
2019-07-10 10:59:53 -04:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-07-16 05:33:22 -04:00
|
|
|
const listAvailablePluginsValidator = [
|
|
|
|
query('search')
|
|
|
|
.optional()
|
2022-08-17 08:27:04 -04:00
|
|
|
.exists(),
|
2019-07-16 05:33:22 -04:00
|
|
|
query('pluginType')
|
|
|
|
.optional()
|
2020-08-06 10:14:58 -04:00
|
|
|
.customSanitizer(toIntOrNull)
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isPluginTypeValid),
|
2019-07-19 08:36:04 -04:00
|
|
|
query('currentPeerTubeEngine')
|
|
|
|
.optional()
|
2022-08-17 08:27:04 -04:00
|
|
|
.custom(isPluginVersionValid),
|
2019-07-16 05:33:22 -04:00
|
|
|
|
|
|
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
|
|
|
if (areValidationErrors(req, res)) return
|
|
|
|
|
|
|
|
if (CONFIG.PLUGINS.INDEX.ENABLED === false) {
|
2021-05-31 19:36:53 -04:00
|
|
|
return res.fail({ message: 'Plugin index is not enabled' })
|
2019-07-16 05:33:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return next()
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2020-04-10 09:07:54 -04:00
|
|
|
pluginStaticDirectoryValidator,
|
|
|
|
getPluginValidator,
|
2019-07-10 10:59:53 -04:00
|
|
|
updatePluginSettingsValidator,
|
|
|
|
uninstallPluginValidator,
|
2019-07-16 05:33:22 -04:00
|
|
|
listAvailablePluginsValidator,
|
2019-07-11 08:40:19 -04:00
|
|
|
existingPluginValidator,
|
2019-07-12 05:39:58 -04:00
|
|
|
installOrUpdatePluginValidator,
|
2020-04-28 08:49:03 -04:00
|
|
|
listPluginsValidator,
|
|
|
|
getExternalAuthValidator
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|