Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\controller\v1;
  14. use think\Db;
  15. class Api extends Base
  16. {
  17. /**
  18. * 初始化操作
  19. */
  20. public function _initialize() {
  21. parent::_initialize();
  22. }
  23. /**
  24. * 首页
  25. */
  26. public function index()
  27. {
  28. $data = $this->apiLogic->taglibData();
  29. $this->renderSuccess($data);
  30. }
  31. /**
  32. * 分类页面
  33. * @return [type] [description]
  34. */
  35. public function category()
  36. {
  37. $data = [];
  38. $show_type = input('param.show_type/d'); // 模板风格类型
  39. if (35 == $show_type) {
  40. // 商品分类列表
  41. // $result = model('v1.Category')->getProductCategory();
  42. // $data['list'] = !empty($result['list']) ? array_values($result['list']) : [];
  43. // $data['arclist'] = !empty($result['arclist']) ? array_values($result['arclist']): [];
  44. } else {
  45. $data = $this->apiLogic->taglibData();
  46. $data['channel'][0]['data'] = array_values($data['channel'][0]['data']);
  47. }
  48. $this->renderSuccess($data);
  49. }
  50. // 查询商品信息
  51. public function get_product_data()
  52. {
  53. if (IS_AJAX_POST) {
  54. $typeid = input('post.typeid/d');
  55. if (empty($typeid)) $this->error('数据异常');
  56. $ArchivesData = model('v1.Category')->GetProductData($typeid);
  57. $this->success('查询成功', null, $ArchivesData);
  58. }
  59. }
  60. /**
  61. * 文档列表
  62. * @param string $typeid 栏目ID
  63. * @return array 返回值
  64. */
  65. public function archivesList($typeid = '')
  66. {
  67. $data = $this->apiLogic->taglibData();
  68. $this->renderSuccess($data);
  69. }
  70. /**
  71. * 文档详情页
  72. * @param string $aid 文档ID
  73. * @param string $typeid 分类ID
  74. * @return array 返回值
  75. */
  76. public function archivesView($aid = '', $typeid = '')
  77. {
  78. $aid = intval($aid);
  79. $typeid = intval($typeid);
  80. if (empty($aid) && !empty($typeid)) { // 单页栏目详情页
  81. $data = $this->apiLogic->taglibData();
  82. $this->renderSuccess($data);
  83. }
  84. else { // 普通文档详情
  85. $users = $this->getUser(false);
  86. $view = model('v1.Api')->getArchivesView($aid, $users);
  87. $data = $this->apiLogic->taglibData($users);
  88. $data = array_merge($view, $data);
  89. $this->renderSuccess($data);
  90. }
  91. }
  92. /**
  93. * 联系我们
  94. * @param string $aid 文档ID
  95. * @return array 返回值
  96. */
  97. public function contact()
  98. {
  99. $data = model('v1.Api')->getContact();
  100. $this->renderSuccess($data);
  101. }
  102. /**
  103. * 留言栏目
  104. */
  105. public function guestbook_form()
  106. {
  107. $data = $this->apiLogic->taglibData();
  108. $this->renderSuccess($data);
  109. }
  110. /**
  111. * 发送邮箱
  112. * @return array 返回值
  113. */
  114. public function sendemail()
  115. {
  116. // 超时后,断掉邮件发送
  117. function_exists('set_time_limit') && set_time_limit(10);
  118. $type = input('param.type/s');
  119. // 留言发送邮件
  120. if (IS_POST && 'gbook_submit' == $type) {
  121. $aid = input('param.aid/d');
  122. $typeid = input('param.typeid/d');
  123. $form_type = input('param.form_type/d', 0);
  124. $send_email_scene = config('send_email_scene');
  125. $scene = $send_email_scene[1]['scene'];
  126. $web_name = tpCache('web.web_name');
  127. // 判断标题拼接
  128. if (!empty($form_type) && 1 === intval($form_type)) {
  129. $form_name = M('form')->where('form_id', $typeid)->getField('form_name');
  130. $web_name = $form_name.'-'.$web_name;
  131. } else {
  132. $arctype = M('arctype')->field('typename')->find($typeid);
  133. $web_name = $arctype['typename'].'-'.$web_name;
  134. }
  135. // 拼装发送的字符串内容
  136. $row = M('guestbook_attribute')->field('a.attr_name, b.attr_value')
  137. ->alias('a')
  138. ->join('__GUESTBOOK_ATTR__ b', 'a.attr_id = b.attr_id AND a.typeid = '.$typeid, 'LEFT')
  139. ->where([
  140. 'b.aid' => $aid,
  141. ])
  142. ->order('a.attr_id sac')
  143. ->select();
  144. $content = '';
  145. foreach ($row as $key => $val) {
  146. if(10 == $val['attr_input_type']){
  147. $val['attr_value'] = date('Y-m-d H:i:s',$val['attr_value']);
  148. }if (preg_match('/(\.(jpg|gif|png|bmp|jpeg|ico|webp))$/i', $val['attr_value'])) {
  149. if (!stristr($val['attr_value'], '|')) {
  150. $val['attr_value'] = get_absolute_url(handle_subdir_pic($val['attr_value']));
  151. $val['attr_value'] = "<a href='".$val['attr_value']."' target='_blank'><img src='".$val['attr_value']."' width='150' height='150' /></a>";
  152. }
  153. } else {
  154. $val['attr_value'] = str_replace(PHP_EOL, ' | ', $val['attr_value']);
  155. }
  156. $content .= $val['attr_name'] . ':' . $val['attr_value'].'<br/>';
  157. }
  158. $html = "<p style='text-align: left;'>{$web_name}</p><p style='text-align: left;'>{$content}</p>";
  159. if (isWeixinApplets()) {
  160. $html .= "<p style='text-align: left;'>——来源:小程序端</p>";
  161. } else if (isMobile()) {
  162. $html .= "<p style='text-align: left;'>——来源:移动端</p>";
  163. } else {
  164. $html .= "<p style='text-align: left;'>——来源:电脑端</p>";
  165. }
  166. // 发送邮件
  167. $res = send_email(null,null,$html, $scene);
  168. if (intval($res['code']) == 1) {
  169. $this->renderSuccess($res);
  170. } else {
  171. $this->error($res['msg']);
  172. }
  173. }
  174. }
  175. // 发送留言短信
  176. private function sendGbookSms($type = 'gbook_submit', $send_scene = 11)
  177. {
  178. // 超时后,断掉邮件发送
  179. function_exists('set_time_limit') && set_time_limit(10);
  180. // 留言发送短信
  181. if ('gbook_submit' == $type) {
  182. $sms_config = tpCache('sms');
  183. // 配置不接收留言短信提醒
  184. if (!empty($sms_config['sms_guestbook_send'])) {
  185. // 短信模板无内容
  186. $sms_type = $sms_config['sms_type'] ? intval($sms_config['sms_type']) : 1;
  187. $tpl_content = Db::name('sms_template')->where(["send_scene" => $send_scene, "sms_type" => $sms_type])->value('tpl_content');
  188. // 发送短信
  189. if (!empty($tpl_content)) sendSms($send_scene, $sms_config['sms_test_mobile'], []);
  190. }
  191. }
  192. }
  193. /**
  194. * 用户自动登录
  195. * @return array
  196. * @throws \app\common\exception\BaseException
  197. * @throws \think\Exception
  198. * @throws \think\exception\DbException
  199. */
  200. public function users_login()
  201. {
  202. if (empty($this->globalConfig['web_users_switch'])) {
  203. $this->error('后台会员中心尚未开启!');
  204. }
  205. $userModel = model('v1.User');
  206. return $this->renderSuccess([
  207. 'users_id' => $userModel->login(input('post.', null, 'htmlspecialchars_decode')),
  208. 'token' => $userModel->getToken()
  209. ]);
  210. }
  211. /**
  212. * 获取当前用户信息
  213. * @return array
  214. * @throws \app\common\exception\BaseException
  215. * @throws \think\Exception
  216. * @throws \think\exception\DbException
  217. */
  218. public function users_detail()
  219. {
  220. if (empty($this->globalConfig['web_users_switch'])) {
  221. $this->error('后台会员中心尚未开启!');
  222. }
  223. // 当前用户信息
  224. $users = $this->getUser(false);
  225. $data = [
  226. 'userInfo' => $users,
  227. ];
  228. // 开启商城中心
  229. if (!empty($this->usersConfig['shop_open'])) {
  230. $shopModel = model('v1.Shop');
  231. $data['orderCount'] = [
  232. 'payment' => $shopModel->getOrderCount($users, 'payment'),
  233. 'delivery' => $shopModel->getOrderCount($users, 'delivery'),
  234. 'received' => $shopModel->getOrderCount($users, 'received'),
  235. ];
  236. $data['coupon'] = model('v1.api')->getCouponCount($users); // 优惠券数量
  237. $data['product'] = model('v1.api')->getRecomProduct(); // 可能你还想要
  238. }
  239. // 是否安装积分商城插件
  240. $data['showPointsShop'] = false;
  241. $weappInfo = model('ShopPublicHandle')->getWeappPointsShop();
  242. if (!empty($weappInfo)) {
  243. // 调用积分商城逻辑层方法
  244. $pointsShopLogic = new \app\plugins\logic\PointsShopLogic($users);
  245. $data['showPointsShop'] = $pointsShopLogic->showPointsShop($weappInfo);
  246. }
  247. // 是否安装订单核销插件
  248. $data['showVerifyOrder'] = false;
  249. $weappInfo = model('ShopPublicHandle')->getWeappVerifyInfo();
  250. if (!empty($weappInfo)) {
  251. // 调用订单核销逻辑层方法
  252. $verifyLogic = new \app\plugins\logic\VerifyLogic($users);
  253. $data['showVerifyOrder'] = $verifyLogic->showVerifyOrder($weappInfo);
  254. }
  255. // 是否安装抽奖插件
  256. $data['showLotterydraw'] = false;
  257. $weappInfo = model('ShopPublicHandle')->getWeappInfo("Lotterydraw");
  258. if (!empty($weappInfo)) {
  259. // 调用订单核销逻辑层方法
  260. $lotterydrawLogic = new \weapp\Lotterydraw\logic\LotterydrawLogic();
  261. $data['showLotterydraw'] = $lotterydrawLogic->showLotterydraw($weappInfo);
  262. }
  263. $tagData = $this->apiLogic->taglibData($users);
  264. $data = array_merge($data, $tagData);
  265. return $this->renderSuccess($data);
  266. }
  267. /**
  268. * 微信支付成功异步通知 (shop_order)
  269. * @throws BaseException
  270. * @throws \Exception
  271. * @throws \think\exception\DbException
  272. */
  273. public function wxpay_notify()
  274. {
  275. // $xml = <<<EOF
  276. // <xml><a><![CDATA[wxpay_notify]]></a>
  277. // <appid><![CDATA[wx8f143c88b8946bd7]]></appid>
  278. // <attach><![CDATA[微信小程序支付]]></attach>
  279. // <bank_type><![CDATA[OTHERS]]></bank_type>
  280. // <c><![CDATA[v1.Api]]></c>
  281. // <cash_fee><![CDATA[1]]></cash_fee>
  282. // <fee_type><![CDATA[CNY]]></fee_type>
  283. // <is_subscribe><![CDATA[N]]></is_subscribe>
  284. // <m><![CDATA[api]]></m>
  285. // <mch_id><![CDATA[1604998382]]></mch_id>
  286. // <nonce_str><![CDATA[9252a7a2244dd45858fb8d18b914f663]]></nonce_str>
  287. // <openid><![CDATA[oRObw5V57ISeTXkW32qXTYc7V-oE]]></openid>
  288. // <out_trade_no><![CDATA[20230402168042847493]]></out_trade_no>
  289. // <result_code><![CDATA[SUCCESS]]></result_code>
  290. // <return_code><![CDATA[SUCCESS]]></return_code>
  291. // <sign><![CDATA[F472710FA0BE4FF89AB8E38EFDD58061]]></sign>
  292. // <time_end><![CDATA[20230402174121]]></time_end>
  293. // <total_fee>1</total_fee>
  294. // <trade_type><![CDATA[JSAPI]]></trade_type>
  295. // <transaction_id><![CDATA[4200066278202304023173075693]]></transaction_id>
  296. // </xml>
  297. // EOF;
  298. $userModel = model('v1.User');
  299. if (!$xml = file_get_contents('php://input')) {
  300. $userModel->returnCode(false, 'Not found DATA');
  301. }
  302. // 将服务器返回的XML数据转化为数组
  303. $data = $userModel->fromXml($xml);
  304. // 订单信息
  305. $order = Db::name("shop_order")->where(['order_code' => $data['out_trade_no']])->find();
  306. empty($order) && $userModel->returnCode(false, '订单不存在');
  307. // 保存微信服务器返回的签名sign
  308. $dataSign = $data['sign'];
  309. // sign不参与签名算法
  310. unset($data['sign']);
  311. // 生成签名
  312. $sign = $userModel->makeSign($data);
  313. // 判断签名是否正确 判断支付状态
  314. if (
  315. ($sign !== $dataSign)
  316. || ($data['return_code'] !== 'SUCCESS')
  317. || ($data['result_code'] !== 'SUCCESS')
  318. ) {
  319. $userModel->returnCode(false, '签名失败');
  320. }
  321. // 订单支付成功业务处理
  322. $openid = Db::name('wx_users')->where(['users_id'=>$order['users_id']])->getField('openid');
  323. $PostData = [
  324. 'openid' => $openid,
  325. 'users_id' => $order['users_id'],
  326. 'order_id' => $order['order_id'],
  327. 'order_code' => $order['order_code'],
  328. ];
  329. $redata = model('v1.Shop')->WechatAppletsPayDealWith($PostData, true);
  330. if (isset($redata['code']) && empty($redata['code'])) {
  331. $userModel->returnCode(false, $redata['msg']);
  332. }
  333. // 返回状态
  334. $userModel->returnCode(true, 'OK');
  335. }
  336. /**
  337. * 微信支付成功异步通知 (users_money表)
  338. * @throws BaseException
  339. * @throws \Exception
  340. * @throws \think\exception\DbException
  341. */
  342. public function wxpay_notify_users()
  343. {
  344. $userModel = model('v1.User');
  345. if (!$xml = file_get_contents('php://input')) {
  346. $userModel->returnCode(false, 'Not found DATA');
  347. }
  348. // 将服务器返回的XML数据转化为数组
  349. $data = $userModel->fromXml($xml);
  350. // 订单信息
  351. $order = Db::name("users_money")->where(['order_number' => $data['out_trade_no']])->find();
  352. empty($order) && $userModel->returnCode(false, '订单不存在');
  353. // 保存微信服务器返回的签名sign
  354. $dataSign = $data['sign'];
  355. // sign不参与签名算法
  356. unset($data['sign']);
  357. // 生成签名
  358. $sign = $userModel->makeSign($data);
  359. // 判断签名是否正确 判断支付状态
  360. if (
  361. ($sign !== $dataSign)
  362. || ($data['return_code'] !== 'SUCCESS')
  363. || ($data['result_code'] !== 'SUCCESS')
  364. ) {
  365. $userModel->returnCode(false, '签名失败');
  366. }
  367. // 订单支付成功业务处理
  368. $openid = Db::name('wx_users')->where(['users_id'=>$order['users_id']])->getField('openid');
  369. $PostData = [
  370. 'openid' => $openid,
  371. 'users_id' => $order['users_id'],
  372. 'moneyid' => $order['moneyid'],
  373. 'order_number' => $order['order_number'],
  374. ];
  375. $redata = model('v1.Shop')->WechatAppletsPayDealWithUsersMoney($PostData, true);
  376. if (isset($redata['code']) && empty($redata['code'])) {
  377. $userModel->returnCode(false, $redata['msg']);
  378. }
  379. // 返回状态
  380. $userModel->returnCode(true, 'OK');
  381. }
  382. /**
  383. * 微信支付成功异步通知 (meida_order表)
  384. * @throws BaseException
  385. * @throws \Exception
  386. * @throws \think\exception\DbException
  387. */
  388. public function wxpay_notify_media()
  389. {
  390. $userModel = model('v1.User');
  391. if (!$xml = file_get_contents('php://input')) {
  392. $userModel->returnCode(false, 'Not found DATA');
  393. }
  394. // 将服务器返回的XML数据转化为数组
  395. $data = $userModel->fromXml($xml);
  396. // 订单信息
  397. $order = Db::name("meida_order")->where(['order_code' => $data['out_trade_no']])->find();
  398. empty($order) && $userModel->returnCode(false, '订单不存在');
  399. // 保存微信服务器返回的签名sign
  400. $dataSign = $data['sign'];
  401. // sign不参与签名算法
  402. unset($data['sign']);
  403. // 生成签名
  404. $sign = $userModel->makeSign($data);
  405. // 判断签名是否正确 判断支付状态
  406. if (
  407. ($sign !== $dataSign)
  408. || ($data['return_code'] !== 'SUCCESS')
  409. || ($data['result_code'] !== 'SUCCESS')
  410. ) {
  411. $userModel->returnCode(false, '签名失败');
  412. }
  413. // 订单支付成功业务处理
  414. $openid = Db::name('wx_users')->where(['users_id'=>$order['users_id']])->getField('openid');
  415. $PostData = [
  416. 'openid' => $openid,
  417. 'users_id' => $order['users_id'],
  418. 'order_id' => $order['order_id'],
  419. 'order_code' => $order['order_code'],
  420. ];
  421. $redata = model('v1.Shop')->WechatAppletsPayDealWithMedia($PostData, true);
  422. if (isset($redata['code']) && empty($redata['code'])) {
  423. $userModel->returnCode(false, $redata['msg']);
  424. }
  425. // 返回状态
  426. $userModel->returnCode(true, 'OK');
  427. }
  428. // 生成商品二维码海报
  429. public function createGoodsShareQrcodePoster()
  430. {
  431. if (IS_AJAX_POST) {
  432. // 海报模型
  433. $diyminiproMallPosterModel = model('v1.Poster');
  434. // 调用接口生成海报
  435. $post = input('post.');
  436. $post['aid'] = intval($post['aid']);
  437. $post['typeid'] = intval($post['typeid']);
  438. $users = $this->getUser(false);
  439. $post['mid'] = !empty($users['users_id']) ? $users['users_id'] : 0;
  440. if (!empty($users['dealer']) && !empty($users['dealer']['users_id']) && !empty($users['dealer']['dealer_id'])) {
  441. $post['users_id'] = intval($users['dealer']['users_id']);
  442. $post['dealer_id'] = intval($users['dealer']['dealer_id']);
  443. }
  444. $qrcodePoster = $diyminiproMallPosterModel->getCreateGoodsShareQrcodePoster($post, 2);
  445. if (!empty($qrcodePoster) && !empty($qrcodePoster['poster'])) {
  446. $this->success('海报生成成功', null, $qrcodePoster);
  447. } else {
  448. $this->error('生成失败'.$qrcodePoster['errmsg']);
  449. }
  450. }
  451. }
  452. // 生成文章二维码海报
  453. public function createArticleShareQrcodePoster()
  454. {
  455. if (IS_AJAX_POST) {
  456. // 海报模型
  457. $diyminiproMallPosterModel = model('v1.Poster');
  458. // 调用接口生成海报
  459. $post = input('post.');
  460. $post['aid'] = intval($post['aid']);
  461. $post['typeid'] = intval($post['typeid']);
  462. $QrcodePoster = $diyminiproMallPosterModel->GetCreateGoodsShareQrcodePoster($post, 1);
  463. if (!empty($QrcodePoster) && !empty($QrcodePoster['poster'])) {
  464. $this->success('海报生成成功', null, $QrcodePoster);
  465. } else {
  466. $this->error('生成失败'.$QrcodePoster['errmsg']);
  467. }
  468. }
  469. }
  470. // 提交文章评论
  471. public function submitArticleComment()
  472. {
  473. if (IS_AJAX) {
  474. if (!is_dir('./weapp/Comment/')){
  475. $this->error('请先安装评论插件');
  476. }
  477. $param = input('param.');
  478. if (empty($param['aid'])) $this->error('数据错误,刷新重试');
  479. if (empty($param['content'])) $this->error('请输入您的评论内容');
  480. $users = $this->getUser(false);
  481. // 添加文章评论模型
  482. $res = model('v1.Api')->addArticleComment($param, $users);
  483. if (0 < $res['code']) {
  484. $this->success($res['msg'], null, ['is_show'=>$res['is_show']]);
  485. } else {
  486. $this->error($res['msg']);
  487. }
  488. }
  489. }
  490. /**
  491. * 购物车列表
  492. */
  493. public function shop_cart_list()
  494. {
  495. if (IS_AJAX) {
  496. $users = $this->getUser(false);
  497. if (!empty($users)) {
  498. // 商城模型
  499. $ShopModel = model('v1.Shop');
  500. // 获取商品信息生成订单并支付
  501. $ShopCart = $ShopModel->ShopCartList($users['users_id'], $users['level_discount'], $users['level_id']);
  502. } else {
  503. $ShopCart = [];
  504. }
  505. $this->renderSuccess($ShopCart);
  506. }
  507. }
  508. /**
  509. * 上传评论图片
  510. * @return array
  511. */
  512. public function uploads()
  513. {
  514. if (IS_AJAX_POST) {
  515. $file_type = input('param.file_type/s',"");
  516. $data = func_common('file', 'minicode',$file_type);
  517. $is_absolute = input('param.is_absolute/d',0);
  518. if ($is_absolute && !empty($data['img_url'])){
  519. $data['img_url'] = get_absolute_url($data['img_url'],'default',true);
  520. }
  521. $this->success('上传成功!','',$data);
  522. }
  523. $this->error('非法上传!');
  524. }
  525. /**
  526. * 获取评论列表
  527. */
  528. public function get_goods_comment_list()
  529. {
  530. if (IS_AJAX) {
  531. $param = input('param.');
  532. // 获取商品信息生成订单并支付
  533. $commentList = model('v1.Api')->getGoodsCommentList($param);
  534. $this->success('success','',$commentList);
  535. // $this->renderSuccess($commentList);
  536. }
  537. }
  538. /**
  539. * 获取秒杀列表
  540. */
  541. public function get_sharp_index()
  542. {
  543. // 商城模型
  544. $ShopModel = model('v1.Shop');
  545. // 获取秒杀tabbar
  546. $tabbar = $ShopModel->GetSharpTabbar();
  547. $SharpList = [];
  548. if (!empty($tabbar)){
  549. // 获取秒杀列表
  550. $SharpList = $ShopModel->GetSharpIndex($tabbar[0]['active_time_id']);
  551. }
  552. $this->renderSuccess(['goodsList'=>$SharpList,'tab'=>$tabbar]);
  553. }
  554. /**
  555. * 获取秒杀商品列表
  556. */
  557. public function get_sharp_goods_index($active_time_id = '', $page = 1)
  558. {
  559. // 商城模型
  560. $DiyminiproModel = model('v1.Shop');
  561. // 获取秒杀商品分页列表
  562. $SharpList = $DiyminiproModel->GetSharpIndex($active_time_id,$page);
  563. $this->renderSuccess(['goodsList'=>$SharpList]);
  564. }
  565. /**
  566. * 获取秒杀商品详情
  567. */
  568. public function get_sharp_goods($aid=0,$active_time_id=0)
  569. {
  570. // 文档详情
  571. $data = model('v1.Api')->GetSharpGoods($aid);
  572. $data['detail']['active_time_id'] = $active_time_id;
  573. // 商城模型
  574. $ShopModel = model('v1.User');
  575. // 获取秒杀商品活动场次信息
  576. $data['active'] = $ShopModel->GetSharp($active_time_id,$aid);
  577. $this->renderSuccess($data);
  578. }
  579. //上传头像
  580. public function upload_head_pic()
  581. {
  582. if (IS_AJAX_POST) {
  583. $data = func_common('file', 'minicode');
  584. if (0 == $data['errcode'] && !empty($data['img_url'])){
  585. $data['url'] = $data['img_url'];
  586. if (!is_http_url($data['img_url'])) {
  587. $data['img_url'] = request()->domain().ROOT_DIR.$data['img_url'];
  588. }
  589. }
  590. $this->success('上传成功!','',$data);
  591. }
  592. $this->error('非法上传!');
  593. }
  594. //获取购物车数量
  595. public function get_cart_total_num()
  596. {
  597. $data['cart_total_num'] = model('v1.Shop')->getCartTotalNum();
  598. $this->renderSuccess($data);
  599. }
  600. /**
  601. * 获取限时折扣列表
  602. */
  603. public function get_discount_index()
  604. {
  605. $param = input('param.');
  606. if (empty($param['active_id'])){
  607. $this->error('缺少必要参数!');
  608. }
  609. // 商城模型
  610. $ShopModel = model('v1.Shop');
  611. $DiscountGoodsList = $ShopModel->GetDiscountIndex($param);
  612. $this->renderSuccess(['goodsList'=>$DiscountGoodsList]);
  613. }
  614. /**
  615. * 获取限时折扣商品详情
  616. */
  617. public function get_discount_goods($aid=0,$active_id=0)
  618. {
  619. // 文档详情
  620. $data = model('v1.Api')->GetDiscountGoods($aid);
  621. $data['detail']['active_id'] = $active_id;
  622. // 商城模型
  623. $ShopModel = model('v1.Shop');
  624. // 获取秒杀商品活动场次信息
  625. $data['active'] = $ShopModel->GetDiscount($active_id);
  626. $this->renderSuccess($data);
  627. }
  628. /**
  629. * 添加我的浏览足迹
  630. */
  631. public function set_footprint()
  632. {
  633. $aid = input('param.aid/d');
  634. $users = $this->getUser(false);
  635. if (empty($users['users_id']) || empty($aid)) {
  636. $this->success('不达到记录的条件');
  637. }
  638. $users_id = intval($users['users_id']);
  639. //查询标题模型缩略图信息
  640. $arc = Db::name('archives')
  641. ->field('aid,channel,typeid,title,litpic')
  642. ->find($aid);
  643. if (!empty($arc)) {
  644. $count = Db::name('users_footprint')->where([
  645. 'users_id' => $users_id,
  646. 'aid' => $aid,
  647. ])->count();
  648. if (empty($count)) {
  649. // 足迹记录条数限制
  650. $user_footprint_limit = config('global.user_footprint_limit');
  651. if (!$user_footprint_limit) {
  652. $user_footprint_limit = 100;
  653. config('global.user_footprint_limit',$user_footprint_limit);
  654. }
  655. $user_footprint_record = Db::name('users_footprint')->where(['users_id'=>$users_id])->count("id");
  656. if ($user_footprint_record == $user_footprint_limit) {
  657. Db::name('users_footprint')->where(['users_id' => $users_id])->order("update_time ASC")->limit(1)->delete();
  658. }elseif ($user_footprint_record > $user_footprint_limit) {
  659. $del_count = $user_footprint_record-$user_footprint_limit+1;
  660. $del_ids = Db::name('users_footprint')->field("id")->where(['users_id' => $this->users_id])->order("update_time ASC")->limit($del_count)->select();
  661. $del_ids = get_arr_column($del_ids,'id');
  662. Db::name('users_footprint')->where(['id' => ['IN',$del_ids]])->delete();
  663. }
  664. $arc['users_id'] = $users_id;
  665. $arc['lang'] = $this->home_lang;
  666. $arc['add_time'] = getTime();
  667. $arc['update_time'] = getTime();
  668. Db::name('users_footprint')->add($arc);
  669. } else {
  670. Db::name('users_footprint')->where([
  671. 'users_id' => $users_id,
  672. 'aid' => $aid
  673. ])->update([
  674. 'update_time' => getTime(),
  675. ]);
  676. }
  677. $this->success('保存成功');
  678. }
  679. }
  680. /**
  681. * 留言栏目数据提交
  682. */
  683. public function guestbook($typeid = '')
  684. {
  685. $param = input('param.');
  686. if (IS_POST && !isset($param['apiGuestbookform'])) {
  687. $post = input('post.');
  688. $typeid = !empty($post['typeid']) ? intval($post['typeid']) : $typeid;
  689. $form_type = !empty($post['form_type']) ? intval($post['form_type']) : 0;
  690. if (empty($typeid)) $this->error('post接口缺少typeid的参数与值!');
  691. /*留言间隔限制*/
  692. $channel_guestbook_interval = tpSetting('channel_guestbook.channel_guestbook_interval');
  693. $channel_guestbook_interval = is_numeric($channel_guestbook_interval) ? intval($channel_guestbook_interval) : 60;
  694. if (0 < $channel_guestbook_interval) {
  695. $map = array(
  696. 'ip' => clientIP(),
  697. 'typeid' => $typeid,
  698. 'form_type' => $form_type,
  699. 'add_time' => array('gt', getTime() - $channel_guestbook_interval),
  700. );
  701. $count = Db::name('guestbook')->where($map)->count('aid');
  702. if (!empty($count)) {
  703. $this->error("同一个IP在{$channel_guestbook_interval}秒之内不能重复提交!");
  704. }
  705. }
  706. /*end*/
  707. // 提取表单令牌的token变量名
  708. $token = '__token__';
  709. foreach ($post as $key => $val) {
  710. if (preg_match('/^__token__/i', $key)) {
  711. $token = $key;
  712. continue;
  713. }
  714. }
  715. //判断必填项
  716. $ContentArr = []; // 添加站内信所需参数
  717. foreach ($post as $key => $value) {
  718. if (stripos($key, "attr_") !== false) {
  719. //处理得到自定义属性id
  720. $attr_id = substr($key, 5);
  721. $attr_id = intval($attr_id);
  722. $ga_data = Db::name('guestbook_attribute')->where([
  723. 'attr_id' => $attr_id,
  724. ])->find();
  725. if ($ga_data['required'] == 1 && empty($value)) {
  726. $this->error($ga_data['attr_name'] . '不能为空!');
  727. }
  728. if ($ga_data['validate_type'] == 6 && !empty($value)) {
  729. $pattern = "/^1\d{10}$/";
  730. if (!preg_match($pattern, $value)) {
  731. $this->error($ga_data['attr_name'] . '格式不正确!');
  732. }
  733. } elseif ($ga_data['validate_type'] == 7 && !empty($value)) {
  734. $pattern = "/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$/i";
  735. if (preg_match($pattern, $value) == false) {
  736. $this->error($ga_data['attr_name'] . '格式不正确!');
  737. }
  738. }
  739. // 添加站内信所需参数
  740. array_push($ContentArr, $value);
  741. }
  742. }
  743. $users = $this->getUser(false);
  744. $newData = array(
  745. 'typeid' => $typeid,
  746. 'form_type' => $form_type,
  747. 'users_id' => !empty($users['users_id']) ? $users['users_id'] : 0,
  748. 'channel' => 8,
  749. 'ip' => clientIP(),
  750. 'lang' => get_main_lang(),
  751. 'add_time' => getTime(),
  752. 'update_time' => getTime(),
  753. );
  754. $data = array_merge($post, $newData);
  755. /*表单令牌*/
  756. $token_value = !empty($data[$token]) ? $data[$token] : '';
  757. $session_path = \think\Config::get('session.path');
  758. $session_file = ROOT_PATH . $session_path . "/sess_".str_replace('__token__', '', $token);
  759. $filesize = @filesize($session_file);
  760. if(file_exists($session_file) && !empty($filesize)) {
  761. $fp = fopen($session_file, 'r');
  762. $token_v = fread($fp, $filesize);
  763. fclose($fp);
  764. if ($token_v != $token_value) {
  765. $this->error('表单令牌无效!');
  766. }
  767. } else {
  768. $this->error('表单令牌无效!');
  769. }
  770. /*end*/
  771. $guestbookRow = [];
  772. /*处理是否重复表单数据的提交*/
  773. $formdata = $data;
  774. foreach ($formdata as $key => $val) {
  775. if (in_array($key, ['typeid', 'lang']) || preg_match('/^attr_(\d+)$/i', $key)) {
  776. continue;
  777. }
  778. unset($formdata[$key]);
  779. }
  780. $md5data = md5(serialize($formdata));
  781. $data['md5data'] = $md5data;
  782. $guestbookRow = M('guestbook')->field('aid')->where(['md5data' => $md5data])->find();
  783. /*--end*/
  784. $aid = !empty($guestbookRow['aid']) ? $guestbookRow['aid'] : 0;
  785. if (empty($guestbookRow)) { // 非重复表单的才能写入数据库
  786. $aid = M('guestbook')->insertGetId($data);
  787. if ($aid > 0) {
  788. $res = model('v1.Api')->saveGuestbookAttr($post, $aid, $typeid, $form_type);
  789. if ($res){
  790. $this->error($res);
  791. }
  792. }
  793. } else {
  794. // 存在重复数据的表单,将在后台显示在最前面
  795. Db::name('guestbook')->where('aid', $aid)->update([
  796. 'add_time' => getTime(),
  797. 'update_time' => getTime(),
  798. ]);
  799. }
  800. @unlink($session_file);
  801. // 发送站内信给后台
  802. SendNotifyMessage($ContentArr, 1, 1, 0);
  803. // 发送留言短信
  804. $this->sendGbookSms();
  805. $this->renderSuccess(['aid'=>$aid], '提交成功');
  806. }
  807. $this->error('请求错误!');
  808. }
  809. /**
  810. * 获取下级地区
  811. */
  812. public function get_region()
  813. {
  814. if (IS_AJAX) {
  815. $pid = input('pid/d', 0);
  816. $res = Db::name('region')->where('parent_id',$pid)->select();
  817. if (!empty($res)){
  818. array_unshift($res,['id'=>'','name'=>'请选择']);
  819. }
  820. $this->success('请求成功', null, $res);
  821. }
  822. }
  823. //问题列表
  824. public function get_ask_list()
  825. {
  826. $data = model('v1.Ask')->getAskList();
  827. $this->renderSuccess($data);
  828. }
  829. //问题类型列表
  830. public function get_ask_type_list(){
  831. $typeList = model('v1.Ask')->getTypeList();
  832. $data['typeList'] = $typeList;
  833. $this->renderSuccess($data);
  834. }
  835. //问题详情
  836. public function get_ask_details()
  837. {
  838. $users = $this->getUser(false);
  839. $data = model('v1.Ask')->GetAskDetails($users);
  840. $this->success('success','',$data);
  841. }
  842. /**
  843. * 索引页
  844. */
  845. public function repertory()
  846. {
  847. $page = input('param.page/d', 1);
  848. $data = model('v1.Api')->getRepertory($page);
  849. $this->success('请求成功', null, $data);
  850. }
  851. //获取表单令牌
  852. public function get_token()
  853. {
  854. $type = input('param.type/s');
  855. $type = !empty($type) ? $type : 'mobile';
  856. /*表单令牌*/
  857. $token_name = md5($type.'_token_'.md5(getTime().uniqid(mt_rand(), TRUE)));
  858. $token_value = md5($_SERVER['REQUEST_TIME_FLOAT']);
  859. $session_path = \think\Config::get('session.path');
  860. $session_file = ROOT_PATH . $session_path . "/sess_".$token_name;
  861. $fp = fopen($session_file, "w+");
  862. if (!empty($fp)) {
  863. if (fwrite($fp, $token_value)) {
  864. fclose($fp);
  865. }
  866. } else {
  867. file_put_contents ( $session_file, $token_value);
  868. }
  869. /*end*/
  870. $result = array(
  871. 'token' => [
  872. 'name' => '__token__'.$token_name,
  873. 'value' => $token_value,
  874. ],
  875. );
  876. $this->success('success','',$result);
  877. }
  878. /**
  879. * 手机短信发送
  880. */
  881. public function send_mobile_code()
  882. {
  883. // 超时后,断掉发送
  884. function_exists('set_time_limit') && set_time_limit(5);
  885. // \think\Session::pause(); // 暂停session,防止session阻塞机制
  886. // 发送手机验证码
  887. if (IS_AJAX_POST) {
  888. $post = input('post.');
  889. $mobile = $post['mobile'];
  890. if (empty($mobile)) $this->error('手机号不能为空!');
  891. if (!check_mobile($mobile)) $this->error('手机号格式不正确!');
  892. $scene = !empty($post['scene']) ? $post['scene'] : 0;
  893. // 提取表单令牌的token变量名
  894. $token = '__token__';
  895. foreach ($post as $key => $val) {
  896. if (preg_match('/^__token__/i', $key)) {
  897. $token = $key;
  898. continue;
  899. }
  900. }
  901. /*表单令牌*/
  902. $token_value = !empty($post[$token]) ? $post[$token] : '';
  903. $session_path = \think\Config::get('session.path');
  904. $session_file = ROOT_PATH . $session_path . "/sess_".str_replace('__token__', '', $token);
  905. $filesize = @filesize($session_file);
  906. if(file_exists($session_file) && !empty($filesize)) {
  907. $fp = fopen($session_file, 'r');
  908. $token_v = fread($fp, $filesize);
  909. fclose($fp);
  910. if ($token_v != $token_value) {
  911. $this->error('表单令牌无效!');
  912. }
  913. } else {
  914. $this->error('表单令牌无效!');
  915. }
  916. /*end*/
  917. /*是否存在手机号码*/
  918. $where = ['mobile' => $mobile];
  919. $Result = Db::name('users')->where($where)->count();
  920. /* END */
  921. if (0 == $scene) {
  922. if (!empty($Result)) $this->error('手机号码已注册');
  923. } else if (2 == $scene) {
  924. if (empty($Result)) $this->error('手机号码未注册');
  925. } else if (4 == $scene) {
  926. if (empty($Result)) $this->error('手机号码不存在');
  927. } else {
  928. if (!empty($Result)) $this->error('手机号码已存在');
  929. }
  930. /*是否允许再次发送*/
  931. $where = [
  932. 'mobile' => $mobile,
  933. 'source' => $scene,
  934. 'status' => 1,
  935. 'is_use' => 0,
  936. 'add_time' => ['>', getTime() - 120]
  937. ];
  938. $Result = Db::name('sms_log')->where($where)->order('id desc')->count();
  939. if (!empty($Result) && false == config('sms_debug')) $this->error('120秒内只能发送一次!');
  940. /* END */
  941. /*发送并返回结果*/
  942. $Result = sendSms($scene, $mobile, array('content' => mt_rand(1000, 9999)));
  943. if (intval($Result['status']) == 1) {
  944. @unlink($session_file);
  945. $this->success('发送成功!');
  946. } else {
  947. $this->error($Result['msg']);
  948. }
  949. /* END */
  950. }
  951. }
  952. /**
  953. * 用户手机号注册
  954. */
  955. public function users_mobile_reg()
  956. {
  957. if (empty($this->globalConfig['web_users_switch'])) {
  958. $this->error('后台会员中心尚未开启!');
  959. }
  960. $userModel = model('v1.User');
  961. return $this->renderSuccess([
  962. 'users_id' => $userModel->mobile_reg(input('post.', null, 'htmlspecialchars_decode')),
  963. 'token' => $userModel->getToken()
  964. ]);
  965. }
  966. /**
  967. * 用户账号密码注册
  968. */
  969. public function users_account_reg()
  970. {
  971. if (empty($this->globalConfig["web_users_switch"])) {
  972. $this->error("后台会员中心尚未开启!");
  973. }
  974. $userModel = model("v1.User");
  975. return $this->renderSuccess([
  976. "users_id" => $userModel->account_reg(input("post.", null, "htmlspecialchars_decode")),
  977. "token" => $userModel->getToken()
  978. ]);
  979. }
  980. /**
  981. * 用户手机号验证码/手机号密码登录
  982. */
  983. public function users_mobile_login()
  984. {
  985. if (empty($this->globalConfig['web_users_switch'])) {
  986. $this->error('后台会员中心尚未开启!');
  987. }
  988. $userModel = model('v1.User');
  989. return $this->renderSuccess([
  990. 'users_id' => $userModel->mobile_login(input('post.', null, 'htmlspecialchars_decode')),
  991. 'token' => $userModel->getToken()
  992. ]);
  993. }
  994. /**
  995. * 用户账号密码登录
  996. */
  997. public function users_account_login()
  998. {
  999. if (empty($this->globalConfig['web_users_switch'])) {
  1000. $this->error('后台会员中心尚未开启!');
  1001. }
  1002. $userModel = model('v1.User');
  1003. return $this->renderSuccess([
  1004. 'users_id' => $userModel->account_login(input('post.', null, 'htmlspecialchars_decode')),
  1005. 'token' => $userModel->getToken()
  1006. ]);
  1007. }
  1008. // 获取自由表单
  1009. public function get_form()
  1010. {
  1011. $data = $this->apiLogic->taglibData();
  1012. $this->renderSuccess($data);
  1013. }
  1014. /**
  1015. * 记录视频播放进程
  1016. */
  1017. public function record_media_process()
  1018. {
  1019. $aid = input('post.aid/d', 0);
  1020. $file_id = input('post.file_id/d', 0);
  1021. $timeDisplay = input('post.timeDisplay/d', 0);
  1022. $users = $this->getUser(false);
  1023. if (empty($users) || 0 == $timeDisplay) {
  1024. $this->success('success');
  1025. }
  1026. $users_id = intval($users['users_id']);
  1027. $where = ['users_id' => $users_id,
  1028. 'aid' => $aid,
  1029. 'file_id' => $file_id];
  1030. $count = Db::name('media_play_record')->where($where)->find();
  1031. $data = [
  1032. 'users_id' => $users_id,
  1033. 'aid' => intval($aid),
  1034. 'file_id' => intval($file_id),
  1035. 'play_time' => $timeDisplay,
  1036. 'update_time' => getTime(),
  1037. ];
  1038. if (!empty($count)) {
  1039. $timeDisplay = $timeDisplay + $count['play_time'];
  1040. $file_time = Db::name('media_file')->where('file_id', $file_id)->value('file_time');
  1041. $data['play_time'] = $timeDisplay > $file_time ? $file_time : $timeDisplay;
  1042. $data['play_time'] = intval($data['play_time']);
  1043. //更新
  1044. Db::name('media_play_record')->where($where)->update($data);
  1045. } else {
  1046. $data['add_time'] = getTime();
  1047. Db::name('media_play_record')->insert($data);
  1048. }
  1049. $this->success('success');
  1050. }
  1051. // 积分商城插件操作(集合方法)
  1052. public function points_shop_action()
  1053. {
  1054. if (IS_AJAX) {
  1055. // 是否安装积分商城插件
  1056. $weappInfo = model('ShopPublicHandle')->getWeappPointsShop();
  1057. if (!empty($weappInfo)) {
  1058. // 调用积分商城逻辑层方法
  1059. $users = $this->getUser(false);
  1060. $pointsShopLogic = new \app\plugins\logic\PointsShopLogic($users);
  1061. $pointsShopLogic->pointsShopAction($weappInfo);
  1062. }
  1063. }
  1064. $this->error('请求错误!');
  1065. }
  1066. // 开源小程序插件操作(集合方法)
  1067. public function applets_weapp_action()
  1068. {
  1069. if (IS_AJAX) {
  1070. // 是否安装开源小程序插件
  1071. $weappInfo = model('ShopPublicHandle')->getWeappInfo('Suibian');
  1072. if (!empty($weappInfo)) {
  1073. // 调用开源小程序逻辑层方法
  1074. $users = $this->getUser(false);
  1075. $suibianLogic = new \app\plugins\logic\SuibianLogic($users);
  1076. $suibianLogic->suibianAction($weappInfo);
  1077. }
  1078. }
  1079. $this->error('请求错误!');
  1080. }
  1081. }