2016-05-26 02:17:42 +08:00
|
|
|
import {AuthenticationMWs} from "../middlewares/user/AuthenticationMWs";
|
2016-12-27 23:09:47 +08:00
|
|
|
import {UserRoles} from "../../common/entities/UserDTO";
|
2017-07-08 18:43:42 +08:00
|
|
|
import {RenderingMWs} from "../middlewares/RenderingMWs";
|
|
|
|
import {AdminMWs} from "../middlewares/AdminMWs";
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
export class AdminRouter {
|
2017-06-11 04:32:56 +08:00
|
|
|
public static route(app: any) {
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
this.addResetDB(app);
|
|
|
|
this.addIndexGallery(app);
|
2017-07-08 18:43:42 +08:00
|
|
|
this.addSettings(app);
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
private static addResetDB(app) {
|
|
|
|
app.post("/api/admin/db/reset",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
private static addIndexGallery(app) {
|
|
|
|
app.post("/api/admin/gallery/index",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-07-08 18:43:42 +08: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
|
|
|
|
);
|
|
|
|
|
2017-07-15 18:47:11 +08:00
|
|
|
app.put("/api/settings/map",
|
2017-07-08 18:43:42 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
2017-07-15 18:47:11 +08:00
|
|
|
AdminMWs.updateMapSettings,
|
2017-07-08 18:43:42 +08:00
|
|
|
RenderingMWs.renderOK
|
|
|
|
);
|
2017-07-14 05:39:09 +08:00
|
|
|
|
2017-07-15 18:47:11 +08:00
|
|
|
app.put("/api/settings/authentication",
|
2017-07-14 05:39:09 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
2017-07-15 18:47:11 +08:00
|
|
|
AdminMWs.updateAuthenticationSettings,
|
2017-07-14 05:39:09 +08:00
|
|
|
RenderingMWs.renderOK
|
|
|
|
);
|
2017-07-15 18:47:11 +08:00
|
|
|
app.put("/api/settings/thumbnail",
|
2017-07-14 05:39:09 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
2017-07-15 18:47:11 +08:00
|
|
|
AdminMWs.updateThumbnailSettings,
|
2017-07-14 05:39:09 +08:00
|
|
|
RenderingMWs.renderOK
|
|
|
|
);
|
2017-07-15 20:27:12 +08:00
|
|
|
app.put("/api/settings/search",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
|
|
AdminMWs.updateSearchSettings,
|
|
|
|
RenderingMWs.renderOK
|
|
|
|
);
|
2017-07-15 21:29:04 +08:00
|
|
|
app.put("/api/settings/share",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
|
|
AdminMWs.updateShareSettings,
|
|
|
|
RenderingMWs.renderOK
|
|
|
|
);
|
2017-07-15 22:09:48 +08:00
|
|
|
app.put("/api/settings/basic",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
|
|
AdminMWs.updateBasicSettings,
|
|
|
|
RenderingMWs.renderOK
|
|
|
|
);
|
2017-07-15 22:31:43 +08:00
|
|
|
app.put("/api/settings/other",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
|
|
AdminMWs.updateOtherSettings,
|
|
|
|
RenderingMWs.renderOK
|
|
|
|
);
|
2017-07-15 18:47:11 +08:00
|
|
|
|
2017-07-08 18:43:42 +08:00
|
|
|
};
|
|
|
|
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-06-11 04:32:56 +08:00
|
|
|
}
|