Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
goods
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bp
goods
Commits
5d9eba2c
Commit
5d9eba2c
authored
Sep 03, 2021
by
强海明
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'jiang_fix_20210902' into 'master'
Jiang fix 20210902 See merge request bp/goods!29
parents
81cf91df
1ed32725
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
15 deletions
+44
-15
UserException.php
application/exception/custom/UserException.php
+2
-0
UserService.php
application/services/user/UserService.php
+42
-15
No files found.
application/exception/custom/UserException.php
View file @
5d9eba2c
...
@@ -23,5 +23,7 @@ class UserException extends BaseException
...
@@ -23,5 +23,7 @@ class UserException extends BaseException
9
=>
'该手机号已绑定其他用户不能重复绑定'
,
9
=>
'该手机号已绑定其他用户不能重复绑定'
,
10
=>
'mysql 异常'
,
10
=>
'mysql 异常'
,
11
=>
'头像昵称更新失败'
,
11
=>
'头像昵称更新失败'
,
12
=>
'绑定手机号保存失败'
,
13
=>
'请求太频繁,稍后重试'
,
];
];
}
}
\ No newline at end of file
application/services/user/UserService.php
View file @
5d9eba2c
...
@@ -14,6 +14,8 @@ use Api\PhpServices\Idgen\Idgen;
...
@@ -14,6 +14,8 @@ use Api\PhpServices\Idgen\Idgen;
use
Api\PhpUtils\Redis\RedisUtil
;
use
Api\PhpUtils\Redis\RedisUtil
;
use
Api\PhpServices\JwUser\JwUser
;
use
Api\PhpServices\JwUser\JwUser
;
use
App\Services\common\CommonService
;
use
App\Services\common\CommonService
;
use
Api\PhpUtils\Log\FileLog
;
use
Api\PhpUtils\Lock\FrequencyLockUtil
;
class
UserService
class
UserService
{
{
...
@@ -23,12 +25,21 @@ class UserService
...
@@ -23,12 +25,21 @@ class UserService
public
static
function
wechatLogin
(
$params
)
public
static
function
wechatLogin
(
$params
)
{
{
$code
=
!
empty
(
$params
[
'code'
])
?
$params
[
'code'
]
:
''
;
//小程序授权code
$code
=
!
empty
(
$params
[
'code'
])
?
$params
[
'code'
]
:
''
;
//小程序授权code
$openid
=
!
empty
(
$params
[
'openid'
])
?
$params
[
'openid'
]
:
''
;
//小程序授权code
$openid
=
!
empty
(
$params
[
'openid'
])
?
$params
[
'openid'
]
:
''
;
//小程序授权code
if
(
empty
(
$code
)
&&
empty
(
$openid
))
{
if
(
empty
(
$code
)
&&
empty
(
$openid
))
{
FileLog
::
error
(
"wechatLogin:获取参数为空"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
0
]);
throw
new
UserException
([
'cus'
=>
0
]);
}
}
//频率锁
$key
=
"wx_wechat_login"
.
$params
[
'code'
];
$lock
=
FrequencyLockUtil
::
isLocked
(
$key
);
if
(
$lock
)
{
FileLog
::
error
(
"wechatLogin:请求频繁"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
13
]);
}
//需要授权微信
//需要授权微信
//if (empty($openid)) {
//if (empty($openid)) {
...
@@ -51,6 +62,7 @@ class UserService
...
@@ -51,6 +62,7 @@ class UserService
if
(
empty
(
$response
)
||
array_key_exists
(
'errcode'
,
$response
))
{
if
(
empty
(
$response
)
||
array_key_exists
(
'errcode'
,
$response
))
{
//throw new \Exception('获取openid失败:' . $response['errcode']);
//throw new \Exception('获取openid失败:' . $response['errcode']);
FileLog
::
error
(
"wechatLogin:获取openid失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
1
]);
throw
new
UserException
([
'cus'
=>
1
]);
}
}
//检查系统是已注册
//检查系统是已注册
...
@@ -68,8 +80,13 @@ class UserService
...
@@ -68,8 +80,13 @@ class UserService
'create_time'
=>
date
(
"Y-m-d H:i:s"
)
'create_time'
=>
date
(
"Y-m-d H:i:s"
)
];
];
$newWechatId
=
UserWechatBind
::
save
(
$insert
);
$sessionKey
=
!
empty
(
$response
[
'session_key'
])
?
$response
[
'session_key'
]
:
''
;
//$newWechatId = UserWechatBind::save($insert);
$newWechatId
=
UserWechatBind
::
insertDuplicate
(
$insert
,
[
'session_key'
=>
$sessionKey
,
'create_time'
=>
date
(
"Y-m-d H:i:s"
)]);
if
(
!
$newWechatId
)
{
if
(
!
$newWechatId
)
{
FileLog
::
error
(
"wechatLogin:登陆创建用户失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
FileLog
::
error
(
"wechatLogin:登陆创建用户失败--insert"
,
json_encode
(
$insert
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
2
]);
throw
new
UserException
([
'cus'
=>
2
]);
}
}
...
@@ -78,13 +95,17 @@ class UserService
...
@@ -78,13 +95,17 @@ class UserService
$user
[
'session_key'
]
=
$response
[
'session_key'
];
$user
[
'session_key'
]
=
$response
[
'session_key'
];
}
else
{
}
else
{
if
(
empty
(
$user
))
{
if
(
empty
(
$user
))
{
FileLog
::
error
(
"wechatLogin:登陆创建用户失败-- 微信response"
,
json_encode
(
$response
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
2
]);
throw
new
UserException
([
'cus'
=>
2
]);
}
}
if
(
empty
(
$response
)){
FileLog
::
error
(
"wechatLogin:登陆创建用户失败-- 微信response 获取失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
2
]);
}
$insert
=
[
$insert
=
[
'session_key'
=>
!
empty
(
$response
[
'session_key'
])
?
$response
[
'session_key'
]
:
''
,
'session_key'
=>
!
empty
(
$response
[
'session_key'
])
?
$response
[
'session_key'
]
:
''
,
];
];
$newWechatId
=
UserWechatBind
::
save
(
$insert
,[
'openid'
=>
$openid
]);
$newWechatId
=
UserWechatBind
::
save
(
$insert
,[
'openid'
=>
$openid
]);
}
}
...
@@ -102,47 +123,47 @@ class UserService
...
@@ -102,47 +123,47 @@ class UserService
$appid
=
\Yaf\Registry
::
get
(
'config'
)
->
wechat
->
appid
;
$appid
=
\Yaf\Registry
::
get
(
'config'
)
->
wechat
->
appid
;
if
(
!
$encryptedData
)
{
if
(
!
$encryptedData
)
{
FileLog
::
error
(
"bindPhone:encryptedData 为空"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
3
]);
throw
new
UserException
([
'cus'
=>
3
]);
}
}
if
(
!
$iv
)
{
if
(
!
$iv
)
{
FileLog
::
error
(
"bindPhone:iv 为空"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
4
]);
throw
new
UserException
([
'cus'
=>
4
]);
}
}
$userInfo
=
UserWechatBind
::
getRecord
([
'openid'
=>
$openid
]);
$userInfo
=
UserWechatBind
::
getRecord
Master
([
'openid'
=>
$openid
]);
$sessionKey
=
!
empty
(
$userInfo
[
'session_key'
])
?
$userInfo
[
'session_key'
]
:
''
;
$sessionKey
=
!
empty
(
$userInfo
[
'session_key'
])
?
$userInfo
[
'session_key'
]
:
''
;
$openid
=
isset
(
$userInfo
[
'openid'
])
&&
$userInfo
[
'openid'
]
?
$userInfo
[
'openid'
]
:
''
;
$openid
=
isset
(
$userInfo
[
'openid'
])
&&
$userInfo
[
'openid'
]
?
$userInfo
[
'openid'
]
:
''
;
if
(
empty
(
$userInfo
)
||
!
$sessionKey
||
!
$openid
)
{
if
(
empty
(
$userInfo
)
||
!
$sessionKey
||
!
$openid
)
{
FileLog
::
error
(
"bindPhone:userInfo获取失败"
,
json_encode
(
$userInfo
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
5
]);
throw
new
UserException
([
'cus'
=>
5
]);
}
}
//解密
//解密
$decryptData
=
[];
$decryptData
=
[];
$wXBizDataCrypt
=
new
WxBizDataCrypt
(
$appid
,
$sessionKey
);
$wXBizDataCrypt
=
new
WxBizDataCrypt
(
$appid
,
$sessionKey
);
$errCode
=
$wXBizDataCrypt
->
decryptData
(
$encryptedData
,
$iv
,
$decryptData
);
$errCode
=
$wXBizDataCrypt
->
decryptData
(
$encryptedData
,
$iv
,
$decryptData
);
if
(
$errCode
)
{
if
(
$errCode
)
{
FileLog
::
error
(
"bindPhone:解密失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
6
]);
throw
new
UserException
([
'cus'
=>
6
]);
}
}
// 手机号解密
成功
// 手机号解密
失败
if
(
empty
(
$decryptData
[
'phoneNumber'
]))
{
if
(
empty
(
$decryptData
[
'phoneNumber'
]))
{
FileLog
::
error
(
"bindPhone:手机号解密失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
FileLog
::
error
(
"bindPhone:手机号解密失败--decryptData"
,
json_encode
(
$decryptData
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
7
]);
throw
new
UserException
([
'cus'
=>
7
]);
}
}
$phoneNumber
=
strval
(
$decryptData
[
'phoneNumber'
]);
$phoneNumber
=
strval
(
$decryptData
[
'phoneNumber'
]);
//判断是否已
//判断是否已
$user
=
UserWechatBind
::
getRecord
([
'phone'
=>
$phoneNumber
]);
$user
=
UserWechatBind
::
getRecord
Master
([
'phone'
=>
$phoneNumber
]);
if
(
!
empty
(
$user
)
&&
$openid
!=
$user
[
'openid'
])
{
if
(
!
empty
(
$user
)
&&
$openid
!=
$user
[
'openid'
])
{
FileLog
::
error
(
"bindPhone:该手机号已绑定其他用户不能重复绑定"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
FileLog
::
error
(
"bindPhone:该手机号已绑定其他用户不能重复绑定--user"
,
json_encode
(
$user
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
9
]);
throw
new
UserException
([
'cus'
=>
9
]);
}
}
...
@@ -160,12 +181,16 @@ class UserService
...
@@ -160,12 +181,16 @@ class UserService
];
];
$bindStatus
=
UserWechatBind
::
save
(
$update
,[
'wechat_id'
=>
$userInfo
[
'wechat_id'
]]);
$bindStatus
=
UserWechatBind
::
save
(
$update
,[
'wechat_id'
=>
$userInfo
[
'wechat_id'
]]);
if
(
empty
(
$bindStatus
)){
FileLog
::
error
(
"bindPhone:绑定手机号保存失败"
,
json_encode
(
$update
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
12
]);
}
if
(
!
$phoneNumber
)
{
if
(
!
$phoneNumber
)
{
FileLog
::
error
(
"bindPhone:该手机号已绑定其他用户不能重复绑定--user"
,
json_encode
(
$user
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
8
]);
throw
new
UserException
([
'cus'
=>
8
]);
}
}
CommonService
::
isNewUser
(
$params
);
$isNewUser
=
CommonService
::
isNewUser
([
'openid'
=>
$openid
]);
$isNewUser
=
CommonService
::
isNewUser
([
'openid'
=>
$openid
]);
if
(
!
empty
(
$isNewUser
)
&&
$isNewUser
[
'is_new_user'
]
==
1
)
{
if
(
!
empty
(
$isNewUser
)
&&
$isNewUser
[
'is_new_user'
]
==
1
)
{
$userInfo
[
'is_pop_up'
]
=
1
;
$userInfo
[
'is_pop_up'
]
=
1
;
...
@@ -219,6 +244,8 @@ class UserService
...
@@ -219,6 +244,8 @@ class UserService
$bindStatus
=
UserWechatBind
::
save
(
$update
,[
'openid'
=>
$params
[
'openid'
]]);
$bindStatus
=
UserWechatBind
::
save
(
$update
,[
'openid'
=>
$params
[
'openid'
]]);
}
}
if
(
!
$bindStatus
)
{
if
(
!
$bindStatus
)
{
FileLog
::
error
(
"bindAvatar:绑定头像失败"
,
json_encode
(
$params
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
FileLog
::
error
(
"bindAvatar:绑定头像失败--update"
,
json_encode
(
$update
,
JSON_UNESCAPED_UNICODE
),
''
,
'jianghaiming@yidian-inc.com'
);
throw
new
UserException
([
'cus'
=>
11
]);
throw
new
UserException
([
'cus'
=>
11
]);
}
}
return
$update
;
return
$update
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment