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";
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2016-05-09 17:04:56 +02:00
|
|
|
export class SharingRouter {
|
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.addGetSharing(app);
|
|
|
|
this.addUpdateSharing(app);
|
|
|
|
}
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
private static addGetSharing(app) {
|
|
|
|
app.get("/api/share/:directory",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.User)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
2016-03-19 17:31:42 +01:00
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
private static addUpdateSharing(app) {
|
|
|
|
app.post("/api/share/:directory",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.User)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
2016-03-19 17:31:42 +01:00
|
|
|
|
|
|
|
|
2017-06-10 22:32:56 +02:00
|
|
|
}
|