rewrite.js 1.08 KB
/**
 * 路由重写
 * @author: chenfeng<feng.chen@yoho.cn>
 * @date: 2017/2/20
 */
'use strict';

const typeLib = require('../../config/type-lib');
const _ = require('lodash');

const resolve = (req, res, next) => {
    let path = req.params[0],
        params = {
            channel: req.yoho.channel
        };

    if (!path) {
        return next();
    }
    let conditions = path.replace('.html', '').split('-');

    _.each(conditions, condition => {
        if (typeLib.channels[condition]) {
            params.channel = condition;
        } else if (condition.indexOf('_') >= 0) {
            let item = condition.split('_');

            if (item.length === 2) {
                params[item[0]] = item[1];
            }
        } else if (/\d+/.test(condition)) {
            params.id = _.parseInt(condition);
        }
    });
    req.yoho.channel = params.channel;
    res.locals.channel = params.channel;
    res.locals.pageChannel = { [params.channel]: true };
    res.locals.setChannel = true;
    Object.assign(req.query, params);
    next();
};

module.exports = {
    resolve
};