set-yoho-data.js 2.08 KB
/**
 * 设置 YOHO 数据
 * @author: 赵彪<bill.zhao@yoho.cn>
 * @date: 2016/6/16
 */

'use strict';

const md5 = require('md5');
const _ = require('lodash');
const config = global.yoho.config;

const _getGender = (channel) => {
    switch (channel) {
        case 'boys':
            return '1,3';
        case 'girls':
            return '2,3';
        default:
            return '1,2,3';
    }
};

const CHANNEL = {
    boys: 'boys',
    girls: 'girls',
    kids: 'kids',
    lifestyle: 'lifestyle'
};

const CHANNEL_NUM = {
    boys: 1,
    girls: 2,
    kids: 3,
    lifestyle: 4
};

module.exports = () => {
    return (req, res, next) => {
        let yoho = {
            pageChannel: {}
        };

        const channel = CHANNEL[req.query.channel || req.cookies._Channel] || CHANNEL.boys;

        if (req.query.channel) {
            req.query.channel = channel;
        }

        // 用于头部颜色控制
        yoho.pageChannel[channel] = true;

        // 当前频道设置
        yoho.channel = channel;

        // 当前频道数
        yoho.channelNum = CHANNEL_NUM[channel] || CHANNEL_NUM.boys;

        // 当前性别
        yoho.gender = _getGender(channel);

        yoho.isApp = req.query.app_version || req.query.appVersion;

        // client ip
        yoho.clientIp = (function() {
            let remoteIp = req.get('X-Forwarded-For') || req.get('X-Real-IP') || req.ip;

            if (remoteIp.indexOf(',') > 0) {
                let arr = remoteIp.split(',');

                remoteIp = arr[arr.length - 1];
            }

            return _.trim(remoteIp);
        }());

        // uuid
        yoho.udid = (function() {
            let udid = req.cookies.udid;

            if (!udid) {
                udid = md5(yoho.clientIp);

                if (res && res.cookie) {
                    res.cookie('udid', udid, {
                        domain: config.cookieDomain
                    });
                }
            }

            return udid;
        }());

        Object.assign(res.locals, yoho);
        Object.assign(req.yoho, yoho);
        next();
    };
};