2016-05-25 20:17:42 +02:00
|
|
|
import {AuthenticationMWs} from "../middlewares/user/AuthenticationMWs";
|
2016-12-27 16:09:47 +01:00
|
|
|
import {UserRoles} from "../../common/entities/UserDTO";
|
2017-07-08 12:43:42 +02:00
|
|
|
import {RenderingMWs} from "../middlewares/RenderingMWs";
|
|
|
|
import {AdminMWs} from "../middlewares/AdminMWs";
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2016-05-09 17:04:56 +02:00
|
|
|
export class AdminRouter {
|
2017-06-10 22:32:56 +02:00
|
|
|
public static route(app: any) {
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
this.addResetDB(app);
|
|
|
|
this.addIndexGallery(app);
|
2017-07-08 12:43:42 +02:00
|
|
|
this.addSettings(app);
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
private static addResetDB(app) {
|
|
|
|
app.post("/api/admin/db/reset",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
private static addIndexGallery(app) {
|
|
|
|
app.post("/api/admin/gallery/index",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2017-07-08 12:43:42 +02:00
|
|
|
private static addSettings(app) {
|
|
|
|
app.get("/api/settings",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
|
|
RenderingMWs.renderConfig
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
app.put("/api/settings/database",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
|
|
AdminMWs.updateDatabaseSettings,
|
|
|
|
RenderingMWs.renderOK
|
|
|
|
);
|
|
|
|
|
|
|
|
app.post("/api/settings/test/database",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
|
|
AdminMWs.testDatabaseSettings,
|
|
|
|
RenderingMWs.renderOK
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|