reg-api.js 1011 Bytes
/**
 * Created by TaoHuang on 2016/10/21.
 */

/**
 * 注册 model
 */
'use strict';
const aes = require('./aes-pwd');
const api = global.yoho.API;

let sendCodeToMobile = (area, mobile) => {
    let params = {
        method: 'app.register.sendRegCodeToMobile',
        area: area,
        mobile: mobile
    };

    return api.post('', params);
};

let validMobileCode = (area, mobile, code) => {
    let params = {
        method: 'app.register.validRegCode',
        area: area,
        mobile: mobile,
        code: code
    };

    return api.post('', params);
};

let regMobileAes = (area, mobile, password, code, shoppingKey)=> {
    let params = {
        method: 'app.passport.registerAES',
        area: area,
        profile: mobile,
        password: aes.aesPwd(password),
        verifyCode: code
    };

    if (shoppingKey) {
        params.shopping_key = shoppingKey;
    }

    return api.post('', params);
};

module.exports = {
    sendCodeToMobile,
    validMobileCode,
    regMobileAes
};