brand-service.js 855 Bytes
/**
 * Created by TaoHuang on 2016/6/14.
 */
'use strict';

const Promise = require('bluebird');
const co = Promise.coroutine;
const api = require('./brand-api');
const camelCase = global.yoho.camelCase;

const getBrandByDomainAsync = domain => {
    return co(function*() {
        let brandInfo = yield api.getBrandLogoByDomainAsync(domain);

        if (!brandInfo.data || brandInfo.code !== 200) {
            return {};
        }

        return camelCase(brandInfo.data);
    })();
};

const getBannerInfoAsync = bid => {
    return co(function*() {
        let brandInfo = yield api.getBannerInfoAsync(bid);

        if (!brandInfo.data || brandInfo.code !== 200) {
            return {};
        }

        return camelCase(brandInfo.data);
    })();
};

module.exports = {
    getBrandByDomainAsync,
    getBannerInfoAsync: getBannerInfoAsync
};