1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- namespace app\api\controller\pay;
- use app\model\Order;
- use app\model\PayDetail;
- use Payment\Common\PayException;
- use support\Db;
- use support\Request;
- use Yansongda\Pay\Exceptions\BusinessException;
- use Yansongda\Pay\Pay;
- class WxpayController
- {
- public function index(Request $request)
- {
- $params = $request->all();
- if (!isset($params['order_id'])) {
- return json_fail('参数异常');
- }
- if (!isset($params['platform'])){
- return json_fail('缺少平台参数');
- }
- $orderId = $params['order_id'];
- $payDetail = PayDetail::where('join_pay_order_id',$orderId)->where('pay_status','WAITING')->first();
- if (!$payDetail) {
- return json_fail('订单异常');
- }
- $payData = [
- 'out_trade_no' => $orderId,
- 'body' => '万悦康养订单',
- 'total_fee' => $payDetail->pay_amount * 100,
- ];
- Db::beginTransaction();
- try {
- $payDetail->pay_prepayid = 'ALIPAY';
- $payDetail->save();
- if ($params['platform'] == 'android'){
- $wxpay = Pay::wechat(config('payment.wxpay'))->app($payData)->getContent();
- }elseif ($params['platform'] == 'WeChat'){
- if (empty($params['openid'])){
- Db::rollBack();
- return json_fail("缺少OpenID 参数");
- }
- $payData['openid'] = $params['openid'];
- $wxpay = Pay::wechat(config('payment.wxpay'))->mp($payData)->getContent();
- }elseif ($params['platform'] == 'mp-weixin'){
- if (empty($params['openid'])){
- Db::rollBack();
- return json_fail("缺少OpenID 参数");
- }
- $payData['openid'] = $params['openid'];
- $wxpay = Pay::wechat(config('payment.wxpay'))->miniapp($payData)->getContent();
- }else{
- throw new PayException("平台参数无效");
- }
- Db::commit();
- return json_success('', json_decode($wxpay, true));
- } catch (\support\exception\BusinessException $e) {
- Db::rollBack();
- return json_fail($e->getMessage());
- } catch (\Exception $e) {
- Db::rollBack();
- dump($e->getMessage());
- return json_fail('下单失败');
- }
- }
- private function getConfig()
- {
- return [
- 'appid' => 'wx089c26eaf96c3d51',
- 'mch_id' => '1680393367',
- 'key' => 'c451cedbab8058e3502a35c6dacf0919',
- 'notify_url' => 'https://api.wanyuewellness.com.cn/api.pay.notify.php',
- 'cert_client' => config_path('cert/wxpay/apiclient_cert.pem'),
- 'cert_key' => config_path('cert/wxpay/apiclient_key.pem'),
- 'log' => [
- 'file' => runtime_path('logs/wechat.log'),
- 'level' => 'info',
- 'type' => 'single',
- 'max_file' => 30,
- ],
- 'http' => [
- 'timeout' => 5.0,
- 'connect_timeout' => 5.0,
-
- ],
- ];
- }
- }
|