unbind-weixin.js 851 字节
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
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
const {
  preUnBind,
  postUnBind
} = require('../../lib/utils/relate')
const {
  LOG_TYPE, dbCmd
} = require('../../common/constants')
const {
  getWeixinPlatform
} = require('../../lib/utils/weixin')

/**
 * 解绑微信
 * @tutorial https://uniapp.dcloud.net.cn/uniCloud/uni-id-pages.html#unbind-weixin
 * @returns
 */
module.exports = async function () {
  const { uid } = this.authInfo
  const weixinPlatform = getWeixinPlatform.call(this)

  await preUnBind.call(this, {
    uid,
    unBindAccount: {
      wx_openid: {
        [weixinPlatform]: dbCmd.exists(true)
      },
      wx_unionid: dbCmd.exists(true)
    },
    logType: LOG_TYPE.UNBIND_WEIXIN
  })

  return await postUnBind.call(this, {
    uid,
    unBindAccount: {
      wx_openid: dbCmd.remove(),
      wx_unionid: dbCmd.remove()
    },
    logType: LOG_TYPE.UNBIND_WEIXIN
  })
}