| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <?php
- namespace common\pay\payflash;
- use backend\models\Config;
- use backend\models\Deposit;
- use backend\models\SyncDesposit;
- use common\pay\BasePayHandler;
- use Yii;
- use yii\helpers\VarDumper;
- class PayHandler extends BasePayHandler
- {
- public $payUrl;
- public $merId;
- public $key;
- /**
- * @inheritdoc
- */
- public function init()
- {
- parent::init();
- if ($this->payUrl == null) {
- $this->payUrl = Yii::$app->params['payflash.payUrl'];
- }
- if ($this->merId == null) {
- $this->merId = Yii::$app->params['payflash.merId'];
- }
- if ($this->key == null) {
- $this->key = Yii::$app->params['payflash.key'];
- }
- }
- /**
- * @param array $deposit
- * @param array $params
- * @return string
- */
- public function outPay($deposit, $params = [])
- {
- $data = [];
- $data['merchantid'] = $this->merId; //商户ID
- $data['orderno'] = $deposit['order_sn']; //订单号
- $data['orderamount'] = $deposit['rmb']; //金额
- $data['paytype'] = 'bank'; //支付类型(alipay支付宝,bank银联卡转账)
- $data['ordercurrency'] = $params['bankCode']; //购买币种:USDT(泰达币),CNY(人民币)
- $data['serverbackurl'] = $this->notifyUrl; //回调地址(异步地址)
- $data['callbackurl'] = $this->returnUrl; //支付完成返回地址(同步地址)
- $data['signtype'] = "md5"; //签名加密算法
- $data['sign'] = PayUtils::makeSign($data, $this->key);
- $result = static::createHtml($data, $this->payUrl);
- return $result;
- }
- /**
- * @param array $data
- * @return bool
- */
- public function handleNotify($data)
- {
- $string = print_r($data,true);
- file_put_contents('postshuju11.txt',$string);
- if (isset($data['sign']) && trim($data['sign']) !== '') {
-
- if (PayUtils::verify($data, $this->key)) {
- file_put_contents('huidiao11.txt','验签成功');
- // 订单状态为成功
- if ($data['status'] == '1') {
- $merOrderId = trim($data['orderno']);
- $reuslt = Deposit::find()->where(['order_sn' => $merOrderId])->asArray()->limit(1)->one();
- if ($reuslt['type'] != 1) {
- $res = Deposit::updateAll(['type' => 1], "order_sn = $merOrderId"); //更新为成功的状态
- $configData = Config::find()->asArray()->one();
- if ($configData['auto_deposit'] == 1 && $res) {
- $syncDespositModel = new SyncDesposit();
- $syncDespositModel->login = $reuslt['login'];
- $syncDespositModel->amount = $reuslt['amount'];
- $syncDespositModel->comment = 'Deposit';
- $syncDespositModel->memo = $merOrderId;
- $syncDespositModel->type = 2;
- $syncDespositModel->in_time = time();
- $syncDespositModel->save();
- }
- return true;
- }
- }
- }
- }
- return false;
- }
- public function outNotify($success)
- {
- if ($success == true) {
- return ["reason"=>"success"];
- } else {
- // 返回的数据格式
- return "FAIL";
- }
- }
- /**
- * @param array $data
- * @return bool
- */
- public function handleReturn($data)
- {
- //Yii::warning('支付同步通知参数,' . VarDumper::dumpAsString($data), __METHOD__);
- if (isset($data['sign']) && trim($data['sign']) !== '') {
- if (PayUtils::verify($data, $this->key)) {
- if ($data['status'] == '1') {
- $merOrderId = trim($data['orderno']);
- $reuslt = Deposit::find()->where(['order_sn' => $merOrderId])->asArray()->limit(1)->one();
- if ($reuslt) {
- return success;
- }
- }
- }
- }
- return false;
- }
- public function outReturn($success)
- {
- }
- }
|