url-rewrite.js 1.83 KB
/**
 * URL 重写(主要用于兼容原来PHP的连接)
 */
const helpers = global.yoho.helpers;

module.exports = () => {
    return (req, res, next) => {
        if (/^\/home\/orders\/paynew/.test(req.url)) {
            // 支付中心,由于微信安全配置限制在 home/orders 路径下,需要转发,误删!!!
            req.url = `/cart${req.url}`;
        }

        if (/^\/coupon\/floor/.test(req.url)) {
            // 领券中心 兼容php的url
            req.url = `/activity${req.url}`;
        }

        if (/^\/shopping\/pay\/aliwapreturn/.test(req.url)) {
            //  兼容php的url
            req.url = `/cart${req.url}`;
        }

        if (/^\/sale/.test(req.url)) {
            // sale 兼容php的url
            res.redirect(301, helpers.urlFormat('/product/sale', req.query, 'default'));
            return;
        }

        if (/^\/help\/limitcodeIntro/.test(req.url)) {
            // 什么是限购码 兼容PHP的url
            req.url = '/service/limitcodeIntro';
        }

        if (/^\/help\/limitcodeColSize/.test(req.url)) {
            // 选择限购码颜色和尺寸 兼容PHP的url
            req.url = '/service/limitcodeColSize';
        }

        if (/^\/help\/limitcodeHelp/.test(req.url)) {
            // 如何获得限购码 兼容PHP的url
            req.url = '/service/limitcodeHelp';
        }

        if (/^\/help\/shareorder\.html/.test(req.url)) {
            // 晒单 兼容PHP的url
            req.url = '/service/shareorder';
        }

        if (/^\/index\/systemUpdate/.test(req.url)) {
            // 升级公告 兼容PHP的url
            req.url = '/service/systemUpdate';
        }

        if (/^\/coupon\/couponSend/.test(req.url)) {
            // 获取优惠券 兼容php的url
            req.url = '/activity/couponSend';
        }

        next();
    };
};