login-by-sms.js 1.8 KB
Newer Older
study夏羽's avatar
study夏羽 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
const {
  getNeedCaptcha,
  verifyCaptcha
} = require('../../lib/utils/captcha')
const {
  verifyMobileCode
} = require('../../lib/utils/verify-code')
const {
  preUnifiedLogin,
  postUnifiedLogin
} = require('../../lib/utils/unified-login')
const {
  CAPTCHA_SCENE,
  SMS_SCENE,
  LOG_TYPE
} = require('../../common/constants')

/**
 * 短信验证码登录
 * @tutorial https://uniapp.dcloud.net.cn/uniCloud/uni-id-pages.html#login-by-sms
 * @param {Object} params
 * @param {String} params.mobile      手机号
 * @param {String} params.code        短信验证码
 * @param {String} params.captcha     图形验证码
 * @param {String} params.inviteCode  邀请码
 * @returns
 */
module.exports = async function (params = {}) {
  const schema = {
    mobile: 'mobile',
    code: 'string',
    captcha: {
      required: false,
      type: 'string'
    },
    inviteCode: {
      required: false,
      type: 'string'
    }
  }
  this.middleware.validate(params, schema)
  const {
    mobile,
    code,
    captcha,
    inviteCode
  } = params

  const needCaptcha = await getNeedCaptcha.call(this, {
    mobile
  })

  if (needCaptcha) {
    await verifyCaptcha.call(this, {
      captcha,
      scene: CAPTCHA_SCENE.LOGIN_BY_SMS
    })
  }

  try {
    await verifyMobileCode({
      mobile,
      code,
      scene: SMS_SCENE.LOGIN_BY_SMS
    })
  } catch (error) {
    console.log(error, {
      mobile,
      code,
      type: SMS_SCENE.LOGIN_BY_SMS
    })
    await this.middleware.uniIdLog({
      success: false,
      data: {
        mobile
      },
      type: LOG_TYPE.LOGIN
    })
    throw error
  }

  const {
    type,
    user
  } = await preUnifiedLogin.call(this, {
    user: {
      mobile
    }
  })
  return postUnifiedLogin.call(this, {
    user,
    extraData: {
      mobile_confirmed: 1
    },
    isThirdParty: false,
    type,
    inviteCode
  })
}