2019-07-06 18:57:21 +08:00

93 lines
3.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://demo.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | gitee 开源项目https://gitee.com/zoujingli/ThinkAdmin
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\store\controller\api;
use library\Controller;
use think\Db;
use think\exception\HttpResponseException;
/**
* Class Wechat
* @package app\store\controller\api
*/
class Wechat extends Controller
{
/**
* 获取小程序配置
* @return array
*/
private function config()
{
return config('wechat.miniapp');
}
/**
* Code信息换取
*/
public function session()
{
try {
$code = $this->request->post('code');
$result = \We::WeMiniCrypt($this->config())->session($code);
if (isset($result['openid'])) {
data_save('StoreMember', ['openid' => $result['openid']], 'openid');
$result['member'] = Db::name('StoreMember')->where(['openid' => $result['openid']])->find();
$this->success('授权CODE信息换取成功', $result);
} else {
$this->error("[{$result['errcode']}] {$result['errmsg']}");
}
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $exception) {
$this->error("授权CODE信息换取失败{$exception->getMessage()}");
}
}
/**
* 小程序数据解密
*/
public function decode()
{
try {
$iv = $this->request->post('iv');
$session = $this->request->post('session');
$content = $this->request->post('encrypted');
if (empty($session)) {
$code = $this->request->post('code');
$result = \We::WeMiniCrypt($this->config())->session($code);
$session = isset($result['session_key']) ? $result['session_key'] : '';
}
$result = \We::WeMiniCrypt($this->config())->decode($iv, $session, $content);
if ($result !== false && isset($result['openId'])) {
data_save('StoreMember', [
'openid' => $result['openId'],
'headimg' => $result['avatarUrl'],
'nickname' => emoji_encode($result['nickName']),
], 'openid');
$result['member'] = Db::name('StoreMember')->where(['openid' => $result['openId']])->find();
$this->success('小程序加密数据解密成功!', $result);
} else {
$this->error('小程序加密数据解密失败,请稍候再试!');
}
} catch (HttpResponseException $exception) {
throw $exception;
} catch (\Exception $e) {
$this->error("小程序加密数据解密失败,{$e->getMessage()}");
}
}
}