Wxapp.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <?php
  2. namespace app\data\controller\api;
  3. use app\data\service\UserService;
  4. use think\admin\Controller;
  5. use think\exception\HttpResponseException;
  6. use think\Response;
  7. use WeMini\Crypt;
  8. use WeMini\Live;
  9. use WeMini\Qrcode;
  10. /**
  11. * 微信小程序入口
  12. * Class Wxapp
  13. * @package app\data\controller\api
  14. */
  15. class Wxapp extends Controller
  16. {
  17. /**
  18. * 接口认证类型
  19. * @var string
  20. */
  21. private $type = UserService::APITYPE_WXAPP;
  22. /**
  23. * 唯一绑定字段
  24. * @var string
  25. */
  26. private $field;
  27. /**
  28. * 小程序配置参数
  29. * @var array
  30. */
  31. private $config;
  32. /**
  33. * 接口服务初始化
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. protected function initialize()
  39. {
  40. $this->config = [
  41. 'appid' => sysconf('data.wxapp_appid'),
  42. 'appsecret' => sysconf('data.wxapp_appkey'),
  43. 'cache_path' => $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . 'wechat',
  44. ];
  45. if (empty(UserService::TYPES[$this->type]['auth'])) {
  46. $this->error("接口类型[{$this->type}]没有定义规则");
  47. } else {
  48. $this->field = UserService::TYPES[$this->type]['auth'];
  49. }
  50. }
  51. /**
  52. * 授权Code换取会话信息
  53. * @throws \think\db\exception\DbException
  54. */
  55. public function session()
  56. {
  57. $input = $this->_vali(['code.require' => '登录凭证code不能为空!']);
  58. [$openid, $unionid, $sessionKey] = $this->_getSessionKey($input['code']);
  59. $map = empty($unionid) ? [$this->field => $openid] : ['unionid' => $unionid];
  60. $data = array_merge($map, [$this->field => $openid, 'session_key' => $sessionKey]);
  61. $this->success('授权换取成功!', UserService::instance()->set($map, $data, $this->type, true));
  62. }
  63. /**
  64. * 小程序数据解密
  65. * @throws HttpResponseException
  66. */
  67. public function decode()
  68. {
  69. try {
  70. $input = $this->_vali([
  71. 'code.default' => '', // code 与 session_key 二选一
  72. 'session_key.default' => '', // code 与 session_key 二选一
  73. 'iv.require' => '解密向量不能为空!',
  74. 'encrypted.require' => '加密内容不能为空!',
  75. ]);
  76. if (empty($input['session_key'])) {
  77. if (empty($input['code'])) $this->error('登录凭证code不能为空!');
  78. [, , $input['session_key']] = $this->_getSessionKey($input['code']);
  79. }
  80. $result = Crypt::instance($this->config)->decode($input['iv'], $input['session_key'], $input['encrypted']);
  81. if (is_array($result) && isset($result['openId']) && isset($result['avatarUrl']) && isset($result['nickName'])) {
  82. $sex = ['未知', '男', '女'][$result['gender']] ?? '未知';
  83. $map = empty($result['unionId']) ? [$this->field => $result['openId']] : ['unionid' => $result['unionId']];
  84. $data = [$this->field => $result['openId'], 'headimg' => $result['avatarUrl'], 'nickname' => $result['nickName'], 'base_sex' => $sex];
  85. $this->success('数据解密成功!', UserService::instance()->set($map, array_merge($map, $data), $this->type, true));
  86. } elseif (is_array($result) && isset($result['phoneNumber'])) {
  87. $this->success('数据解密成功!', $result);
  88. } else {
  89. $this->error('数据处理失败,请稍候再试!');
  90. }
  91. } catch (HttpResponseException $exception) {
  92. throw $exception;
  93. } catch (\Exception $exception) {
  94. $this->error("数据处理失败,{$exception->getMessage()}");
  95. }
  96. }
  97. /**
  98. * 授权CODE换取会话信息
  99. * @param string $code 换取授权CODE
  100. * @return array [openid, sessionkey]
  101. */
  102. private function _getSessionKey(string $code): array
  103. {
  104. try {
  105. $cache = $this->app->cache->get($code, []);
  106. if (isset($cache['openid']) && isset($cache['session_key'])) {
  107. return [$cache['openid'], $cache['unionid'] ?? '', $cache['session_key']];
  108. }
  109. $result = Crypt::instance($this->config)->session($code);
  110. if (isset($result['openid']) && isset($result['session_key'])) {
  111. $this->app->cache->set($code, $result, 3600);
  112. return [$result['openid'], $cache['unionid'] ?? '', $result['session_key']];
  113. } elseif (isset($result['errmsg'])) {
  114. $this->error($result['errmsg']);
  115. } else {
  116. $this->error("授权换取失败,请稍候再试!");
  117. }
  118. } catch (HttpResponseException $exception) {
  119. throw $exception;
  120. } catch (\Exception $exception) {
  121. $this->error("授权换取失败,{$exception->getMessage()}");
  122. }
  123. }
  124. /**
  125. * 获取小程序码
  126. */
  127. public function qrcode(): Response
  128. {
  129. try {
  130. $data = $this->_vali([
  131. 'size.default' => 430,
  132. 'type.default' => 'base64',
  133. 'path.require' => '跳转路径不能为空!',
  134. ]);
  135. $result = Qrcode::instance($this->config)->createMiniPath($data['path'], $data['size']);
  136. if ($data['type'] === 'base64') {
  137. $this->success('生成小程序码成功!', [
  138. 'base64' => 'data:image/png;base64,' . base64_encode($result),
  139. ]);
  140. } else {
  141. return response($result)->contentType('image/png');
  142. }
  143. } catch (HttpResponseException $exception) {
  144. throw $exception;
  145. } catch (\Exception $exception) {
  146. $this->error($exception->getMessage());
  147. }
  148. }
  149. /**
  150. * 获取直播列表
  151. */
  152. public function getLiveList()
  153. {
  154. try {
  155. $data = $this->_vali(['start.default' => 0, 'limit.default' => 10]);
  156. $list = Live::instance($this->config)->getLiveList($data['start'], $data['limit']);
  157. $this->success('获取直播列表成功!', $list);
  158. } catch (HttpResponseException $exception) {
  159. throw $exception;
  160. } catch (\Exception $exception) {
  161. $this->error($exception->getMessage());
  162. }
  163. }
  164. /**
  165. * 获取回放源视频
  166. */
  167. public function getLiveInfo()
  168. {
  169. try {
  170. $data = $this->_vali([
  171. 'start.default' => 0,
  172. 'limit.default' => 10,
  173. 'action.default' => 'get_replay',
  174. 'room_id.require' => '直播间不能为空',
  175. ]);
  176. $result = Live::instance($this->config)->getLiveInfo($data);
  177. $this->success('获取回放视频成功!', $result);
  178. } catch (HttpResponseException $exception) {
  179. throw $exception;
  180. } catch (\Exception $exception) {
  181. $this->error($exception->getMessage());
  182. }
  183. }
  184. }