説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

PayApiLogic.php 65KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2020-05-22
  12. */
  13. namespace app\user\logic;
  14. use think\Model;
  15. use think\Db;
  16. use think\Request;
  17. use think\Config;
  18. use app\user\logic\PayLogic;
  19. /**
  20. * 支付API逻辑处理
  21. * @package user\Logic
  22. */
  23. load_trait('controller/Jump');
  24. class PayApiLogic extends Model
  25. {
  26. use \traits\controller\Jump;
  27. private $home_lang = 'cn';
  28. private $param_users_id = 0;
  29. public function __construct($param_users_id = 0) {
  30. if (!empty($param_users_id)) $this->param_users_id = $param_users_id;
  31. parent::__construct();
  32. }
  33. /**
  34. * 初始化操作
  35. */
  36. public function initialize() {
  37. parent::initialize();
  38. // 时间戳
  39. $this->times = getTime();
  40. // 多语言
  41. $this->home_lang = get_home_lang();
  42. // 会员信息表
  43. $this->users_db = Db::name('users');
  44. // 订单主表
  45. $this->shop_order_db = Db::name('shop_order');
  46. // 会员金额明细表
  47. $this->users_money_db = Db::name('users_money');
  48. // 支付API配置
  49. $this->pay_api_config_db = Db::name('pay_api_config');
  50. // 会员信息
  51. if (!empty($this->param_users_id)) {
  52. $this->users = GetUsersLatestData($this->param_users_id);
  53. } else {
  54. $this->users = GetUsersLatestData();
  55. }
  56. $this->users_id = $this->users['users_id'];
  57. }
  58. // 支付API配置信息查询
  59. public function GetPayApiConfig($post = [])
  60. {
  61. if (empty($post['pay_mark'])) $this->error('支付API异常,请刷新重试');
  62. //先查虎皮椒支付有没有配置
  63. $hupijiao_pay_config = $this->pay_api_config_db->where(['pay_mark'=>'Hupijiaopay'])->find();
  64. if (!empty($hupijiao_pay_config)) {
  65. $hupijiao_pay_config['pay_info'] = unserialize($hupijiao_pay_config['pay_info']);
  66. $hupijiaoInfo = Db::name('weapp')->where(['code'=>'Hupijiaopay','status'=>1])->find();
  67. if (empty($hupijiaoInfo) || !isset($hupijiao_pay_config['pay_info']['is_open_pay']) || 1 == $hupijiao_pay_config['pay_info']['is_open_pay']) {
  68. $Config = $this->GetOtherPayApiConfig($post);
  69. } else {
  70. //兼容订单轮询查支付配置
  71. if ($post['pay_mark'] != 'Hupijiaopay') {
  72. if (empty($hupijiao_pay_config['pay_info'][$post['pay_mark'] . '_appid'])) {
  73. $Config = $this->GetOtherPayApiConfig($post);
  74. } else {
  75. $new_pay_info = [];
  76. $new_pay_info['is_open_pay'] = 0;
  77. $new_pay_info['appid'] = $hupijiao_pay_config['pay_info'][$post['pay_mark'] . '_appid'];
  78. $new_pay_info['appsecret'] = $hupijiao_pay_config['pay_info'][$post['pay_mark'] . '_appsecret'];
  79. $new_pay_info['pay_type'] = $post['pay_mark'];
  80. if (!empty($hupijiao_pay_config['pay_info']['gateway_domain'])) {
  81. $new_pay_info['gateway_domain'] = $hupijiao_pay_config['pay_info']['gateway_domain'];
  82. } else {
  83. $new_pay_info['gateway_domain'] = 'https://api.xunhupay.com';
  84. }
  85. $hupijiao_pay_config['pay_info'] = $new_pay_info;
  86. $Config = $hupijiao_pay_config;
  87. }
  88. } else {
  89. $new_pay_info = [];
  90. $new_pay_info['is_open_pay'] = 0;
  91. $new_pay_info['appid'] = $hupijiao_pay_config['pay_info'][$post['pay_type'] . '_appid'];
  92. $new_pay_info['appsecret'] = $hupijiao_pay_config['pay_info'][$post['pay_type'] . '_appsecret'];
  93. $new_pay_info['pay_type'] = $post['pay_type'];
  94. if (!empty($hupijiao_pay_config['pay_info']['gateway_domain'])) {
  95. $new_pay_info['gateway_domain'] = $hupijiao_pay_config['pay_info']['gateway_domain'];
  96. } else {
  97. $new_pay_info['gateway_domain'] = 'https://api.xunhupay.com';
  98. }
  99. $hupijiao_pay_config['pay_info'] = $new_pay_info;
  100. $Config = $hupijiao_pay_config;
  101. }
  102. }
  103. } else {
  104. $Config = $this->GetOtherPayApiConfig($post);
  105. }
  106. return $Config;
  107. }
  108. // 支付API配置信息查询 -- 先查询虎皮椒支付
  109. public function GetOtherPayApiConfig($post = [])
  110. {
  111. if (empty($post['pay_id']) || empty($post['pay_mark'])) $this->error('支付API异常,请刷新重试');
  112. $where = [
  113. 'pay_id' => $post['pay_id'],
  114. 'pay_mark' => $post['pay_mark']
  115. ];
  116. $Config = $this->pay_api_config_db->where($where)->find();
  117. if (empty($Config) || empty($Config['pay_info'])) $this->error('请在后台【接口配置】完善【'.$Config['pay_name'].'】配置信息');
  118. $Config['pay_info'] = unserialize($Config['pay_info']);
  119. if (1 == $post['pay_id']) {
  120. if (!isset($Config['pay_info']['is_open_wechat']) || 1 == $Config['pay_info']['is_open_wechat']) {
  121. $this->error($Config['pay_name'] . '未开启');
  122. }
  123. } else if (2 == $post['pay_id']) {
  124. if (!isset($Config['pay_info']['is_open_alipay']) || 1 == $Config['pay_info']['is_open_alipay']) {
  125. $this->error($Config['pay_name'] . '未开启');
  126. }
  127. } else {
  128. if (!isset($Config['pay_info']['is_open_pay']) || 1 == $Config['pay_info']['is_open_pay']) {
  129. $this->error($Config['pay_name'] . '未开启');
  130. }
  131. }
  132. return $Config;
  133. }
  134. // 订单查询
  135. public function GetFindOrderData($post = [], $is_up_order = false)
  136. {
  137. $submit_order_type = isset($post['submit_order_type']) ? intval($post['submit_order_type']) : -1;
  138. if (empty($post['unified_id']) || empty($post['unified_number']) || empty($post['transaction_type'])) $this->error('订单异常,请刷新重试');
  139. // 获取充值订单
  140. if (1 == $post['transaction_type']) {
  141. $where = [
  142. 'users_id' => $this->users_id,
  143. 'lang' => $this->home_lang,
  144. 'moneyid' => $post['unified_id'],
  145. 'order_number' => $post['unified_number']
  146. ];
  147. $OrderData = $this->users_money_db->where($where)->find();
  148. if (empty($OrderData)) $this->error('订单不存在或已变更');
  149. // 判断订单状态,1未付款,2已付款,3已完成,4订单取消
  150. $url = urldecode(url('user/Pay/pay_consumer_details'));
  151. if (in_array($OrderData['status'], [2, 3])) {
  152. $this->success('订单已支付,即将跳转', $url, true);
  153. } else if ($OrderData['status'] == 4) {
  154. $this->success('订单已取消,即将跳转', $url, true);
  155. }
  156. $OrderData['unified_id'] = $post['unified_id'];
  157. $OrderData['unified_amount'] = $OrderData['money'];
  158. $OrderData['unified_number'] = $post['unified_number'];
  159. // 更新订单支付方式
  160. if (!empty($is_up_order)) {
  161. $update = [
  162. 'pay_method' => $post['pay_mark'],
  163. 'wechat_pay_type' => '',
  164. 'update_time' => getTime()
  165. ];
  166. if ('wechat' == $post['pay_mark']) {
  167. if (!isMobile()) {
  168. // PC端
  169. $wechat_pay_type = 'WeChatScanCode';
  170. } else if (isMobile() && !isWeixin()) {
  171. // 手机端浏览器
  172. $wechat_pay_type = 'WeChatH5';
  173. } else if (isMobile() && isWeixin()) {
  174. // 手机端微信
  175. $wechat_pay_type = 'WeChatInternal';
  176. }
  177. if (!empty($OrderData['wechat_pay_type'])) {
  178. $ReturnData = false;//$this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
  179. if (!empty($ReturnData)) $this->error($ReturnData);
  180. }
  181. $update['wechat_pay_type'] = $wechat_pay_type;
  182. }
  183. $this->users_money_db->where($where)->update($update);
  184. }
  185. }
  186. // 获取商品订单
  187. else if (2 == $post['transaction_type']) {
  188. $where = [
  189. 'users_id' => $this->users_id,
  190. 'lang' => $this->home_lang,
  191. 'order_id' => $post['unified_id'],
  192. 'order_code' => $post['unified_number']
  193. ];
  194. $OrderData = $this->shop_order_db->where($where)->find();
  195. if (empty($OrderData)) $this->error('订单不存在或已变更');
  196. // 判断订单状态,1已付款(待发货),2已发货(待收货),3已完成(确认收货),-1订单取消(已关闭),4订单过期
  197. $url = urldecode(url('user/Shop/shop_order_details', ['order_id' => $OrderData['order_id']]));
  198. if (in_array($OrderData['order_status'], [1, 2, 3])) {
  199. if ('v3' == getUsersTplVersion()) {
  200. if (0 <= $submit_order_type && 1 == $OrderData['order_status']) {
  201. $url = urldecode(url('user/Shop/shop_centre'));
  202. }
  203. }
  204. // if ($OrderData['order_status'] == 1) {
  205. // $this->shop_order_db->where($where)->update(['order_status'=>0]);
  206. // $returnData = pay_success_logic($this->users_id, $OrderData['order_code'], [], $OrderData['pay_name']);
  207. // }
  208. $this->success('订单已支付,即将跳转', $url, $returnData['data']);
  209. } else if ($OrderData['order_status'] == 4) {
  210. $this->success('订单已过期,即将跳转', $url, true);
  211. } else if ($OrderData['order_status'] == -1) {
  212. $this->success('订单已关闭,即将跳转', $url, true);
  213. }
  214. $OrderData['unified_id'] = $post['unified_id'];
  215. $OrderData['unified_amount'] = $OrderData['order_amount'];
  216. $OrderData['unified_number'] = $post['unified_number'];
  217. // 更新订单支付方式
  218. if (!empty($is_up_order)) {
  219. $update = [
  220. 'pay_name' => $post['pay_mark'],
  221. 'update_time' => getTime()
  222. ];
  223. if ('wechat' == $post['pay_mark']) {
  224. if (!isMobile()) {
  225. // PC端
  226. $wechat_pay_type = 'WeChatScanCode';
  227. } else if (isMobile() && !isWeixin()) {
  228. // 手机端浏览器
  229. $wechat_pay_type = 'WeChatH5';
  230. } else if (isMobile() && isWeixin()) {
  231. // 手机端微信
  232. $wechat_pay_type = 'WeChatInternal';
  233. }
  234. if (!empty($OrderData['wechat_pay_type'])) {
  235. $ReturnData = $this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
  236. if (!empty($ReturnData)) $this->error($ReturnData);
  237. }
  238. $update['wechat_pay_type'] = $wechat_pay_type;
  239. }
  240. $this->shop_order_db->where($where)->update($update);
  241. $OrderData['pay_name'] = $post['pay_mark'];
  242. }
  243. }
  244. // 获取会员升级订单
  245. else if (3 == $post['transaction_type']) {
  246. $where = [
  247. 'users_id' => $this->users_id,
  248. 'lang' => $this->home_lang,
  249. 'moneyid' => $post['unified_id'],
  250. 'order_number' => $post['unified_number']
  251. ];
  252. $OrderData = $this->users_money_db->where($where)->find();
  253. if (empty($OrderData)) $this->error('订单不存在或已变更');
  254. // 判断订单状态,1未付款,2已付款,3已完成,4订单取消
  255. $url = urldecode(url('user/Level/level_centre'));
  256. if (in_array($OrderData['status'], [2, 3])) {
  257. $this->success('订单已支付,即将跳转', $url, true);
  258. } else if ($OrderData['status'] == 4) {
  259. $this->success('订单已取消,即将跳转', $url, true);
  260. }
  261. $OrderData['unified_id'] = $post['unified_id'];
  262. $OrderData['unified_amount'] = $OrderData['money'];
  263. $OrderData['unified_number'] = $post['unified_number'];
  264. }
  265. // 获取视频订单
  266. else if (8 == $post['transaction_type']) {
  267. $where = [
  268. 'users_id' => $this->users_id,
  269. 'lang' => $this->home_lang,
  270. 'order_id' => $post['unified_id'],
  271. 'order_code' => $post['unified_number']
  272. ];
  273. $OrderData = Db::name('media_order')->where($where)->find();
  274. if (empty($OrderData)) $this->error('订单不存在或已变更', url('user/Media/index'));
  275. $url = url('user/Media/index');
  276. if (in_array($OrderData['order_status'], [1])) $this->success('订单已支付,即将跳转!', $url, true);
  277. $OrderData['unified_id'] = $post['unified_id'];
  278. $OrderData['unified_amount'] = $OrderData['order_amount'];
  279. $OrderData['unified_number'] = $post['unified_number'];
  280. // 更新订单支付方式
  281. if (!empty($is_up_order)) {
  282. $update = [
  283. 'pay_name' => $post['pay_mark'],
  284. 'update_time' => getTime()
  285. ];
  286. if ('wechat' == $post['pay_mark']) {
  287. if (!isMobile()) {
  288. // PC端
  289. $wechat_pay_type = 'WeChatScanCode';
  290. } else if (isMobile() && !isWeixin()) {
  291. // 手机端浏览器
  292. $wechat_pay_type = 'WeChatH5';
  293. } else if (isMobile() && isWeixin()) {
  294. // 手机端微信
  295. $wechat_pay_type = 'WeChatInternal';
  296. }
  297. if (!empty($OrderData['wechat_pay_type'])) {
  298. $ReturnData = false;//$this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
  299. if (!empty($ReturnData)) $this->error($ReturnData);
  300. }
  301. $update['wechat_pay_type'] = $wechat_pay_type;
  302. }
  303. Db::name('media_order')->where($where)->update($update);
  304. }
  305. }
  306. // 文章购买
  307. else if (9 == $post['transaction_type']) {
  308. $where = [
  309. 'users_id' => $this->users_id,
  310. 'lang' => $this->home_lang,
  311. 'order_id' => $post['unified_id'],
  312. 'order_code' => $post['unified_number']
  313. ];
  314. $OrderData = Db::name('article_order')->where($where)->find();
  315. if (empty($OrderData)) $this->error('订单不存在或已变更', url('user/Users/article_index'));
  316. $url = url('user/Users/article_index');
  317. if (in_array($OrderData['order_status'], [1])) $this->success('订单已支付,即将跳转!', $url, true);
  318. $OrderData['unified_amount'] = $OrderData['order_amount'];
  319. $OrderData['unified_number'] = $post['unified_number'];
  320. $OrderData['unified_id'] = $post['unified_id'];
  321. // 更新订单支付方式
  322. if (!empty($is_up_order)) {
  323. $update = [
  324. 'pay_name' => $post['pay_mark'],
  325. 'update_time' => getTime()
  326. ];
  327. if ('wechat' == $post['pay_mark']) {
  328. if (!isMobile()) {
  329. // PC端
  330. $wechat_pay_type = 'WeChatScanCode';
  331. } else if (isMobile() && !isWeixin()) {
  332. // 手机端浏览器
  333. $wechat_pay_type = 'WeChatH5';
  334. } else if (isMobile() && isWeixin()) {
  335. // 手机端微信
  336. $wechat_pay_type = 'WeChatInternal';
  337. }
  338. if (!empty($OrderData['wechat_pay_type'])) {
  339. $ReturnData = false;//$this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
  340. if (!empty($ReturnData)) $this->error($ReturnData);
  341. }
  342. $update['wechat_pay_type'] = $wechat_pay_type;
  343. }
  344. Db::name('article_order')->where($where)->update($update);
  345. }
  346. }
  347. // 下载模型购买
  348. else if (10 == $post['transaction_type']) {
  349. $where = [
  350. 'users_id' => $this->users_id,
  351. 'lang' => $this->home_lang,
  352. 'order_id' => $post['unified_id'],
  353. 'order_code' => $post['unified_number']
  354. ];
  355. $OrderData = Db::name('download_order')->where($where)->find();
  356. if (empty($OrderData)) $this->error('订单不存在或已变更', url('user/Users/download_index'));
  357. $url = url('user/Users/download_index');
  358. if (in_array($OrderData['order_status'], [1])) $this->success('订单已支付,即将跳转!', $url, true);
  359. $OrderData['unified_amount'] = $OrderData['order_amount'];
  360. $OrderData['unified_number'] = $post['unified_number'];
  361. $OrderData['unified_id'] = $post['unified_id'];
  362. // 更新订单支付方式
  363. if (!empty($is_up_order)) {
  364. $update = [
  365. 'pay_name' => $post['pay_mark'],
  366. 'update_time' => getTime()
  367. ];
  368. if ('wechat' == $post['pay_mark']) {
  369. if (!isMobile()) {
  370. // PC端
  371. $wechat_pay_type = 'WeChatScanCode';
  372. } else if (isMobile() && !isWeixin()) {
  373. // 手机端浏览器
  374. $wechat_pay_type = 'WeChatH5';
  375. } else if (isMobile() && isWeixin()) {
  376. // 手机端微信
  377. $wechat_pay_type = 'WeChatInternal';
  378. }
  379. if (!empty($OrderData['wechat_pay_type'])) {
  380. $ReturnData = false;//$this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
  381. if (!empty($ReturnData)) $this->error($ReturnData);
  382. }
  383. $update['wechat_pay_type'] = $wechat_pay_type;
  384. }
  385. Db::name('download_order')->where($where)->update($update);
  386. }
  387. }
  388. // 会员充值套餐订单
  389. else if (20 == $post['transaction_type']) {
  390. $where = [
  391. 'users_id' => $this->users_id,
  392. 'lang' => $this->home_lang,
  393. 'order_id' => $post['order_id'],
  394. 'order_code' => $post['order_code'],
  395. 'order_pay_code' => $post['order_pay_code'],
  396. ];
  397. $OrderData = Db::name('users_recharge_pack_order')->where($where)->find();
  398. if (empty($OrderData)) {
  399. $this->error('无效订单');
  400. } else if (1 < intval($OrderData['order_status'])) {
  401. $this->success('支付完成');
  402. }
  403. $OrderData['unified_id'] = $post['unified_id'];
  404. $OrderData['unified_number'] = $post['unified_number'];
  405. $OrderData['unified_amount'] = $OrderData['order_pay_prices'];
  406. }
  407. // 多商家订单
  408. else if (99 === intval($post['transaction_type'])) {
  409. // 获取商品订单
  410. $where = [
  411. 'users_id' => $this->users_id,
  412. 'unified_id' => $post['unified_id'],
  413. 'unified_number' => $post['unified_number']
  414. ];
  415. $OrderData = Db::name('shop_order_unified_pay')->where($where)->find();
  416. if (empty($OrderData)) $this->error('订单不存在或已变更..');
  417. // 判断订单状态,0未付款,1已付款
  418. $url = urldecode(url('user/Shop/shop_centre'));
  419. if (in_array($OrderData['pay_status'], [1])) $this->success('订单已支付,即将跳转...', $url, true);
  420. // 更新订单支付方式
  421. if (!empty($is_up_order)) {
  422. $update = [
  423. 'pay_name' => $post['pay_mark'],
  424. 'update_time' => getTime()
  425. ];
  426. if ('wechat' == $post['pay_mark']) {
  427. if (!isMobile()) {
  428. // PC端
  429. $wechat_pay_type = 'WeChatScanCode';
  430. } else if (isMobile() && !isWeixin()) {
  431. // 手机端浏览器
  432. $wechat_pay_type = 'WeChatH5';
  433. } else if (isMobile() && isWeixin()) {
  434. // 手机端微信
  435. $wechat_pay_type = 'WeChatInternal';
  436. }
  437. if (!empty($OrderData['wechat_pay_type'])) {
  438. $ReturnData = $this->determine_pay_type($OrderData['wechat_pay_type'], $wechat_pay_type);
  439. if (!empty($ReturnData)) $this->error($ReturnData);
  440. }
  441. $update['wechat_pay_type'] = $wechat_pay_type;
  442. }
  443. Db::name('shop_order_unified_pay')->where($where)->update($update);
  444. $OrderData['pay_name'] = $post['pay_mark'];
  445. }
  446. }
  447. $OrderData['transaction_type'] = $post['transaction_type'];
  448. return $OrderData;
  449. }
  450. // 使用微信支付,判断终端调起支付功能
  451. public function UseWeChatPay($Post = [], $Order = [], $PayInfo = [])
  452. {
  453. if (isset($PayInfo['is_open_wechat']) && 0 == $PayInfo['is_open_wechat']) {
  454. $total_fee = $Order['unified_amount'];
  455. $out_trade_no = $Order['unified_number'];
  456. // PC端电脑微信扫码支付
  457. if (!isMobile()) {
  458. $params = [
  459. 'unified_number' => $Post['unified_number'],
  460. 'transaction_type' => $Post['transaction_type']
  461. ];
  462. $result['url_qrcode'] = url('user/PayApi/pay_wechat_png', $params);
  463. $this->success('订单支付中', null, $result);
  464. }
  465. // 移动端浏览器微信H5支付
  466. else if (isMobile() && !isWeixin()) {
  467. $result = model('PayApi')->getMobilePay($out_trade_no, $total_fee, $PayInfo, $Post['transaction_type']);
  468. if (!empty($result['return_code']) && 'FAIL' == $result['return_code']) $this->error($result['return_msg']);
  469. $this->success('订单支付中', $result);
  470. }
  471. // 移动端微信内支付
  472. else if (isMobile() && isWeixin()) {
  473. if (isWeixinApplets()) {
  474. $params = [
  475. 'is_applets' => 1,
  476. 'unified_id' => $Order['unified_id'],
  477. 'unified_number' => $Order['unified_number'],
  478. 'transaction_type' => $Order['transaction_type']
  479. ];
  480. $this->success('订单支付中', null, $params);
  481. }
  482. // 小程序支付
  483. if (!empty($Post['openid'])) {
  484. $result = model('PayApi')->getWechatPay($Post['openid'], $out_trade_no, $total_fee, $PayInfo, 1, $Post['transaction_type']);
  485. if (!empty($result)) echo json_encode($result);
  486. }
  487. // 移动端微信内支付
  488. else if (!empty($this->users_id)) {
  489. $where = [
  490. 'users_id' => $this->users_id,
  491. 'lang' => $this->home_lang
  492. ];
  493. $open_id = Db::name('users')->where($where)->getField('open_id');
  494. // if (empty($open_id)) $this->error('手机端微信使用本站账号登录仅可余额支付!');
  495. // 手机端微信支付
  496. $result = model('PayApi')->getWechatPay($open_id, $out_trade_no, $total_fee, $PayInfo, 0, $Post['transaction_type']);
  497. if (!empty($result['postCode']) && 'error' === $result['postCode']) {
  498. $this->error($result['return_msg']);
  499. } else if (!empty($result)) {
  500. $this->success('订单支付中', null, $result);
  501. }
  502. } else {
  503. $this->error('使用本站账号登录仅可余额支付!');
  504. }
  505. }
  506. } else {
  507. $this->error('微信支付已关闭');
  508. }
  509. }
  510. // 使用支付宝支付,读取数据调起支付功能
  511. public function UseAliPayPay($Post = [], $Order = [], $PayInfo = [], $isReturn = false)
  512. {
  513. $alipay_url = null;
  514. if (!empty($Order) && !empty($PayInfo)) {
  515. $Order['transaction_type'] = $Post['transaction_type'];
  516. if (version_compare(PHP_VERSION,'5.5.0','<')) {
  517. // 低于5.5版本,仅可使用旧版支付宝支付
  518. $PayApi_model = new \app\user\model\PayApi;
  519. $alipay_url = $PayApi_model->getOldAliPayPayUrl($Order, $PayInfo);
  520. } else {
  521. // 高于或等于5.5版本,可使用新版支付宝支付
  522. if (empty($PayInfo['version'])) {
  523. // 新版
  524. $AliPayResult = [
  525. 'unified_number' => $Order['unified_number'],
  526. 'unified_amount' => $Order['unified_amount'],
  527. 'transaction_type' => $Order['transaction_type']
  528. ];
  529. $alipay_url = url('user/Pay/newAlipayPayUrl', $AliPayResult);
  530. } else if ($PayInfo['version'] == 1){
  531. // 旧版
  532. $PayApi_model = new \app\user\model\PayApi;
  533. $alipay_url = $PayApi_model->getOldAliPayPayUrl($Order, $PayInfo);
  534. }
  535. }
  536. }
  537. if (true === $isReturn) {
  538. return ['code'=>1, 'msg'=>'订单支付中', 'alipay_url'=>$alipay_url];
  539. } else {
  540. $this->success('订单支付中', $alipay_url);
  541. }
  542. }
  543. // 微信支付订单处理
  544. public function WeChatPayProcessing($Post = [], $Order = [], $PayInfo = [], $Config = [])
  545. {
  546. vendor('wechatpay.lib.WxPayApi');
  547. vendor('wechatpay.lib.WxPayConfig');
  548. // 实例化加载订单号
  549. $WxPayOrderQuery = new \WxPayOrderQuery;
  550. $WxPayOrderQuery->SetOut_trade_no($Order['unified_number']);
  551. // 处理微信配置数据
  552. $ApiConfig['app_id'] = $PayInfo['appid'];
  553. $ApiConfig['mch_id'] = $PayInfo['mchid'];
  554. $ApiConfig['key'] = $PayInfo['key'];
  555. // 实例化微信配置
  556. $WxPayConfig = new \WxPayConfig($ApiConfig);
  557. $WxPayApi = new \WxPayApi;
  558. if (empty($WxPayConfig->app_id)) $this->error('微信支付配置信息不全');
  559. // 返回结果
  560. $WeChatOrder = $WxPayApi->orderQuery($WxPayConfig, $WxPayOrderQuery);
  561. if (isset($WeChatOrder['return_code']) && $WeChatOrder['return_code'] == 'SUCCESS' && $WeChatOrder['result_code'] == 'SUCCESS') {
  562. if ($WeChatOrder['trade_state'] == 'SUCCESS' && !empty($WeChatOrder['transaction_id'])) {
  563. $this->OrderProcessing($Post, $Order, $WeChatOrder, $Config);
  564. } else if ($WeChatOrder['trade_state'] == 'NOTPAY') {
  565. $this->success('正在支付中...');
  566. }
  567. }
  568. }
  569. // 支付宝支付订单处理
  570. public function AliPayPayProcessing($Post = [], $Order = [], $PayInfo = [], $Config = [])
  571. {
  572. if (!empty($PayInfo) && 0 == $PayInfo['version']) {
  573. vendor('alipay.pagepay.service.AlipayTradeService');
  574. vendor('alipay.pagepay.buildermodel.AlipayTradeQueryContentBuilder');
  575. // 实例化加载订单号
  576. $RequestBuilder = new \AlipayTradeQueryContentBuilder;
  577. $OutTradeNo = trim($Order['unified_number']);
  578. $RequestBuilder->setOutTradeNo($OutTradeNo);
  579. // 拼装配置
  580. $ApiConfig['app_id'] = $PayInfo['app_id'];
  581. $ApiConfig['merchant_private_key'] = $PayInfo['merchant_private_key'];
  582. $ApiConfig['charset'] = 'UTF-8';
  583. $ApiConfig['sign_type'] = 'RSA2';
  584. $ApiConfig['gatewayUrl'] = 'https://openapi.alipay.com/gateway.do';
  585. $ApiConfig['alipay_public_key'] = $PayInfo['alipay_public_key'];
  586. // 实例化支付宝配置
  587. $AlipayTradeService = new \AlipayTradeService($ApiConfig);
  588. $AliPayOrder = $AlipayTradeService->Query($RequestBuilder);
  589. // 解析数据
  590. $AliPayOrder = json_decode(json_encode($AliPayOrder), true);
  591. if ('40004' == $AliPayOrder['code'] && 'Business Failed' === $AliPayOrder['msg']) {
  592. $this->success('正在建立订单信息');
  593. } else if ('10000' == $AliPayOrder['code'] && 'WAIT_BUYER_PAY' === $AliPayOrder['trade_status']) {
  594. $this->success('订单已建立,尚未支付');
  595. } else if ('10000' == $AliPayOrder['code'] && 'TRADE_SUCCESS' === $AliPayOrder['trade_status']) {
  596. // 已经支付,处理订单
  597. $this->OrderProcessing($Post, $Order, $AliPayOrder, $Config);
  598. }
  599. } else {
  600. $this->success('订单支付中');
  601. }
  602. }
  603. // 订单统一处理
  604. public function OrderProcessing($Post = [], $Order = [], $PayDetails = [], $Config = [], $queryOrder = true)
  605. {
  606. if (!empty($PayDetails) && !empty($queryOrder)) {
  607. $total_amount = 0;
  608. if (!empty($PayDetails['total_fee'])) {
  609. $total_amount = $PayDetails['total_fee'] / 100;
  610. } else if (!empty($PayDetails['total_amount'])) {
  611. $total_amount = $PayDetails['total_amount'];
  612. } else if (!empty($PayDetails['txnAmt'])) {
  613. $total_amount = $PayDetails['txnAmt'] / 100;
  614. }
  615. $payLogicObj = new PayLogic();
  616. $OrderData = $payLogicObj->checkAmount($PayDetails['out_trade_no'], $total_amount, $Post['transaction_type']);
  617. if (empty($OrderData)) $this->error("支付失败,支付金额与订单金额不相符");
  618. }
  619. // 查询实时订单信息
  620. $Order = $this->GetFindOrderData($Post);
  621. // 充值订单处理
  622. if (1 == $Post['transaction_type']) {
  623. // 付款成功后,订单并未修改状态时,修改订单状态并返回
  624. if (1 === intval($Order['status'])) {
  625. // 返回参数
  626. $result_0['email'] = false;
  627. $result_0['mobile'] = false;
  628. $url = url('user/Pay/pay_consumer_details');
  629. // 订单更新条件
  630. $where = [
  631. 'moneyid' => $Order['moneyid'],
  632. 'users_id' => $this->users_id,
  633. 'order_number' => strval($Order['order_number']),
  634. ];
  635. // 订单更新数据,更新为已付款
  636. $update = [
  637. 'status' => 2,
  638. 'pay_details' => serialize($PayDetails),
  639. 'update_time' => $this->times
  640. ];
  641. // 订单更新
  642. $result_1 = $this->users_money_db->where($where)->update($update);
  643. // 订单更新后续操作
  644. if (!empty($result_1)) {
  645. // 更新增加会员余额
  646. $result_2 = Db::name('users')->where(['users_id' => intval($this->users_id)])->setInc('users_money', $Order['money']);
  647. // 用户充值金额后续操作
  648. if (!empty($result_2)) {
  649. // 业务处理完成,订单已完成
  650. $update = [
  651. 'status' => 3,
  652. 'update_time' => getTime()
  653. ];
  654. $this->users_money_db->where($where)->update($update);
  655. $this->success('充值成功', $url, $result_0);
  656. } else {
  657. $this->success('支付成功,余额充值失败,请联系客服', $url, $result_0);
  658. }
  659. } else {
  660. $this->success('支付成功,订单更新失败,请联系客服', $url, $result_0);
  661. }
  662. }
  663. }
  664. // 商品订单处理
  665. else if (2 == $Post['transaction_type']) {
  666. // 付款成功后,订单并未修改状态时,修改订单状态并返回
  667. if (empty($Order['order_status'])) {
  668. $returnData = pay_success_logic($this->users_id, $Order['order_code'], $PayDetails, $Order['pay_name']);
  669. if (is_array($returnData)) {
  670. if (1 == $returnData['code']) {
  671. $this->success($returnData['msg'], $returnData['url'], $returnData['data']);
  672. } else {
  673. $this->error($returnData['msg']);
  674. }
  675. }
  676. } else {
  677. $returnData = [];
  678. $users = \think\Db::name('users')->field('*')->find($Order['users_id']);
  679. // 邮箱发送
  680. $returnData['email'] = GetEamilSendData(tpCache('smtp'), $users, $Order, 1, $Order['pay_name']);
  681. // 手机发送
  682. $returnData['mobile'] = GetMobileSendData(tpCache('sms'), $users, $Order, 1, $Order['pay_name']);
  683. $this->success('已支付', url('user/Shop/shop_centre'), $returnData);
  684. }
  685. }
  686. // 会员升级处理
  687. else if (3 == $Post['transaction_type']) {
  688. // 付款成功后,订单并未修改状态时,修改订单状态并返回
  689. $Result['email'] = false;
  690. $Result['mobile'] = false;
  691. $url = url('user/Level/level_centre');
  692. if ($Order['status'] == 1) {
  693. // 订单更新条件
  694. $where = [
  695. 'moneyid' => $Order['moneyid'],
  696. 'users_id' => $this->users_id
  697. ];
  698. // 订单更新数据,更新为已付款
  699. $UpMoneyData = $this->GetUpMoneyData(session('UsersTypeData'), $Order['pay_method']);
  700. // 订单更新
  701. $ResultID = $this->users_money_db->where($where)->update($UpMoneyData);
  702. // 订单更新后续操作
  703. if (!empty($ResultID)) {
  704. $Where = [
  705. 'users_id' => $Order['users_id'],
  706. ];
  707. // 获取更新会员数据数组
  708. $UpUsersData = $this->GetUpUsersData(session('UsersTypeData'));
  709. $ReturnID = $this->users_db->where($Where)->update($UpUsersData);
  710. // 用户充值金额后续操作
  711. if (!empty($ReturnID)) {
  712. // 返回
  713. $this->success('升级成功', $url, $Result);
  714. } else {
  715. $this->success('付款成功,数据错误,升级失败,请联系管理员', $url, $Result);
  716. }
  717. } else {
  718. $this->success('付款成功,数据错误,升级失败,请联系管理员', $url, $Result);
  719. }
  720. }
  721. }
  722. // 视频订单处理
  723. else if (8 == $Post['transaction_type']) {
  724. // 付款成功后,订单并未修改状态时,修改订单状态并返回
  725. if (empty($Order['order_status'])) {
  726. // 订单更新条件
  727. $OrderWhere = [
  728. 'order_id' => $Order['order_id'],
  729. 'users_id' => $this->users_id,
  730. 'lang' => $this->home_lang
  731. ];
  732. // 订单更新数据,更新为已付款
  733. $OrderData = [
  734. 'order_status' => 1,
  735. 'pay_details' => serialize($PayDetails),
  736. 'pay_time' => getTime(),
  737. 'update_time' => getTime()
  738. ];
  739. // 订单更新
  740. $ResultID = Db::name('media_order')->where($OrderWhere)->update($OrderData);
  741. // 订单更新后续操作
  742. if (!empty($ResultID)) {
  743. // 订单操作完成,返回跳转
  744. $ViewUrl = cookie($this->users_id . '_' . $Order['product_id'] . '_EyouMediaViewUrl');
  745. $this->success('支付成功,处理订单完成', $ViewUrl, true);
  746. }
  747. }
  748. }
  749. // 文章订单处理
  750. else if (9 === intval($Post['transaction_type'])) {
  751. // 付款成功后,订单并未修改状态时,修改订单状态并返回
  752. if (empty($Order['order_status'])) {
  753. // 订单更新条件
  754. $OrderWhere = [
  755. 'order_id' => $Order['order_id'],
  756. 'users_id' => $this->users_id,
  757. 'lang' => $this->home_lang
  758. ];
  759. // 订单更新数据,更新为已付款
  760. $OrderData = [
  761. 'order_status' => 1,
  762. 'pay_details' => serialize($PayDetails),
  763. 'pay_time' => getTime(),
  764. 'update_time' => getTime()
  765. ];
  766. // 订单更新
  767. $ResultID = Db::name('article_order')->where($OrderWhere)->update($OrderData);
  768. // 订单更新后续操作
  769. if (!empty($ResultID)) {
  770. // 订单操作完成,返回跳转
  771. $ViewUrl = cookie($this->users_id . '_' . $Order['product_id'] . '_EyouArticleViewUrl');
  772. $this->success('支付成功,处理订单完成', $ViewUrl, true);
  773. }
  774. }
  775. }
  776. // 下载订单处理
  777. else if (10 === intval($Post['transaction_type'])) {
  778. // 付款成功后,订单并未修改状态时,修改订单状态并返回
  779. if (empty($Order['order_status'])) {
  780. // 订单更新条件
  781. $OrderWhere = [
  782. 'order_id' => $Order['order_id'],
  783. 'users_id' => $this->users_id,
  784. 'lang' => $this->home_lang
  785. ];
  786. // 订单更新数据,更新为已付款
  787. $OrderData = [
  788. 'order_status' => 1,
  789. 'pay_details' => serialize($PayDetails),
  790. 'pay_time' => getTime(),
  791. 'update_time' => getTime()
  792. ];
  793. // 订单更新
  794. $ResultID = Db::name('download_order')->where($OrderWhere)->update($OrderData);
  795. // 订单更新后续操作
  796. if (!empty($ResultID)) {
  797. // 订单操作完成,返回跳转
  798. $ViewUrl = cookie($this->users_id . '_' . $Order['product_id'] . '_EyouDownloadViewUrl');
  799. $this->success('支付成功,处理订单完成', $ViewUrl, true);
  800. }
  801. }
  802. }
  803. // 会员充值套餐订单处理
  804. else if (20 === intval($Post['transaction_type'])) {
  805. // 更新订单为已支付
  806. $where = [
  807. 'users_id' => $this->users_id,
  808. 'order_id' => $Order['order_id'],
  809. 'order_code' => $Order['order_code'],
  810. 'order_pay_code' => $Order['order_pay_code'],
  811. ];
  812. $update = [
  813. 'order_status' => 2,
  814. 'order_pay_time' => $this->times,
  815. 'order_pay_details' => serialize($PayDetails),
  816. 'update_time' => $this->times,
  817. ];
  818. $result_1 = Db::name('users_recharge_pack_order')->where($where)->update($update);
  819. if (!empty($result_1)) {
  820. // 根据会员充值套餐给会员充储值余额
  821. $result_2 = Db::name('users')->where(['users_id' => $this->users_id])->setInc('users_money', $Order['order_face_value']);
  822. if (!empty($result_2)) {
  823. // 更新订单为已充值
  824. $update = [
  825. 'order_status' => 3,
  826. 'update_time' => $this->times,
  827. ];
  828. Db::name('users_recharge_pack_order')->where($where)->update($update);
  829. // 增加充值套餐的销售量
  830. $where = [
  831. 'pack_id' => $Order['pack_id'],
  832. ];
  833. Db::name('users_recharge_pack')->where($where)->setInc('pack_sales_num');
  834. // 会员当前余额
  835. $usersMoney = Db::name('users')->where('users_id', $this->users_id)->getField('users_money');
  836. $insert = [
  837. 'users_id' => $this->users_id,
  838. 'money' => unifyPriceHandle($Order['order_face_value']),
  839. 'users_money' => unifyPriceHandle($usersMoney),
  840. 'cause' => $Order['order_pack_names'] . '(充值套餐)',
  841. 'cause_type' => 1,
  842. 'status' => 3,
  843. 'pay_method' => '',
  844. 'pay_details' => serialize($PayDetails),
  845. 'order_number' => $Order['order_pay_code'],
  846. 'lang' => $this->home_lang,
  847. 'add_time' => $this->times,
  848. 'update_time' => $this->times,
  849. ];
  850. Db::name('users_money')->insertGetId($insert);
  851. // 充值成功
  852. $this->success('充值成功');
  853. }
  854. }
  855. }
  856. // 多商家订单处理
  857. else if (99 === intval($Post['transaction_type'])) {
  858. // 付款成功后,订单并未修改状态时,修改订单状态并返回
  859. if (!empty($Order) && empty($Order['pay_status'])) {
  860. $multiMerchantLogic = new \app\user\logic\MultiMerchantLogic;
  861. $multiMerchantLogic->unifiedPaySuccessHandle($Order, $Post['pay_mark'], $PayDetails);
  862. }
  863. }
  864. }
  865. // 确定支付类型
  866. // $OrderPayMethodType 数据中的数据
  867. // $PayMethodType 当前提交的类型,用于判断
  868. private function determine_pay_type($OrderPayMethodType = null, $PayMethodType = null)
  869. {
  870. // 若为空,则表现未标记过支付类型
  871. if (empty($OrderPayMethodType)) return false;
  872. // 是否数据库中的支付类型和传入的一致
  873. if ($OrderPayMethodType != $PayMethodType) {
  874. // 判断返回提示信息
  875. switch ($OrderPayMethodType) {
  876. case 'WeChatScanCode':
  877. // PC端微信扫码支付
  878. return '该订单已使用微信扫码创建订单,根据微信支付规则,请在PC端浏览器扫码支付';
  879. break;
  880. case 'WeChatInternal':
  881. // 手机微信端H5支付
  882. return '该订单已使用微信JSAPI创建订单,根据微信支付规则,请使用手机微信进行支付';
  883. break;
  884. case 'WeChatH5':
  885. // 手机端浏览器H5支付
  886. return '该订单已使用手机浏览器创建订单,根据微信支付规则,请使用手机浏览器进行支付';
  887. break;
  888. default:
  889. return '微信支付方法选择错误,请刷新后重试~~';
  890. break;
  891. }
  892. } else {
  893. return false;
  894. }
  895. }
  896. /*--------------------以下为会员升级代码---------------------*/
  897. // 判断是否可以升级
  898. public function IsAllowUpgrade($post = [])
  899. {
  900. // 查询会员升级选择的数据
  901. $UsersTypeData = Db::name('users_type_manage')->where('type_id', $post['type_id'])->find();
  902. // 查询提交过来级别等级值
  903. $LevelValue = Db::name('users_level')->where('level_id', $UsersTypeData['level_id'])->getField('level_value');
  904. // 查询当前会员等级值
  905. $UsersValue = Db::name('users_level')->where('level_id', $this->users['level'])->getField('level_value');
  906. // 提交的等级是否比现有等级高
  907. if ($UsersValue > $LevelValue) $this->error('选择升级的等级不可以比目前持有的等级低');
  908. // 将查询数据存入 session,微信和支付宝回调时需要查询数据
  909. if (!empty($UsersTypeData)) session('UsersTypeData', $UsersTypeData);
  910. }
  911. // 余额支付
  912. public function BalancePayment($order_number = null, $UsersTypeData = [])
  913. {
  914. // 没有传入则从 session 中读取
  915. $UsersTypeData = !empty($UsersTypeData) ? $UsersTypeData : session('UsersTypeData');
  916. if (!empty($UsersTypeData)) {
  917. $UsersMoney = $this->users_db->where('users_id', $this->users_id)->getField('users_money');
  918. if ($UsersMoney < $UsersTypeData['price']) {
  919. // 若会员余额不足支付则返回
  920. $ReturnData = $this->GetReturnData();
  921. $this->success($ReturnData);
  922. } else {
  923. if (!empty($order_number)) {
  924. // 获取更新金额明细表数据数组
  925. $UpMoneyData = $this->GetUpMoneyData($UsersTypeData);
  926. // 更新数据
  927. $ReturnID = $this->users_money_db->where('order_number', $order_number)->update($UpMoneyData);
  928. } else {
  929. // 获取生成的订单信息
  930. $AddMoneyData = $this->GetAddMoneyData($UsersTypeData);
  931. // 存入会员金额明细表
  932. $ReturnID = $this->users_money_db->add($AddMoneyData);
  933. }
  934. if (!empty($ReturnID)) {
  935. $Where = [
  936. 'users_id' => $this->users_id,
  937. 'lang' => $this->home_lang
  938. ];
  939. // 获取更新会员数据数组
  940. $UpUsersData = $this->GetUpUsersData($UsersTypeData, true);
  941. $ReturnID = $this->users_db->where($Where)->update($UpUsersData);
  942. if (!empty($ReturnID)) {
  943. // 跳转链接
  944. $referurl = input('param.referurl/s', null, 'htmlspecialchars_decode,urldecode');
  945. if (empty($referurl)) {
  946. $referurl = cookie('referurl');
  947. if (empty($referurl)) {
  948. $referurl = url('user/Level/level_centre');
  949. }
  950. }
  951. cookie('referurl', null);
  952. // 支付完成返回
  953. $ReturnData = $this->GetReturnData(0, 1, '余额支付完成!', $referurl);
  954. $this->success($ReturnData);
  955. }
  956. }
  957. }
  958. } else {
  959. $this->error('升级失败,刷新重试');
  960. }
  961. }
  962. // 微信支付
  963. public function WeChatPayment($Post = [], $PayInfo = [])
  964. {
  965. $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
  966. $UsersTypeData = session('UsersTypeData');
  967. if (empty($MoneyData)) {
  968. // 获取生成的订单信息
  969. $AddMoneyData = $this->GetAddMoneyData($UsersTypeData, 'wechat', 1);
  970. // 存入会员金额明细表
  971. $ReturnID = $this->users_money_db->add($AddMoneyData);
  972. if (!empty($ReturnID)) {
  973. // 返回订单数据
  974. $AddMoneyData['moneyid'] = $ReturnID;
  975. $this->ReturnMoneyPayData($Post, $AddMoneyData, $PayInfo);
  976. }
  977. } else {
  978. $MoneyDataCause = unserialize($MoneyData['cause']);
  979. if (isMobile() && !isWeixin()) {
  980. // 手机浏览器端支付
  981. $PayType = 'WeChatH5';
  982. } else if (isMobile() && isWeixin()) {
  983. // 手机微信端支付
  984. $PayType = 'WeChatInternal';
  985. } else {
  986. // PC端扫码支付
  987. $PayType = 'WeChatScanCode';
  988. }
  989. if ($MoneyDataCause['level_id'] == $UsersTypeData['level_id'] && $MoneyData['money'] == $UsersTypeData['price'] && $MoneyData['wechat_pay_type'] == $PayType) {
  990. // 提交的订单与上一次是同一类型产品,直接返回数据
  991. $this->ReturnMoneyPayData($Post, $MoneyData, $PayInfo);
  992. } else {
  993. // 生成新订单覆盖原来的订单返回
  994. $UpMoneyData = $this->GetUpMoneyData($UsersTypeData, 'wechat');
  995. $UpMoneyData['status'] = 1;
  996. $UpMoneyData['order_number'] = date('Ymd').getTime().rand(10,100);
  997. $this->users_money_db->where('moneyid', $MoneyData['moneyid'])->update($UpMoneyData);
  998. // 返回订单数据
  999. $UpMoneyData['moneyid'] = $MoneyData['moneyid'];
  1000. $this->ReturnMoneyPayData($Post, $UpMoneyData, $PayInfo);
  1001. }
  1002. }
  1003. }
  1004. // 支付宝支付
  1005. public function AliPayPayment($Post = [], $PayInfo = [])
  1006. {
  1007. $UsersTypeData = session('UsersTypeData');
  1008. if (!empty($UsersTypeData)) {
  1009. $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
  1010. if (empty($MoneyData)) {
  1011. // 获取生成的订单信息
  1012. $AddMoneyData = $this->GetAddMoneyData($UsersTypeData, 'alipay', 1);
  1013. // 存入会员金额明细表
  1014. $ReturnID = $this->users_money_db->add($AddMoneyData);
  1015. // 支付宝处理返回信息
  1016. $AddMoneyData['moneyid'] = $ReturnID;
  1017. if (!empty($ReturnID)) $this->AliPayProcessing($AddMoneyData, $PayInfo, $Post);
  1018. } else {
  1019. // 获取生成的订单信息
  1020. $UpMoneyData = $this->GetUpMoneyData($UsersTypeData, 'alipay');
  1021. $UpMoneyData['status'] = 1;
  1022. // 更新会员金额明细表
  1023. $ReturnID = $this->users_money_db->where('moneyid', $MoneyData['moneyid'])->update($UpMoneyData);
  1024. if (!empty($ReturnID)) {
  1025. // 支付宝处理返回信息
  1026. $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
  1027. $this->AliPayProcessing($MoneyData, $PayInfo, $Post);
  1028. }
  1029. }
  1030. } else {
  1031. $this->error('升级失败,刷新重试');
  1032. }
  1033. }
  1034. // 获取第三方订单
  1035. public function GetPayOrderData($Post = [], $PayInfo = [], $pay_mark = null)
  1036. {
  1037. $UsersTypeData = session('UsersTypeData');
  1038. $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
  1039. if (empty($MoneyData)) {
  1040. // 获取生成的订单信息
  1041. $AddMoneyData = $this->GetAddMoneyData($UsersTypeData, $pay_mark, 1);
  1042. // 存入会员金额明细表
  1043. $ReturnID = $this->users_money_db->add($AddMoneyData);
  1044. // 支付宝处理返回信息
  1045. $AddMoneyData['moneyid'] = $ReturnID;
  1046. return $AddMoneyData;
  1047. } else {
  1048. // 获取生成的订单信息
  1049. $UpMoneyData = $this->GetUpMoneyData($UsersTypeData, $pay_mark);
  1050. $UpMoneyData['status'] = 1;
  1051. // 更新会员金额明细表
  1052. $ReturnID = $this->users_money_db->where('moneyid', $MoneyData['moneyid'])->update($UpMoneyData);
  1053. if (!empty($ReturnID)) {
  1054. // 支付宝处理返回信息
  1055. $MoneyData = $this->GetMoneyData('*', $Post['order_number']);
  1056. return $MoneyData;
  1057. }
  1058. }
  1059. }
  1060. // 支付宝订单处理逻辑
  1061. private function AliPayProcessing($MoneyData = [], $PayInfo = [], $Post = [])
  1062. {
  1063. // 返回订单数据
  1064. $AliPayUrl = '';
  1065. // 支付宝支付所需参数信息拼装
  1066. $Data = [
  1067. 'unified_number' => $MoneyData['order_number'],
  1068. 'unified_amount' => $MoneyData['money'],
  1069. 'transaction_type' => 3,
  1070. ];
  1071. if (version_compare(PHP_VERSION,'5.5.0','<')) {
  1072. // 低于5.5版本,仅可使用旧版支付宝支付
  1073. $AliPayUrl = model('PayApi')->getOldAliPayPayUrl($Data, $PayInfo);
  1074. } else {
  1075. // 高于或等于5.5版本,可使用新版支付宝支付
  1076. if (empty($PayInfo['version'])) {
  1077. // 新版
  1078. $AliPayUrl = url('user/Pay/newAlipayPayUrl', $Data);
  1079. } else if ($PayInfo['version'] == 1) {
  1080. // 旧版
  1081. $AliPayUrl = model('PayApi')->getOldAliPayPayUrl($Data, $PayInfo);
  1082. }
  1083. }
  1084. if (!empty($AliPayUrl)) {
  1085. $ReturnData = $this->GetReturnData(2, 0, '订单生成!', $AliPayUrl, $Data['unified_number']);
  1086. $ReturnData['ReturnOrderID'] = $MoneyData['moneyid'];
  1087. $ReturnData['pay_id'] = $Post['pay_id'];
  1088. $ReturnData['pay_mark'] = $Post['pay_mark'];
  1089. } else {
  1090. $this->error('升级失败,刷新重试');
  1091. }
  1092. $this->success($ReturnData);
  1093. }
  1094. // 处理微信订单支付信息并加载回页面
  1095. private function ReturnMoneyPayData($Post = [], $MoneyData = [], $PayInfo = [])
  1096. {
  1097. if (empty($MoneyData)) $this->error('订单生成错误,请刷新后重试');
  1098. // 订单信息
  1099. $ReturnOrderData = [
  1100. 'pay_id' => $Post['pay_id'],
  1101. 'pay_mark' => $Post['pay_mark'],
  1102. 'unified_id' => $MoneyData['moneyid'],
  1103. 'unified_number' => $MoneyData['order_number'],
  1104. 'transaction_type' => 3, // 订单支付购买
  1105. 'order_total_amount' => $MoneyData['money'],
  1106. 'PayData' => [
  1107. 'appId' => ''
  1108. ]
  1109. ];
  1110. if (isMobile() && !isWeixin()) {
  1111. // 手机浏览器端支付
  1112. $out_trade_no = $MoneyData['order_number'];
  1113. if (empty($out_trade_no)) $this->error('支付异常,请刷新后重试~');
  1114. $total_fee = $MoneyData['money'];
  1115. if (empty($total_fee)) $this->error('支付异常,请刷新后重试~');
  1116. $url = model('PayApi')->getMobilePay($out_trade_no, $total_fee, $PayInfo, 3);
  1117. if (isset($url['return_code']) && 'FAIL' == $url['return_code']) {
  1118. $this->error('商户公众号尚未成功开通H5支付,请开通成功后重试~');
  1119. }
  1120. $ReturnDataNew['url_qrcode'] = null;
  1121. } else if (isMobile() && isWeixin()) {
  1122. // 手机微信端支付
  1123. // if (empty($this->users['open_id'])) {
  1124. // // 如果会员没有openid则使用扫码支付方式
  1125. // $Param = [
  1126. // 'unified_number' => $MoneyData['order_number'],
  1127. // 'transaction_type' => 3
  1128. // ];
  1129. // $url = url('user/PayApi/pay_wechat_png', $Param);
  1130. // } else {
  1131. // $url = null;
  1132. // if (isWeixinApplets()) {
  1133. // $ReturnOrderData['is_applets'] = 1;
  1134. // } else {
  1135. // $Paydata = model('PayApi')->getWechatPay($this->users['open_id'], $MoneyData['order_number'], $MoneyData['money'], $PayInfo, 0, 3);
  1136. // $ReturnOrderData['PayData'] = $Paydata;
  1137. // }
  1138. // }
  1139. $url = null;
  1140. if (isWeixinApplets()) {
  1141. $ReturnOrderData['is_applets'] = 1;
  1142. } else {
  1143. $Paydata = model('PayApi')->getWechatPay($this->users['open_id'], $MoneyData['order_number'], $MoneyData['money'], $PayInfo, 0, 3);
  1144. $ReturnOrderData['PayData'] = $Paydata;
  1145. }
  1146. $ReturnDataNew['url_qrcode'] = $url;
  1147. } else {
  1148. $Param = [
  1149. 'unified_number' => $MoneyData['order_number'],
  1150. 'transaction_type' => 3
  1151. ];
  1152. $url = url('user/PayApi/pay_wechat_png', $Param);
  1153. $ReturnDataNew['url_qrcode'] = $url;
  1154. }
  1155. $ReturnData = $this->GetReturnData(1, 0, '订单生成!', $url, $MoneyData['order_number']);
  1156. $ReturnData = array_merge($ReturnData, $ReturnDataNew);
  1157. $this->success($ReturnData, $url, $ReturnOrderData);
  1158. }
  1159. // 查询
  1160. // field 字段信息,若不传入则默认值为*
  1161. // 值为*:find方式查询,查询所有字段,返回一维数组
  1162. // 值为多个:find方式查询,查询指定字段,返回一维数组
  1163. // 值为单个:getField方式查询,返回单个字段值
  1164. // return 返回查询结果
  1165. public function GetMoneyData($field = '*', $order_number = null)
  1166. {
  1167. $data = [];
  1168. // 查询条件
  1169. $where = [
  1170. 'users_id' => $this->users_id,
  1171. 'cause_type' => 0, // 消费类型
  1172. 'status' => 1, // 未付款状态
  1173. 'lang' => $this->home_lang,
  1174. ];
  1175. if (!empty($order_number)) $where['order_number'] = $order_number;
  1176. if ('*' == $field) {
  1177. // 查询所有字段
  1178. $data = $this->users_money_db->where($where)->find();
  1179. } else {
  1180. $info = explode(',', $field);
  1181. if (1 < count($info)) {
  1182. // 查询指定的多个字段
  1183. $data = $this->users_money_db->where($where)->field($field)->find();
  1184. } else {
  1185. // 查询指定的单个字段
  1186. $data = $this->users_money_db->where($where)->getField($field);
  1187. }
  1188. }
  1189. return $data;
  1190. }
  1191. // 拼装更新会员数据数组
  1192. private function GetUpUsersData($data = array(), $balance = false)
  1193. {
  1194. $time = getTime();
  1195. // 会员期限定义数组
  1196. $limit_arr = Config::get('global.admin_member_limit_arr');
  1197. // 到期天数
  1198. $maturity_days = $limit_arr[$data['limit_id']]['maturity_days'];
  1199. // 更新会员属性表的数组
  1200. $result = [
  1201. 'level' => $data['level_id'],
  1202. 'update_time' => $time,
  1203. 'level_maturity_days' => Db::raw('level_maturity_days+'.($maturity_days)),
  1204. ];
  1205. // 如果是余额支付则追加数组
  1206. if (!empty($balance)) $result['users_money'] = Db::raw('users_money-'.($data['price']));
  1207. // 判断是否需要追加天数,maturity_code在Base层已计算,1表示终身会员天数
  1208. if (1 != $this->users['maturity_code']) {
  1209. // 判断是否到期,到期则执行,3表示会员在期限内,不需要进行下一步操作
  1210. if (3 != $this->users['maturity_code']) {
  1211. // 追加天数数组
  1212. $result['open_level_time'] = $time;
  1213. $result['level_maturity_days'] = $maturity_days;
  1214. }
  1215. }
  1216. return $result;
  1217. }
  1218. // 拼装返回数组
  1219. private function GetReturnData($ReturnCode = 0, $ReturnPay = 0, $ReturnMsg = null, $ReturnUrl = null, $ReturnOrder = null)
  1220. {
  1221. // 返回跳转的链接
  1222. $ReturnUrl = !empty($ReturnUrl) ? $ReturnUrl : url('user/Pay/pay_account_recharge');
  1223. // 返回提示的信息
  1224. $ReturnMsg = 0 == $ReturnCode && empty($ReturnMsg) ? '余额不足,若要使用余额支付,请先充值!' : $ReturnMsg;
  1225. // 拼装数据
  1226. $ReturnData = [
  1227. // 返回判断支付类型,0为余额支付,1为微信,2为支付宝,2以上为第三方支付
  1228. 'ReturnCode' => $ReturnCode,
  1229. // 返回判断是否已支付,0为未支付,1为完成支付
  1230. 'ReturnPay' => $ReturnPay,
  1231. // 返回提示的信息
  1232. 'ReturnMsg' => $ReturnMsg,
  1233. // 返回跳转的链接
  1234. 'ReturnUrl' => $ReturnUrl,
  1235. // 支付订单号
  1236. 'ReturnOrder'=> $ReturnOrder,
  1237. ];
  1238. // 微信支付才需要的返回字段
  1239. if (2 == $ReturnCode) {
  1240. if (isMobile() && !isWeixin()) {
  1241. // 手机浏览器端支付
  1242. $ReturnData['WeChatType'] = 'WeChatH5';
  1243. } else if (isMobile() && isWeixin()) {
  1244. // 手机微信端支付
  1245. $ReturnData['WeChatType'] = 'WeChatInternal';
  1246. } else {
  1247. // PC端扫码支付
  1248. $ReturnData['WeChatType'] = 'WeChatScanCode';
  1249. }
  1250. }
  1251. return $ReturnData;
  1252. }
  1253. // 拼装订单数组
  1254. private function GetAddMoneyData($UsersTypeData = array(), $pay_method = 'balance', $status = 2, $details = '')
  1255. {
  1256. $wechat_pay_type = '';
  1257. if ('balance' == $pay_method) {
  1258. $pay_method_new = '余额';
  1259. } else if ('alipay' == $pay_method) {
  1260. $pay_method_new = '支付宝';
  1261. } else if ('wechat' == $pay_method) {
  1262. if (isMobile() && !isWeixin()) {
  1263. // 手机浏览器端支付
  1264. $wechat_pay_type = 'WeChatH5';
  1265. } else if (isMobile() && isWeixin()) {
  1266. // 手机微信端支付
  1267. $wechat_pay_type = 'WeChatInternal';
  1268. } else {
  1269. // PC端扫码支付
  1270. $wechat_pay_type = 'WeChatScanCode';
  1271. }
  1272. $pay_method_new = '微信';
  1273. } else {
  1274. $pay_method_new = $pay_method;
  1275. }
  1276. $details = '会员当前级别为【' . $this->users['level_name'] . '】,使用' . $pay_method_new . '支付【 ' . $UsersTypeData['type_name'] . '】,支付金额为' . $UsersTypeData['price'];
  1277. $time = getTime();
  1278. // 拼装数组存入会员购买等级表
  1279. $UsersMoney = strval($this->users['users_money']) - strval($UsersTypeData['price']);
  1280. $AddMoneyData = [
  1281. 'users_id' => $this->users_id,
  1282. // 订单生成规则
  1283. 'order_number' => date('Ymd') . $time . rand(10,100),
  1284. // 金额
  1285. 'money' => $UsersTypeData['price'],
  1286. 'users_money' => unifyPriceHandle($UsersMoney),
  1287. // 购买的产品等级ID(level_id)
  1288. 'cause' => serialize($UsersTypeData),
  1289. // 购买消费标记
  1290. 'cause_type' => 0,
  1291. // 支付状态,默认2为支付完成
  1292. 'status' => $status,
  1293. // 支付方式,默认余额支付
  1294. 'pay_method' => $pay_method,
  1295. 'wechat_pay_type' => $wechat_pay_type,
  1296. // 支付详情
  1297. 'pay_details' => serialize($details),
  1298. // 如果时升级订单则存在升级会员级别ID
  1299. 'level_id' => $UsersTypeData['level_id'],
  1300. 'lang' => $this->home_lang,
  1301. 'add_time' => $time,
  1302. 'update_time' => $time
  1303. ];
  1304. return $AddMoneyData;
  1305. }
  1306. // 拼装更新金额明细表数据数组
  1307. private function GetUpMoneyData($data = array(), $pay_method = 'balance')
  1308. {
  1309. $wechat_pay_type = '';
  1310. if ('balance' == $pay_method) {
  1311. $pay_method_new = '余额';
  1312. } else if ('alipay' == $pay_method) {
  1313. $pay_method_new = '支付宝';
  1314. } else if ('wechat' == $pay_method) {
  1315. if (isMobile() && !isWeixin()) {
  1316. // 手机浏览器端支付
  1317. $wechat_pay_type = 'WeChatH5';
  1318. } else if (isMobile() && isWeixin()) {
  1319. // 手机微信端支付
  1320. $wechat_pay_type = 'WeChatInternal';
  1321. } else {
  1322. // PC端扫码支付
  1323. $wechat_pay_type = 'WeChatScanCode';
  1324. }
  1325. $pay_method_new = '微信';
  1326. } else {
  1327. $pay_method_new = $pay_method;
  1328. $pay_method = 'Hupijiaopay' != $pay_method ? 'wechat' : $pay_method;
  1329. }
  1330. $details = '会员当前级别为【' . $this->users['level_name'] . '】,使用' . $pay_method_new . '支付【 ' . $data['type_name'] . '】,支付金额为' . $data['price'];
  1331. $result = [
  1332. 'cause' => serialize($data),
  1333. 'money' => $data['price'],
  1334. 'status' => 2,
  1335. 'pay_method' => $pay_method,
  1336. 'wechat_pay_type' => $wechat_pay_type,
  1337. 'pay_details' => serialize($details),
  1338. // 如果时升级订单则存在升级会员级别ID
  1339. 'level_id' => $data['level_id'],
  1340. 'update_time' => getTime()
  1341. ];
  1342. if ('balance' == $pay_method) {
  1343. $result['users_money'] = $this->users['users_money'] - $result['money'];
  1344. }
  1345. return $result;
  1346. }
  1347. }