Geen omschrijving
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.

ApiLogic.php 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  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\logic\v1;
  14. use think\Config;
  15. use think\Model;
  16. use think\Db;
  17. use think\Request;
  18. /**
  19. * 业务逻辑
  20. */
  21. class ApiLogic extends Model
  22. {
  23. private $request = null; // 当前Request对象实例
  24. private $current_lang = 'cn'; // 当前多语言标识
  25. public $taglib = ['apiType','apiChannel','apiList','apiArclist','apiArcview','apiPrenext','apiGuestbookform',
  26. 'apiAdv','apiAd','apiFlink','apiGlobal','apiCollect','apiDiscount','apiLikearticle','apiLike','apiForm',
  27. 'apiCommentlist','apiChannellist','apiDownloadpayList','apiSpecnode','apiNavigation','apiUsersTypeManage',
  28. 'apiMediaOrderList','apiMediaOrderDetails','apiPlayList','apiUpgradeLevelOrderList',
  29. 'apiWeappSeckillList','apiWeappSeckillView','apiCouponList','apiCouponGoodList'];
  30. /**
  31. * 析构函数
  32. */
  33. function __construct() {
  34. null === $this->request && $this->request = Request::instance();
  35. $this->current_lang = get_current_lang();
  36. }
  37. public function taglibData($users = [])
  38. {
  39. $result = [];
  40. $params = input('param.');
  41. $aid = input('param.aid/d');
  42. $provider = input('param.provider/s', 'weixin');
  43. $typeid = input('param.typeid/d');
  44. $channelid = input('param.channelid/d');
  45. foreach ($params as $key => $val) {
  46. $key = preg_replace('/_(\d+)$/i', '', $key);
  47. if (!in_array($key, $this->taglib)) { // 排除不是标签的参数
  48. continue;
  49. }
  50. $val = htmlspecialchars_decode($val);
  51. parse_str($val, $parse);
  52. foreach ($parse as $_k => $_v) {
  53. $parse[$_k] = trim($_v);
  54. }
  55. $parse['provider'] = $provider;
  56. $ekey = isset($parse['ekey']) ? intval($parse['ekey']) : 1; // 多个相同标签对应的每份不同数据
  57. $aid = !empty($parse['aid']) ? intval($parse['aid']) : $aid;
  58. $typeid = !empty($parse['typeid']) ? intval($parse['typeid']) : $typeid;
  59. if ($key == 'apiType') { // 单个栏目标签
  60. $type = !empty($parse['type']) ? $parse['type'] : 'self';
  61. $addfields = !empty($parse['addfields']) ? $parse['addfields'] : '';
  62. $infolen = !empty($parse['infolen']) ? intval($parse['infolen']) : '';
  63. $suffix = !empty($parse['suffix']) ? $parse['suffix'] : true;
  64. $tagType = new \think\template\taglib\api\TagType;
  65. $result[$key][$ekey] = $tagType->getType($typeid, $type, $addfields, $infolen,$suffix);
  66. }
  67. else if ($key == 'apiChannel') { // 栏目列表标签
  68. $type = !empty($parse['type']) ? $parse['type'] : 'top';
  69. $currentstyle = !empty($parse['currentstyle']) ? $parse['currentstyle'] : '';
  70. $showalltext = !empty($parse['showalltext']) ? $parse['showalltext'] : 'off';
  71. if (!empty($parse['limit'])) {
  72. $limit = !empty($parse['limit']) ? $parse['limit'] : 10;
  73. } else {
  74. $limit = !empty($parse['row']) ? intval($parse['row']) : 10;
  75. }
  76. $notypeid = !empty($parse['notypeid']) ? $parse['notypeid'] : '';
  77. if (!empty($parse['channelid'])){
  78. $channelid = $parse['channelid'];
  79. }
  80. $tagChannel = new \think\template\taglib\api\TagChannel;
  81. $result[$key][$ekey] = $tagChannel->getChannel($typeid, $type, $currentstyle, $showalltext, $channelid, $notypeid);
  82. if (!empty($result[$key][$ekey]['data'])) {
  83. /*指定获取的条数*/
  84. $limitarr = explode(',', $limit);
  85. $offset = (1 == count($limitarr)) ? 0 : $limitarr[0];
  86. $length = (1 == count($limitarr)) ? $limitarr[0] : end($limitarr);
  87. $data = $result[$key][$ekey]['data'];
  88. if ('off' == $showalltext) {
  89. $data = array_slice($data, $offset, $length, true);
  90. $data = array_merge($data);
  91. } else {
  92. $firstData = current($data);
  93. $data = array_slice($data, $offset + 1, $length, true);
  94. empty($data) && $data = [];
  95. $data = array_merge([$firstData], $data);
  96. }
  97. /*end*/
  98. $result[$key][$ekey]['data'] = $data;
  99. }
  100. }
  101. else if ($key == 'apiChannellist') { // 栏目列表分页标签
  102. $tagChannellist = new \think\template\taglib\api\TagChannellist;
  103. if (!empty($parse['channelid'])){
  104. $channelid = $parse['channelid'];
  105. }
  106. $result[$key][$ekey] = $tagChannellist->getChannellist($parse, $typeid, $channelid);
  107. }
  108. else if ($key == 'apiList') { // 文档分页列表标签
  109. $parse['typeid'] = $typeid;
  110. $parse['channelid'] = $channelid;
  111. $tagList = new \think\template\taglib\api\TagList;
  112. $result[$key][$ekey] = $tagList->getList($parse);
  113. }
  114. else if ($key == 'apiArclist') { // 文档块列表标签
  115. $parse['typeid'] = $typeid;
  116. $tagArclist = new \think\template\taglib\api\TagArclist;
  117. $result[$key][$ekey] = $tagArclist->getArclist($parse);
  118. }
  119. else if ($key == 'apiArcview') { // 文档详情页
  120. $typeid = !empty($parse['typeid']) ? intval($parse['typeid']) : $typeid;
  121. $titlelen = !empty($parse['titlelen']) ? intval($parse['titlelen']) : 100;
  122. $addfields = !empty($parse['addfields']) ? $parse['addfields'] : '';
  123. $tagArcview = new \think\template\taglib\api\TagArcview;
  124. $result[$key][$ekey] = $tagArcview->getArcview($aid, $typeid, $addfields, $titlelen);
  125. }
  126. else if ($key == 'apiPrenext') { // 上下篇
  127. $typeid = !empty($parse['typeid']) ? intval($parse['typeid']) : $typeid;
  128. $get = !empty($parse['get']) ? $parse['get'] : 'all';
  129. $titlelen = !empty($parse['titlelen']) ? intval($parse['titlelen']) : 100;
  130. $tagPrenext = new \think\template\taglib\api\TagPrenext;
  131. $result[$key][$ekey] = $tagPrenext->getPrenext($aid, $typeid, $get, $titlelen);
  132. }
  133. else if ($key == 'apiGuestbookform') { // 留言表单
  134. $typeid = !empty($parse['typeid']) ? intval($parse['typeid']) : $typeid;
  135. $tagGuestbookform = new \think\template\taglib\api\TagGuestbookform;
  136. $result[$key][$ekey] = $tagGuestbookform->getGuestbookform($typeid);
  137. }
  138. else if ($key == 'apiAdv') { // 广告位置
  139. $pid = !empty($parse['pid']) ? intval($parse['pid']) : 0;
  140. $orderby = !empty($parse['orderby']) ? $parse['orderby'] : '';
  141. if (!empty($parse['limit'])) {
  142. $parse['limit'] = preg_replace('/[^\d\,]/i', '', str_replace(',', ',', $parse['limit']));
  143. $limit = !empty($parse['limit']) ? trim($parse['limit']) : 10;
  144. } else {
  145. $limit = !empty($parse['row']) ? intval($parse['row']) : 10;
  146. }
  147. $tagAdv = new \think\template\taglib\api\TagAdv;
  148. $result[$key][$ekey] = $tagAdv->getAdv($pid, $orderby, $limit);
  149. }
  150. else if ($key == 'apiAd') { // 单个广告
  151. $aid = !empty($parse['aid']) ? intval($parse['aid']) : 0;
  152. $tagAd = new \think\template\taglib\api\TagAd;
  153. $result[$key][$ekey] = $tagAd->getAd($aid);
  154. }
  155. else if ($key == 'apiFlink') { // 友情链接
  156. $type = !empty($parse['type']) ? $parse['type'] : 'text';
  157. $groupid = !empty($parse['groupid']) ? intval($parse['groupid']) : 1;
  158. if (!empty($parse['limit'])) {
  159. $parse['limit'] = preg_replace('/[^\d\,]/i', '', str_replace(',', ',', $parse['limit']));
  160. $limit = !empty($parse['limit']) ? trim($parse['limit']) : 10;
  161. } else {
  162. $limit = !empty($parse['row']) ? intval($parse['row']) : 10;
  163. }
  164. $titlelen = !empty($parse['titlelen']) ? intval($parse['titlelen']) : 100;
  165. $tagFlink = new \think\template\taglib\api\TagFlink;
  166. $result[$key][$ekey] = $tagFlink->getFlink($type, $limit, $groupid, $titlelen);
  167. }
  168. else if ($key == 'apiGlobal') { // 全局变量\自定义变量
  169. $name = !empty($parse['name']) ? $parse['name'] : '';
  170. $tagGlobal = new \think\template\taglib\api\TagGlobal;
  171. $result[$key][$ekey] = $tagGlobal->getGlobal($name);
  172. }
  173. else if ($key == 'apiCollect') { // 文档是否收藏标签
  174. $type = !empty($parse['type']) ? $parse['type'] : 'default';
  175. $tagCollect = new \think\template\taglib\api\TagCollect;
  176. $result[$key][$ekey] = $tagCollect->getCollect($aid, $type, $users);
  177. }
  178. else if ($key == 'apiLike') { // 文档是否喜欢(点赞)标签
  179. $type = !empty($parse['type']) ? $parse['type'] : 'default';
  180. $tagLike = new \think\template\taglib\api\TagLike;
  181. $result[$key][$ekey] = $tagLike->getLike($aid, $type, $users);
  182. }
  183. else if ($key == 'apiDiscount') { // 限时折扣
  184. $result[$key][$ekey] = model('v1.Shop')->getOneDiscount($parse);
  185. }
  186. else if ($key == 'apiCommentlist') { // 文档评论列表
  187. $tagCommentlist = new \think\template\taglib\api\TagCommentlist;
  188. $result[$key][$ekey] = $tagCommentlist->getCommentlist($parse, $aid);
  189. }
  190. else if ($key == 'apiLikearticle') { // 相关文档列表
  191. // 分页条数
  192. if (!empty($parse['limit'])) {
  193. $parse['limit'] = preg_replace('/[^\d\,]/i', '', str_replace(',', ',', $parse['limit']));
  194. $limit = !empty($parse['limit']) ? $parse['limit'] : 10;
  195. } else {
  196. $limit = !empty($parse['row']) ? intval($parse['row']) : 10;
  197. }
  198. if (!stristr($limit, ',')) $limit = "0, {$limit}";
  199. // 排序设置
  200. $byabs = !empty($parse['byabs']) ? intval($parse['byabs']) : 0;
  201. // 是否使用缩略图
  202. $thumb = !empty($parse['thumb']) ? $parse['thumb'] : 'on';
  203. if (!empty($parse['typeid'])){
  204. $typeid = $parse['typeid'];
  205. }
  206. if (!empty($parse['channelid'])){
  207. $channelid = $parse['channelid'];
  208. }
  209. // 查询数据
  210. $tagLikearticle = new \think\template\taglib\api\TagLikearticle;
  211. $result[$key][$ekey] = $tagLikearticle->getLikearticle($parse,$channelid, $typeid, $limit, $byabs, $thumb);
  212. }
  213. else if($key == 'apiDownloadpayList'){ //获取下载文档下载信息
  214. empty($aid) && $aid = !empty($parse['aid']) ? intval($parse['aid']) : 0;
  215. $tagDownloadlist = new \think\template\taglib\api\TagDownloadlist;
  216. $result[$key][$ekey] = $tagDownloadlist->getDownloadlist($aid,$users);
  217. }
  218. else if($key == 'apiSpecnode'){ //获取指定专题节点文档列表
  219. empty($aid) && $aid = !empty($parse['aid']) ? intval($parse['aid']) : 0;
  220. $title = !empty($parse['title']) ? intval($parse['title']) : '';
  221. $code = !empty($parse['code']) ? intval($parse['code']) : '';
  222. $is_list = !empty($parse['is_list']) ? intval($parse['is_list']) : 0;
  223. $addfields = !empty($parse['addfields']) ? $parse['addfields'] : '';
  224. $tagSpecnode = new \think\template\taglib\api\TagSpecnode;
  225. $result[$key][$ekey] = $tagSpecnode->getSpecnode($aid,$title, $code,'',$is_list,$addfields);
  226. }
  227. else if($key == 'apiNavigation'){ //获取导航列表
  228. $position_id = !empty($parse['position_id']) ? intval($parse['position_id']) : null;
  229. $nav_id = !empty($parse['nav_id']) ? intval($parse['nav_id']) : null;
  230. $tagNavigation = new \think\template\taglib\api\TagNavigation;
  231. $result[$key][$ekey] = $tagNavigation->getNavigation($position_id,$nav_id);
  232. }else if ('apiUsersTypeManage' == $key){ //会员升级类型
  233. $manage_data = Db::name('users_type_manage')
  234. ->alias('a')
  235. ->field('a.*,b.level_name')
  236. ->join('users_level b','a.level_id = b.level_id')
  237. ->order('a.activity asc')
  238. ->select();
  239. if (!empty($manage_data))
  240. $limit_arr = Config::get('global.admin_member_limit_arr');
  241. foreach ($manage_data as $k => $v){
  242. $manage_data[$k]['time_name'] = $limit_arr[$v['limit_id']];
  243. }
  244. $result[$key][$ekey] = $manage_data;
  245. }else if ('apiMediaOrderList' == $key){//视频订单列表
  246. $users_id = session('users_id');
  247. $result[$key][$ekey] = false;
  248. if (!empty($users_id)){
  249. $result[$key][$ekey] = model('v1.Order')->mediaOrderList();
  250. }
  251. }else if ('apiMediaOrderDetails' == $key){//视频订单详情
  252. $users_id = session('users_id');
  253. $result[$key][$ekey] = false;
  254. if (!empty($users_id)){
  255. $result[$key][$ekey] = model('v1.Order')->mediaOrderDetails();
  256. }
  257. }else if ('apiPlayList' == $key){//视频播放列表
  258. $users_id = session('users_id');
  259. $result[$key][$ekey] = false;
  260. if (!empty($users_id)){
  261. $result[$key][$ekey] = model('v1.Order')->playList();
  262. }
  263. }else if ('apiUpgradeLevelOrderList' == $key){//会员升级订单列表
  264. $users_id = session('users_id');
  265. $result[$key][$ekey] = false;
  266. if (!empty($users_id)){
  267. $result[$key][$ekey] = model('v1.Order')->getUpgradeLevelOrderList();
  268. }
  269. } else if ($key == 'apiForm') {
  270. $formid = input('param.formid/d', 0);
  271. $formid = !empty($parse['formid']) ? intval($parse['formid']) : $formid;
  272. $tagGuestbookform = new \think\template\taglib\api\TagGuestbookform;
  273. $result[$key][$ekey] = $tagGuestbookform->getGuestbookform($formid, 1);
  274. }else if ($key == 'apiWeappSeckillList') {
  275. $page = !empty($parse['page']) ? intval($parse['page']) : 1;
  276. $pagesize = !empty($parse['pagesize']) ? intval($parse['pagesize']) : 10;
  277. if (file_exists('./core/library/think/template/taglib/api/TagWeappSeckill.php')) {
  278. //获取秒杀列表
  279. $tagWeappSeckill = new \think\template\taglib\api\TagWeappSeckill;
  280. $result[$key][$ekey] = $tagWeappSeckill->getList($page,$pagesize);
  281. } else {
  282. $result[$key][$ekey] = false;
  283. }
  284. }else if ($key == 'apiWeappSeckillView') {
  285. $goods_id = !empty($parse['goods_id']) ? intval($parse['goods_id']) : 0;
  286. if (file_exists('./core/library/think/template/taglib/api/TagWeappSeckill.php')) {
  287. //获取秒杀商品详情
  288. $tagWeappSeckill = new \think\template\taglib\api\TagWeappSeckill;
  289. $result[$key][$ekey] = $tagWeappSeckill->getProductView($goods_id,$users);
  290. } else {
  291. $result[$key][$ekey] = false;
  292. }
  293. }else if ('apiCouponList' == $key){ //优惠券列表
  294. $page = !empty($parse['page']) ? intval($parse['page']) : 1;
  295. $pagesize = !empty($parse['pagesize']) ? intval($parse['pagesize']) : 10;
  296. $users_id = session('users_id');
  297. $tagCoupon = new \think\template\taglib\api\TagCoupon;
  298. $result[$key][$ekey] = $tagCoupon->getList($page,$pagesize,$users_id,$parse);
  299. }else if ('apiCouponGoodList' == $key){ //某优惠券可使用的商品列表
  300. $tagCoupon = new \think\template\taglib\api\TagCoupon;
  301. $result[$key][$ekey] = $tagCoupon->getGoodsList($parse);
  302. }
  303. }
  304. return $result;
  305. }
  306. // 验证微信商户配置的正确性
  307. public function GetWechatAppletsPay($appid = '', $mch_id = '', $apikey = '')
  308. {
  309. // 当前时间戳
  310. $time = time();
  311. // 当前时间戳 + OpenID 经 MD5加密
  312. $nonceStr = $out_trade_no = md5($time);
  313. // 调用支付接口参数
  314. $params = [
  315. 'appid' => $appid,
  316. 'attach' => "微信小程序支付",
  317. 'body' => "商品支付",
  318. 'mch_id' => $mch_id,
  319. 'nonce_str' => $nonceStr,
  320. 'notify_url' => url('api/Api/wxpay_notify', [], true, true, 1, 2),
  321. 'out_trade_no' => $out_trade_no,
  322. 'spbill_create_ip' => clientIP(),
  323. 'total_fee' => 1,
  324. 'trade_type' => 'JSAPI'
  325. ];
  326. // 生成参数签名
  327. $params['sign'] = $this->ParamsSign($params, $apikey);
  328. // 生成参数XML格式
  329. $ParamsXml = $this->ParamsXml($params);
  330. // 调用接口返回数据
  331. $url = 'https://api.mch.weixin.qq.com/pay/unifiedorder';
  332. $result = httpRequest($url, 'POST', $ParamsXml);
  333. // 解析XML格式
  334. $ResultData = $this->ResultXml($result);
  335. // 数据返回
  336. if ($ResultData['return_code'] == 'SUCCESS' && $ResultData['return_msg'] == 'OK') {
  337. return ['code'=>1, 'msg'=>'验证通过'];
  338. } else if ($ResultData['return_code'] == 'FAIL') {
  339. return ['code'=>0, 'msg'=>'支付商户号或支付密钥不正确!'];
  340. }
  341. }
  342. private function ParamsSign($values, $apikey)
  343. {
  344. //签名步骤一:按字典序排序参数
  345. ksort($values);
  346. $string = $this->ParamsUrl($values);
  347. //签名步骤二:在string后加入KEY
  348. $string = $string . '&key=' . $apikey;
  349. //签名步骤三:MD5加密
  350. $string = md5($string);
  351. //签名步骤四:所有字符转为大写
  352. $result = strtoupper($string);
  353. return $result;
  354. }
  355. private function ParamsUrl($values)
  356. {
  357. $Url = '';
  358. foreach ($values as $k => $v) {
  359. if ($k != 'sign' && $v != '' && !is_array($v)) {
  360. $Url .= $k . '=' . $v . '&';
  361. }
  362. }
  363. return trim($Url, '&');
  364. }
  365. private function ParamsXml($values)
  366. {
  367. if (!is_array($values)
  368. || count($values) <= 0
  369. ) {
  370. return false;
  371. }
  372. $xml = "<xml>";
  373. foreach ($values as $key => $val) {
  374. if (is_numeric($val)) {
  375. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  376. } else {
  377. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  378. }
  379. }
  380. $xml .= "</xml>";
  381. return $xml;
  382. }
  383. private function ResultXml($xml)
  384. {
  385. // 禁止引用外部xml实体
  386. libxml_disable_entity_loader(true);
  387. return json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
  388. }
  389. }