client-service.js 1.9 KB
/**
 * 客服用户端 service
 *
 * @author: liqi <qi.li@yoho.cn>
 * @date: 2016/11/4
 */

'use strict';

const Promise = require('bluebird');
const clientAPI = require('./client-api');

/**
 * 在线客服客服端页面
 * @param { number } type
 * @param { string } encryptedUid
 * @return { Object } 客服设置
 */
const getClientData = (type, encryptedUid) => {
    const logoSize = '136x40';
    const qcSize = '135x135';
    const advSize = '160x335';
    const regExp = /\{width}x\{height}/g;

    let apiMethod = [
        clientAPI.getCsSetting(type),
        clientAPI.getMsgHistory(encryptedUid),
        clientAPI.getLastTenOrders(encryptedUid),
        clientAPI.getQas()
    ];

    return Promise.all(apiMethod)
        .then(res => {
            let csSetting = {};
            let orderList = [];
            let qasList = [];
            let records = [];
            let hasHistory = false;

            if (res[0] && res[0].code === 200) {
                if (res[0].data.config) {
                    csSetting = res[0].data.config;
                    csSetting.qrCode = csSetting.qrCode.replace(regExp, qcSize);
                    csSetting.pcAdImg = csSetting.pcAdImg.replace(regExp, advSize);
                    csSetting.windowLogo = csSetting.windowLogo.replace(regExp, logoSize);
                }
            }

            if (res[1] && res[1].code === 200) {
                records = res[1].data.records;
                hasHistory = records.length > 0;
            }

            if (res[2] && res[2].code === 200) {
                orderList = res[2].data;
            }

            if (res[3] && res[3].code === 200) {
                qasList = res[3].data;
            }

            return {
                csSetting: csSetting,
                hasHistory: hasHistory,
                orders: orderList,
                qas: qasList
            };
        });
};

module.exports = {
    getClientData
};