mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
88 lines
2.4 KiB
TypeScript
88 lines
2.4 KiB
TypeScript
///<reference path="../../typings/main.d.ts"/>
|
|
|
|
import {UserMWs} from "../middlewares/UserMWs";
|
|
import {UserRoles} from "../../common/entities/User";
|
|
import {AuthenticationMWs} from "../middlewares/AuthenticationMWs";
|
|
import {UserRequestConstrainsMWs} from "../middlewares/UserRequestConstrainsMWs";
|
|
import {RenderingMWs} from "../middlewares/RenderingMWs";
|
|
|
|
export class UserRouter {
|
|
constructor(private app) {
|
|
this.addLogin();
|
|
this.addGetSessionUser();
|
|
this.addChangePassword();
|
|
|
|
|
|
this.addCreateUser();
|
|
this.addDeleteUser();
|
|
this.addListUsers();
|
|
this.addChangeRole();
|
|
}
|
|
|
|
private addLogin() {
|
|
this.app.post("/api/user/login",
|
|
AuthenticationMWs.inverseAuthenticate,
|
|
AuthenticationMWs.login,
|
|
RenderingMWs.renderSessionUser
|
|
);
|
|
};
|
|
|
|
private addGetSessionUser() {
|
|
this.app.get("/api/user/login",
|
|
AuthenticationMWs.authenticate,
|
|
RenderingMWs.renderSessionUser
|
|
);
|
|
};
|
|
|
|
|
|
private addChangePassword() {
|
|
this.app.post("/api/user/:id/password",
|
|
AuthenticationMWs.authenticate,
|
|
UserRequestConstrainsMWs.forceSelfRequest,
|
|
UserMWs.changePassword,
|
|
RenderingMWs.renderOK
|
|
);
|
|
};
|
|
|
|
|
|
private addCreateUser() {
|
|
this.app.put("/api/user",
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
UserMWs.createUser,
|
|
RenderingMWs.renderOK
|
|
);
|
|
};
|
|
|
|
private addDeleteUser() {
|
|
this.app.delete("/api/user/:id",
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
UserRequestConstrainsMWs.notSelfRequest,
|
|
UserMWs.deleteUser,
|
|
RenderingMWs.renderOK
|
|
);
|
|
};
|
|
|
|
|
|
private addListUsers() {
|
|
this.app.get("/api/user/list",
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
UserMWs.listUsers,
|
|
RenderingMWs.renderResult
|
|
);
|
|
};
|
|
|
|
private addChangeRole() {
|
|
this.app.post("/api/user/:id/role",
|
|
AuthenticationMWs.authenticate,
|
|
AuthenticationMWs.authorise(UserRoles.Admin),
|
|
UserRequestConstrainsMWs.notSelfRequestOr2Admins,
|
|
UserMWs.changeRole,
|
|
RenderingMWs.renderOK
|
|
);
|
|
};
|
|
|
|
|
|
} |