Order.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\model\Address;
  4. use app\api\model\Commoditycolor;
  5. use app\api\model\CommodityModel;
  6. use app\api\model\Logistics;
  7. use app\api\model\OrderModel;
  8. use app\api\model\Torder;
  9. use app\api\model\UsersModel;
  10. use app\common\controller\Api;
  11. use app\common\lib\WxPay;
  12. use think\Cache;
  13. use think\Db;
  14. use think\File;
  15. /**
  16. * 订单接口
  17. */
  18. class Order extends Api
  19. {
  20. protected $noNeedLogin = '*';
  21. protected $noNeedRight = '*';
  22. /**
  23. * 购物车总价统计
  24. * @ApiMethod (POST)
  25. * @param string $list colorid,number
  26. */
  27. public function carMoney()
  28. {
  29. $params = $this->request->post();
  30. if (!isset($params['list'])) {
  31. return $this->result('网络错误', [], 100);
  32. }
  33. $list = $params['list'];
  34. foreach ($list as $v) {
  35. $commoditycolor[] = Commoditycolor::where('colorid', $v)->find();
  36. }
  37. if ($commoditycolor) {
  38. $money = 0;
  39. $number = $params['number'];
  40. $count = count($number);
  41. for ($i = 0; $i < $count; $i++) {
  42. $money = $money + $commoditycolor[$i]['money'] * $number[$i];
  43. }
  44. return $this->result('', $money, 200);
  45. } else {
  46. return $this->result('网络错误', [], 100);
  47. }
  48. }
  49. /**
  50. * 订单先提交
  51. * @ApiMethod (POST)
  52. * @param string $user_id 用户id
  53. * @param string $list 商品参数c_id,buy_number,p_id,colorid
  54. */
  55. public function orderGenerate()
  56. {
  57. $params = $this->request->post();
  58. if (!isset($params['user_id'])) {
  59. return $this->result('网络错误', [], 100);
  60. }
  61. if (!isset($params['list'])) {
  62. return $this->result('网络错误', [], 100);
  63. }
  64. $list = $params['list'];
  65. $rules = [
  66. 'buy_number' => "require|number",
  67. 'colorid' => "require|number",
  68. ];
  69. $msg = [
  70. 'buy_number.require' => '未选择购买数量',
  71. 'colorid.require' => '未选择颜色',
  72. 'colorid.number' => '网络错误',
  73. 'buy_number.number' => '网络错误',
  74. ];
  75. foreach ($list as $v) {
  76. $validata = $this->validate($v, $rules, $msg);
  77. if (is_string($validata)) {
  78. return $this->result($validata, [], 100);
  79. }
  80. $colorids[] = $v['colorid']; //颜色id放在同一个数组里
  81. $buy_numbers[] = $v['buy_number']; // 购买数量放在同一个数组里
  82. }
  83. $colorid = implode(',', $colorids); // 颜色数组拆分成为字符串
  84. $buy_number = implode(',', $buy_numbers); //数量数组拆分成为字符串
  85. $data = array(
  86. 'user_id' => $params['user_id'],
  87. 'colorid' => $colorid,
  88. 'buy_number' => $buy_number,
  89. 'create_time' => date('Y-m-d H:i:s', time()),
  90. );
  91. $addPre = Db::name('order_pre')->insertGetId($data);
  92. if ($addPre) {
  93. return $this->result('', $addPre, 200);
  94. } else {
  95. return $this->result('请求失败,请重新购买', [], 100);
  96. }
  97. }
  98. /**
  99. * 支付订单显示
  100. * @ApiMethod (POST)
  101. * @param string $pre_id 订单提交返回的值
  102. */
  103. public function preOrderIndex()
  104. {
  105. $pre_id = $this->request->post('pre_id');
  106. if (!$pre_id) {
  107. return $this->result('网络错误1', [], 100);
  108. }
  109. $order_pre = Db::name('order_pre')->where('pre_id', $pre_id)->find(); //查出预存订单
  110. $order_pre['colorid'] = explode(',', $order_pre['colorid']); // 批量拆分id
  111. $order_pre['buy_number'] = explode(',', $order_pre['buy_number']); // 批量拆分购买数量
  112. $count = count($order_pre['buy_number']);
  113. $commoditycolor = new Commoditycolor();
  114. for ($i = 0; $i < $count; $i++) {
  115. $data1[] = $commoditycolor->alias('co')
  116. ->join('parameter p', 'co.p_id = p.p_id', 'left')
  117. ->join('commodity c', 'p.c_id = c.c_id', 'left')
  118. ->where('co.colorid', $order_pre['colorid'][$i])
  119. ->find(); // 循环查出购买的商品
  120. foreach ($data1 as &$v) {
  121. $v['zongmoney'] = $v['money'];
  122. }
  123. }
  124. $data = $data1;
  125. $data['params']['money'] = 0; // 总价
  126. $data['params']['freight'] = 0; // 运费
  127. $data['params']['number'] = "yxj" . rand(1000, 9999) . time(); // 订单编号
  128. $data['params']['create_time'] = $order_pre['create_time']; // 创建时间
  129. $data['params']['whitebean'] = 0; // 白豆个数
  130. for ($i = 0; $i < $count; $i++) {
  131. $data[$i]['buy_number'] = $order_pre['buy_number'][$i]; // 循环写入购买数量
  132. $data[$i]['zongmoney'] = $order_pre['buy_number'][$i] * $data[$i]['zongmoney']+ $data[$i]['c_freight']; // 循环写入单个商品总价
  133. $data['params']['freight'] = $data['params']['freight'] + $data[$i]['c_freight']; // 总运费
  134. $data['params']['money'] = $data['params']['money'] + $data[$i]['zongmoney']; // 总费用
  135. $data['params']['whitebean'] = $data['params']['whitebean'] + $data[$i]['c_whitebean'] * $order_pre['buy_number'][$i]; // 总白豆数
  136. }
  137. // 把统计出来的总价,写入数据库
  138. $preAddMoney = Db::name('order_pre')->where('pre_id', $pre_id)->setInc('money', $data['params']['money']);
  139. $order['params'] = $data['params'];
  140. unset($data['params']);
  141. $order['order'] = $data;
  142. // 查出用户地址
  143. $order['address'] = Address::where('user_id', $order_pre['user_id'])->order('is_default desc')->select();
  144. if ($data && $preAddMoney) {
  145. return $this->result('', $order, 200);
  146. } else {
  147. return $this->result('网络错误', [], 100);
  148. }
  149. }
  150. /**
  151. * 支付订单数量修改
  152. * @ApiMethod (POST)
  153. * @param string $pre_id 订单提交返回的值
  154. * @param string $buy_number 修改后数量
  155. * @param string $position 修改的第几个
  156. */
  157. public function updBuyNumber()
  158. {
  159. $params = $this->request->post();
  160. $rules = [
  161. 'pre_id' => 'require',
  162. 'buy_number' => 'require',
  163. 'position' => 'require',
  164. ];
  165. $msg = [
  166. 'pre_id.require' => '网络错误',
  167. 'buy_number.require' => '网络错误',
  168. 'position.require' => '网络错误',
  169. ];
  170. $validate = $this->validate($params, $rules, $msg);
  171. if (is_string($validate)) {
  172. return $this->result($validate, [], 100);
  173. }
  174. $order_pre = Db::name('order_pre')->where('pre_id', $params['pre_id'])->find();
  175. if (!$order_pre) {
  176. return $this->result('未找到该订单', [], 100);
  177. }
  178. $buynumber = explode(',', $order_pre['buy_number']);
  179. foreach ($buynumber as $k => $v) {
  180. if ($k == $params['position']) {
  181. $buynumber[$k] = $params['buy_number'];
  182. }
  183. }
  184. $str = implode(',', $buynumber);
  185. $upd = Db::name('order_pre')->where('pre_id', $params['pre_id'])->update(['buy_number' => $str]);
  186. if ($upd) {
  187. return $this->result('成功', $params['pre_id'], 200);
  188. } else {
  189. return $this->result('点击频率过高', [], 100);
  190. }
  191. }
  192. /**
  193. * 支付订单
  194. * @ApiMethod (POST)
  195. * @param string $pre_id 预存id
  196. * @param string $list 商品参数,c_id,buy_number,p_id
  197. * @param string $user_id 用户id
  198. * @param string $money 总价
  199. * @param string $a_id 地址id
  200. * @param string $freight 运费
  201. * @param string $whitebean 总白豆数
  202. * @param string $create_time 创建时间
  203. * @param string $number 编号
  204. * @param string $user_paypwd 余额支付密码
  205. * @param string $type 0余额支付1第四方支付
  206. */
  207. public function orderPay()
  208. {
  209. $parames = $this->request->post();
  210. $rules = [
  211. 'pre_id' => 'require|number',
  212. 'user_id' => 'require',
  213. 'money' => 'require',
  214. 'a_id' => 'require',
  215. 'freight' => 'require',
  216. 'whitebean' => 'require',
  217. 'user_paypwd' => 'require',
  218. 'type' => 'require|max:1',
  219. ];
  220. $msg = [
  221. 'pre_id.require' => '网络错误1',
  222. 'user_id.require' => '网络错误2',
  223. 'money.require' => '网络错误3',
  224. 'a_id.require' => '网络错误4',
  225. 'freight.require' => '网络错误9',
  226. 'whitebean.require' => '网络错误10',
  227. 'user_paypwd.require' => '网络错误10',
  228. 'type.require' => '网络错误11',
  229. 'type.max' => '网络错误12',
  230. 'pre_id.number' => '网络错误13',
  231. ];
  232. $validata = $this->validate($parames, $rules, $msg);
  233. if (is_string($validata)) {
  234. return $this->result($validata, [], 100);
  235. }
  236. $order = new OrderModel();
  237. if ($parames['type'] == 0) {
  238. $res = $order->userMoneyPay($parames);
  239. return $res;
  240. }
  241. if ($parames['type'] == 1) {
  242. $res = $order->wechatOrder($parames);
  243. return $res;
  244. }
  245. }
  246. /**
  247. * 是否设置了余额支付密码
  248. * @ApiMethod (POST)
  249. * @param string $user_id 用户id
  250. */
  251. public function issetpaypwd()
  252. {
  253. $user_id = $this->request->post('user_id');
  254. if (!$user_id) {
  255. return $this->result('网络错误', [], 100);
  256. }
  257. $userinfo = UsersModel::where('user_id', $user_id)->find();
  258. if ($userinfo) {
  259. if ($userinfo['is_setpaypwd'] == 0) {
  260. return $this->result('还未设置支付密码', [], 90);
  261. } else {
  262. return $this->result('正确', [], 200);
  263. }
  264. } else {
  265. return $this->result('网络错误', [], 100);
  266. }
  267. }
  268. /**
  269. * 全部订单
  270. * @ApiMethod (POST)
  271. * @param string $user_id 用户id
  272. */
  273. public function allOrder()
  274. {
  275. $user_id = $this->request->post('user_id');
  276. if (!isset($user_id)) {
  277. return $this->result('网络错误', '', 100);
  278. }
  279. $order = new OrderModel();
  280. $data = $order->allOrder($user_id);
  281. return $data;
  282. }
  283. /**
  284. * 确认收货
  285. * @ApiMethod (POST)
  286. * @param string $o_id 订单id;
  287. */
  288. public function trueOrder()
  289. {
  290. $o_id = $this->request->post('o_id');
  291. if (!isset($o_id)) {
  292. return $this->result('网络错误', '', 100);
  293. }
  294. $order = Db::name('order')->where('o_id', $o_id)->find();
  295. $updOrder = OrderModel::where('o_id', $o_id)->update(['state' => 6]);
  296. $updUserWhitebean = Db::name('users')->where('user_id', $order['user_id'])->setInc('user_whitebean', $order['whitebeon']);
  297. if ($updOrder && $updUserWhitebean) {
  298. return $this->result('收货成功', '', 200);
  299. } else {
  300. return $this->result('网络错误', '', 100);
  301. }
  302. }
  303. /**
  304. * 取消订单
  305. * @ApiMethod (POST)
  306. * @param string $o_id 订单id;
  307. */
  308. public function orderCancel()
  309. {
  310. $o_id = $this->request->post('o_id');
  311. if (!isset($o_id)) {
  312. return $this->result('网络错误', '', 100);
  313. }
  314. $updOrder = OrderModel::where('o_id', $o_id)->update(['state' => 5]);
  315. if ($updOrder) {
  316. return $this->result('取消成功', '', 200);
  317. } else {
  318. return $this->result('网络错误', '', 100);
  319. }
  320. }
  321. /**
  322. * 删除订单
  323. * @ApiMethod (POST)
  324. * @param string $o_id 订单id;
  325. */
  326. public function delOeder()
  327. {
  328. $o_id = $this->request->post('o_id');
  329. if (!isset($o_id)) {
  330. return $this->result('网络错误', '', 100);
  331. }
  332. $updOrder = OrderModel::where('o_id', $o_id)->delete();
  333. if ($updOrder) {
  334. return $this->result('删除成功', '', 200);
  335. } else {
  336. return $this->result('网络错误', '', 100);
  337. }
  338. }
  339. /**
  340. * 各种订单详情
  341. * @ApiMethod (POST)
  342. * @param string $o_id 订单id
  343. */
  344. public function orderInfo()
  345. {
  346. $o_id = $this->request->post('o_id');
  347. if (!$o_id) {
  348. return $this->result('网络错误', [], 100);
  349. }
  350. $orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])
  351. ->where('o_id', $o_id)
  352. ->find()
  353. ->toArray();
  354. $orderInfo['wecharpay'] = Db::name('order_wechatpay')->where('o_id',$orderInfo['o_id'])->find();
  355. unset($orderInfo['wecharpay']['o_id']);
  356. unset($orderInfo['wecharpay']['w_id']);
  357. if (!$orderInfo) {
  358. $orderInfo = [];
  359. } else {
  360. foreach ($orderInfo['order_commodity_model'] as &$n) {
  361. $commodity = CommodityModel::where('c_id', $n['c_id'])->field('c_name')->find();
  362. if (!$commodity) {
  363. $n['c_name'] = '已下架商品';
  364. } else {
  365. $n['c_name'] = $commodity['c_name'];
  366. }
  367. $n['c_money'] = $n['c_vipprice'] * $n['buy_number']; // c_vipprice存的是颜色商品的价格,而不是商品的初始价格
  368. $n['money'] = $n['c_money'] + $n['c_freight'];
  369. //$n['freight'] = $n['c_freight'] * $n['buy_number'];
  370. }
  371. }
  372. if ($orderInfo) {
  373. return $this->result('', $orderInfo, 200);
  374. } else {
  375. return $this->result('暂无数据', [], 100);
  376. }
  377. }
  378. /**
  379. * 查看物流
  380. * @ApiMethod (POST)
  381. * @param string $o_id 订单id
  382. */
  383. public function logistics()
  384. {
  385. $o_id = $this->request->post('o_id');
  386. if (!$o_id) {
  387. return $this->result('网络错误', [], 100);
  388. }
  389. $order = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find()->toArray();
  390. foreach ($order['order_commodity_model'] as &$n) {
  391. $commodity = CommodityModel::where('c_id', $n['c_id'])->field('c_name,c_images')->find();
  392. if (!$commodity) {
  393. $n['c_name'] = '已下架商品';
  394. } else {
  395. $n['c_name'] = $commodity['c_name'];
  396. $order['c_images'][] = $commodity['c_images'];
  397. }
  398. }
  399. $model = new Logistics();
  400. $res = $model->logistics($order);
  401. return $res;
  402. }
  403. /**
  404. * 退款订单显示
  405. * @ApiMethod (POST)
  406. * @param string $o_id 订单id
  407. */
  408. public function torderIndex()
  409. {
  410. $o_id = $this->request->post('o_id');
  411. if (!isset($o_id)) {
  412. return $this->result('网络错误', '', 100);
  413. }
  414. $orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress'])->where('o_id', $o_id)->find();
  415. foreach ($orderInfo['order_commodity_model'] as $n) {
  416. $commodity = CommodityModel::where('c_id', $n['c_id'])->field('c_name')->find();
  417. if (!$commodity) {
  418. $n['c_name'] = '已下架商品';
  419. } else {
  420. $n['c_name'] = $commodity['c_name'];
  421. }
  422. }
  423. if ($orderInfo) {
  424. return $this->result('', $orderInfo, 200);
  425. } else {
  426. return $this->result('网络错误', [], 100);
  427. }
  428. }
  429. /**
  430. * 退款提交
  431. * @ApiMethod (POST)
  432. * @param string $o_id 订单id
  433. * @param string $reason 原因
  434. * @param string $money 金额
  435. * @param string $content 说明
  436. * @param string $files 图片
  437. */
  438. public function subTorder()
  439. {
  440. $params = $this->request->post();
  441. if (!isset($params['o_id'])) {
  442. return $this->result('网络错误', [], 100);
  443. }
  444. if (!isset($params['money'])) {
  445. return $this->result('网络错误', [], 100);
  446. }
  447. //修改订单状态
  448. $order = OrderModel::where('o_id', $params['o_id'])->find();
  449. $data = array(
  450. 'state' => 4,
  451. 'tuikuan_state' => 3,
  452. 'state_save' => $order['state']
  453. );
  454. if(isset($params['files'])) {
  455. $params['images'] = implode(',',$params['files']);
  456. }
  457. $params['money'] = $order['money'];
  458. $params['create_time'] = date('Y-m-d H:i:s', time());
  459. $updOrder = OrderModel::where('o_id', $params['o_id'])->Update($data);
  460. $model = new Torder();
  461. $subTorder = $model->allowField(true)->save($params);
  462. if ($subTorder) {
  463. return $this->result('申请退款成功', [], 200);
  464. } else {
  465. return $this->result('申请失败', [], 100);
  466. }
  467. }
  468. /**
  469. * 退款图片上传
  470. * @ApiMethod (POST)
  471. * @param File $files 图片
  472. */
  473. public function upload()
  474. {
  475. $files = $_FILES;
  476. $imageArr = Array();
  477. foreach ($files as $file) {
  478. $imageName = $file['name'];
  479. //后缀名
  480. $ext = strtolower(substr(strrchr($imageName, '.'), 1));
  481. //保存文件名
  482. $fileName = uniqid();
  483. $tmp = $file['tmp_name'];
  484. //保存 = 路径 + 文件名 + 后缀名
  485. $imageSavePath = ROOT_PATH . 'public' . DS . 'uploads/images/' . $fileName . '.' . $ext;
  486. $info = move_uploaded_file($tmp, $imageSavePath);
  487. if ($info) {
  488. $path = config('site.httpurl')."/uploads/images/" . $fileName . '.' . $ext;
  489. array_push($imageArr, $path);
  490. }
  491. }
  492. //最终生成的字符串路径
  493. $imagePathStr = implode(',', $imageArr);
  494. return $imagePathStr;
  495. }
  496. /**
  497. * 取消退款
  498. * @ApiMethod (POST)
  499. * @param string $o_id 订单id
  500. */
  501. public function cancleTorder()
  502. {
  503. $o_id = $this->request->post('o_id');
  504. if (!isset($o_id)) {
  505. return $this->result('网络错误', [], 100);
  506. }
  507. $order = OrderModel::where('o_id', $o_id)->find();
  508. if (!$order) {
  509. return $this->result('未找到该订单', [], 100);
  510. }
  511. // 修改成为退款之前的状态
  512. $updOrder = OrderModel::where('o_id', $o_id)->update(['state' => $order['state_save']]);
  513. if ($updOrder) {
  514. return $this->result('取消成功', [], 200);
  515. } else {
  516. return $this->result('失败', [], 100);
  517. }
  518. }
  519. /**
  520. * 退款订单详情
  521. * @ApiMethod (POST)
  522. * @param string $o_id 订单id
  523. */
  524. public function torderInfo()
  525. {
  526. $o_id = $this->request->post('o_id');
  527. if (!isset($o_id)) {
  528. return $this->result('网络错误', [], 100);
  529. }
  530. $orderInfo = OrderModel::with(['OrderCommodityModel', 'OrderAddress', 'Torder'])->where('o_id', $o_id)->find();
  531. foreach ($orderInfo['order_commodity_model'] as $n) {
  532. $commodity = CommodityModel::where('c_id', $n['c_id'])->field('c_name')->find();
  533. if (!$commodity) {
  534. $n['c_name'] = '已下架商品';
  535. } else {
  536. $n['c_name'] = $commodity['c_name'];
  537. }
  538. }
  539. if ($orderInfo) {
  540. return $this->result('', $orderInfo, 200);
  541. } else {
  542. return $this->result('未找到该订单', [], 100);
  543. }
  544. }
  545. /**
  546. * 微信订单支付回调
  547. * 可以通过@ApiInternal忽略请求的方法
  548. * @ApiInternal
  549. */
  550. public function order_notify()
  551. {
  552. //获取返回的xml格式数据
  553. $payXml = file_get_contents("php://input");
  554. //将xml格式转化为json格式
  555. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  556. //将json格式转成数组格式 $result['out_trade_no']
  557. $result = json_decode($jsonXml, true);
  558. Cache::set('result',$result);
  559. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  560. $order = OrderModel::where('number', $result['out_trade_no'])->find();
  561. //修改订单状态
  562. $updOederstate = Db::name('order')->where('o_id', $order['o_id'])->update(['state' => 2]);
  563. $updwhitebean = Db::name('users')->where('user_id', $order['user_id'])->setInc('user_whitebean', $order['whitebeon']);
  564. if ($updOederstate && $updwhitebean) {
  565. $arr = array(
  566. 'return_code' => 'SUCCESS',
  567. 'return_msg' => 'OK',
  568. );
  569. return $this->arrayToXml($arr);
  570. }
  571. }
  572. }
  573. /**
  574. * 微信退款订单回调
  575. * 可以通过@ApiInternal忽略请求的方法
  576. * @ApiInternal
  577. */
  578. public function notify_refund()
  579. {
  580. $payXml = file_get_contents("php://input");
  581. //将xml格式转化为json格式
  582. $jsonXml = json_encode(simplexml_load_string($payXml, 'SimpleXMLElement', LIBXML_NOCDATA));
  583. //将json格式转成数组格式 $result['out_trade_no']
  584. $result = json_decode($jsonXml, true);
  585. if ($result['return_code'] == "SUCCESS") {
  586. $str = $result['req_info'];
  587. // 对加密信息进行解密,需要用到商户秘钥
  588. $data = $this->req_info_decrypt($str);
  589. // Cache::set('req_info', $data);
  590. if ($data['refund_status'] == "SUCCESS") {
  591. //修改退款状态
  592. $updstate = Db::name("order")->where('number', $data['out_trade_no'])->update(['tuikuan_state' => '1']);
  593. $arr = array(
  594. 'return_code' => 'SUCCESS',
  595. 'return_msg' => 'OK',
  596. );
  597. return $this->arrayToXml($arr);
  598. }
  599. }
  600. Cache::set('aaa', $result);
  601. $arr = array(
  602. 'return_code' => 'SUCCESS',
  603. 'return_msg' => 'OK',
  604. );
  605. return $this->arrayToXml($arr);
  606. }
  607. /**
  608. * 信息解密
  609. * 对加密信息进行解密,需要用到商户秘钥
  610. * 可以通过@ApiInternal忽略请求的方法
  611. * @ApiInternal
  612. */
  613. public function req_info_decrypt($str)
  614. {
  615. //微信商户key
  616. $key = "b3ae6bbf3cc4fa017eb169ae219e2c27";
  617. $str = base64_decode($str);
  618. $xml = openssl_decrypt($str, 'aes-256-ecb', md5($key), OPENSSL_RAW_DATA);
  619. return json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
  620. }
  621. /**
  622. * 数组转xml
  623. * @ApiInternal
  624. */
  625. public function arrayToXml($arr)
  626. {
  627. $xml = "<xml>";
  628. foreach ($arr as $key => $val) {
  629. if (is_numeric($val)) {
  630. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  631. } else
  632. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  633. }
  634. $xml .= "</xml>";
  635. return $xml;
  636. }
  637. }