Wechat.php 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller\api;
  15. use library\Controller;
  16. use think\Db;
  17. use think\exception\HttpResponseException;
  18. /**
  19. * Class Wechat
  20. * @package app\store\controller\api
  21. */
  22. class Wechat extends Controller
  23. {
  24. /**
  25. * 获取小程序配置
  26. * @return array
  27. */
  28. private function config()
  29. {
  30. return config('wechat.miniapp');
  31. }
  32. /**
  33. * Code信息换取
  34. */
  35. public function session()
  36. {
  37. try {
  38. $code = $this->request->post('code');
  39. $result = \We::WeMiniCrypt($this->config())->session($code);
  40. if (isset($result['openid'])) {
  41. data_save('StoreMember', ['openid' => $result['openid']], 'openid');
  42. $result['member'] = Db::name('StoreMember')->where(['openid' => $result['openid']])->find();
  43. $this->success('授权CODE信息换取成功!', $result);
  44. } else {
  45. $this->error("[{$result['errcode']}] {$result['errmsg']}");
  46. }
  47. } catch (HttpResponseException $exception) {
  48. throw $exception;
  49. } catch (\Exception $exception) {
  50. $this->error("授权CODE信息换取失败,{$exception->getMessage()}");
  51. }
  52. }
  53. /**
  54. * 小程序数据解密
  55. */
  56. public function decode()
  57. {
  58. try {
  59. $iv = $this->request->post('iv');
  60. $session = $this->request->post('session');
  61. $content = $this->request->post('encrypted');
  62. if (empty($session)) {
  63. $code = $this->request->post('code');
  64. $result = \We::WeMiniCrypt($this->config())->session($code);
  65. $session = isset($result['session_key']) ? $result['session_key'] : '';
  66. }
  67. $result = \We::WeMiniCrypt($this->config())->decode($iv, $session, $content);
  68. if ($result !== false && isset($result['openId'])) {
  69. data_save('StoreMember', [
  70. 'openid' => $result['openId'],
  71. 'headimg' => $result['avatarUrl'],
  72. 'nickname' => emoji_encode($result['nickName']),
  73. ], 'openid');
  74. $result['member'] = Db::name('StoreMember')->where(['openid' => $result['openId']])->find();
  75. $this->success('小程序加密数据解密成功!', $result);
  76. } else {
  77. $this->error('小程序加密数据解密失败,请稍候再试!');
  78. }
  79. } catch (HttpResponseException $exception) {
  80. throw $exception;
  81. } catch (\Exception $e) {
  82. $this->error("小程序加密数据解密失败,{$e->getMessage()}");
  83. }
  84. }
  85. }