user-api.js 1.13 KB
/**
 * Created by TaoHuang on 2016/6/17.
 */
'use strict';

const library = '../../../library';
var API = require('../../../library/api').API;
const sign = require(`${library}/sign`);
const _ = require('lodash');

var api = new API();

const EMPTY = {};

/**
 * 根据手机号获取用户信息
 */
module.exports.findByMobileAsync = (area, mobile) => {
    return api.get('', sign.apiSign({
        mobile: mobile,
        area: area,
        method: 'app.passport.getProfileByMobile'
    })).then(result => {
        if (!result.code || result.code !== 200 || !result.data || _.isEmpty(result.data)) {
            return EMPTY;
        }

        return result.data;

    }).catch(() => {
        return EMPTY;
    });
};

/**
 * 根据邮箱获取用户信息
 */
module.exports.findByEmailAsync = (email) => {
    return api.get('', sign.apiSign({
        email: email,
        method: 'app.passport.getProfileByEmail'
    })).then(result => {
        if (!result.code || result.code !== 200 || !result.data || _.isEmpty(result.data)) {
            return EMPTY;
        }

        return result.data;

    }).catch(() => {
        return EMPTY;
    });
};