|
@@ -21,6 +21,7 @@ use think\Db;
|
|
|
use think\Log;
|
|
|
use think\Validate;
|
|
|
use app\common\model\User as UserModel;
|
|
|
+use app\service\byte_dance\ByteDance;
|
|
|
|
|
|
/**
|
|
|
* 会员接口
|
|
@@ -248,7 +249,7 @@ class User extends Api
|
|
|
* @ApiParams (name=encryptedData,description=encryptedData)
|
|
|
* @ApiParams (name=iv,description=iv)
|
|
|
*/
|
|
|
- public function dy_login(){
|
|
|
+ public function dy_login_bak(){
|
|
|
$data=$this->_validate([
|
|
|
'code'=>['require'],
|
|
|
'encryptedData'=>['require'],
|
|
@@ -278,6 +279,95 @@ class User extends Api
|
|
|
Db::commit();
|
|
|
$this->success(__('Logged in successful'), $data);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 抖音小程序登陆
|
|
|
+ * @ApiParams (name=code,description=code)
|
|
|
+ * @ApiParams (name=encryptedData,description=encryptedData)
|
|
|
+ * @ApiParams (name=iv,description=iv)
|
|
|
+ */
|
|
|
+ public function dy_login(){
|
|
|
+ $data=$this->_validate([
|
|
|
+ 'code'=>['require'],
|
|
|
+ 'encryptedData'=>['require'],
|
|
|
+ 'iv'=>['require'],
|
|
|
+ ]);
|
|
|
+ $appid = $this->request->get('appid');
|
|
|
+ $code2Session = new ByteDanceCode2Session();
|
|
|
+ $byteDanceDecrypt = new ByteDanceDecrypt();
|
|
|
+ if($appid == ByteDance::appIdTwo()){
|
|
|
+ $info = $code2Session->setCodeTwo($data['code'])->getTwo();
|
|
|
+ // echo 123;
|
|
|
+ // exit();
|
|
|
+ $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
|
|
|
+
|
|
|
+ $byteDanceDecrypt->setIv($data['iv']);
|
|
|
+ $byteDanceDecrypt->setSessionKey($info['session_key']);
|
|
|
+ $mobileInfo = $byteDanceDecrypt->get();
|
|
|
+
|
|
|
+ Db::startTrans();
|
|
|
+ $user = UserModel::where('openid', $info['openid'])->find();
|
|
|
+ if ($user) {
|
|
|
+ $this->auth->direct($user['id']);
|
|
|
+ } else {
|
|
|
+ $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
|
|
|
+ 'openid' => $info['openid'],
|
|
|
+ 'unionid' => $info['unionid'],
|
|
|
+ 'avatar' => $mobileInfo['avatarUrl'],
|
|
|
+ 'nickname' => $mobileInfo['nickName'],
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+ Db::commit();
|
|
|
+ $data = ['userinfo' => $this->auth->getUserinfo()];
|
|
|
+ $this->success(__('Logged in successful'), $data);
|
|
|
+ } else if ($appid == ByteDance::appIdThree()){
|
|
|
+ $info = $code2Session->setCodeThree($data['code'])->getThree();
|
|
|
+ // echo 123;
|
|
|
+ // exit();
|
|
|
+ $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
|
|
|
+
|
|
|
+ $byteDanceDecrypt->setIv($data['iv']);
|
|
|
+ $byteDanceDecrypt->setSessionKey($info['session_key']);
|
|
|
+ $mobileInfo = $byteDanceDecrypt->get();
|
|
|
+
|
|
|
+ Db::startTrans();
|
|
|
+ $user = UserModel::where('openid', $info['openid'])->find();
|
|
|
+ if ($user) {
|
|
|
+ $this->auth->direct($user['id']);
|
|
|
+ } else {
|
|
|
+ $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
|
|
|
+ 'openid' => $info['openid'],
|
|
|
+ 'unionid' => $info['unionid'],
|
|
|
+ 'avatar' => $mobileInfo['avatarUrl'],
|
|
|
+ 'nickname' => $mobileInfo['nickName'],
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+ Db::commit();
|
|
|
+ $data = ['userinfo' => $this->auth->getUserinfo()];
|
|
|
+ $this->success(__('Logged in successful'), $data);
|
|
|
+ } else {
|
|
|
+ $info = $code2Session->setCode($data['code'])->get();
|
|
|
+ $byteDanceDecrypt->setEncryptedData($data['encryptedData']);
|
|
|
+ $byteDanceDecrypt->setIv($data['iv']);
|
|
|
+ $byteDanceDecrypt->setSessionKey($info['session_key']);
|
|
|
+ $mobileInfo = $byteDanceDecrypt->get();
|
|
|
+ Db::startTrans();
|
|
|
+ $user = UserModel::where('openid', $info['openid'])->find();
|
|
|
+ if ($user) {
|
|
|
+ $this->auth->direct($user['id']);
|
|
|
+ } else {
|
|
|
+ $this->auth->register(session_create_id(), '', null, $mobileInfo['phoneNumber'] ?? null, [
|
|
|
+ 'openid' => $info['openid'],
|
|
|
+ 'unionid' => $info['unionid'],
|
|
|
+ 'avatar' => $mobileInfo['avatarUrl'],
|
|
|
+ 'nickname' => $mobileInfo['nickName'],
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+ $data = ['userinfo' => $this->auth->getUserinfo()];
|
|
|
+ Db::commit();
|
|
|
+ $this->success(__('Logged in successful'), $data);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
|
* 抖音小程序登陆
|