2016-03-20 00:31:42 +08:00
|
|
|
///<reference path="../../typings/main.d.ts"/>
|
|
|
|
|
|
|
|
import {AuthenticationMWs} from "../middlewares/AuthenticationMWs";
|
|
|
|
import {UserRoles} from "../../common/entities/User";
|
|
|
|
|
2016-05-09 23:04:56 +08:00
|
|
|
export class SharingRouter {
|
2016-03-20 00:31:42 +08:00
|
|
|
constructor(private app) {
|
|
|
|
|
|
|
|
this.addGetSharing();
|
|
|
|
this.addUpdateSharing();
|
|
|
|
}
|
|
|
|
|
|
|
|
private addGetSharing() {
|
|
|
|
this.app.get("/api/share/:directory",
|
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.User)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
private addUpdateSharing() {
|
2016-03-20 17:49:49 +08:00
|
|
|
this.app.post("/api/share/:directory",
|
2016-03-20 00:31:42 +08:00
|
|
|
AuthenticationMWs.authenticate,
|
|
|
|
AuthenticationMWs.authorise(UserRoles.User)
|
|
|
|
//TODO: implement
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|