im-api.js 3.14 KB
'use strict';

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

const ImService = new global.yoho.ApiBase(config.domains.imCs, {
    name: 'im',
    cache: global.yoho.cache,
    useCache: false
});


/**
 *  新建留言信息
 *  path: {host}/leavemessage/saveLeavemessage
 *
 *  @param {int} encryptedUid 加密用户id
 *  @param {int} conversationId 会话id
 *  @param {str} content 留言内容
 */
exports.saveMessage = (uid, encryptedUid, conversationId, content) => {
    let params = {
        uid,
        conversationId,
        content,
        encryptedUid
    };


    return ImService.post('/api/leavemessage/saveLeavemessage', params);
};



/**
 *  查询用户聊天记录
 *  @param {string} encryptedUid 加密用户uid
 *  @param [int] pageSize 每次加载的聊天记录
 *  @param [int] startTime
 *  @param [int] endTime
 */
exports.fetchImHistory = (uid, encryptedUid, endTime, pageSize, startTime) => {
    let params = {
        uid,
        encryptedUid
    };


    _.forEach({startTime, endTime}, (val, key) => {
        val && (params[key] = val);
    });

    return ImService.post('/api/conversationMessage/pageList', params)
        .then(result => {
            return result;
        }, () => {
            return {
                code: 500,
                data: {
                    records: [], totalCount: 0
                }
            };
        });
};

/**
 *  获取用户订单, 默认最近10笔
 *  @param {string} encryptedUid 用户加密uid
 *  @param {init} createTimeBegin 开始时间
 */
exports.fetchOrderList = (uid, encryptedUid, createTimeBegin) => {
    let params = {
        uid,
        encryptedUid,
        imgSize: '90x120',
    };

    _.forEach({createTimeBegin}, (key, val) => {
        val && (params[key] = val);
    });

    return ImService.post('/api/order/queryLastTenOrder', params);
};



/**
 *
新建评价信息
### url
```
{host}/evalute/saveEvalute
```
### 请求参数说明
| 名称             | 类型     | 是否必须 | 描述              |
| -------------- | ------ | ---- | ---------------  |
| conversationId | long   | Y    | 会话id            |
| uid            | int    | Y    | 用户ID            |
|encryptedUid    | String |Y     |加密的用户标识 |
| promoter       | int    | Y    | 评价发起者 1 用户 2 客服 |
| stars          | int    | Y    | 评分星级            |
| reasonIds      | string | N    | 固定原因Id用冒号隔开     |
| reasonMsgs     | string | N    | 固定原因用分号隔开       |
| reasonMsg      | string | N    | 其他原因            |

 */
exports.saveEvalute = (params) => {
    return ImService.post('/api/evalute/saveEvalute', params);
};


/**
 *  获取全球购的订单
 */

exports.queryGlobalOrder = (uid, encryptedUid) => {
    let params = {
        uid,
        encryptedUid
    };

    return ImService.post('/api/order/queryGlobalOrder', params);
};

/**
 * 获取评价原因
 * @param type 客服设置类型
 */
exports.queryReasons = (uid, encryptedUid, type) => {
    let params = {
        uid,
        type,
        encryptedUid
    };

    return ImService.post('/api/evalute/queryReasonBySettingType', params);
};