123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- error_reporting(0);
- define('IN_MOBILE', true);
- if(!empty($_POST)) {
- $out_trade_no = $_POST['out_trade_no'];
- require '../../framework/bootstrap.inc.php';
- load()->web('common');
- load()->classs('coupon');
- $_W['uniacid'] = $_W['weid'] = intval($_POST['body']);
- $_W['uniaccount'] = $_W['account'] = uni_fetch($_W['uniacid']);
- $_W['acid'] = $_W['uniaccount']['acid'];
- $setting = uni_setting($_W['uniacid'], array('payment'));
- if ($_POST['body'] == 'site_store') {
- $setting['payment'] = setting_load('store_pay');
- $setting['payment'] = $setting['payment']['store_pay'];
- }
- if(is_array($setting['payment'])) {
- $alipay = $setting['payment']['alipay'];
- if(!empty($alipay)) {
- $prepares = array();
- foreach($_POST as $key => $value) {
- if($key != 'sign' && $key != 'sign_type') {
- $prepares[] = "{$key}={$value}";
- }
- }
- sort($prepares);
- $string = implode($prepares, '&');
- $string .= $alipay['secret'];
- $sign = md5($string);
- if($sign == $_POST['sign']) {
- $_POST['query_type'] = 'notify';
- WeUtility::logging('pay-alipay', var_export($_POST, true));
- $sql = 'SELECT * FROM ' . tablename('core_paylog') . ' WHERE `uniontid`=:uniontid';
- $params = array();
- $params[':uniontid'] = $out_trade_no;
- $log = pdo_fetch($sql, $params);
- if(!empty($log) && $log['status'] == '0' && ($_POST['total_fee'] == $log['card_fee'])) {
- $log['transaction_id'] = $_POST['trade_no'];
- $record = array();
- $record['status'] = '1';
- pdo_update('core_paylog', $record, array('plid' => $log['plid']));
- if ($log['is_usecard'] == 1 && !empty($log['encrypt_code'])) {
- $coupon_info = pdo_get('coupon', array('id' => $log['card_id']), array('id'));
- $coupon_record = pdo_get('coupon_record', array('code' => $log['encrypt_code'], 'status' => '1'));
- load()->model('activity');
- $status = activity_coupon_use($coupon_info['id'], $coupon_record['id'], $log['module']);
- }
- $site = WeUtility::createModuleSite($log['module']);
- if(!is_error($site)) {
- $method = 'payResult';
- if (method_exists($site, $method)) {
- $ret = array();
- $ret['weid'] = $log['weid'];
- $ret['uniacid'] = $log['uniacid'];
- $ret['result'] = 'success';
- $ret['type'] = $log['type'];
- $ret['from'] = 'notify';
- $ret['tid'] = $log['tid'];
- $ret['uniontid'] = $log['uniontid'];
- $ret['transaction_id'] = $log['transaction_id'];
- $ret['user'] = $log['openid'];
- $ret['fee'] = $log['fee'];
- $ret['is_usecard'] = $log['is_usecard'];
- $ret['card_type'] = $log['card_type'];
- $ret['card_fee'] = $log['card_fee'];
- $ret['card_id'] = $log['card_id'];
- $site->$method($ret);
- exit('success');
- }
- }
- }
- }
- }
- }
- }
- exit('fail');
|