2019-07-10 16:59:53 +02:00
|
|
|
import * as express from 'express'
|
|
|
|
import { getFormattedObjects } from '../../helpers/utils'
|
|
|
|
import {
|
|
|
|
asyncMiddleware,
|
|
|
|
authenticate,
|
|
|
|
ensureUserHasRight,
|
|
|
|
paginationValidator,
|
|
|
|
setDefaultPagination,
|
|
|
|
setDefaultSort
|
|
|
|
} from '../../middlewares'
|
|
|
|
import { pluginsSortValidator } from '../../middlewares/validators'
|
|
|
|
import { PluginModel } from '../../models/server/plugin'
|
|
|
|
import { UserRight } from '../../../shared/models/users'
|
|
|
|
import {
|
2019-07-11 14:40:19 +02:00
|
|
|
existingPluginValidator,
|
2019-07-10 16:59:53 +02:00
|
|
|
installPluginValidator,
|
|
|
|
listPluginsValidator,
|
|
|
|
uninstallPluginValidator,
|
|
|
|
updatePluginSettingsValidator
|
|
|
|
} from '../../middlewares/validators/plugins'
|
|
|
|
import { PluginManager } from '../../lib/plugins/plugin-manager'
|
|
|
|
import { InstallPlugin } from '../../../shared/models/plugins/install-plugin.model'
|
|
|
|
import { ManagePlugin } from '../../../shared/models/plugins/manage-plugin.model'
|
|
|
|
|
|
|
|
const pluginRouter = express.Router()
|
|
|
|
|
|
|
|
pluginRouter.get('/',
|
|
|
|
authenticate,
|
|
|
|
ensureUserHasRight(UserRight.MANAGE_PLUGINS),
|
|
|
|
listPluginsValidator,
|
|
|
|
paginationValidator,
|
|
|
|
pluginsSortValidator,
|
|
|
|
setDefaultSort,
|
|
|
|
setDefaultPagination,
|
|
|
|
asyncMiddleware(listPlugins)
|
|
|
|
)
|
|
|
|
|
2019-07-11 14:40:19 +02:00
|
|
|
pluginRouter.get('/:npmName',
|
2019-07-10 16:59:53 +02:00
|
|
|
authenticate,
|
|
|
|
ensureUserHasRight(UserRight.MANAGE_PLUGINS),
|
2019-07-11 14:40:19 +02:00
|
|
|
asyncMiddleware(existingPluginValidator),
|
|
|
|
getPlugin
|
2019-07-10 16:59:53 +02:00
|
|
|
)
|
|
|
|
|
2019-07-11 14:40:19 +02:00
|
|
|
pluginRouter.get('/:npmName/registered-settings',
|
|
|
|
authenticate,
|
|
|
|
ensureUserHasRight(UserRight.MANAGE_PLUGINS),
|
|
|
|
asyncMiddleware(existingPluginValidator),
|
|
|
|
asyncMiddleware(getPluginRegisteredSettings)
|
|
|
|
)
|
|
|
|
|
|
|
|
pluginRouter.put('/:npmName/settings',
|
2019-07-10 16:59:53 +02:00
|
|
|
authenticate,
|
|
|
|
ensureUserHasRight(UserRight.MANAGE_PLUGINS),
|
|
|
|
updatePluginSettingsValidator,
|
2019-07-11 14:40:19 +02:00
|
|
|
asyncMiddleware(existingPluginValidator),
|
2019-07-10 16:59:53 +02:00
|
|
|
asyncMiddleware(updatePluginSettings)
|
|
|
|
)
|
|
|
|
|
|
|
|
pluginRouter.post('/install',
|
|
|
|
authenticate,
|
|
|
|
ensureUserHasRight(UserRight.MANAGE_PLUGINS),
|
|
|
|
installPluginValidator,
|
|
|
|
asyncMiddleware(installPlugin)
|
|
|
|
)
|
|
|
|
|
|
|
|
pluginRouter.post('/uninstall',
|
|
|
|
authenticate,
|
|
|
|
ensureUserHasRight(UserRight.MANAGE_PLUGINS),
|
|
|
|
uninstallPluginValidator,
|
|
|
|
asyncMiddleware(uninstallPlugin)
|
|
|
|
)
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
pluginRouter
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function listPlugins (req: express.Request, res: express.Response) {
|
|
|
|
const type = req.query.type
|
|
|
|
|
|
|
|
const resultList = await PluginModel.listForApi({
|
|
|
|
type,
|
|
|
|
start: req.query.start,
|
|
|
|
count: req.query.count,
|
|
|
|
sort: req.query.sort
|
|
|
|
})
|
|
|
|
|
|
|
|
return res.json(getFormattedObjects(resultList.data, resultList.total))
|
|
|
|
}
|
|
|
|
|
2019-07-11 14:40:19 +02:00
|
|
|
function getPlugin (req: express.Request, res: express.Response) {
|
|
|
|
const plugin = res.locals.plugin
|
|
|
|
|
|
|
|
return res.json(plugin.toFormattedJSON())
|
|
|
|
}
|
|
|
|
|
2019-07-10 16:59:53 +02:00
|
|
|
async function installPlugin (req: express.Request, res: express.Response) {
|
|
|
|
const body: InstallPlugin = req.body
|
|
|
|
|
|
|
|
await PluginManager.Instance.install(body.npmName)
|
|
|
|
|
|
|
|
return res.sendStatus(204)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function uninstallPlugin (req: express.Request, res: express.Response) {
|
|
|
|
const body: ManagePlugin = req.body
|
|
|
|
|
|
|
|
await PluginManager.Instance.uninstall(body.npmName)
|
|
|
|
|
|
|
|
return res.sendStatus(204)
|
|
|
|
}
|
|
|
|
|
2019-07-11 14:40:19 +02:00
|
|
|
async function getPluginRegisteredSettings (req: express.Request, res: express.Response) {
|
2019-07-10 16:59:53 +02:00
|
|
|
const plugin = res.locals.plugin
|
|
|
|
|
|
|
|
const settings = await PluginManager.Instance.getSettings(plugin.name)
|
|
|
|
|
|
|
|
return res.json({
|
|
|
|
settings
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
async function updatePluginSettings (req: express.Request, res: express.Response) {
|
|
|
|
const plugin = res.locals.plugin
|
|
|
|
|
|
|
|
plugin.settings = req.body.settings
|
|
|
|
await plugin.save()
|
|
|
|
|
|
|
|
return res.sendStatus(204)
|
|
|
|
}
|