截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

OaLogic.php 3.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\wechat;
  20. use app\common\basics\Logic;
  21. use app\common\server\ConfigServer;
  22. use app\common\server\UrlServer;
  23. use app\common\server\WeChatServer;
  24. use EasyWeChat\Factory;
  25. use EasyWeChat\Kernel\Exceptions\Exception;
  26. class OaLogic extends Logic
  27. {
  28. public static function setOa($post)
  29. {
  30. ConfigServer::set('oa','name', trim($post['name']));
  31. ConfigServer::set('oa','original_id', trim($post['original_id']));
  32. ConfigServer::set('oa','app_id',$post['app_id']);
  33. ConfigServer::set('oa','secret',$post['app_secret']);
  34. ConfigServer::set('oa','token',$post['token']);
  35. ConfigServer::set('oa','encoding_ses_key',$post['encoding_ses_key']);
  36. ConfigServer::set('oa','encryption_type',$post['encryption_type']);
  37. ConfigServer::set('oa','qr_code',$post['qr_code']);
  38. }
  39. public static function getOa()
  40. {
  41. $domain_name = $_SERVER['SERVER_NAME'];
  42. $qr_code = ConfigServer::get('oa', 'qr_code', '');
  43. $config = [
  44. 'name' => ConfigServer::get('oa', 'name', ''),
  45. 'original_id' => ConfigServer::get('oa', 'original_id', ''),
  46. 'qr_code' => $qr_code,
  47. 'abs_qr_code' => UrlServer::getFileUrl($qr_code),
  48. 'app_id' => ConfigServer::get('oa', 'app_id', ''),
  49. 'app_secret' => ConfigServer::get('oa', 'secret', ''),
  50. 'url' => url('api/wechat/index',[],'',true),
  51. 'token' => ConfigServer::get('oa', 'token', 'LikeMall'),
  52. 'encoding_ses_key' => ConfigServer::get('oa', 'encoding_ses_key', ''),
  53. 'encryption_type' => ConfigServer::get('oa', 'encryption_type', 1),
  54. 'business_domain' => $domain_name,
  55. 'safety_domain' => $domain_name,
  56. 'auth_domain' => $domain_name,
  57. ];
  58. return $config;
  59. }
  60. /**
  61. * 发布菜单
  62. */
  63. public static function pulishMenu($menu)
  64. {
  65. try {
  66. $config = WeChatServer::getOaConfig();
  67. if(empty($config['app_id']) || empty($config['secret'])){
  68. throw new \think\Exception('请先配置微信公众号参数');
  69. }
  70. $app = Factory::officialAccount($config);
  71. $result = $app->menu->create($menu);
  72. if($result['errcode'] == 0){
  73. ConfigServer::set('menu','wechat_menu',$menu);
  74. return true;
  75. }
  76. self::$error = '菜单发布失败:'.json_encode($result);
  77. return false;
  78. } catch (\think\Exception $e){
  79. self::$error = $e->getError();
  80. return false;
  81. } catch(\Exception $e) {
  82. self::$error = $e->getMessage();
  83. return false;
  84. }
  85. }
  86. }