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 SharingRouter {
|
2017-06-04 21:25:08 +08:00
|
|
|
public static route(app: any) {
|
2016-03-20 00:31:42 +08:00
|
|
|
|
2017-06-04 21:25:08 +08:00
|
|
|
this.addGetSharing(app);
|
|
|
|
this.addUpdateSharing(app);
|
2016-03-20 00:31:42 +08:00
|
|
|
}
|
|
|
|
|
2017-06-04 21:25:08 +08:00
|
|
|
private static addGetSharing(app) {
|
|
|
|
app.get("/api/share/:directory",
|
2016-03-20 00:31:42 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.User)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2017-06-04 21:25:08 +08:00
|
|
|
private static addUpdateSharing(app) {
|
|
|
|
app.post("/api/share/:directory",
|
2016-03-20 00:31:42 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.User)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|