|
@@ -66,7 +66,7 @@ class CloudWallet extends Base
|
|
|
];
|
|
|
public function initialize(){
|
|
|
parent::initialize();
|
|
|
- parent::check_login();
|
|
|
+ //parent::check_login();
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -86,12 +86,12 @@ class CloudWallet extends Base
|
|
|
*/
|
|
|
public function openAcctApply()
|
|
|
{
|
|
|
- $user_id = $this->uid;
|
|
|
+ $user_id = input('post.user_id');
|
|
|
$user_info = Db::name('store_member')->find($user_id);
|
|
|
//if(empty($user_info)) $user_info = Db::name('store_member')->find(6);
|
|
|
if(empty($user_info)) $this->error('用户信息有误');
|
|
|
if(!$user_info['true_name'] || !$user_info['id_card']) $this->error('请先实名认证');
|
|
|
- //if(!$user_info['bank_num']) $this->error('请绑定银行卡');
|
|
|
+ if(!$user_info['bank_num']) $this->error('请绑定银行卡');
|
|
|
$current = date("YmdHis");
|
|
|
$params = [
|
|
|
'timestamp' => $current,
|
|
@@ -110,7 +110,7 @@ class CloudWallet extends Base
|
|
|
'occupation' =>18,
|
|
|
],
|
|
|
'accountInfo' => [
|
|
|
- //'account_type' => 'PERSONAL_PAYMENT_ACCOUNT'
|
|
|
+ //'account_type' => 'PERSONAL_PAYMENT_ACCOUNT'
|
|
|
],
|
|
|
'linkedAcctInfo'=>[
|
|
|
//'linked_accttype'=> 'LEGALREPT_BANK_CARD',
|
|
@@ -144,7 +144,7 @@ class CloudWallet extends Base
|
|
|
*/
|
|
|
public function activateApply()
|
|
|
{
|
|
|
- $user_id = $this->uid;
|
|
|
+ $user_id = input('post.user_id');
|
|
|
$password = input('post.password');
|
|
|
$flag_chnl = input('get.flag_chnl','H5');
|
|
|
$pkg_name = input('get.pkg_name');
|
|
@@ -190,7 +190,7 @@ class CloudWallet extends Base
|
|
|
*/
|
|
|
public function getRandomKeys()
|
|
|
{
|
|
|
- $user_id = $this->uid;
|
|
|
+ $user_id = input('get.user_id');
|
|
|
$flag_chnl = input('get.flag_chnl','H5');
|
|
|
$pkg_name = input('get.pkg_name');
|
|
|
$app_name = input('get.app_name');
|
|
@@ -232,7 +232,7 @@ class CloudWallet extends Base
|
|
|
*/
|
|
|
public function getUserInfo()
|
|
|
{
|
|
|
- $user_id = $this->uid;
|
|
|
+ $user_id = input('get.user_id');
|
|
|
$current = date("YmdHis");
|
|
|
$params = [
|
|
|
'timestamp' => $current,
|
|
@@ -269,7 +269,7 @@ class CloudWallet extends Base
|
|
|
*/
|
|
|
public function getAcctInfo()
|
|
|
{
|
|
|
- $user_id = $this->uid;
|
|
|
+ $user_id = input('get.user_id');
|
|
|
$current = date("YmdHis");
|
|
|
$params = [
|
|
|
'timestamp' => $current,
|
|
@@ -300,7 +300,7 @@ class CloudWallet extends Base
|
|
|
*/
|
|
|
public function validationSms()
|
|
|
{
|
|
|
- $user_id = $this->uid;
|
|
|
+ $user_id = input('get.user_id');
|
|
|
$token = input('get.token');
|
|
|
$txn_seqno = input('get.txn_seqno');
|
|
|
$total_amount = input('get.total_amount');
|
|
@@ -368,7 +368,7 @@ class CloudWallet extends Base
|
|
|
*/
|
|
|
public function withdrawal()
|
|
|
{
|
|
|
- $user_id = $this->uid;
|
|
|
+ $user_id = input('post.user_id');
|
|
|
$money = input('post.money');
|
|
|
$password = input('post.password');
|
|
|
$flag_chnl = input('get.flag_chnl','H5');
|
|
@@ -413,7 +413,7 @@ class CloudWallet extends Base
|
|
|
$header = '{"accept-encoding":"gzip,deflate","host":"xianglian-api.hdlkeji.com","content-length":"458","signature-type":"RSA","signature-data":"a5BMrkODcWl6FJ2vOEMG\/dnDbHfsBp34yY9ls9KmaWv5zYYO2EoK+DwL9PAFWTFzb0sKKYaOgrO8mFjl4CclTEd5UWvDFTAhv+EijImHTm4rGwbv1k2fpiw5MCSci1JTAE3ROsocgDWbLSsuFbTQ\/d97oR9KJbrjIInlVPEjO04=","correlationid":"2b9369df-ca95-49df-8f25-10fca9854c02","user-agent":"httpcomponents","connection":"Close","content-type":"text\/json;charset=UTF-8"}';
|
|
|
$result = json_decode($result,true);
|
|
|
$header = json_decode($header,true);
|
|
|
- // var_dump($result,$header);
|
|
|
+ // var_dump($result,$header);
|
|
|
$check_sign = LLianPayAccpSignature::checkSign(json_encode($result,JSON_UNESCAPED_UNICODE),$header['signature-data']);
|
|
|
var_dump($check_sign);
|
|
|
$orderNo = $result['orderInfo']['txn_seqno'];
|