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

PayConfigLogic.php 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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;
  20. use app\common\basics\Logic;
  21. use app\common\model\Pay;
  22. use app\common\server\UrlServer;
  23. /**
  24. * 支付配置 - 逻辑
  25. * Class PayConfigLogic
  26. * @package app\admin\logic
  27. */
  28. class PayConfigLogic extends Logic
  29. {
  30. /**
  31. * Notes: 配置列表
  32. * @author 段誉(2021/5/7 18:15)
  33. * @return array
  34. * @throws \think\db\exception\DataNotFoundException
  35. * @throws \think\db\exception\DbException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. */
  38. public static function lists()
  39. {
  40. $count = Pay::count();
  41. $lists = Pay::withAttr('status', function($value, $data) {
  42. return $value == 1 ? '启用' : '关闭';
  43. })->order('sort')->select();
  44. return ['lists' => $lists, 'count' => $count];
  45. }
  46. /**
  47. * Notes: 详情
  48. * @param $pay_code
  49. * @author 段誉(2021/5/7 18:15)
  50. * @return array|\think\Model|null
  51. * @throws \think\db\exception\DataNotFoundException
  52. * @throws \think\db\exception\DbException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. */
  55. public static function info($pay_code)
  56. {
  57. return Pay::where(['code' => $pay_code])->find();
  58. }
  59. /**
  60. * Notes: 余额
  61. * @param $post
  62. * @author 段誉(2021/5/7 18:15)
  63. * @return Pay
  64. */
  65. public static function editBalance($post)
  66. {
  67. return Pay::where('code', 'balance')->update([
  68. 'short_name' => $post['short_name'],
  69. 'image' => UrlServer::setFileUrl($post['image']) ?? '',
  70. 'status' => $post['status'],
  71. 'sort' => $post['sort'] ?? 0,
  72. ]);
  73. }
  74. /**
  75. * Notes: 微信
  76. * @param $post
  77. * @author 段誉(2021/5/7 18:16)
  78. * @return Pay
  79. */
  80. public static function editWechat($post)
  81. {
  82. $data = [
  83. 'short_name' => $post['short_name'],
  84. 'image' => UrlServer::setFileUrl($post['image']) ?? '',
  85. 'status' => $post['status'],
  86. 'sort' => $post['sort'] ?? 0,
  87. 'config' => [
  88. 'pay_sign_key' => $post['pay_sign_key'],
  89. 'mch_id' => $post['mch_id'],
  90. 'apiclient_cert' => $post['apiclient_cert'],
  91. 'apiclient_key' => $post['apiclient_key']
  92. ]
  93. ];
  94. return Pay::where('code', 'wechat')->update($data);
  95. }
  96. /**
  97. * Notes: 支付宝
  98. * @param $post
  99. * @author 段誉(2021/5/7 18:16)
  100. * @return Pay
  101. */
  102. public static function editAlipay($post)
  103. {
  104. $data = [
  105. 'short_name' => $post['short_name'],
  106. 'image' => UrlServer::setFileUrl($post['image']) ?? '',
  107. 'status' => $post['status'],
  108. 'sort' => $post['sort'] ?? 0,
  109. 'config' => [
  110. // 应用id
  111. 'app_id' => $post['app_id'],
  112. // 应用私钥
  113. 'private_key' => $post['private_key'],
  114. // 接口加密
  115. 'api_type' => $post['api_type'] ?? 'certificate',
  116. // 应用公钥证书
  117. 'app_cert' => $post['app_cert'] ?? '',
  118. // 支付宝公钥
  119. // 'ali_public_key' => $post['ali_public_key'],
  120. // 支付宝公钥证书
  121. 'ali_public_cert' => $post['ali_public_cert'] ?? '',
  122. // 支付宝CA根证书
  123. 'ali_root_cert' => $post['ali_root_cert'] ?? '',
  124. ]
  125. ];
  126. return Pay::where('code', 'alipay')->update($data);
  127. }
  128. static function editHfdgWechat($post)
  129. {
  130. $data = [
  131. 'short_name' => $post['short_name'],
  132. 'image' => UrlServer::setFileUrl($post['image']) ?? '',
  133. 'status' => $post['status'],
  134. 'sort' => $post['sort'] ?? 0,
  135. ];
  136. return Pay::where('code', 'hfdg_wechat')->update($data);
  137. }
  138. static function editHfdgAlipay($post)
  139. {
  140. $data = [
  141. 'short_name' => $post['short_name'],
  142. 'image' => UrlServer::setFileUrl($post['image']) ?? '',
  143. 'status' => $post['status'],
  144. 'sort' => $post['sort'] ?? 0,
  145. ];
  146. return Pay::where('code', 'hfdg_alipay')->update($data);
  147. }
  148. /**
  149. * @notes 线下支付
  150. * @param $post
  151. * @return Pay
  152. * @author ljj
  153. * @date 2024/7/19 下午3:15
  154. */
  155. public static function editOffline($post)
  156. {
  157. return Pay::where('code', 'offline')->update([
  158. 'short_name' => $post['short_name'],
  159. 'image' => UrlServer::setFileUrl($post['image']) ?? '',
  160. 'status' => $post['status'],
  161. 'sort' => $post['sort'] ?? 0,
  162. ]);
  163. }
  164. }