68 lines
2.0 KiB
TypeScript
68 lines
2.0 KiB
TypeScript
import {AuthenticationMWs} from '../../middlewares/user/AuthenticationMWs';
|
|
import {UserRoles} from '../../../common/entities/UserDTO';
|
|
import {RenderingMWs} from '../../middlewares/RenderingMWs';
|
|
import {AdminMWs} from '../../middlewares/admin/AdminMWs';
|
|
import {Express} from 'express';
|
|
|
|
export class AdminRouter {
|
|
public static route(app: Express) {
|
|
|
|
this.addGetStatistic(app);
|
|
this.addGetDuplicates(app);
|
|
this.addJobs(app);
|
|
}
|
|
|
|
private static addGetStatistic(app: Express) {
|
|
app.get('/api/admin/statistic',
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
AdminMWs.loadStatistic,
|
|
RenderingMWs.renderResult
|
|
);
|
|
}
|
|
|
|
private static addGetDuplicates(app: Express) {
|
|
app.get('/api/admin/duplicates',
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
AdminMWs.getDuplicates,
|
|
RenderingMWs.renderResult
|
|
);
|
|
}
|
|
|
|
private static addJobs(app: Express) {
|
|
app.get('/api/admin/jobs/available',
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
AdminMWs.getAvailableJobs,
|
|
RenderingMWs.renderResult
|
|
);
|
|
app.get('/api/admin/jobs/scheduled/progress',
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
AdminMWs.getJobProgresses,
|
|
RenderingMWs.renderResult
|
|
);
|
|
app.get('/api/admin/jobs/scheduled/lastRun',
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
AdminMWs.getJobLastRuns,
|
|
RenderingMWs.renderResult
|
|
);
|
|
app.post('/api/admin/jobs/scheduled/:id/start',
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
AdminMWs.startJob,
|
|
RenderingMWs.renderResult
|
|
);
|
|
app.post('/api/admin/jobs/scheduled/:id/stop',
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
AdminMWs.stopJob,
|
|
RenderingMWs.renderResult
|
|
);
|
|
}
|
|
|
|
|
|
}
|