69 lines
2.1 KiB
JavaScript
69 lines
2.1 KiB
JavaScript
import { Router } from 'express';
|
|
import asyncHandler from 'express-async-handler';
|
|
import { authenticateUser } from '../../../helpers/authentication.js';
|
|
import { authorizeUser } from '../../../helpers/authorization.js';
|
|
import { checkIsEnterprise } from '../../../helpers/check-is-enterprise.js';
|
|
import getAppAction from '../../../controllers/api/v1/apps/get-app.js';
|
|
import getAppsAction from '../../../controllers/api/v1/apps/get-apps.js';
|
|
import getAuthAction from '../../../controllers/api/v1/apps/get-auth.js';
|
|
import getConfigAction from '../../../controllers/api/v1/apps/get-config.ee.js';
|
|
import getAuthClientsAction from '../../../controllers/api/v1/apps/get-auth-clients.ee.js';
|
|
import getTriggersAction from '../../../controllers/api/v1/apps/get-triggers.js';
|
|
import getTriggerSubstepsAction from '../../../controllers/api/v1/apps/get-trigger-substeps.js';
|
|
import getActionsAction from '../../../controllers/api/v1/apps/get-actions.js';
|
|
import getActionSubstepsAction from '../../../controllers/api/v1/apps/get-action-substeps.js';
|
|
import getFlowsAction from '../../../controllers/api/v1/apps/get-flows.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', authenticateUser, asyncHandler(getAppsAction));
|
|
router.get('/:appKey', authenticateUser, asyncHandler(getAppAction));
|
|
router.get('/:appKey/auth', authenticateUser, asyncHandler(getAuthAction));
|
|
|
|
router.get(
|
|
'/:appKey/config',
|
|
authenticateUser,
|
|
checkIsEnterprise,
|
|
asyncHandler(getConfigAction)
|
|
);
|
|
|
|
router.get(
|
|
'/:appKey/auth-clients',
|
|
authenticateUser,
|
|
checkIsEnterprise,
|
|
asyncHandler(getAuthClientsAction)
|
|
);
|
|
|
|
router.get(
|
|
'/:appKey/triggers',
|
|
authenticateUser,
|
|
asyncHandler(getTriggersAction)
|
|
);
|
|
|
|
router.get(
|
|
'/:appKey/triggers/:triggerKey/substeps',
|
|
authenticateUser,
|
|
asyncHandler(getTriggerSubstepsAction)
|
|
);
|
|
|
|
router.get(
|
|
'/:appKey/actions',
|
|
authenticateUser,
|
|
asyncHandler(getActionsAction)
|
|
);
|
|
|
|
router.get(
|
|
'/:appKey/actions/:actionKey/substeps',
|
|
authenticateUser,
|
|
asyncHandler(getActionSubstepsAction)
|
|
);
|
|
|
|
router.get(
|
|
'/:appKey/flows',
|
|
authenticateUser,
|
|
authorizeUser,
|
|
asyncHandler(getFlowsAction)
|
|
);
|
|
|
|
export default router;
|