1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
pigallery2/backend/routes/AdminRouter.ts

110 lines
3.1 KiB
TypeScript
Raw Normal View History

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";
2017-07-08 12:43:42 +02:00
import {RenderingMWs} from "../middlewares/RenderingMWs";
import {AdminMWs} from "../middlewares/AdminMWs";
2016-05-09 17:04:56 +02:00
export class AdminRouter {
public static route(app: any) {
this.addIndexGallery(app);
2017-07-08 12:43:42 +02:00
this.addSettings(app);
}
private static addIndexGallery(app) {
2017-07-25 21:09:37 +02:00
app.get("/api/admin/indexes/job/progress",
AuthenticationMWs.authenticate,
2017-07-25 21:09:37 +02:00
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.getIndexingProgress,
RenderingMWs.renderResult
);
app.put("/api/admin/indexes/job",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.startIndexing,
RenderingMWs.renderResult
);
app.delete("/api/admin/indexes/job",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.cancelIndexing,
RenderingMWs.renderResult
);
app.delete("/api/admin/indexes",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.resetIndexes,
RenderingMWs.renderResult
);
};
2017-07-08 12:43:42 +02:00
private static addSettings(app) {
app.get("/api/settings",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
RenderingMWs.renderConfig
);
app.put("/api/settings/database",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.updateDatabaseSettings,
RenderingMWs.renderOK
);
2017-07-15 12:47:11 +02:00
app.put("/api/settings/map",
2017-07-08 12:43:42 +02:00
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
2017-07-15 12:47:11 +02:00
AdminMWs.updateMapSettings,
2017-07-08 12:43:42 +02:00
RenderingMWs.renderOK
);
2017-07-13 23:39:09 +02:00
2017-07-15 12:47:11 +02:00
app.put("/api/settings/authentication",
2017-07-13 23:39:09 +02:00
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
2017-07-15 12:47:11 +02:00
AdminMWs.updateAuthenticationSettings,
2017-07-13 23:39:09 +02:00
RenderingMWs.renderOK
);
2017-07-15 12:47:11 +02:00
app.put("/api/settings/thumbnail",
2017-07-13 23:39:09 +02:00
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
2017-07-15 12:47:11 +02:00
AdminMWs.updateThumbnailSettings,
2017-07-13 23:39:09 +02:00
RenderingMWs.renderOK
);
2017-07-15 14:27:12 +02:00
app.put("/api/settings/search",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.updateSearchSettings,
RenderingMWs.renderOK
);
2017-07-15 15:29:04 +02:00
app.put("/api/settings/share",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.updateShareSettings,
RenderingMWs.renderOK
);
2017-07-15 16:09:48 +02:00
app.put("/api/settings/basic",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.updateBasicSettings,
RenderingMWs.renderOK
);
2017-07-15 16:31:43 +02:00
app.put("/api/settings/other",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.updateOtherSettings,
RenderingMWs.renderOK
);
2017-07-27 23:10:16 +02:00
app.put("/api/settings/indexing",
AuthenticationMWs.authenticate,
AuthenticationMWs.authorise(UserRoles.Admin),
AdminMWs.updateIndexingSettings,
RenderingMWs.renderOK
);
2017-07-15 12:47:11 +02:00
2017-07-08 12:43:42 +02:00
};
}