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";
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
export class AdminRouter {
|
2016-12-27 06:36:38 +08:00
|
|
|
constructor(private app: any) {
|
2016-03-20 00:31:42 +08:00
|
|
|
|
|
|
|
this.addResetDB();
|
2016-03-20 02:59:19 +08:00
|
|
|
this.addIndexGallery();
|
2016-03-20 00:31:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private addResetDB() {
|
|
|
|
this.app.post("/api/admin/db/reset",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2016-03-20 02:59:19 +08:00
|
|
|
private addIndexGallery() {
|
2016-03-20 00:31:42 +08:00
|
|
|
this.app.post("/api/admin/gallery/index",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.Admin)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|