mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Library;
|
|
|
|
use \Curl\Curl;
|
|
|
|
class MGate
|
|
{
|
|
private $appId;
|
|
private $appSecret;
|
|
private $url;
|
|
|
|
public function __construct($url, $appId, $appSecret)
|
|
{
|
|
$this->appId = $appId;
|
|
$this->appSecret = $appSecret;
|
|
$this->url = $url;
|
|
}
|
|
|
|
public function pay($params)
|
|
{
|
|
ksort($params);
|
|
$str = http_build_query($params) . $this->appSecret;
|
|
$params['sign'] = md5($str);
|
|
$curl = new Curl();
|
|
$curl->post($this->url . '/v1/gateway/fetch', http_build_query($params));
|
|
$result = $curl->response;
|
|
if (!$result) {
|
|
abort(500, '网络异常');
|
|
}
|
|
if ($curl->error) {
|
|
if (isset($result->errors)) {
|
|
$errors = (array)$result->errors;
|
|
abort(500, $errors[array_keys($errors)[0]][0]);
|
|
}
|
|
if (isset($result->message)) {
|
|
abort(500, $result->message);
|
|
}
|
|
abort(500, '未知错误');
|
|
}
|
|
$curl->close();
|
|
if (!isset($result->data->trade_no)) {
|
|
abort(500, '接口请求失败');
|
|
}
|
|
return $result->data->pay_url;
|
|
}
|
|
|
|
public function verify($params)
|
|
{
|
|
$sign = $params['sign'];
|
|
unset($params['sign']);
|
|
ksort($params);
|
|
reset($params);
|
|
$str = http_build_query($params) . $this->appSecret;
|
|
if ($sign !== md5($str)) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
}
|