截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MnpLogic.php 3.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 MnpLogic extends Logic
  27. {
  28. /**
  29. * 获取小程序配置
  30. */
  31. public static function getMnp()
  32. {
  33. $domain_name = $_SERVER['SERVER_NAME'];
  34. $qr_code = ConfigServer::get('mnp', 'qr_code', '');
  35. $config = [
  36. 'name' => ConfigServer::get('mnp', 'name', ''),
  37. 'original_id' => ConfigServer::get('mnp', 'original_id', ''),
  38. 'qr_code' => $qr_code,
  39. 'abs_qr_code' => UrlServer::getFileUrl($qr_code),
  40. 'app_id' => ConfigServer::get('mnp', 'app_id', ''),
  41. 'app_secret' => ConfigServer::get('mnp', 'secret', ''),
  42. 'request_domain' => 'https://'.$domain_name,
  43. 'socket_domain' => 'wss://'.$domain_name,
  44. 'uploadfile_domain' => 'https://'.$domain_name,
  45. 'downloadfile_domain' => 'https://'.$domain_name,
  46. 'udp_domain' => 'udp://'.$domain_name,
  47. 'tcp_domain' => 'tcp://'.$domain_name,
  48. 'business_domain' => $domain_name,
  49. 'url' => url('api/wechat/index',[],'',true),
  50. 'token' => ConfigServer::get('mnp', 'token', 'LikeMall'),
  51. 'encoding_ses_key' => ConfigServer::get('mnp', 'encoding_ses_key', ''),
  52. 'encryption_type' => ConfigServer::get('mnp', 'encryption_type', ''),
  53. 'data_type' => ConfigServer::get('mnp', 'data_type', ''),
  54. // 小程序同步发货开关 1开启 0关闭
  55. 'express_send_sync' => ConfigServer::get('mnp', 'express_send_sync', 1),
  56. ];
  57. return $config;
  58. }
  59. public static function setMnp($post)
  60. {
  61. if($post){
  62. $encryption_type = $post['encryption_type'] ?? '';
  63. $data_type = $post['data_type'] ?? '';
  64. ConfigServer::set('mnp','name',$post['name']);
  65. ConfigServer::set('mnp','original_id',$post['original_id']);
  66. ConfigServer::set('mnp','qr_code', $post['qr_code']);
  67. ConfigServer::set('mnp','app_id',$post['app_id']);
  68. ConfigServer::set('mnp','secret',$post['app_secret']);
  69. ConfigServer::set('mnp','token',$post['token']);
  70. ConfigServer::set('mnp','encoding_ses_key',$post['encoding_ses_key']);
  71. ConfigServer::set('mnp','encryption_type', $encryption_type);
  72. ConfigServer::set('mnp','data_type', $data_type);
  73. ConfigServer::set('mnp','express_send_sync', $post['express_send_sync'] ?? 1);
  74. }
  75. return true;
  76. }
  77. }