mirror of
https://github.com/v2board/v2board.git
synced 2024-11-13 02:59:10 +08:00
update
This commit is contained in:
parent
44e57b7073
commit
0ee67ef270
@ -12,25 +12,40 @@ class TomatoPay {
|
|||||||
$this->key = $key;
|
$this->key = $key;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function alipay ($cny, $type, $trade) {
|
public function alipay ($cny, $trade) {
|
||||||
$params = [
|
$params = [
|
||||||
'mchid' => $this->mchid,
|
'mchid' => $this->mchid,
|
||||||
'account' => $this->account,
|
'account' => $this->account,
|
||||||
'cny' => $cny,
|
'cny' => $cny,
|
||||||
'type' => $type,
|
'type' => '1',
|
||||||
'trade' => $trade
|
'trade' => $trade
|
||||||
];
|
];
|
||||||
$params['signs'] = $this->sign(http_build_query($params));
|
$params['signs'] = $this->sign($params);
|
||||||
return $this->buildHtml('https://b.fanqieui.com/gateways/alipay.php', $params);
|
return $this->buildHtml('https://b.fanqieui.com/gateways/alipay.php', $params);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function sign ($str) {
|
public function wxpay ($cny, $trade) {
|
||||||
return md5($str.$this->key);
|
$params = [
|
||||||
|
'mchid' => $this->mchid,
|
||||||
|
'account' => $this->account,
|
||||||
|
'cny' => $cny,
|
||||||
|
'type' => '1',
|
||||||
|
'trade' => $trade
|
||||||
|
];
|
||||||
|
$params['signs'] = $this->sign($params);
|
||||||
|
return $this->buildHtml('https://b.fanqieui.com/gateways/wxpay.php', $params);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function sign ($params) {
|
||||||
|
$o = '';
|
||||||
|
foreach ($params as $k=>$v){
|
||||||
|
$o.= "$k=".($v)."&";
|
||||||
|
}
|
||||||
|
return md5(substr($o,0,-1).$this->key);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function buildHtml($url, $params, $method = 'post', $target = '_self'){
|
public function buildHtml($url, $params, $method = 'post', $target = '_self'){
|
||||||
|
// return var_dump($params);
|
||||||
// var_dump($params);exit;
|
|
||||||
$html = "<form id='submit' name='submit' action='".$url."' method='$method' target='$target'>";
|
$html = "<form id='submit' name='submit' action='".$url."' method='$method' target='$target'>";
|
||||||
foreach ($params as $key => $value) {
|
foreach ($params as $key => $value) {
|
||||||
$html .= "<input type='hidden' name='$key' value='$value'/>";
|
$html .= "<input type='hidden' name='$key' value='$value'/>";
|
||||||
|
2
public/umi.js
vendored
2
public/umi.js
vendored
File diff suppressed because one or more lines are too long
@ -20,6 +20,6 @@ Route::get('/', function (Request $request) {
|
|||||||
return view('app', [
|
return view('app', [
|
||||||
'title' => config('v2board.app_name', 'V2Board'),
|
'title' => config('v2board.app_name', 'V2Board'),
|
||||||
'theme' => config('v2board.app_theme', 1),
|
'theme' => config('v2board.app_theme', 1),
|
||||||
'verison' => '1.0.2.2'
|
'verison' => '1.0.2.3'
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user