import { PluginType } from '../../shared/models/plugins/plugin.type'
import { isTestInstance } from '../helpers/core-utils'
import { logger } from '@server/helpers/logger'
+import { optionalAuthenticate } from '@server/middlewares/oauth'
const sendFileOptions = {
maxAge: '30 days',
pluginsRouter.use('/plugins/:pluginName/router',
getPluginValidator(PluginType.PLUGIN, false),
+ optionalAuthenticate,
servePluginCustomRoutes
)
pluginsRouter.use('/plugins/:pluginName/:pluginVersion/router',
getPluginValidator(PluginType.PLUGIN),
+ optionalAuthenticate,
servePluginCustomRoutes
)
const router = getRouter()
router.get('/ping', (req, res) => res.json({ message: 'pong' }))
+ router.get('/is-authenticated', (req, res) => res.json({ isAuthenticated: res.locals.authenticated }))
+
router.post('/form/post/mirror', (req, res) => {
res.json(req.body)
})
}
})
+ it('Should check if authenticated', async function () {
+ for (const path of basePaths) {
+ const res = await makeGetRequest({
+ url: server.url,
+ path: path + 'is-authenticated',
+ token: server.accessToken,
+ statusCodeExpected: 200
+ })
+
+ expect(res.body.isAuthenticated).to.equal(undefined)
+
+ const secRes = await makeGetRequest({
+ url: server.url,
+ path: path + 'is-authenticated',
+ statusCodeExpected: 200
+ })
+
+ expect(secRes.body.isAuthenticated).to.equal(false)
+ }
+ })
+
it('Should mirror post body', async function () {
const body = {
hello: 'world',