q-koa 8.0.0 → 8.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/core/app.js CHANGED
@@ -1764,7 +1764,14 @@ APP.getAppByCtx = (ctx) => {
1764
1764
  controller,
1765
1765
  }
1766
1766
  }
1767
-
1767
+ APP.getUserByCtx = (ctx) => {
1768
+ try {
1769
+ const appName = ctx.router.opts.prefix.substring(1)
1770
+ return ctx.request[`${appName}-user`].id
1771
+ } catch (e) {
1772
+ return 0
1773
+ }
1774
+ }
1768
1775
  APP.getClientTypeByCtx = (ctx) => {
1769
1776
  const typeEnum = {
1770
1777
  1: 'admin',
@@ -80,7 +80,7 @@ exports.mp_getPhone = async (ctx) => {
80
80
  (!exist.mp_user.appid || exist.mp_user.appid === app_id)
81
81
 
82
82
  if (mobileExist) {
83
- throw new Error('系统已存在该手机号')
83
+ return ctx.ERROR('系统已存在该手机号')
84
84
  }
85
85
 
86
86
  const userResult = await app.model.mp_user.findOne({
@@ -90,7 +90,7 @@ exports.mp_getPhone = async (ctx) => {
90
90
  })
91
91
 
92
92
  if (!userResult || !userResult.user_id)
93
- throw new Error('微信获取手机失败,请重试')
93
+ return ctx.ERROR('微信获取手机失败,请重试')
94
94
 
95
95
  await app.model.user.upsert({
96
96
  id: userResult.user_id,
@@ -207,7 +207,7 @@ exports.mp_getPhoneNew = async (ctx) => {
207
207
  (!exist.mp_user.appid || exist.mp_user.appid === app_id)
208
208
 
209
209
  if (mobileExist) {
210
- throw new Error('系统已存在该手机号')
210
+ return ctx.ERROR('系统已存在该手机号')
211
211
  }
212
212
 
213
213
  await app.model.user.upsert({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "q-koa",
3
- "version": "8.0.0",
3
+ "version": "8.0.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {