增加docke部署
This commit is contained in:
@@ -0,0 +1,197 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* 后台应答类
|
||||
* ============================================================================
|
||||
* api说明:
|
||||
* getKey()/setKey(),获取/设置密钥
|
||||
* getContent() / setContent(), 获取/设置原始内容
|
||||
* getParameter()/setParameter(),获取/设置参数值
|
||||
* getAllParameters(),获取所有参数
|
||||
* isTenpaySign(),是否威富通签名,true:是 false:否
|
||||
* getDebugInfo(),获取debug信息
|
||||
*
|
||||
* ============================================================================
|
||||
*
|
||||
*/
|
||||
|
||||
class ClientResponseHandler {
|
||||
|
||||
/** 密钥 */
|
||||
var $key;
|
||||
|
||||
/** 应答的参数 */
|
||||
var $parameters;
|
||||
|
||||
/** debug信息 */
|
||||
var $debugInfo;
|
||||
|
||||
//原始内容
|
||||
var $content;
|
||||
|
||||
function __construct() {
|
||||
$this->ClientResponseHandler();
|
||||
}
|
||||
|
||||
function ClientResponseHandler() {
|
||||
$this->key = "";
|
||||
$this->parameters = array();
|
||||
$this->debugInfo = "";
|
||||
$this->content = "";
|
||||
}
|
||||
|
||||
/**
|
||||
*获取密钥
|
||||
*/
|
||||
function getKey() {
|
||||
return $this->key;
|
||||
}
|
||||
|
||||
/**
|
||||
*设置密钥
|
||||
*/
|
||||
function setKey($key) {
|
||||
$this->key = $key;
|
||||
}
|
||||
|
||||
//设置原始内容
|
||||
function setContent($content) {
|
||||
$this->content = $content;
|
||||
|
||||
$xml = simplexml_load_string($this->content);
|
||||
$encode = $this->getXmlEncode($this->content);
|
||||
|
||||
if($xml && $xml->children()) {
|
||||
foreach ($xml->children() as $node){
|
||||
//有子节点
|
||||
if($node->children()) {
|
||||
$k = $node->getName();
|
||||
$nodeXml = $node->asXML();
|
||||
$v = substr($nodeXml, strlen($k)+2, strlen($nodeXml)-2*strlen($k)-5);
|
||||
|
||||
} else {
|
||||
$k = $node->getName();
|
||||
$v = (string)$node;
|
||||
}
|
||||
|
||||
if($encode!="" && $encode != "UTF-8") {
|
||||
$k = iconv("UTF-8", $encode, $k);
|
||||
$v = iconv("UTF-8", $encode, $v);
|
||||
}
|
||||
|
||||
$this->setParameter($k, $v);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//获取原始内容
|
||||
function getContent() {
|
||||
return $this->content;
|
||||
}
|
||||
|
||||
/**
|
||||
*获取参数值
|
||||
*/
|
||||
function getParameter($parameter) {
|
||||
return isset($this->parameters[$parameter])?$this->parameters[$parameter] : '';
|
||||
}
|
||||
|
||||
/**
|
||||
*设置参数值
|
||||
*/
|
||||
function setParameter($parameter, $parameterValue) {
|
||||
$this->parameters[$parameter] = $parameterValue;
|
||||
}
|
||||
|
||||
/**
|
||||
*获取所有请求的参数
|
||||
*@return array
|
||||
*/
|
||||
function getAllParameters() {
|
||||
return $this->parameters;
|
||||
}
|
||||
|
||||
/**
|
||||
*是否威富通签名,规则是:按参数名称a-z排序,遇到空值的参数不参加签名。
|
||||
*true:是
|
||||
*false:否
|
||||
*/
|
||||
function isTenpaySign() {
|
||||
$signPars = "";
|
||||
ksort($this->parameters);
|
||||
foreach($this->parameters as $k => $v) {
|
||||
if("sign" != $k && "" != $v) {
|
||||
$signPars .= $k . "=" . $v . "&";
|
||||
}
|
||||
}
|
||||
$signPars .= "key=" . $this->getKey();
|
||||
|
||||
$sign = strtolower(md5($signPars));
|
||||
|
||||
$tenpaySign = strtolower($this->getParameter("sign"));
|
||||
|
||||
//debug信息
|
||||
$this->_setDebugInfo($signPars . " => sign:" . $sign .
|
||||
" tenpaySign:" . $this->getParameter("sign"));
|
||||
|
||||
return $sign == $tenpaySign;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
*获取debug信息
|
||||
*/
|
||||
function getDebugInfo() {
|
||||
return $this->debugInfo;
|
||||
}
|
||||
|
||||
//获取xml编码
|
||||
function getXmlEncode($xml) {
|
||||
$ret = preg_match ("/<?xml[^>]* encoding=\"(.*)\"[^>]* ?>/i", $xml, $arr);
|
||||
if($ret) {
|
||||
return strtoupper ( $arr[1] );
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
*设置debug信息
|
||||
*/
|
||||
function _setDebugInfo($debugInfo) {
|
||||
$this->debugInfo = $debugInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* 是否财付通签名
|
||||
* @param signParameterArray 签名的参数数组
|
||||
* @return boolean
|
||||
*/
|
||||
function _isTenpaySign($signParameterArray) {
|
||||
|
||||
$signPars = "";
|
||||
foreach($signParameterArray as $k) {
|
||||
$v = $this->getParameter($k);
|
||||
if("sign" != $k && "" != $v) {
|
||||
$signPars .= $k . "=" . $v . "&";
|
||||
}
|
||||
}
|
||||
$signPars .= "key=" . $this->getKey();
|
||||
|
||||
$sign = strtolower(md5($signPars));
|
||||
|
||||
$tenpaySign = strtolower($this->getParameter("sign"));
|
||||
|
||||
//debug信息
|
||||
$this->_setDebugInfo($signPars . " => sign:" . $sign .
|
||||
" tenpaySign:" . $this->getParameter("sign"));
|
||||
|
||||
return $sign == $tenpaySign;
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
?>
|
||||
@@ -0,0 +1,118 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* http、https通信类
|
||||
* ============================================================================
|
||||
* api说明:
|
||||
* setReqContent($reqContent),设置请求内容,无论post和get,都用get方式提供
|
||||
* getResContent(), 获取应答内容
|
||||
* setMethod($method),设置请求方法,post或者get
|
||||
* getErrInfo(),获取错误信息
|
||||
* setCertInfo($certFile, $certPasswd, $certType="PEM"),设置证书,双向https时需要使用
|
||||
* setCaInfo($caFile), 设置CA,格式未pem,不设置则不检查
|
||||
* setTimeOut($timeOut), 设置超时时间,单位秒
|
||||
* getResponseCode(), 取返回的http状态码
|
||||
* call(),真正调用接口
|
||||
*
|
||||
* ============================================================================
|
||||
*
|
||||
*/
|
||||
|
||||
class PayHttpClient {
|
||||
//请求内容,无论post和get,都用get方式提供
|
||||
var $reqContent = array();
|
||||
//应答内容
|
||||
var $resContent;
|
||||
|
||||
//错误信息
|
||||
var $errInfo;
|
||||
|
||||
//超时时间
|
||||
var $timeOut;
|
||||
|
||||
//http状态码
|
||||
var $responseCode;
|
||||
|
||||
function __construct() {
|
||||
$this->PayHttpClient();
|
||||
}
|
||||
|
||||
|
||||
function PayHttpClient() {
|
||||
$this->reqContent = "";
|
||||
$this->resContent = "";
|
||||
|
||||
$this->errInfo = "";
|
||||
|
||||
$this->timeOut = 120;
|
||||
|
||||
$this->responseCode = 0;
|
||||
|
||||
}
|
||||
|
||||
//设置请求内容
|
||||
function setReqContent($url,$data) {
|
||||
$this->reqContent['url']=$url;
|
||||
$this->reqContent['data']=$data;
|
||||
}
|
||||
|
||||
//获取结果内容
|
||||
function getResContent() {
|
||||
return $this->resContent;
|
||||
}
|
||||
|
||||
//获取错误信息
|
||||
function getErrInfo() {
|
||||
return $this->errInfo;
|
||||
}
|
||||
|
||||
//设置超时时间,单位秒
|
||||
function setTimeOut($timeOut) {
|
||||
$this->timeOut = $timeOut;
|
||||
}
|
||||
|
||||
//执行http调用
|
||||
function call() {
|
||||
//启动一个CURL会话
|
||||
$ch = curl_init();
|
||||
|
||||
// 设置curl允许执行的最长秒数
|
||||
curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeOut);
|
||||
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);
|
||||
curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false);
|
||||
// 获取的信息以文件流的形式返回,而不是直接输出。
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
|
||||
|
||||
//发送一个常规的POST请求。
|
||||
curl_setopt($ch, CURLOPT_POST, 1);
|
||||
curl_setopt($ch, CURLOPT_URL, $this->reqContent['url']);
|
||||
//要传送的所有数据
|
||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $this->reqContent['data']);
|
||||
|
||||
// 执行操作
|
||||
$res = curl_exec($ch);
|
||||
$this->responseCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
||||
|
||||
if ($res == NULL) {
|
||||
$this->errInfo = "call http err :" . curl_errno($ch) . " - " . curl_error($ch) ;
|
||||
curl_close($ch);
|
||||
return false;
|
||||
} else if($this->responseCode != "200") {
|
||||
$this->errInfo = "call http err httpcode=" . $this->responseCode ;
|
||||
curl_close($ch);
|
||||
return false;
|
||||
}
|
||||
|
||||
curl_close($ch);
|
||||
$this->resContent = $res;
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function getResponseCode() {
|
||||
return $this->responseCode;
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
@@ -0,0 +1,177 @@
|
||||
<?php
|
||||
/**
|
||||
* 请求类
|
||||
* ============================================================================
|
||||
* api说明:
|
||||
* init(),初始化函数,默认给一些参数赋值,如cmdno,date等。
|
||||
* getGateURL()/setGateURL(),获取/设置入口地址,不包含参数值
|
||||
* getKey()/setKey(),获取/设置密钥
|
||||
* getParameter()/setParameter(),获取/设置参数值
|
||||
* getAllParameters(),获取所有参数
|
||||
* getRequestURL(),获取带参数的请求URL
|
||||
* getDebugInfo(),获取debug信息
|
||||
*
|
||||
* ============================================================================
|
||||
*
|
||||
*/
|
||||
class RequestHandler {
|
||||
|
||||
/** 网关url地址 */
|
||||
var $gateUrl;
|
||||
|
||||
/** 密钥 */
|
||||
var $key;
|
||||
|
||||
/** 请求的参数 */
|
||||
var $parameters;
|
||||
|
||||
/** debug信息 */
|
||||
var $debugInfo;
|
||||
|
||||
function __construct() {
|
||||
$this->RequestHandler();
|
||||
}
|
||||
|
||||
function RequestHandler() {
|
||||
$this->gateUrl = "https://pay.swiftpass.cn/pay/gateway";
|
||||
$this->key = "";
|
||||
$this->parameters = array();
|
||||
$this->debugInfo = "";
|
||||
}
|
||||
|
||||
/**
|
||||
*初始化函数。
|
||||
*/
|
||||
function init() {
|
||||
//nothing to do
|
||||
}
|
||||
|
||||
/**
|
||||
*获取入口地址,不包含参数值
|
||||
*/
|
||||
function getGateURL() {
|
||||
return $this->gateUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
*设置入口地址,不包含参数值
|
||||
*/
|
||||
function setGateURL($gateUrl) {
|
||||
$this->gateUrl = $gateUrl;
|
||||
}
|
||||
|
||||
/**
|
||||
*获取密钥
|
||||
*/
|
||||
function getKey() {
|
||||
return $this->key;
|
||||
}
|
||||
|
||||
/**
|
||||
*设置密钥
|
||||
*/
|
||||
function setKey($key) {
|
||||
$this->key = $key;
|
||||
}
|
||||
|
||||
/**
|
||||
*获取参数值
|
||||
*/
|
||||
function getParameter($parameter) {
|
||||
return isset($this->parameters[$parameter])?$this->parameters[$parameter]:'';
|
||||
}
|
||||
|
||||
/**
|
||||
*设置参数值
|
||||
*/
|
||||
function setParameter($parameter, $parameterValue) {
|
||||
$this->parameters[$parameter] = $parameterValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* 一次性设置参数
|
||||
*/
|
||||
function setReqParams($post,$filterField=null){
|
||||
if($filterField !== null){
|
||||
forEach($filterField as $k=>$v){
|
||||
unset($post[$v]);
|
||||
}
|
||||
}
|
||||
|
||||
//判断是否存在空值,空值不提交
|
||||
forEach($post as $k=>$v){
|
||||
if(empty($v)){
|
||||
unset($post[$k]);
|
||||
}
|
||||
}
|
||||
|
||||
$this->parameters = $post;
|
||||
}
|
||||
|
||||
/**
|
||||
*获取所有请求的参数
|
||||
*@return array
|
||||
*/
|
||||
function getAllParameters() {
|
||||
return $this->parameters;
|
||||
}
|
||||
|
||||
/**
|
||||
*获取带参数的请求URL
|
||||
*/
|
||||
function getRequestURL() {
|
||||
|
||||
$this->createSign();
|
||||
|
||||
$reqPar = "";
|
||||
ksort($this->parameters);
|
||||
foreach($this->parameters as $k => $v) {
|
||||
$reqPar .= $k . "=" . urlencode($v) . "&";
|
||||
}
|
||||
|
||||
//去掉最后一个&
|
||||
$reqPar = substr($reqPar, 0, strlen($reqPar)-1);
|
||||
|
||||
$requestURL = $this->getGateURL() . "?" . $reqPar;
|
||||
|
||||
return $requestURL;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
*获取debug信息
|
||||
*/
|
||||
function getDebugInfo() {
|
||||
return $this->debugInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
*创建md5摘要,规则是:按参数名称a-z排序,遇到空值的参数不参加签名。
|
||||
*/
|
||||
function createSign() {
|
||||
$signPars = "";
|
||||
ksort($this->parameters);
|
||||
foreach($this->parameters as $k => $v) {
|
||||
if("" != $v && "sign" != $k) {
|
||||
$signPars .= $k . "=" . $v . "&";
|
||||
}
|
||||
}
|
||||
$signPars .= "key=" . $this->getKey();
|
||||
$sign = strtoupper(md5($signPars));
|
||||
$this->setParameter("sign", $sign);
|
||||
|
||||
//debug信息
|
||||
$this->_setDebugInfo($signPars . " => sign:" . $sign);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
*设置debug信息
|
||||
*/
|
||||
function _setDebugInfo($debugInfo) {
|
||||
$this->debugInfo = $debugInfo;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user