proxy.js 2.09 KB
/**
 * controller 入口
 * @author: feng.chen<feng.chen@yoho.cn>
 * @date: 2017/04/13
 */
const Api = require('../common/api');
const _ = require('lodash');
const blacklist = require('../common/api-blacklist');
const apiDomain = global.yoho.apiDomain;
const logger = global.yoho.logger;
const apiReg = /^\/Api/;

module.exports = (req, res, next) => {
    let api = new Api();

    api.setContext({
        req,
        res
    });
    if (!apiReg.test(req.path)) {
        return next({
            code: 404
        });
    }
    let apiMap = req.path.replace(apiReg, '').split('/').filter(n => n).join('.');

    if (_.some(blacklist, n => n.toLowerCase() === apiMap.toLowerCase())) {
        logger.error(`proxy [${req.method}] fail`, `${req.path} can't blacklist`);
        return res.status(401).json({
            code: 401,
            message: '无权限访问的接口'
        });
    }

    let apiUrl = _.get(apiDomain, apiMap);

    if (!apiUrl) {
        logger.error(`proxy [${req.method}] fail`, `${req.path} can't find proxy url`);
        return res.status(400).json({
            code: 400,
            message: '无权限访问的接口'
        });
    }
    let userShops = req.user.shops;
    let currentShop = _.find(userShops, shop => shop.id === req.cookies.shopsId);

    if (currentShop) {
        let channel = apiMap.split('.')[0];
        let baseParams;

        if (channel === 'erp') {
            baseParams = {
                pid: req.session.LOGIN_UID,
                platform_id: 2
            };
        } else if (channel === 'platform') {
            baseParams = {
                shopsId: currentShop.shopsId,
                shopId: currentShop.shopsId,
                userId: req.session.LOGIN_UID
            };
        }
        let params = Object.assign(req.query, req.body, baseParams);

        return api.proxy(apiUrl, params, {
            method: req.method.toLowerCase()
        }).on('error', error => {
            next({code: 500, message: error});
        }).pipe(res);
    }
    return res.status(401).json({
        code: 401,
        message: '不存在的店铺'
    });
};