Browse Source

玛昇快充

lowkeyman 3 tháng trước cách đây
mục cha
commit
49160aab7a

+ 38 - 0
data/config/xyz/phone.ini.php

@@ -3832,6 +3832,43 @@ $youge_sec_phone = [
 //        ]
     ]
 ];
+$masheng_phone = [
+    'name' => 'masheng', 'store_id' => 428, 'qualitys' => '2', 'official_sn' => true, 'refill_type' => 'api',
+    'amount' => [
+//        10 => [
+//            ['goods_id' => 9369, 'price' => 10, 'quality' => 2, 'card_type' => 'chinamobile'],
+//            ['goods_id' => 9369, 'price' => 10, 'quality' => 2, 'card_type' => 'chinatelecom']
+//        ],
+//        20 => [
+//            ['goods_id' => 9370, 'price' => 20, 'quality' => 2, 'card_type' => 'chinamobile'],
+//            ['goods_id' => 9370, 'price' => 20, 'quality' => 2, 'card_type' => 'chinatelecom']
+//        ],
+        30 => [
+//            ['goods_id' => 9371, 'price' => 30, 'quality' => 2, 'card_type' => 'chinamobile'],
+            ['goods_id' => 9371, 'price' => 33.87, 'quality' => 2, 'card_type' => 'chinatelecom']
+        ],
+        50 => [
+//            ['goods_id' => 9372, 'price' => 50, 'quality' => 2, 'card_type' => 'chinamobile'],
+            ['goods_id' => 9372, 'price' => 50.8, 'quality' => 2, 'card_type' => 'chinatelecom']
+        ],
+        100 => [
+            ['goods_id' => 9373, 'price' => 101.6, 'quality' => 2, 'card_type' => 'chinamobile'],
+            ['goods_id' => 9373, 'price' => 101.6, 'quality' => 2, 'card_type' => 'chinatelecom']
+        ],
+        200 => [
+            ['goods_id' => 9374, 'price' => 203.2, 'quality' => 2, 'card_type' => 'chinamobile'],
+            ['goods_id' => 9374, 'price' => 203.2, 'quality' => 2, 'card_type' => 'chinatelecom']
+        ],
+        300 => [
+            ['goods_id' => 9375, 'price' => 304.8, 'quality' => 2, 'card_type' => 'chinamobile'],
+            ['goods_id' => 9375, 'price' => 304.8, 'quality' => 2, 'card_type' => 'chinatelecom']
+        ],
+        500 => [
+            ['goods_id' => 9376, 'price' => 508, 'quality' => 2, 'card_type' => 'chinamobile'],
+            ['goods_id' => 9376, 'price' => 508, 'quality' => 2, 'card_type' => 'chinatelecom']
+        ]
+    ]
+];
 
 $phone_providers = [
 	[ 'name' => 'xunyin', 'cfg' => $xunyin_phone ],
@@ -3947,4 +3984,5 @@ $phone_providers = [
     [ 'name' => 'qingyu', 'cfg' => $qingyu_phone ],
     [ 'name' => 'yifutong', 'cfg' => $yifutong_phone ],
     [ 'name' => 'youge_sec', 'cfg' => $youge_sec_phone ],
+    [ 'name' => 'masheng', 'cfg' => $masheng_phone ],
 	];

+ 36 - 0
helper/refill/api/xyz/masheng/API.MD

@@ -0,0 +1,36 @@
+
+## 玛昇快充
+
+### 账号:
+> http://admin.mashengquanyi.com/telequity
+- 登陆账号:4637888
+- 登陆密码:123456
+- 商户号:
+- KEY:
+
+### 对接:
+- api接口文档地址:
+  > http://api.mashengquanyi.com
+- 话费下单地址:
+  > http://api.mashengquanyi.com/api/addOrder
+- 订单主动查询地址:
+  > http://api.mashengquanyi.com/api/payment/order
+- 余额查询:
+  > http://api.mashengquanyi.com/api/payment/query/bank
+
+### 店铺
+- 账号:masheng
+- 密码:masheng67890
+
+### 编码
+100YDJS	中国移动100-秒到
+200YDJS	移动200-秒到
+300YDJS	移动300-秒到
+500YDJS	移动500-秒到
+
+30DXJS	电信30-秒到
+50DXJS	电信50-秒到
+100DXJS	中国电信100-秒到
+200DXJS	电信200-秒到
+300DXJS	电信300-秒到
+500DXJS	电信500-秒到

+ 47 - 0
helper/refill/api/xyz/masheng/RefillCallBack.php

@@ -0,0 +1,47 @@
+<?php
+namespace refill\masheng;
+
+require_once(BASE_HELPER_RAPI_PATH . '/masheng/config.php');
+
+use refill;
+class RefillCallBack implements refill\IRefillCallBack
+{
+    public function verify($params): bool
+    {
+        $sign = $this->sign($params);
+        if ($params['sign'] == $sign) {
+            return true;
+        } else {
+            return false;
+        }
+    }
+
+    private function sign($params): string
+    {
+        $userid = config::USER_ID;
+        $key = config::KEY;
+        $content = "agent_id=$userid&amount={$params['amount']}&batch_no={$params['batch_no']}&key=$key&order_id={$params['order_id']}&pay_at={$params['pay_at']}&status={$params['status']}";
+        return md5($content);
+    }
+
+    public function notify($params): array
+    {
+        $status = intval($params['status']);
+        $order_sn = $params['batch_no'];
+        $order_info = Model('vr_order')->getOrderInfo(['order_sn' => $order_sn]);
+        if (empty($order_info)) {
+            return [false, false, false, false];
+        }
+
+        $order_id = $order_info['order_id'];
+        if ($status === 2) {
+            Model('refill_order')->edit($order_id, ['ch_trade_no' => $params['order_id']]);
+            return [$order_id, true, false, true];
+        } elseif ($status === 4) {
+            Model('refill_order')->edit($order_id, ['ch_trade_no' => $params['order_id']]);
+            return [$order_id, false, true, true];
+        } else {
+            return [$order_id, false, false, false];
+        }
+    }
+}

+ 142 - 0
helper/refill/api/xyz/masheng/RefillPhone.php

@@ -0,0 +1,142 @@
+<?php
+
+namespace refill\masheng;
+
+require_once(BASE_HELPER_RAPI_PATH . '/masheng/config.php');
+
+use refill;
+use Log;
+
+class RefillPhone extends refill\IRefillPhone
+{
+    public function __construct($cfgs)
+    {
+        parent::__construct($cfgs);
+    }
+
+    private function req_params(int $phone, int $amount, $card_type, string $order_sn): array
+    {
+        $params['batch_no'] = $order_sn;
+        $params['agent_id'] = config::USER_ID;
+        $productid = config::ProductIdS[$card_type][$amount] ?? false;
+        if ($productid === false){
+            return [];
+        }
+
+        $params['productNo'] = $productid;
+        $params['account'] = $phone;
+        $params['notify_url'] = config::NOTIFY_URL;
+        $params['add_at'] = date("Y-m-d H:i:s");
+
+        return $params;
+    }
+
+    public function add($card_no, $card_type, $amount, $params, &$net_errno = 0): array
+    {
+        $order_sn = $params['order_sn'];
+        $params = $this->req_params($card_no, $amount, $card_type, $order_sn);
+        if (empty($params)) {
+            return [false, '产品编码有误', false];
+        }
+
+        $sign = $this->sign($params);
+        $params['sign'] = $sign;
+
+        $resp = http_request(config::ORDER_URL, $params, 'POST', false, config::ExtHeaders, $net_errno);
+
+        if (empty($resp)) {
+            return [false, '网络错误', true];
+        }
+        else
+        {
+            Log::record($resp, Log::DEBUG);
+            $resp = json_decode($resp, true);
+            if (empty($resp)) {
+                return [false, '系统错误', true];
+            } elseif ($resp['code'] === 200) {
+                return [true, '', false];
+            } else {
+                return [false, $resp['message'], false];
+            }
+        }
+    }
+
+    public function query($refill_info): array
+    {
+        $params['agent_id'] = config::USER_ID;
+        $params['batch_no'] = $refill_info['order_sn'];
+        $key = config::KEY;
+        $content = "agent_id={$params['agent_id']}&batch_no={$params['batch_no']}&key=$key";
+        $params['sign'] = md5($content);
+
+        $resp = http_request(config::QUERY_URL, $params);
+
+        if (empty($resp)) {
+            return [false, '网络错误'];
+        }
+        else
+        {
+            Log::record($resp, Log::DEBUG);
+            $resp = json_decode($resp, true);
+            if (empty($resp))
+            {
+                return [false, '系统错误'];
+            }
+            elseif ($resp['code'] === 200 && !empty($resp['result']))
+            {
+                $status = intval($resp['result']['status']);
+                if ($status === 1) {
+                    $order_state = ORDER_STATE_SEND;
+                } elseif ($status === 2) {
+                    Model('refill_order')->edit($refill_info['order_id'], ['ch_trade_no' => $resp['result']['order_id']]);
+                    $order_state = ORDER_STATE_SUCCESS;
+                } elseif ($status === 4) {
+                    Model('refill_order')->edit($refill_info['order_id'], ['ch_trade_no' => $resp['result']['order_id']]);
+                    $order_state = ORDER_STATE_CANCEL;
+                } else {
+                    return [false, $resp['message']];
+                }
+
+                return [true, $order_state];
+            }
+            else
+            {
+                return [false, $resp['message']];
+            }
+        }
+    }
+
+    public function balance(): array
+    {
+        $params['agent_id'] = config::USER_ID;
+        $key = config::KEY;
+        $content = "agent_id={$params['agent_id']}&key=$key";
+        $params['sign'] = md5($content);
+
+        $resp = http_request(config::BALANCE_URL, $params);
+
+        if (empty($resp)) {
+            return [false, '网络错误'];
+        }
+        else
+        {
+            Log::record($resp, Log::DEBUG);
+            $resp = json_decode($resp, true);
+            if (empty($resp)) {
+                return [false, '系统错误'];
+            } elseif ($resp['code'] === 200) {
+                return [true, $resp['result']['recharge_amount']];
+            } else {
+                return [false, $resp['message']];
+            }
+        }
+    }
+
+    private function sign($params): string
+    {
+        $key = config::KEY;
+        $content = "account={$params['account']}&add_at={$params['add_at']}&agent_id={$params['agent_id']}&batch_no={$params['batch_no']}";
+        $content .= "&key=$key&notify_url={$params['notify_url']}&productNo={$params['productNo']}";
+        return md5($content);
+    }
+}

+ 41 - 0
helper/refill/api/xyz/masheng/config.php

@@ -0,0 +1,41 @@
+<?php
+
+
+namespace refill\masheng;
+
+use mtopcard;
+class config
+{
+    const ORDER_URL = 'http://api.mashengquanyi.com/api/addOrder';
+    const QUERY_URL= 'http://api.mashengquanyi.com/api/payment/order';
+    const BALANCE_URL = 'http://api.mashengquanyi.com/api/payment/query/bank';
+
+    const USER_ID= '4637888';
+    const KEY = 'K0DYDKRH05KYBWI4846Z9VRR';
+    const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_masheng.php";
+
+    const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;'];
+
+    const ProductIdS = [
+        mtopcard\ChinaMobileCard =>
+            [
+                100 => '100YDJS',
+                200 => '200YDJS',
+                300 => '300YDJS',
+                500 => '500YDJS',
+            ],
+        mtopcard\ChinaUnicomCard =>
+            [
+
+            ],
+        mtopcard\ChinaTelecomCard =>
+            [
+                30 => '30DXJS',
+                50 => '50DXJS',
+                100 => '100DXJS',
+                200 => '200DXJS',
+                300 => '300DXJS',
+                500 => '500DXJS',
+            ]
+    ];
+}

+ 7 - 0
mobile/callback/refill_masheng.php

@@ -0,0 +1,7 @@
+<?php
+
+$content = $_SERVER['post_content'];
+$inputs = json_decode($content,true);
+refill\util::push_notify('masheng',$inputs);
+
+echo ('success');

+ 16 - 0
test/TestRefill.php

@@ -6345,6 +6345,22 @@ class TestRefill extends TestCase
         $provider = $this->getProvider('yeyankc002');
         $resp = $provider->balance();
     }
+
+    public function testmasheng()
+    {
+        $provider = $this->getProvider('masheng');
+//        $resp = $provider->balance();
+//
+//        $query_params = [
+//            'order_sn' => $this->make_sn(),
+//
+//        ];
+//        $provider->query($query_params);
+
+
+        $net_errno = '';
+        $provider->add('13911129867',4, 1, ['order_sn' => $this->make_sn()], $net_errno);
+    }
 }