123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace refill\quanzhen;
- require_once(BASE_HELPER_RAPI_PATH . '/quanzhen/config.php');
- use refill;
- class RefillCallBack implements refill\IRefillCallBack
- {
- public function verify($params): bool
- {
- $input = $params;
- unset($input['sign']);
- $sign = config::sign($input);
- if ($params['sign'] == $sign) {
- return true;
- } else {
- return false;
- }
- }
- public function notify($params)
- {
- $status = intval($params['status']);
- $order_sn = $params['orderId'];
- $order_info = Model('vr_order')->getOrderInfoForNotify(['order_sn' => $order_sn]);
- if (empty($order_info)) {
- return [false, false, false, false];
- }
- $order_id = $order_info['order_id'];
- if ($status === 2) {
- return [$order_id, true, false, true];
- } elseif ($status === 3) {
- return [$order_id, false, true, true];
- } else {
- return [$order_id, false, false, false];
- }
- }
- }
|