123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace App\Payments;
- class EPay {
- public function __construct($config)
- {
- $this->config = $config;
- }
- public function form()
- {
- return [
- 'url' => [
- 'label' => 'URL',
- 'description' => '',
- 'type' => 'input',
- ],
- 'pid' => [
- 'label' => 'PID',
- 'description' => '',
- 'type' => 'input',
- ],
- 'key' => [
- 'label' => 'KEY',
- 'description' => '',
- 'type' => 'input',
- ]
- ];
- }
- public function pay($order)
- {
- $params = [
- 'money' => $order['total_amount'] / 100,
- 'name' => $order['trade_no'],
- 'notify_url' => $order['notify_url'],
- 'return_url' => $order['return_url'],
- 'out_trade_no' => $order['trade_no'],
- 'pid' => $this->config['pid']
- ];
- ksort($params);
- reset($params);
- $str = stripslashes(urldecode(http_build_query($params))) . $this->config['key'];
- $params['sign'] = md5($str);
- $params['sign_type'] = 'MD5';
- return [
- 'type' => 1, // 0:qrcode 1:url
- 'data' => $this->config['url'] . '/submit.php?' . http_build_query($params)
- ];
- }
- public function notify($params)
- {
- $sign = $params['sign'];
- unset($params['sign']);
- unset($params['sign_type']);
- ksort($params);
- reset($params);
- $str = stripslashes(urldecode(http_build_query($params))) . $this->config['key'];
- if ($sign !== md5($str)) {
- return false;
- }
- return [
- 'trade_no' => $params['out_trade_no'],
- 'callback_no' => $params['trade_no']
- ];
- }
- }
|