1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/routes/PublicRouter.ts

37 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-05-09 23:04:56 +08:00
import * as _express from "express";
import {NextFunction, Request, Response} from "express";
2016-05-09 23:04:56 +08:00
import * as _path from "path";
import {Utils} from "../../common/Utils";
2017-06-04 21:25:08 +08:00
import {Config} from "../../common/config/private/Config";
2016-05-09 23:04:56 +08:00
export class PublicRouter {
2017-06-04 21:25:08 +08:00
public static route(app) {
app.use((req: Request, res: Response, next: NextFunction) => {
res.tpl = {};
res.tpl.user = null;
2016-05-09 23:04:56 +08:00
if (req.session.user) {
let user = Utils.clone(req.session.user);
delete user.password;
res.tpl.user = user;
}
res.tpl.clientConfig = Config.Client;
return next();
});
2016-05-09 23:04:56 +08:00
2017-06-04 21:25:08 +08:00
app.use(_express.static(_path.resolve(__dirname, './../../frontend')));
app.use('/node_modules', _express.static(_path.resolve(__dirname, './../../node_modules')));
app.use('/common', _express.static(_path.resolve(__dirname, './../../common')));
2016-12-27 06:36:38 +08:00
const renderIndex = (req: Request, res: Response) => {
2016-05-09 23:04:56 +08:00
res.render(_path.resolve(__dirname, './../../frontend/index.ejs'), res.tpl);
};
2016-05-09 23:04:56 +08:00
2017-06-04 21:25:08 +08:00
app.get(['/', '/login', "/gallery*", "/admin", "/search*"], renderIndex);
2016-03-19 04:36:58 +08:00
}
2016-05-09 23:04:56 +08:00
2016-03-19 04:36:58 +08:00
}