12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451 |
- <?php
- /**
- * 易优CMS
- * ============================================================================
- * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
- * 网站地址: http://www.eyoucms.com
- * ----------------------------------------------------------------------------
- * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
- * ============================================================================
- * Author: 陈风任 <491085389@qq.com>
- * Date: 2020-05-22
- */
-
- namespace app\user\logic;
-
- use think\Model;
- use think\Db;
- use think\Request;
- use think\Config;
- use app\user\logic\PayLogic;
- /**
- * 支付API逻辑处理
- * @package user\Logic
- */
- load_trait('controller/Jump');
- class PayApiLogic extends Model
- {
- use \traits\controller\Jump;
-
- private $home_lang = 'cn';
- private $param_users_id = 0;
-
- public function __construct($param_users_id = 0) {
- if (!empty($param_users_id)) $this->param_users_id = $param_users_id;
- parent::__construct();
- }
-
- /**
- * 初始化操作
- */
- public function initialize() {
- parent::initialize();
- // 时间戳
- $this->times = getTime();
- // 多语言
- $this->home_lang = get_home_lang();
- // 会员信息表
- $this->users_db = Db::name('users');
- // 订单主表
- $this->shop_order_db = Db::name('shop_order');
- // 会员金额明细表
- $this->users_money_db = Db::name('users_money');
- // 支付API配置
- $this->pay_api_config_db = Db::name('pay_api_config');
- // 会员信息
- if (!empty($this->param_users_id)) {
- $this->users = GetUsersLatestData($this->param_users_id);
- } else {
- $this->users = GetUsersLatestData();
- }
- $this->users_id = $this->users['users_id'];
- }
-
- // 支付API配置信息查询
- public function GetPayApiConfig($post = [])
- {
- if (empty($post['pay_mark'])) $this->error('支付API异常,请刷新重试');
-
- //先查虎皮椒支付有没有配置
- $hupijiao_pay_config = $this->pay_api_config_db->where(['pay_mark'=>'Hupijiaopay'])->find();
- if (!empty($hupijiao_pay_config)) {
- $hupijiao_pay_config['pay_info'] = unserialize($hupijiao_pay_config['pay_info']);
- $hupijiaoInfo = Db::name('weapp')->where(['code'=>'Hupijiaopay','status'=>1])->find();
- if (empty($hupijiaoInfo) || !isset($hupijiao_pay_config['pay_info']['is_open_pay']) || 1 == $hupijiao_pay_config['pay_info']['is_open_pay']) {
- $Config = $this->GetOtherPayApiConfig($post);
- } else {
- //兼容订单轮询查支付配置
- if ($post['pay_mark'] != 'Hupijiaopay') {
- if (empty($hupijiao_pay_config['pay_info'][$post['pay_mark'] . '_appid'])) {
- $Config = $this->GetOtherPayApiConfig($post);
- } else {
- $new_pay_info = [];
- $new_pay_info['is_open_pay'] = 0;
- $new_pay_info['appid'] = $hupijiao_pay_config['pay_info'][$post['pay_mark'] . '_appid'];
- $new_pay_info['appsecret'] = $hupijiao_pay_config['pay_info'][$post['pay_mark'] . '_appsecret'];
- $new_pay_info['pay_type'] = $post['pay_mark'];
- if (!empty($hupijiao_pay_config['pay_info']['gateway_domain'])) {
- $new_pay_info['gateway_domain'] = $hupijiao_pay_config['pay_info']['gateway_domain'];
- } else {
- $new_pay_info['gateway_domain'] = 'https://api.xunhupay.com';
- }
- $hupijiao_pay_config['pay_info'] = $new_pay_info;
- $Config = $hupijiao_pay_config;
- }
- } else {
- $new_pay_info = [];
- $new_pay_info['is_open_pay'] = 0;
- $new_pay_info['appid'] = $hupijiao_pay_config['pay_info'][$post['pay_type'] . '_appid'];
- $new_pay_info['appsecret'] = $hupijiao_pay_config['pay_info'][$post['pay_type'] . '_appsecret'];
- $new_pay_info['pay_type'] = $post['pay_type'];
- if (!empty($hupijiao_pay_config['pay_info']['gateway_domain'])) {
- $new_pay_info['gateway_domain'] = $hupijiao_pay_config['pay_info']['gateway_domain'];
- } else {
- $new_pay_info['gateway_domain'] = 'https://api.xunhupay.com';
- }
- $hupijiao_pay_config['pay_info'] = $new_pay_info;
- $Config = $hupijiao_pay_config;
- }
- }
- } else {
- $Config = $this->GetOtherPayApiConfig($post);
- }
-
- return $Config;
- }
-
- // 支付API配置信息查询 -- 先查询虎皮椒支付
- public function GetOtherPayApiConfig($post = [])
- {
- if (empty($post['pay_id']) || empty($post['pay_mark'])) $this->error('支付API异常,请刷新重试');
- $where = [
- 'pay_id' => $post['pay_id'],
- 'pay_mark' => $post['pay_mark']
- ];
- $Config = $this->pay_api_config_db->where($where)->find();
- if (empty($Config) || empty($Config['pay_info'])) $this->error('请在后台【接口配置】完善【'.$Config['pay_name'].'】配置信息');
- $Config['pay_info'] = unserialize($Config['pay_info']);
-
- if (1 == $post['pay_id']) {
- if (!isset($Config['pay_info']['is_open_wechat']) || 1 == $Config['pay_info']['is_open_wechat']) {
- $this->error($Config['pay_name'] . '未开启');
- }
- } else if (2 == $post['pay_id']) {
- if (!isset($Config['pay_info']['is_open_alipay']) || 1 == $Config['pay_info']['is_open_alipay']) {
- $this->error($Config['pay_name'] . '未开启');
- }
- } else {
- if (!isset($Config['pay_info']['is_open_pay']) || 1 == $Config['pay_info']['is_open_pay']) {
- $this->error($Config['pay_name'] . '未开启');
- }
- }
-
- return $Config;
- }
-
- // 订单查询
- public function GetFindOrderData($post = [], $is_up_order = false)
- {
- $submit_order_type = isset($post['submit_order_type']) ? intval($post['submit_order_type']) : -1;
- if (empty($post['unified_id']) || empty($post['unified_number']) || empty($post['transaction_type'])) $this->error('订单异常,请刷新重试');
-
- // 获取充值订单
- if (1 == $post['transaction_type']) {
- $where = [
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang,
- 'moneyid' => $post['unified_id'],
- 'order_number' => $post['unified_number']
- ];
- $OrderData = $this->users_money_db->where($where)->find();
- if (empty($OrderData)) $this->error('订单不存在或已变更');
-
- // 判断订单状态,1未付款,2已付款,3已完成,4订单取消
- $url = urldecode(url('user/Pay/pay_consumer_details'));
- if (in_array($OrderData['status'], [2, 3])) {
- $this->success('订单已支付,即将跳转', $url, true);
- } else if ($OrderData['status'] == 4) {
- $this->success('订单已取消,即将跳转', $url, true);
- }
- $OrderData['unified_id'] = $post['unified_id'];
- $OrderData['unified_amount'] = $OrderData['money'];
- $OrderData['unified_number'] = $post['unified_number'];
-
- // 更新订单支付方式
- if (!empty($is_up_order)) {
- $update = [
- 'pay_method' => $post['pay_mark'],
- 'wechat_pay_type' => '',
- 'update_time' => getTime()
- ];
- if ('wechat' == $post['pay_mark']) {
- if (!isMobile()) {
- // PC端
- $wechat_pay_type = 'WeChatScanCode';
- } else if (isMobile() && !isWeixin()) {
- // 手机端浏览器
- $wechat_pay_type = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机端微信
- $wechat_pay_type = 'WeChatInternal';
- }
- if (!empty($OrderData['wechat_pay_type'])) {
- $ReturnData = false;//$this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
- if (!empty($ReturnData)) $this->error($ReturnData);
- }
- $update['wechat_pay_type'] = $wechat_pay_type;
- }
- $this->users_money_db->where($where)->update($update);
- }
- }
- // 获取商品订单
- else if (2 == $post['transaction_type']) {
- $where = [
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang,
- 'order_id' => $post['unified_id'],
- 'order_code' => $post['unified_number']
- ];
- $OrderData = $this->shop_order_db->where($where)->find();
- if (empty($OrderData)) $this->error('订单不存在或已变更');
-
- // 判断订单状态,1已付款(待发货),2已发货(待收货),3已完成(确认收货),-1订单取消(已关闭),4订单过期
- $url = urldecode(url('user/Shop/shop_order_details', ['order_id' => $OrderData['order_id']]));
- if (in_array($OrderData['order_status'], [1, 2, 3])) {
- if ('v3' == getUsersTplVersion()) {
- if (0 <= $submit_order_type && 1 == $OrderData['order_status']) {
- $url = urldecode(url('user/Shop/shop_centre'));
- }
- }
- // if ($OrderData['order_status'] == 1) {
- // $this->shop_order_db->where($where)->update(['order_status'=>0]);
- // $returnData = pay_success_logic($this->users_id, $OrderData['order_code'], [], $OrderData['pay_name']);
- // }
- $this->success('订单已支付,即将跳转', $url, $returnData['data']);
- } else if ($OrderData['order_status'] == 4) {
- $this->success('订单已过期,即将跳转', $url, true);
- } else if ($OrderData['order_status'] == -1) {
- $this->success('订单已关闭,即将跳转', $url, true);
- }
- $OrderData['unified_id'] = $post['unified_id'];
- $OrderData['unified_amount'] = $OrderData['order_amount'];
- $OrderData['unified_number'] = $post['unified_number'];
-
- // 更新订单支付方式
- if (!empty($is_up_order)) {
- $update = [
- 'pay_name' => $post['pay_mark'],
- 'update_time' => getTime()
- ];
- if ('wechat' == $post['pay_mark']) {
- if (!isMobile()) {
- // PC端
- $wechat_pay_type = 'WeChatScanCode';
- } else if (isMobile() && !isWeixin()) {
- // 手机端浏览器
- $wechat_pay_type = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机端微信
- $wechat_pay_type = 'WeChatInternal';
- }
- if (!empty($OrderData['wechat_pay_type'])) {
- $ReturnData = $this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
- if (!empty($ReturnData)) $this->error($ReturnData);
- }
- $update['wechat_pay_type'] = $wechat_pay_type;
- }
- $this->shop_order_db->where($where)->update($update);
- $OrderData['pay_name'] = $post['pay_mark'];
- }
- }
- // 获取会员升级订单
- else if (3 == $post['transaction_type']) {
- $where = [
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang,
- 'moneyid' => $post['unified_id'],
- 'order_number' => $post['unified_number']
- ];
- $OrderData = $this->users_money_db->where($where)->find();
- if (empty($OrderData)) $this->error('订单不存在或已变更');
-
- // 判断订单状态,1未付款,2已付款,3已完成,4订单取消
- $url = urldecode(url('user/Level/level_centre'));
- if (in_array($OrderData['status'], [2, 3])) {
- $this->success('订单已支付,即将跳转', $url, true);
- } else if ($OrderData['status'] == 4) {
- $this->success('订单已取消,即将跳转', $url, true);
- }
- $OrderData['unified_id'] = $post['unified_id'];
- $OrderData['unified_amount'] = $OrderData['money'];
- $OrderData['unified_number'] = $post['unified_number'];
- }
- // 获取视频订单
- else if (8 == $post['transaction_type']) {
- $where = [
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang,
- 'order_id' => $post['unified_id'],
- 'order_code' => $post['unified_number']
- ];
- $OrderData = Db::name('media_order')->where($where)->find();
- if (empty($OrderData)) $this->error('订单不存在或已变更', url('user/Media/index'));
-
- $url = url('user/Media/index');
- if (in_array($OrderData['order_status'], [1])) $this->success('订单已支付,即将跳转!', $url, true);
- $OrderData['unified_id'] = $post['unified_id'];
- $OrderData['unified_amount'] = $OrderData['order_amount'];
- $OrderData['unified_number'] = $post['unified_number'];
-
- // 更新订单支付方式
- if (!empty($is_up_order)) {
- $update = [
- 'pay_name' => $post['pay_mark'],
- 'update_time' => getTime()
- ];
- if ('wechat' == $post['pay_mark']) {
- if (!isMobile()) {
- // PC端
- $wechat_pay_type = 'WeChatScanCode';
- } else if (isMobile() && !isWeixin()) {
- // 手机端浏览器
- $wechat_pay_type = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机端微信
- $wechat_pay_type = 'WeChatInternal';
- }
- if (!empty($OrderData['wechat_pay_type'])) {
- $ReturnData = false;//$this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
- if (!empty($ReturnData)) $this->error($ReturnData);
- }
- $update['wechat_pay_type'] = $wechat_pay_type;
- }
- Db::name('media_order')->where($where)->update($update);
- }
- }
- // 文章购买
- else if (9 == $post['transaction_type']) {
- $where = [
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang,
- 'order_id' => $post['unified_id'],
- 'order_code' => $post['unified_number']
- ];
- $OrderData = Db::name('article_order')->where($where)->find();
- if (empty($OrderData)) $this->error('订单不存在或已变更', url('user/Users/article_index'));
-
- $url = url('user/Users/article_index');
- if (in_array($OrderData['order_status'], [1])) $this->success('订单已支付,即将跳转!', $url, true);
- $OrderData['unified_amount'] = $OrderData['order_amount'];
- $OrderData['unified_number'] = $post['unified_number'];
- $OrderData['unified_id'] = $post['unified_id'];
-
- // 更新订单支付方式
- if (!empty($is_up_order)) {
- $update = [
- 'pay_name' => $post['pay_mark'],
- 'update_time' => getTime()
- ];
- if ('wechat' == $post['pay_mark']) {
- if (!isMobile()) {
- // PC端
- $wechat_pay_type = 'WeChatScanCode';
- } else if (isMobile() && !isWeixin()) {
- // 手机端浏览器
- $wechat_pay_type = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机端微信
- $wechat_pay_type = 'WeChatInternal';
- }
- if (!empty($OrderData['wechat_pay_type'])) {
- $ReturnData = false;//$this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
- if (!empty($ReturnData)) $this->error($ReturnData);
- }
- $update['wechat_pay_type'] = $wechat_pay_type;
- }
- Db::name('article_order')->where($where)->update($update);
- }
- }
- // 下载模型购买
- else if (10 == $post['transaction_type']) {
- $where = [
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang,
- 'order_id' => $post['unified_id'],
- 'order_code' => $post['unified_number']
- ];
- $OrderData = Db::name('download_order')->where($where)->find();
- if (empty($OrderData)) $this->error('订单不存在或已变更', url('user/Users/download_index'));
-
- $url = url('user/Users/download_index');
- if (in_array($OrderData['order_status'], [1])) $this->success('订单已支付,即将跳转!', $url, true);
- $OrderData['unified_amount'] = $OrderData['order_amount'];
- $OrderData['unified_number'] = $post['unified_number'];
- $OrderData['unified_id'] = $post['unified_id'];
-
- // 更新订单支付方式
- if (!empty($is_up_order)) {
- $update = [
- 'pay_name' => $post['pay_mark'],
- 'update_time' => getTime()
- ];
- if ('wechat' == $post['pay_mark']) {
- if (!isMobile()) {
- // PC端
- $wechat_pay_type = 'WeChatScanCode';
- } else if (isMobile() && !isWeixin()) {
- // 手机端浏览器
- $wechat_pay_type = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机端微信
- $wechat_pay_type = 'WeChatInternal';
- }
- if (!empty($OrderData['wechat_pay_type'])) {
- $ReturnData = false;//$this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
- if (!empty($ReturnData)) $this->error($ReturnData);
- }
- $update['wechat_pay_type'] = $wechat_pay_type;
- }
- Db::name('download_order')->where($where)->update($update);
- }
- }
- // 会员充值套餐订单
- else if (20 == $post['transaction_type']) {
- $where = [
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang,
- 'order_id' => $post['order_id'],
- 'order_code' => $post['order_code'],
- 'order_pay_code' => $post['order_pay_code'],
- ];
- $OrderData = Db::name('users_recharge_pack_order')->where($where)->find();
- if (empty($OrderData)) {
- $this->error('无效订单');
- } else if (1 < intval($OrderData['order_status'])) {
- $this->success('支付完成');
- }
- $OrderData['unified_id'] = $post['unified_id'];
- $OrderData['unified_number'] = $post['unified_number'];
- $OrderData['unified_amount'] = $OrderData['order_pay_prices'];
- }
- // 多商家订单
- else if (99 === intval($post['transaction_type'])) {
- // 获取商品订单
- $where = [
- 'users_id' => $this->users_id,
- 'unified_id' => $post['unified_id'],
- 'unified_number' => $post['unified_number']
- ];
- $OrderData = Db::name('shop_order_unified_pay')->where($where)->find();
- if (empty($OrderData)) $this->error('订单不存在或已变更..');
-
- // 判断订单状态,0未付款,1已付款
- $url = urldecode(url('user/Shop/shop_centre'));
- if (in_array($OrderData['pay_status'], [1])) $this->success('订单已支付,即将跳转...', $url, true);
-
- // 更新订单支付方式
- if (!empty($is_up_order)) {
- $update = [
- 'pay_name' => $post['pay_mark'],
- 'update_time' => getTime()
- ];
- if ('wechat' == $post['pay_mark']) {
- if (!isMobile()) {
- // PC端
- $wechat_pay_type = 'WeChatScanCode';
- } else if (isMobile() && !isWeixin()) {
- // 手机端浏览器
- $wechat_pay_type = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机端微信
- $wechat_pay_type = 'WeChatInternal';
- }
- if (!empty($OrderData['wechat_pay_type'])) {
- $ReturnData = $this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
- if (!empty($ReturnData)) $this->error($ReturnData);
- }
- $update['wechat_pay_type'] = $wechat_pay_type;
- }
- Db::name('shop_order_unified_pay')->where($where)->update($update);
- $OrderData['pay_name'] = $post['pay_mark'];
- }
- }
-
- $OrderData['transaction_type'] = $post['transaction_type'];
- return $OrderData;
- }
-
- // 使用微信支付,判断终端调起支付功能
- public function UseWeChatPay($Post = [], $Order = [], $PayInfo = [])
- {
- if (isset($PayInfo['is_open_wechat']) && 0 == $PayInfo['is_open_wechat']) {
- $total_fee = $Order['unified_amount'];
- $out_trade_no = $Order['unified_number'];
-
- // PC端电脑微信扫码支付
- if (!isMobile()) {
- $params = [
- 'unified_number' => $Post['unified_number'],
- 'transaction_type' => $Post['transaction_type']
- ];
- $result['url_qrcode'] = url('user/PayApi/pay_wechat_png', $params);
- $this->success('订单支付中', null, $result);
- }
- // 移动端浏览器微信H5支付
- else if (isMobile() && !isWeixin()) {
- $result = model('PayApi')->getMobilePay($out_trade_no, $total_fee, $PayInfo, $Post['transaction_type']);
- if (!empty($result['return_code']) && 'FAIL' == $result['return_code']) $this->error($result['return_msg']);
- $this->success('订单支付中', $result);
- }
- // 移动端微信内支付
- else if (isMobile() && isWeixin()) {
- if (isWeixinApplets()) {
- $params = [
- 'is_applets' => 1,
- 'unified_id' => $Order['unified_id'],
- 'unified_number' => $Order['unified_number'],
- 'transaction_type' => $Order['transaction_type']
- ];
- $this->success('订单支付中', null, $params);
- }
-
- // 小程序支付
- if (!empty($Post['openid'])) {
- $result = model('PayApi')->getWechatPay($Post['openid'], $out_trade_no, $total_fee, $PayInfo, 1, $Post['transaction_type']);
- if (!empty($result)) echo json_encode($result);
- }
- // 移动端微信内支付
- else if (!empty($this->users_id)) {
- $where = [
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang
- ];
- $open_id = Db::name('users')->where($where)->getField('open_id');
- // if (empty($open_id)) $this->error('手机端微信使用本站账号登录仅可余额支付!');
-
- // 手机端微信支付
- $result = model('PayApi')->getWechatPay($open_id, $out_trade_no, $total_fee, $PayInfo, 0, $Post['transaction_type']);
- if (!empty($result['postCode']) && 'error' === $result['postCode']) {
- $this->error($result['return_msg']);
- } else if (!empty($result)) {
- $this->success('订单支付中', null, $result);
- }
- } else {
- $this->error('使用本站账号登录仅可余额支付!');
- }
- }
- } else {
- $this->error('微信支付已关闭');
- }
- }
-
- // 使用支付宝支付,读取数据调起支付功能
- public function UseAliPayPay($Post = [], $Order = [], $PayInfo = [], $isReturn = false)
- {
- $alipay_url = null;
- if (!empty($Order) && !empty($PayInfo)) {
- $Order['transaction_type'] = $Post['transaction_type'];
- if (version_compare(PHP_VERSION,'5.5.0','<')) {
- // 低于5.5版本,仅可使用旧版支付宝支付
- $PayApi_model = new \app\user\model\PayApi;
- $alipay_url = $PayApi_model->getOldAliPayPayUrl($Order, $PayInfo);
- } else {
- // 高于或等于5.5版本,可使用新版支付宝支付
- if (empty($PayInfo['version'])) {
- // 新版
- $AliPayResult = [
- 'unified_number' => $Order['unified_number'],
- 'unified_amount' => $Order['unified_amount'],
- 'transaction_type' => $Order['transaction_type']
- ];
- $alipay_url = url('user/Pay/newAlipayPayUrl', $AliPayResult);
- } else if ($PayInfo['version'] == 1){
- // 旧版
- $PayApi_model = new \app\user\model\PayApi;
- $alipay_url = $PayApi_model->getOldAliPayPayUrl($Order, $PayInfo);
- }
- }
- }
-
- if (true === $isReturn) {
- return ['code'=>1, 'msg'=>'订单支付中', 'alipay_url'=>$alipay_url];
- } else {
- $this->success('订单支付中', $alipay_url);
- }
- }
-
- // 微信支付订单处理
- public function WeChatPayProcessing($Post = [], $Order = [], $PayInfo = [], $Config = [])
- {
- vendor('wechatpay.lib.WxPayApi');
- vendor('wechatpay.lib.WxPayConfig');
- // 实例化加载订单号
- $WxPayOrderQuery = new \WxPayOrderQuery;
- $WxPayOrderQuery->SetOut_trade_no($Order['unified_number']);
-
- // 处理微信配置数据
- $ApiConfig['app_id'] = $PayInfo['appid'];
- $ApiConfig['mch_id'] = $PayInfo['mchid'];
- $ApiConfig['key'] = $PayInfo['key'];
-
- // 实例化微信配置
- $WxPayConfig = new \WxPayConfig($ApiConfig);
- $WxPayApi = new \WxPayApi;
-
- if (empty($WxPayConfig->app_id)) $this->error('微信支付配置信息不全');
-
- // 返回结果
- $WeChatOrder = $WxPayApi->orderQuery($WxPayConfig, $WxPayOrderQuery);
- if (isset($WeChatOrder['return_code']) && $WeChatOrder['return_code'] == 'SUCCESS' && $WeChatOrder['result_code'] == 'SUCCESS') {
- if ($WeChatOrder['trade_state'] == 'SUCCESS' && !empty($WeChatOrder['transaction_id'])) {
- $this->OrderProcessing($Post, $Order, $WeChatOrder, $Config);
- } else if ($WeChatOrder['trade_state'] == 'NOTPAY') {
- $this->success('正在支付中...');
- }
- }
- }
-
- // 支付宝支付订单处理
- public function AliPayPayProcessing($Post = [], $Order = [], $PayInfo = [], $Config = [])
- {
- if (!empty($PayInfo) && 0 == $PayInfo['version']) {
- vendor('alipay.pagepay.service.AlipayTradeService');
- vendor('alipay.pagepay.buildermodel.AlipayTradeQueryContentBuilder');
-
- // 实例化加载订单号
- $RequestBuilder = new \AlipayTradeQueryContentBuilder;
- $OutTradeNo = trim($Order['unified_number']);
- $RequestBuilder->setOutTradeNo($OutTradeNo);
-
- // 拼装配置
- $ApiConfig['app_id'] = $PayInfo['app_id'];
- $ApiConfig['merchant_private_key'] = $PayInfo['merchant_private_key'];
- $ApiConfig['charset'] = 'UTF-8';
- $ApiConfig['sign_type'] = 'RSA2';
- $ApiConfig['gatewayUrl'] = 'https://openapi.alipay.com/gateway.do';
- $ApiConfig['alipay_public_key'] = $PayInfo['alipay_public_key'];
-
- // 实例化支付宝配置
- $AlipayTradeService = new \AlipayTradeService($ApiConfig);
- $AliPayOrder = $AlipayTradeService->Query($RequestBuilder);
-
- // 解析数据
- $AliPayOrder = json_decode(json_encode($AliPayOrder), true);
-
- if ('40004' == $AliPayOrder['code'] && 'Business Failed' === $AliPayOrder['msg']) {
- $this->success('正在建立订单信息');
- } else if ('10000' == $AliPayOrder['code'] && 'WAIT_BUYER_PAY' === $AliPayOrder['trade_status']) {
- $this->success('订单已建立,尚未支付');
- } else if ('10000' == $AliPayOrder['code'] && 'TRADE_SUCCESS' === $AliPayOrder['trade_status']) {
- // 已经支付,处理订单
- $this->OrderProcessing($Post, $Order, $AliPayOrder, $Config);
- }
- } else {
- $this->success('订单支付中');
- }
- }
-
- // 订单统一处理
- public function OrderProcessing($Post = [], $Order = [], $PayDetails = [], $Config = [], $queryOrder = true)
- {
- if (!empty($PayDetails) && !empty($queryOrder)) {
- $total_amount = 0;
- if (!empty($PayDetails['total_fee'])) {
- $total_amount = $PayDetails['total_fee'] / 100;
- } else if (!empty($PayDetails['total_amount'])) {
- $total_amount = $PayDetails['total_amount'];
- } else if (!empty($PayDetails['txnAmt'])) {
- $total_amount = $PayDetails['txnAmt'] / 100;
- }
- $payLogicObj = new PayLogic();
- $OrderData = $payLogicObj->checkAmount($PayDetails['out_trade_no'], $total_amount, $Post['transaction_type']);
- if (empty($OrderData)) $this->error("支付失败,支付金额与订单金额不相符");
- }
-
- // 查询实时订单信息
- $Order = $this->GetFindOrderData($Post);
-
- // 充值订单处理
- if (1 == $Post['transaction_type']) {
- // 付款成功后,订单并未修改状态时,修改订单状态并返回
- if (1 === intval($Order['status'])) {
- // 返回参数
- $result_0['email'] = false;
- $result_0['mobile'] = false;
- $url = url('user/Pay/pay_consumer_details');
- // 订单更新条件
- $where = [
- 'moneyid' => $Order['moneyid'],
- 'users_id' => $this->users_id,
- 'order_number' => strval($Order['order_number']),
- ];
- // 订单更新数据,更新为已付款
- $update = [
- 'status' => 2,
- 'pay_details' => serialize($PayDetails),
- 'update_time' => $this->times
- ];
- // 订单更新
- $result_1 = $this->users_money_db->where($where)->update($update);
- // 订单更新后续操作
- if (!empty($result_1)) {
- // 更新增加会员余额
- $result_2 = Db::name('users')->where(['users_id' => intval($this->users_id)])->setInc('users_money', $Order['money']);
- // 用户充值金额后续操作
- if (!empty($result_2)) {
- // 业务处理完成,订单已完成
- $update = [
- 'status' => 3,
- 'update_time' => getTime()
- ];
- $this->users_money_db->where($where)->update($update);
- $this->success('充值成功', $url, $result_0);
- } else {
- $this->success('支付成功,余额充值失败,请联系客服', $url, $result_0);
- }
- } else {
- $this->success('支付成功,订单更新失败,请联系客服', $url, $result_0);
- }
- }
- }
- // 商品订单处理
- else if (2 == $Post['transaction_type']) {
- // 付款成功后,订单并未修改状态时,修改订单状态并返回
- if (empty($Order['order_status'])) {
- $returnData = pay_success_logic($this->users_id, $Order['order_code'], $PayDetails, $Order['pay_name']);
- if (is_array($returnData)) {
- if (1 == $returnData['code']) {
- $this->success($returnData['msg'], $returnData['url'], $returnData['data']);
- } else {
- $this->error($returnData['msg']);
- }
- }
- } else {
- $returnData = [];
- $users = \think\Db::name('users')->field('*')->find($Order['users_id']);
- // 邮箱发送
- $returnData['email'] = GetEamilSendData(tpCache('smtp'), $users, $Order, 1, $Order['pay_name']);
- // 手机发送
- $returnData['mobile'] = GetMobileSendData(tpCache('sms'), $users, $Order, 1, $Order['pay_name']);
- $this->success('已支付', url('user/Shop/shop_centre'), $returnData);
- }
- }
- // 会员升级处理
- else if (3 == $Post['transaction_type']) {
- // 付款成功后,订单并未修改状态时,修改订单状态并返回
- $Result['email'] = false;
- $Result['mobile'] = false;
- $url = url('user/Level/level_centre');
-
- if ($Order['status'] == 1) {
- // 订单更新条件
- $where = [
- 'moneyid' => $Order['moneyid'],
- 'users_id' => $this->users_id
- ];
-
- // 订单更新数据,更新为已付款
- $UpMoneyData = $this->GetUpMoneyData(session('UsersTypeData'), $Order['pay_method']);
-
- // 订单更新
- $ResultID = $this->users_money_db->where($where)->update($UpMoneyData);
-
- // 订单更新后续操作
- if (!empty($ResultID)) {
- $Where = [
- 'users_id' => $Order['users_id'],
- ];
-
- // 获取更新会员数据数组
- $UpUsersData = $this->GetUpUsersData(session('UsersTypeData'));
- $ReturnID = $this->users_db->where($Where)->update($UpUsersData);
-
- // 用户充值金额后续操作
- if (!empty($ReturnID)) {
- // 返回
- $this->success('升级成功', $url, $Result);
- } else {
- $this->success('付款成功,数据错误,升级失败,请联系管理员', $url, $Result);
- }
- } else {
- $this->success('付款成功,数据错误,升级失败,请联系管理员', $url, $Result);
- }
- }
- }
- // 视频订单处理
- else if (8 == $Post['transaction_type']) {
- // 付款成功后,订单并未修改状态时,修改订单状态并返回
- if (empty($Order['order_status'])) {
- // 订单更新条件
- $OrderWhere = [
- 'order_id' => $Order['order_id'],
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang
- ];
-
- // 订单更新数据,更新为已付款
- $OrderData = [
- 'order_status' => 1,
- 'pay_details' => serialize($PayDetails),
- 'pay_time' => getTime(),
- 'update_time' => getTime()
- ];
-
- // 订单更新
- $ResultID = Db::name('media_order')->where($OrderWhere)->update($OrderData);
-
- // 订单更新后续操作
- if (!empty($ResultID)) {
- // 订单操作完成,返回跳转
- $ViewUrl = cookie($this->users_id . '_' . $Order['product_id'] . '_EyouMediaViewUrl');
- $this->success('支付成功,处理订单完成', $ViewUrl, true);
- }
- }
- }
- // 文章订单处理
- else if (9 === intval($Post['transaction_type'])) {
- // 付款成功后,订单并未修改状态时,修改订单状态并返回
- if (empty($Order['order_status'])) {
- // 订单更新条件
- $OrderWhere = [
- 'order_id' => $Order['order_id'],
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang
- ];
-
- // 订单更新数据,更新为已付款
- $OrderData = [
- 'order_status' => 1,
- 'pay_details' => serialize($PayDetails),
- 'pay_time' => getTime(),
- 'update_time' => getTime()
- ];
-
- // 订单更新
- $ResultID = Db::name('article_order')->where($OrderWhere)->update($OrderData);
-
- // 订单更新后续操作
- if (!empty($ResultID)) {
- // 订单操作完成,返回跳转
- $ViewUrl = cookie($this->users_id . '_' . $Order['product_id'] . '_EyouArticleViewUrl');
- $this->success('支付成功,处理订单完成', $ViewUrl, true);
- }
- }
- }
- // 下载订单处理
- else if (10 === intval($Post['transaction_type'])) {
- // 付款成功后,订单并未修改状态时,修改订单状态并返回
- if (empty($Order['order_status'])) {
- // 订单更新条件
- $OrderWhere = [
- 'order_id' => $Order['order_id'],
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang
- ];
-
- // 订单更新数据,更新为已付款
- $OrderData = [
- 'order_status' => 1,
- 'pay_details' => serialize($PayDetails),
- 'pay_time' => getTime(),
- 'update_time' => getTime()
- ];
-
- // 订单更新
- $ResultID = Db::name('download_order')->where($OrderWhere)->update($OrderData);
-
- // 订单更新后续操作
- if (!empty($ResultID)) {
- // 订单操作完成,返回跳转
- $ViewUrl = cookie($this->users_id . '_' . $Order['product_id'] . '_EyouDownloadViewUrl');
- $this->success('支付成功,处理订单完成', $ViewUrl, true);
- }
- }
- }
- // 会员充值套餐订单处理
- else if (20 === intval($Post['transaction_type'])) {
- // 更新订单为已支付
- $where = [
- 'users_id' => $this->users_id,
- 'order_id' => $Order['order_id'],
- 'order_code' => $Order['order_code'],
- 'order_pay_code' => $Order['order_pay_code'],
- ];
- $update = [
- 'order_status' => 2,
- 'order_pay_time' => $this->times,
- 'order_pay_details' => serialize($PayDetails),
- 'update_time' => $this->times,
- ];
- $result_1 = Db::name('users_recharge_pack_order')->where($where)->update($update);
- if (!empty($result_1)) {
- // 根据会员充值套餐给会员充储值余额
- $result_2 = Db::name('users')->where(['users_id' => $this->users_id])->setInc('users_money', $Order['order_face_value']);
- if (!empty($result_2)) {
- // 更新订单为已充值
- $update = [
- 'order_status' => 3,
- 'update_time' => $this->times,
- ];
- Db::name('users_recharge_pack_order')->where($where)->update($update);
- // 增加充值套餐的销售量
- $where = [
- 'pack_id' => $Order['pack_id'],
- ];
- Db::name('users_recharge_pack')->where($where)->setInc('pack_sales_num');
- // 会员当前余额
- $usersMoney = Db::name('users')->where('users_id', $this->users_id)->getField('users_money');
- $insert = [
- 'users_id' => $this->users_id,
- 'money' => unifyPriceHandle($Order['order_face_value']),
- 'users_money' => unifyPriceHandle($usersMoney),
- 'cause' => $Order['order_pack_names'] . '(充值套餐)',
- 'cause_type' => 1,
- 'status' => 3,
- 'pay_method' => '',
- 'pay_details' => serialize($PayDetails),
- 'order_number' => $Order['order_pay_code'],
- 'lang' => $this->home_lang,
- 'add_time' => $this->times,
- 'update_time' => $this->times,
- ];
- Db::name('users_money')->insertGetId($insert);
- // 充值成功
- $this->success('充值成功');
- }
- }
- }
- // 多商家订单处理
- else if (99 === intval($Post['transaction_type'])) {
- // 付款成功后,订单并未修改状态时,修改订单状态并返回
- if (!empty($Order) && empty($Order['pay_status'])) {
- $multiMerchantLogic = new \app\user\logic\MultiMerchantLogic;
- $multiMerchantLogic->unifiedPaySuccessHandle($Order, $Post['pay_mark'], $PayDetails);
- }
- }
- }
-
- // 确定支付类型
- // $OrderPayMethodType 数据中的数据
- // $PayMethodType 当前提交的类型,用于判断
- private function determine_pay_type($OrderPayMethodType = null, $PayMethodType = null)
- {
- // 若为空,则表现未标记过支付类型
- if (empty($OrderPayMethodType)) return false;
-
- // 是否数据库中的支付类型和传入的一致
- if ($OrderPayMethodType != $PayMethodType) {
- // 判断返回提示信息
- switch ($OrderPayMethodType) {
- case 'WeChatScanCode':
- // PC端微信扫码支付
- return '该订单已使用微信扫码创建订单,根据微信支付规则,请在PC端浏览器扫码支付';
- break;
- case 'WeChatInternal':
- // 手机微信端H5支付
- return '该订单已使用微信JSAPI创建订单,根据微信支付规则,请使用手机微信进行支付';
- break;
- case 'WeChatH5':
- // 手机端浏览器H5支付
- return '该订单已使用手机浏览器创建订单,根据微信支付规则,请使用手机浏览器进行支付';
- break;
- default:
- return '微信支付方法选择错误,请刷新后重试~~';
- break;
- }
- } else {
- return false;
- }
- }
-
- /*--------------------以下为会员升级代码---------------------*/
-
- // 判断是否可以升级
- public function IsAllowUpgrade($post = [])
- {
- // 查询会员升级选择的数据
- $UsersTypeData = Db::name('users_type_manage')->where('type_id', $post['type_id'])->find();
-
- // 查询提交过来级别等级值
- $LevelValue = Db::name('users_level')->where('level_id', $UsersTypeData['level_id'])->getField('level_value');
-
- // 查询当前会员等级值
- $UsersValue = Db::name('users_level')->where('level_id', $this->users['level'])->getField('level_value');
-
- // 提交的等级是否比现有等级高
- if ($UsersValue > $LevelValue) $this->error('选择升级的等级不可以比目前持有的等级低');
-
- // 将查询数据存入 session,微信和支付宝回调时需要查询数据
- if (!empty($UsersTypeData)) session('UsersTypeData', $UsersTypeData);
- }
-
- // 余额支付
- public function BalancePayment($order_number = null, $UsersTypeData = [])
- {
- // 没有传入则从 session 中读取
- $UsersTypeData = !empty($UsersTypeData) ? $UsersTypeData : session('UsersTypeData');
-
- if (!empty($UsersTypeData)) {
- $UsersMoney = $this->users_db->where('users_id', $this->users_id)->getField('users_money');
- if ($UsersMoney < $UsersTypeData['price']) {
- // 若会员余额不足支付则返回
- $ReturnData = $this->GetReturnData();
- $this->success($ReturnData);
- } else {
- if (!empty($order_number)) {
- // 获取更新金额明细表数据数组
- $UpMoneyData = $this->GetUpMoneyData($UsersTypeData);
- // 更新数据
- $ReturnID = $this->users_money_db->where('order_number', $order_number)->update($UpMoneyData);
- } else {
- // 获取生成的订单信息
- $AddMoneyData = $this->GetAddMoneyData($UsersTypeData);
- // 存入会员金额明细表
- $ReturnID = $this->users_money_db->add($AddMoneyData);
- }
-
- if (!empty($ReturnID)) {
- $Where = [
- 'users_id' => $this->users_id,
- 'lang' => $this->home_lang
- ];
- // 获取更新会员数据数组
- $UpUsersData = $this->GetUpUsersData($UsersTypeData, true);
- $ReturnID = $this->users_db->where($Where)->update($UpUsersData);
- if (!empty($ReturnID)) {
- // 跳转链接
- $referurl = input('param.referurl/s', null, 'htmlspecialchars_decode,urldecode');
- if (empty($referurl)) {
- $referurl = cookie('referurl');
- if (empty($referurl)) {
- $referurl = url('user/Level/level_centre');
- }
- }
- cookie('referurl', null);
- // 支付完成返回
- $ReturnData = $this->GetReturnData(0, 1, '余额支付完成!', $referurl);
- $this->success($ReturnData);
- }
- }
- }
- } else {
- $this->error('升级失败,刷新重试');
- }
- }
-
- // 微信支付
- public function WeChatPayment($Post = [], $PayInfo = [])
- {
- $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
- $UsersTypeData = session('UsersTypeData');
-
- if (empty($MoneyData)) {
- // 获取生成的订单信息
- $AddMoneyData = $this->GetAddMoneyData($UsersTypeData, 'wechat', 1);
-
- // 存入会员金额明细表
- $ReturnID = $this->users_money_db->add($AddMoneyData);
- if (!empty($ReturnID)) {
- // 返回订单数据
- $AddMoneyData['moneyid'] = $ReturnID;
- $this->ReturnMoneyPayData($Post, $AddMoneyData, $PayInfo);
- }
- } else {
- $MoneyDataCause = unserialize($MoneyData['cause']);
- if (isMobile() && !isWeixin()) {
- // 手机浏览器端支付
- $PayType = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机微信端支付
- $PayType = 'WeChatInternal';
- } else {
- // PC端扫码支付
- $PayType = 'WeChatScanCode';
- }
-
- if ($MoneyDataCause['level_id'] == $UsersTypeData['level_id'] && $MoneyData['money'] == $UsersTypeData['price'] && $MoneyData['wechat_pay_type'] == $PayType) {
- // 提交的订单与上一次是同一类型产品,直接返回数据
- $this->ReturnMoneyPayData($Post, $MoneyData, $PayInfo);
- } else {
- // 生成新订单覆盖原来的订单返回
- $UpMoneyData = $this->GetUpMoneyData($UsersTypeData, 'wechat');
- $UpMoneyData['status'] = 1;
- $UpMoneyData['order_number'] = date('Ymd').getTime().rand(10,100);
- $this->users_money_db->where('moneyid', $MoneyData['moneyid'])->update($UpMoneyData);
-
- // 返回订单数据
- $UpMoneyData['moneyid'] = $MoneyData['moneyid'];
- $this->ReturnMoneyPayData($Post, $UpMoneyData, $PayInfo);
- }
- }
- }
-
- // 支付宝支付
- public function AliPayPayment($Post = [], $PayInfo = [])
- {
- $UsersTypeData = session('UsersTypeData');
- if (!empty($UsersTypeData)) {
- $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
- if (empty($MoneyData)) {
- // 获取生成的订单信息
- $AddMoneyData = $this->GetAddMoneyData($UsersTypeData, 'alipay', 1);
- // 存入会员金额明细表
- $ReturnID = $this->users_money_db->add($AddMoneyData);
- // 支付宝处理返回信息
- $AddMoneyData['moneyid'] = $ReturnID;
- if (!empty($ReturnID)) $this->AliPayProcessing($AddMoneyData, $PayInfo, $Post);
- } else {
- // 获取生成的订单信息
- $UpMoneyData = $this->GetUpMoneyData($UsersTypeData, 'alipay');
- $UpMoneyData['status'] = 1;
- // 更新会员金额明细表
- $ReturnID = $this->users_money_db->where('moneyid', $MoneyData['moneyid'])->update($UpMoneyData);
- if (!empty($ReturnID)) {
- // 支付宝处理返回信息
- $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
- $this->AliPayProcessing($MoneyData, $PayInfo, $Post);
- }
- }
- } else {
- $this->error('升级失败,刷新重试');
- }
- }
-
- // 获取第三方订单
- public function GetPayOrderData($Post = [], $PayInfo = [], $pay_mark = null)
- {
- $UsersTypeData = session('UsersTypeData');
- $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
- if (empty($MoneyData)) {
- // 获取生成的订单信息
- $AddMoneyData = $this->GetAddMoneyData($UsersTypeData, $pay_mark, 1);
- // 存入会员金额明细表
- $ReturnID = $this->users_money_db->add($AddMoneyData);
- // 支付宝处理返回信息
- $AddMoneyData['moneyid'] = $ReturnID;
- return $AddMoneyData;
- } else {
- // 获取生成的订单信息
- $UpMoneyData = $this->GetUpMoneyData($UsersTypeData, $pay_mark);
- $UpMoneyData['status'] = 1;
- // 更新会员金额明细表
- $ReturnID = $this->users_money_db->where('moneyid', $MoneyData['moneyid'])->update($UpMoneyData);
- if (!empty($ReturnID)) {
- // 支付宝处理返回信息
- $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
- return $MoneyData;
- }
- }
- }
-
- // 支付宝订单处理逻辑
- private function AliPayProcessing($MoneyData = [], $PayInfo = [], $Post = [])
- {
- // 返回订单数据
- $AliPayUrl = '';
- // 支付宝支付所需参数信息拼装
- $Data = [
- 'unified_number' => $MoneyData['order_number'],
- 'unified_amount' => $MoneyData['money'],
- 'transaction_type' => 3,
- ];
- if (version_compare(PHP_VERSION,'5.5.0','<')) {
- // 低于5.5版本,仅可使用旧版支付宝支付
- $AliPayUrl = model('PayApi')->getOldAliPayPayUrl($Data, $PayInfo);
- } else {
- // 高于或等于5.5版本,可使用新版支付宝支付
- if (empty($PayInfo['version'])) {
- // 新版
- $AliPayUrl = url('user/Pay/newAlipayPayUrl', $Data);
- } else if ($PayInfo['version'] == 1) {
- // 旧版
- $AliPayUrl = model('PayApi')->getOldAliPayPayUrl($Data, $PayInfo);
- }
- }
- if (!empty($AliPayUrl)) {
- $ReturnData = $this->GetReturnData(2, 0, '订单生成!', $AliPayUrl, $Data['unified_number']);
- $ReturnData['ReturnOrderID'] = $MoneyData['moneyid'];
- $ReturnData['pay_id'] = $Post['pay_id'];
- $ReturnData['pay_mark'] = $Post['pay_mark'];
- } else {
- $this->error('升级失败,刷新重试');
- }
- $this->success($ReturnData);
- }
-
- // 处理微信订单支付信息并加载回页面
- private function ReturnMoneyPayData($Post = [], $MoneyData = [], $PayInfo = [])
- {
- if (empty($MoneyData)) $this->error('订单生成错误,请刷新后重试');
- // 订单信息
- $ReturnOrderData = [
- 'pay_id' => $Post['pay_id'],
- 'pay_mark' => $Post['pay_mark'],
- 'unified_id' => $MoneyData['moneyid'],
- 'unified_number' => $MoneyData['order_number'],
- 'transaction_type' => 3, // 订单支付购买
- 'order_total_amount' => $MoneyData['money'],
- 'PayData' => [
- 'appId' => ''
- ]
- ];
- if (isMobile() && !isWeixin()) {
- // 手机浏览器端支付
- $out_trade_no = $MoneyData['order_number'];
- if (empty($out_trade_no)) $this->error('支付异常,请刷新后重试~');
-
- $total_fee = $MoneyData['money'];
- if (empty($total_fee)) $this->error('支付异常,请刷新后重试~');
-
- $url = model('PayApi')->getMobilePay($out_trade_no, $total_fee, $PayInfo, 3);
- if (isset($url['return_code']) && 'FAIL' == $url['return_code']) {
- $this->error('商户公众号尚未成功开通H5支付,请开通成功后重试~');
- }
- $ReturnDataNew['url_qrcode'] = null;
- } else if (isMobile() && isWeixin()) {
- // 手机微信端支付
- // if (empty($this->users['open_id'])) {
- // // 如果会员没有openid则使用扫码支付方式
- // $Param = [
- // 'unified_number' => $MoneyData['order_number'],
- // 'transaction_type' => 3
- // ];
- // $url = url('user/PayApi/pay_wechat_png', $Param);
- // } else {
- // $url = null;
- // if (isWeixinApplets()) {
- // $ReturnOrderData['is_applets'] = 1;
- // } else {
- // $Paydata = model('PayApi')->getWechatPay($this->users['open_id'], $MoneyData['order_number'], $MoneyData['money'], $PayInfo, 0, 3);
- // $ReturnOrderData['PayData'] = $Paydata;
- // }
- // }
- $url = null;
- if (isWeixinApplets()) {
- $ReturnOrderData['is_applets'] = 1;
- } else {
- $Paydata = model('PayApi')->getWechatPay($this->users['open_id'], $MoneyData['order_number'], $MoneyData['money'], $PayInfo, 0, 3);
- $ReturnOrderData['PayData'] = $Paydata;
- }
- $ReturnDataNew['url_qrcode'] = $url;
- } else {
- $Param = [
- 'unified_number' => $MoneyData['order_number'],
- 'transaction_type' => 3
- ];
- $url = url('user/PayApi/pay_wechat_png', $Param);
- $ReturnDataNew['url_qrcode'] = $url;
- }
-
- $ReturnData = $this->GetReturnData(1, 0, '订单生成!', $url, $MoneyData['order_number']);
- $ReturnData = array_merge($ReturnData, $ReturnDataNew);
- $this->success($ReturnData, $url, $ReturnOrderData);
- }
-
- // 查询
- // field 字段信息,若不传入则默认值为*
- // 值为*:find方式查询,查询所有字段,返回一维数组
- // 值为多个:find方式查询,查询指定字段,返回一维数组
- // 值为单个:getField方式查询,返回单个字段值
- // return 返回查询结果
- public function GetMoneyData($field = '*', $order_number = null)
- {
- $data = [];
- // 查询条件
- $where = [
- 'users_id' => $this->users_id,
- 'cause_type' => 0, // 消费类型
- 'status' => 1, // 未付款状态
- 'lang' => $this->home_lang,
- ];
-
- if (!empty($order_number)) $where['order_number'] = $order_number;
-
- if ('*' == $field) {
- // 查询所有字段
- $data = $this->users_money_db->where($where)->find();
- } else {
- $info = explode(',', $field);
- if (1 < count($info)) {
- // 查询指定的多个字段
- $data = $this->users_money_db->where($where)->field($field)->find();
- } else {
- // 查询指定的单个字段
- $data = $this->users_money_db->where($where)->getField($field);
- }
- }
- return $data;
- }
-
- // 拼装更新会员数据数组
- private function GetUpUsersData($data = array(), $balance = false)
- {
- $time = getTime();
- // 会员期限定义数组
- $limit_arr = Config::get('global.admin_member_limit_arr');
- // 到期天数
- $maturity_days = $limit_arr[$data['limit_id']]['maturity_days'];
- // 更新会员属性表的数组
- $result = [
- 'level' => $data['level_id'],
- 'update_time' => $time,
- 'level_maturity_days' => Db::raw('level_maturity_days+'.($maturity_days)),
- ];
-
- // 如果是余额支付则追加数组
- if (!empty($balance)) $result['users_money'] = Db::raw('users_money-'.($data['price']));
-
- // 判断是否需要追加天数,maturity_code在Base层已计算,1表示终身会员天数
- if (1 != $this->users['maturity_code']) {
- // 判断是否到期,到期则执行,3表示会员在期限内,不需要进行下一步操作
- if (3 != $this->users['maturity_code']) {
- // 追加天数数组
- $result['open_level_time'] = $time;
- $result['level_maturity_days'] = $maturity_days;
- }
- }
-
- return $result;
- }
-
- // 拼装返回数组
- private function GetReturnData($ReturnCode = 0, $ReturnPay = 0, $ReturnMsg = null, $ReturnUrl = null, $ReturnOrder = null)
- {
- // 返回跳转的链接
- $ReturnUrl = !empty($ReturnUrl) ? $ReturnUrl : url('user/Pay/pay_account_recharge');
-
- // 返回提示的信息
- $ReturnMsg = 0 == $ReturnCode && empty($ReturnMsg) ? '余额不足,若要使用余额支付,请先充值!' : $ReturnMsg;
-
- // 拼装数据
- $ReturnData = [
- // 返回判断支付类型,0为余额支付,1为微信,2为支付宝,2以上为第三方支付
- 'ReturnCode' => $ReturnCode,
- // 返回判断是否已支付,0为未支付,1为完成支付
- 'ReturnPay' => $ReturnPay,
- // 返回提示的信息
- 'ReturnMsg' => $ReturnMsg,
- // 返回跳转的链接
- 'ReturnUrl' => $ReturnUrl,
- // 支付订单号
- 'ReturnOrder'=> $ReturnOrder,
- ];
-
- // 微信支付才需要的返回字段
- if (2 == $ReturnCode) {
- if (isMobile() && !isWeixin()) {
- // 手机浏览器端支付
- $ReturnData['WeChatType'] = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机微信端支付
- $ReturnData['WeChatType'] = 'WeChatInternal';
- } else {
- // PC端扫码支付
- $ReturnData['WeChatType'] = 'WeChatScanCode';
- }
- }
-
- return $ReturnData;
- }
-
- // 拼装订单数组
- private function GetAddMoneyData($UsersTypeData = array(), $pay_method = 'balance', $status = 2, $details = '')
- {
- $wechat_pay_type = '';
- if ('balance' == $pay_method) {
- $pay_method_new = '余额';
- } else if ('alipay' == $pay_method) {
- $pay_method_new = '支付宝';
- } else if ('wechat' == $pay_method) {
- if (isMobile() && !isWeixin()) {
- // 手机浏览器端支付
- $wechat_pay_type = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机微信端支付
- $wechat_pay_type = 'WeChatInternal';
- } else {
- // PC端扫码支付
- $wechat_pay_type = 'WeChatScanCode';
- }
- $pay_method_new = '微信';
- } else {
- $pay_method_new = $pay_method;
- }
-
- $details = '会员当前级别为【' . $this->users['level_name'] . '】,使用' . $pay_method_new . '支付【 ' . $UsersTypeData['type_name'] . '】,支付金额为' . $UsersTypeData['price'];
-
- $time = getTime();
- // 拼装数组存入会员购买等级表
- $UsersMoney = strval($this->users['users_money']) - strval($UsersTypeData['price']);
- $AddMoneyData = [
- 'users_id' => $this->users_id,
- // 订单生成规则
- 'order_number' => date('Ymd') . $time . rand(10,100),
- // 金额
- 'money' => $UsersTypeData['price'],
- 'users_money' => unifyPriceHandle($UsersMoney),
- // 购买的产品等级ID(level_id)
- 'cause' => serialize($UsersTypeData),
- // 购买消费标记
- 'cause_type' => 0,
- // 支付状态,默认2为支付完成
- 'status' => $status,
- // 支付方式,默认余额支付
- 'pay_method' => $pay_method,
- 'wechat_pay_type' => $wechat_pay_type,
- // 支付详情
- 'pay_details' => serialize($details),
- // 如果时升级订单则存在升级会员级别ID
- 'level_id' => $UsersTypeData['level_id'],
- 'lang' => $this->home_lang,
- 'add_time' => $time,
- 'update_time' => $time
- ];
-
- return $AddMoneyData;
- }
-
- // 拼装更新金额明细表数据数组
- private function GetUpMoneyData($data = array(), $pay_method = 'balance')
- {
- $wechat_pay_type = '';
- if ('balance' == $pay_method) {
- $pay_method_new = '余额';
- } else if ('alipay' == $pay_method) {
- $pay_method_new = '支付宝';
- } else if ('wechat' == $pay_method) {
- if (isMobile() && !isWeixin()) {
- // 手机浏览器端支付
- $wechat_pay_type = 'WeChatH5';
- } else if (isMobile() && isWeixin()) {
- // 手机微信端支付
- $wechat_pay_type = 'WeChatInternal';
- } else {
- // PC端扫码支付
- $wechat_pay_type = 'WeChatScanCode';
- }
- $pay_method_new = '微信';
- } else {
- $pay_method_new = $pay_method;
- $pay_method = 'Hupijiaopay' != $pay_method ? 'wechat' : $pay_method;
- }
-
- $details = '会员当前级别为【' . $this->users['level_name'] . '】,使用' . $pay_method_new . '支付【 ' . $data['type_name'] . '】,支付金额为' . $data['price'];
-
- $result = [
- 'cause' => serialize($data),
- 'money' => $data['price'],
- 'status' => 2,
- 'pay_method' => $pay_method,
- 'wechat_pay_type' => $wechat_pay_type,
- 'pay_details' => serialize($details),
- // 如果时升级订单则存在升级会员级别ID
- 'level_id' => $data['level_id'],
- 'update_time' => getTime()
- ];
- if ('balance' == $pay_method) {
- $result['users_money'] = $this->users['users_money'] - $result['money'];
- }
- return $result;
- }
- }
|