| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553 |
- <?php
- namespace Lakala\sdk;
- class FdsSdk {
- //应用ID
- public static $appId = "6633965341557002240";
- //DSA私钥文件路径
- public static $DSAPrivateKeyFilePath = __DIR__ . "/cert2/dsa_private_key.pfx";
- //DSA私钥密碼
- public static $DSAPrivateKeyFilePassword = "PXommGBW9gj0XWSq";
- //DSA公钥文件路径
- public static $DSAPublicKeyFilePath = __DIR__ ."/cert2/dsa_public_key.cer";
- //RSA私钥文件路径
- public static $RSAPrivateKeyFilePath = __DIR__ ."/cert2/rsa_private_key.pfx";
- //RSA私钥密碼
- public static $RSAPrivateKeyFilePassword = "uqouGAKgs4iuxOkm";
- //RSA公钥文件路径
- public static $RSAPublicKeyFilePath = __DIR__ ."/cert2/cloud_rsa_public.pem";
- //网关
- public static $gatewayUrl = "http://47.105.146.241:9510/service/soa";
- //api版本
- public static $apiVersion = "3.0";
- // 表单提交字符集编码
- public static $postCharset = "UTF-8";
- // 文件字符集编码
- private static $fileCharset = "UTF-8";
- //签名类型
- public static $signType = "DSA";
-
- const STATUS_OK = 'OK';
- const ERR_MESSAGE = 'message';
- const SIGNED_VALUE = 'result';
-
- private $bizContent;
- private $apiMethodName;
- static $bop;
- public static function getCashier() {
- if (empty(self::$bop)) {
- self::$bop = new FdsSdk();
- }
- return self::$bop;
- }
- public static function getService() {
- if (empty(self::$bop)) {
- self::$bop = new FdsSdk();
- }
- return self::$bop;
- }
- /**
- * 创建会员
- * @param $param
- * @return bool|mixed|string
- */
- public function createPersonMember($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.create";
- $result = $this->execute();
- return $result;
- }
- /**
- * 会员更新
- * @param $param
- * @return bool|mixed|string
- */
- public function memberUpdate($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.update";
- $result = $this->execute();
- return $result;
- }
- /**
- * 会员手机绑定申请
- * @param $param
- * @return bool|mixed|string
- */
- public function createMobileMember($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.mobile.request";
- $result = $this->execute();
- return $result;
- }
- /**
- * 会员手机绑定确认
- * @param $param
- * @return bool|mixed|string
- */
- public function createMepdember($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "mepdember.mobile.confirm";
- $result = $this->execute();
- return $result;
- }
- /**
- * 企业信息认证
- * @param $param
- * @return bool|mixed|string
- */
- public function createCompanyVerify(&$param)
- {
- $param["identity_no"]=$this->rsaEncrypt($param["identity_no"]);
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.company.verify";
- $result = $this->execute();
- return $result;
- }
- /**
- * 首笔支付认证_对公卡
- * @param $param
- * @return bool|mixed|string
- */
- public function memberBankBind($param)
- {
- $param["bank_card_no"]=$this->rsaEncrypt($param["bank_card_no"]);
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.bank.company.account.bind";
- $result = $this->execute();
- return $result;
- }
- /**
- * 首笔支付认证确认_对公卡
- * @param $param
- * @return bool|mixed|string
- */
- public function memberBankVerify($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.bank.company.account.verify";
- $result = $this->execute();
- return $result;
- }
- /**
- * 会员开通商户
- * @param $param
- * @return bool|mixed|string
- */
- public function createMerchant($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.merchant.open";
- $result = $this->execute();
- return $result;
- }
- /**
- * 开通商户确认
- * @param $param
- * @return bool|mixed|string
- */
- public function createMerchantConfirm($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.merchant.open.confirm";
- $result = $this->execute();
- return $result;
- }
- /**
- * 设置结算卡
- * @param $param
- * @return bool|mixed|string
- */
- public function setSettleCard($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.set.settle.card";
- $result = $this->execute();
- return $result;
- }
- /**
- * 修改分账比例申请
- * @param $param
- * @return bool|mixed|string
- */
- public function memberSplitScaleApply($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.split.scale.apply";
- $result = $this->execute();
- return $result;
- }
- /**
- * 修改分账比例确认
- * @param $param
- * @return bool|mixed|string
- */
- public function memberSplitScaleQuery($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.split.scale.query";
- $result = $this->execute();
- return $result;
- }
- /**
- * 商户绑定
- * @param $param
- * @return bool|mixed|string
- */
- public function memberMerchantBind($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.merchant.bind";
- $result = $this->execute();
- return $result;
- }
- /**
- * 开通支付账户(URL)
- * @param $param
- * @return bool|mixed|string
- */
- public function payAccount($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "member.pay.account.url.get";
- $result = $this->execute();
- return $result;
- }
- /**
- * 消费
- * @param $param
- * @return bool|mixed|string
- */
- public function orderConsume($param)
- {
- $this->bizContent = json_encode($param);
- $this->apiMethodName = "order.consume.request";
- $result = $this->execute();
- return $result;
- }
- public function getNotifyResult($request)
- {
- //获取签名
- $sign = $request['sign'];
- //组装签名原串
- $signStr = $request['app_id'].$request['timestamp'].$request['version'].$request['event_type'].$request['event'];
- //验签
- $seccess = $this->verify($signStr, $sign, self::$signType);
- if(!$seccess) {
- throw new Exception("返回值签名验证失败");
- }
- return $request;
- }
-
- public static function setAppId($appId) {
- return self::$appId = $appId;
- }
-
- public static function setServerUrl($gatewayUrl) {
- return self::$gatewayUrl = $gatewayUrl;
- }
-
- public static function getServerUrl() {
- return self::$gatewayUrl;
- }
-
- public static function setApiVersion($apiVersion) {
- return self::$apiVersion = $apiVersion;
- }
-
- public static function setDSAKey($DSAPublicKeyFilePath, $DSAPrivateKeyFilePath, $DSAPrivateKeyFilePassword) {
- self::$DSAPublicKeyFilePath = $DSAPublicKeyFilePath;
- self::$DSAPrivateKeyFilePath = $DSAPrivateKeyFilePath;
- self::$DSAPrivateKeyFilePassword = $DSAPrivateKeyFilePassword;
- }
-
- public static function setRSAKey($RSAPublicKeyFilePath, $RSAPrivateKeyFilePath, $RSAPrivateKeyFilePassword) {
- self::$RSAPublicKeyFilePath = $RSAPublicKeyFilePath;
- self::$RSAPrivateKeyFilePath = $RSAPrivateKeyFilePath;
- self::$RSAPrivateKeyFilePassword = $RSAPrivateKeyFilePassword;
- }
- public function execute($authToken = null, $appInfoAuthtoken = null) {
- // 如果两者编码不一致,会出现签名验签或者乱码
- if (strcasecmp(self::$fileCharset, self::$postCharset)) {
- // writeLog("本地文件字符集编码与表单提交编码不一致,请务必设置成一样,属性名分别为postCharset!");
- throw new Exception("文件编码:[" . self::$fileCharset . "] 与表单提交编码:[" . self::$postCharset . "]两者不一致!");
- }
- $iv = self::$apiVersion;
- //组装系统参数
- $sysParams["app_id"] = self::$appId;
- $sysParams["version"] = $iv;
- $sysParams["service"] = $this->apiMethodName;
- $sysParams["timestamp"] = time();
- //获取业务参数
- $sysParams["params"] = $this->bizContent;
- //签名
- $sysParams["sign"] = $this->generateSign($sysParams, self::$signType);
- $result = $this->request($sysParams);
- $result = $this->checkResult($result);
- return $result;
- }
- public function execute2($authToken = null, $appInfoAuthtoken = null) {
- // 如果两者编码不一致,会出现签名验签或者乱码
- if (strcasecmp(self::$fileCharset, self::$postCharset)) {
- // writeLog("本地文件字符集编码与表单提交编码不一致,请务必设置成一样,属性名分别为postCharset!");
- throw new Exception("文件编码:[" . self::$fileCharset . "] 与表单提交编码:[" . self::$postCharset . "]两者不一致!");
- }
- $iv = self::$apiVersion;
- //组装系统参数
- $sysParams["app_id"] = self::$appId;
- $sysParams["version"] = $iv;
- $sysParams["service"] = $this->apiMethodName;
- $sysParams["timestamp"] = time();
- //获取业务参数
- foreach ($this->bizContent as $key=>$value) {
- $sysParams[$key] = $value;
- }
- //签名
- $sysParams["sign"] = $this->generateSign($sysParams, self::$signType);
- $result = $this->request2($sysParams);
- $result = $this->checkResult($result);
- return $result;
- }
- public function execute3($authToken = null, $appInfoAuthtoken = null) {
- // 如果两者编码不一致,会出现签名验签或者乱码
- if (strcasecmp(self::$fileCharset, self::$postCharset)) {
- // writeLog("本地文件字符集编码与表单提交编码不一致,请务必设置成一样,属性名分别为postCharset!");
- throw new Exception("文件编码:[" . self::$fileCharset . "] 与表单提交编码:[" . self::$postCharset . "]两者不一致!");
- }
- $iv = self::$apiVersion;
- //组装系统参数
- $sysParams["app_id"] = self::$appId;
- $sysParams["version"] = $iv;
- $sysParams["service"] = $this->apiMethodName;
- $sysParams["timestamp"] = time();
- //获取业务参数
- $sysParams["params"] = $this->bizContent;
- //签名
- $sysParams["sign"] = $this->generateSign($sysParams, self::$signType);
- return $sysParams;
- }
-
- private function request($args){
- global $log;
- $ch = curl_init () ;
- curl_setopt($ch, CURLOPT_URL, self::$gatewayUrl);
- $sb = '';
- $reqbody = array();
- foreach($args as $entry_key => $entry_value){
- $sb .= $entry_key.'='.urlencode($entry_value).'&';
- }
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $sb);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_AUTOREFERER, 0);
- curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-length', count($reqbody)));
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
- $result = curl_exec($ch);
- curl_close($ch);
- return $result;
- }
-
- private function request2($args){
- global $log;
- $ch = curl_init () ;
- curl_setopt($ch, CURLOPT_URL, self::$gatewayUrl);
- $sb2 = array();
- $reqbody = array();
- foreach($args as $entry_key => $entry_value){
- $sb2[$entry_key] = $entry_value;
- }
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $sb2);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_AUTOREFERER, 0);
- curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-length', count($reqbody)));
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
- $result = curl_exec($ch);
- curl_close($ch);
- return $result;
- }
-
- /**
- * 检查服务调用结果是否正确,如果服务调用失败,则抛出失败异常
- * @param result 服务调用的返回结果对象
- * @throws Exception
- */
- private function checkResult($result){
- global $log;
- $arr = json_decode($result, true);
- if (is_string($arr['response'])) {
- $response = json_decode($arr['response'], true);
- } else {
- $response = $arr['response'];
- }
- $sign = $arr['sign'];
- if($sign != null){
- $seccess = $this->verify($arr['response'], $sign, self::$signType);
- if(!$seccess)
- throw new Exception("返回值签名验证失败");
- }
- return $response;
- }
- /**
- * 校验$value是否非空
- * if not set ,return true;
- * if is null , return true;
- **/
- protected function checkEmpty($value) {
- if (!isset($value))
- return true;
- if ($value === null)
- return true;
- if (trim($value) === "")
- return true;
- return false;
- }
- //验签
- public function verify($data, $sign, $signType = 'RSA') {
- //读取公钥文件
- $pubKey = file_get_contents(self::$DSAPublicKeyFilePath);
- //转换为openssl格式密钥
- $res = openssl_get_publickey($pubKey);
- // ($res) or die('公钥错误。请检查公钥文件格式是否正确');
- if (!$res){
- return '公钥错误。请检查公钥文件格式是否正确';
- }
- //调用openssl内置方法验签,返回bool值
- if (!is_string($data)) {
- $data = json_encode($data);
- }
- if ("RSA2" == $signType) {
- $result = openssl_verify($data, base64_decode($sign), $res, OPENSSL_ALGO_SHA256);
- } else if ("DSA" == $signType) {
- $result = openssl_verify($data, base64_decode($sign), $res, OPENSSL_ALGO_DSS1);
- } else {
- $result = openssl_verify($data, base64_decode($sign), $res);
- }
- if ($result == 1) {
- $result = true;
- } else {
- $result = false;
- }
- if(!$this->checkEmpty(self::$DSAPublicKeyFilePath)){
- openssl_free_key($res);
- }
- return $result;
- }
- public function generateSign($params, $signType = "DSA") {
- return $this->sign($this->getSignContent($params), $signType);
- }
- protected function getSignContent($params) {
- $stringToBeSigned = '';
- if(array_key_exists("app_id", $params)) {
- $stringToBeSigned .= $params['app_id'];
- }
- if(array_key_exists("timestamp", $params)) {
- $stringToBeSigned .= $params['timestamp'];
- }
- if(array_key_exists("version", $params)) {
- $stringToBeSigned .= $params['version'];
- }
- if(array_key_exists("service", $params)) {
- $stringToBeSigned .= $params['service'];
- }
- if(array_key_exists("params", $params)) {
- $stringToBeSigned .= $params['params'];
- }
- if(array_key_exists("image_type", $params)) {
- $stringToBeSigned .= $params['image_type'];
- }
- if(array_key_exists("image_name", $params)) {
- $stringToBeSigned .= $params['image_name'];
- }
- //$stringToBeSigned = $params['app_id'] . $params['timestamp'] . $params['version'] . $params['service'] . $params['params'];
- $stringToBeSigned = str_replace("\r\n", "", $stringToBeSigned);
- return $stringToBeSigned;
- }
- protected function sign($data, $signType = "DSA") {
- if ("DSA" == $signType) {
- $file = file_get_contents(self::$DSAPrivateKeyFilePath);
- openssl_pkcs12_read($file, $res, self::$DSAPrivateKeyFilePassword);
- } else {
- $priKey = file_get_contents(self::$RSAPrivateKeyFilePath);
- $res = openssl_get_privatekey($priKey, self::$RSAPrivateKeyFilePassword);
- }
- // ($res) or die('您使用的私钥格式错误,请检查私钥配置');
- if (!$res){
- return '您使用的私钥格式错误,请检查私钥配置';
- }
- if ("RSA2" == $signType) {
- openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
- } else if ("DSA" == $signType) {
- openssl_sign($data, $sign, $res['pkey'], OPENSSL_ALGO_DSS1);
- } else {
- openssl_sign($data, $sign, $res);
- }
- if("DSA" != $signType && !$this->checkEmpty(self::$DSAPrivateKeyFilePath)){
- openssl_free_key($res);
- }
- $sign = base64_encode($sign);
- return $sign;
- }
- public function rsaEncrypt($data) {
- //读取公钥文件
- $pubKey = file_get_contents(self::$RSAPublicKeyFilePath);
- //转换为openssl格式密钥
- $res = openssl_get_publickey($pubKey);
- if(false === $res){
- throw new \Exception("open pubkey error");
- }
- if (!openssl_public_encrypt($data, $chrtext, $res, OPENSSL_PKCS1_PADDING)) {
- echo "<br/>" . openssl_error_string() . "<br/>";
- }
- return base64_encode($chrtext);
- }
- public function rsaDecrypt($data) {
- //读取私钥文件
- $priKey = file_get_contents(self::$RSAPrivateKeyFilePath);
- //转换为openssl格式密钥
- openssl_pkcs12_read($priKey, $res, self::$RSAPrivateKeyFilePassword);
- $res1 = openssl_pkey_get_private($res['pkey']);
- if (!openssl_private_decrypt(base64_decode($data), $dcyCont, $res1, OPENSSL_PKCS1_PADDING)) {
- echo "<br/>---" . openssl_error_string() . "<br/>";
- }
- return $dcyCont;
- }
- }
|