截流自动化的商城平台
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.

WeChatServer.php 6.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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\common\server;
  20. use app\common\model\Client_;
  21. use app\common\model\Pay;
  22. use think\Exception;
  23. /**
  24. * 微信服务 服务类
  25. * Class WeChatServer
  26. * @package app\common\server
  27. */
  28. class WeChatServer
  29. {
  30. /**
  31. * @notes 获取小程序配置
  32. * @return array
  33. * @author suny
  34. * @date 2021/7/13 6:35 下午
  35. */
  36. public static function getMnpConfig()
  37. {
  38. $config = [
  39. 'app_id' => ConfigServer::get('mnp', 'app_id'),
  40. 'secret' => ConfigServer::get('mnp', 'secret'),
  41. 'mch_id' => ConfigServer::get('mnp', 'mch_id'),
  42. 'key' => ConfigServer::get('mnp', 'key'),
  43. 'response_type' => 'array',
  44. 'log' => [
  45. 'level' => 'debug',
  46. 'file' => app()->getRootPath() . 'runtime/wechat/' . date('Ym') . '/' . date('d') . '.log'
  47. ],
  48. ];
  49. return $config;
  50. }
  51. /**
  52. * @notes 获取微信公众号配置
  53. * @return array
  54. * @author suny
  55. * @date 2021/7/13 6:35 下午
  56. */
  57. public static function getOaConfig()
  58. {
  59. $config = [
  60. 'app_id' => ConfigServer::get('oa', 'app_id'),
  61. 'secret' => ConfigServer::get('oa', 'secret'),
  62. 'mch_id' => ConfigServer::get('oa', 'mch_id'),
  63. 'key' => ConfigServer::get('oa', 'key'),
  64. 'token' => ConfigServer::get('oa', 'token', ''),
  65. 'response_type' => 'array',
  66. 'log' => [
  67. 'level' => 'debug',
  68. 'file' => app()->getRootPath() . 'runtime/wechat/' . date('Ym') . '/' . date('d') . '.log'
  69. ],
  70. ];
  71. return $config;
  72. }
  73. //微信开放平台->web应用
  74. public static function getOpWebConfig()
  75. {
  76. $config = [
  77. 'app_id' => ConfigServer::get('op', 'web_app_id'),
  78. 'secret' => ConfigServer::get('op', 'web_secret'),
  79. ];
  80. return $config;
  81. }
  82. /**
  83. * @notes 获取url
  84. * @param $str
  85. * @return string
  86. * @author suny
  87. * @date 2021/7/13 6:35 下午
  88. */
  89. public static function getUrl($str)
  90. {
  91. return (string)url($str, [], false, true);
  92. }
  93. /**
  94. * @notes 根据不同来源获取支付配置
  95. * @param $order_source
  96. * @return array
  97. * @throws Exception
  98. * @author suny
  99. * @date 2021/7/13 6:36 下午
  100. */
  101. public static function getPayConfigBySource($order_source)
  102. {
  103. $notify_url = '';
  104. switch ($order_source) {
  105. case Client_::mnp:
  106. $notify_url = self::getUrl('pay/notifyMnp');
  107. break;
  108. case Client_::oa:
  109. case Client_::h5:
  110. case Client_::pc:
  111. $notify_url = self::getUrl('pay/notifyOa');
  112. break;
  113. case Client_::android:
  114. case Client_::ios:
  115. $notify_url = self::getUrl('pay/notifyApp');
  116. break;
  117. }
  118. $config = self::getPayConfig($order_source);
  119. if (empty($config) ||
  120. empty($config['key']) ||
  121. empty($config['mch_id']) ||
  122. empty($config['app_id']) ||
  123. empty($config['secret'])
  124. ) {
  125. throw new Exception('请在后台配置好微信支付!');
  126. }
  127. return [
  128. 'config' => $config,
  129. 'notify_url' => $notify_url,
  130. ];
  131. }
  132. //===================================支付配置=======================================================
  133. /**
  134. * @notes 微信支付设置 H5支付 appid 可以是公众号appid
  135. * @param $client
  136. * @return array
  137. * @throws \think\db\exception\DataNotFoundException
  138. * @throws \think\db\exception\DbException
  139. * @throws \think\db\exception\ModelNotFoundException
  140. * @author suny
  141. * @date 2021/7/13 6:36 下午
  142. */
  143. public static function getPayConfig($client)
  144. {
  145. switch ($client) {
  146. case Client_::mnp:
  147. $appid = ConfigServer::get('mnp', 'app_id');
  148. $secret = ConfigServer::get('mnp', 'secret');
  149. break;
  150. case Client_::oa:
  151. case Client_::h5:
  152. case Client_::pc:
  153. $appid = ConfigServer::get('oa', 'app_id');
  154. $secret = ConfigServer::get('oa', 'secret');
  155. break;
  156. case Client_::android:
  157. case Client_::ios:
  158. $appid = ConfigServer::get('op', 'app_id');
  159. $secret = ConfigServer::get('op', 'secret');
  160. break;
  161. default:
  162. $appid = '';
  163. $secret = '';
  164. }
  165. $pay = Pay::where(['code' => 'wechat'])->find()->toArray();
  166. $config = [
  167. 'app_id' => $appid,
  168. 'secret' => $secret,
  169. 'mch_id' => $pay['config']['mch_id'] ?? '',
  170. 'key' => $pay['config']['pay_sign_key'] ?? '',
  171. 'cert_path' => $pay['config']['apiclient_cert'] ?? '',
  172. 'key_path' => $pay['config']['apiclient_key'] ?? '',
  173. 'response_type' => 'array',
  174. 'log' => [
  175. 'level' => 'debug',
  176. 'file' => app()->getRootPath() . 'runtime/wechat/' . date('Ym') . '/' . date('d') . '.log'
  177. ],
  178. ];
  179. if (is_cli()) {
  180. if (!defined('ROOT_PATH')) {
  181. define('ROOT_PATH', __DIR__);
  182. }
  183. $config['cert_path'] = ROOT_PATH . '/public/' . $pay['config']['apiclient_cert'];
  184. $config['key_path'] = ROOT_PATH . '/public/' . $pay['config']['apiclient_key'];
  185. }
  186. return $config;
  187. }
  188. }