wapfun.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. //-------- 编码转换
  7. function DoWapIconvVal($str){
  8. global $ecms_config,$iconv,$pr;
  9. if($pr['wapchar']==2)
  10. {
  11. return $str;
  12. }
  13. if($ecms_config['sets']['pagechar']!='utf-8')
  14. {
  15. $char=$ecms_config['sets']['pagechar']=='big5'?'BIG5':'GB2312';
  16. $targetchar=$pr['wapchar']?'UTF8':'UNICODE';
  17. $str=$iconv->Convert($char,$targetchar,$str);
  18. }
  19. return $str;
  20. }
  21. //-------- 提示信息
  22. function DoWapShowMsg($error,$returnurl='index.php',$ecms=0){
  23. global $empire,$public_r;
  24. $gotourl=str_replace('&amp;','&',$returnurl);
  25. if(strstr($gotourl,"(")||empty($gotourl))
  26. {
  27. if(strstr($gotourl,"(-2"))
  28. {
  29. $gotourl_js="history.go(-2)";
  30. $gotourl="javascript:history.go(-2)";
  31. }
  32. else
  33. {
  34. $gotourl_js="history.go(-1)";
  35. $gotourl="javascript:history.go(-1)";
  36. }
  37. }
  38. else
  39. {$gotourl_js="self.location.href='$gotourl';";}
  40. if($ecms==9)//弹出对话框
  41. {
  42. echo"<script>alert('".$error."');".$gotourl_js."</script>";
  43. }
  44. elseif($ecms==7)//弹出对话框并关闭窗口
  45. {
  46. echo"<script>alert('".$error."');window.close();</script>";
  47. }
  48. else
  49. {
  50. @include(ECMS_PATH.'e/wap/message.php');
  51. }
  52. db_close();
  53. $empire=null;
  54. exit();
  55. }
  56. //-------- 头部
  57. function DoWapHeader($title){
  58. global $ecms_config;
  59. ob_start();
  60. header("Content-type: text/vnd.wap.wml; charset=utf-8");
  61. echo'<?xml version="1.0" encoding="UTF-8"?>';
  62. ?>
  63. <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
  64. <wml>
  65. <head>
  66. <meta http-equiv="Cache-Control" content="max-age=180,private" />
  67. </head>
  68. <card id="empirecms_wml" title="<?php echo $title;?>">
  69. <?php
  70. }
  71. //-------- 尾部
  72. function DoWapFooter(){
  73. ?>
  74. <p><br/><small>Powered by EmpireCMS</small></p>
  75. </card></wml>
  76. <?php
  77. $str=ob_get_contents();
  78. ob_end_clean();
  79. echo DoWapIconvVal($str);
  80. }
  81. //-------- 分页
  82. function DoWapListPage($num,$line,$page,$search){
  83. if(empty($num))
  84. {
  85. return '';
  86. }
  87. $str='';
  88. $pagenum=ceil($num/$line);
  89. $search=RepPostStr($search,1);
  90. $phpself=eReturnSelfPage(0);
  91. if($page)//首页
  92. {
  93. $str.="<a href=\"".$phpself."?page=0".$search."\">首页</a>&nbsp;";
  94. }
  95. if($page)
  96. {
  97. $str.="<a href=\"".$phpself."?page=".($page-1).$search."\">上一页</a>&nbsp;";
  98. }
  99. if($page!=$pagenum-1)
  100. {
  101. $str.="<a href=\"".$phpself."?page=".($page+1).$search."\">下一页</a>&nbsp;";
  102. }
  103. if($page!=$pagenum-1)
  104. {
  105. $str.="<a href=\"".$phpself."?page=".($pagenum-1).$search."\">尾页</a>&nbsp;";
  106. }
  107. return $str;
  108. }
  109. //-------- 替换<p> --------
  110. function DoWapRepPtags($text){
  111. $text=str_replace(array('<p>','<P>','</p>','</P>'),array('','','<br />','<br />'),$text);
  112. $preg_str="/<(p|P) (.+?)>/is";
  113. $text=preg_replace($preg_str,"",$text);
  114. return $text;
  115. }
  116. //-------- 字段属性 --------
  117. function DoWapRepField($text,$f,$field){
  118. global $modid,$emod_r;
  119. $modid=(int)$modid;
  120. if(strstr($emod_r[$modid]['tobrf'],','.$f.','))//加br
  121. {
  122. $text=nl2br($text);
  123. }
  124. if(!strstr($emod_r[$modid]['dohtmlf'],','.$f.','))//去除html
  125. {
  126. $text=ehtmlspecialchars($text);
  127. }
  128. return $text;
  129. }
  130. //-------- 去除html代码 --------
  131. function DoWapClearHtml($text){
  132. $text=stripSlashes($text);
  133. $text=ehtmlspecialchars(strip_tags($text));
  134. return $text;
  135. }
  136. //-------- 替换字段内容
  137. function DoWapRepF($text,$f,$field){
  138. $text=stripSlashes($text);
  139. $text=DoWapRepPtags($text);
  140. $text=DoWapRepField($text,$f,$field);
  141. return $text;
  142. }
  143. //-------- 替换文章内容字段
  144. function DoWapRepNewstext($text){
  145. $text=stripSlashes($text);
  146. $text=DoWapRepPtags($text);
  147. return $text;
  148. }
  149. //-------- 特殊字符去除
  150. function DoWapCode($string){
  151. $string=str_replace(array('&', '"', '<', '>'), array('&amp;', '&quot;', '&lt;', '&gt;'), $string);
  152. return $string;
  153. }
  154. //-------- 返回使用模板
  155. function ReturnWapStyle($add,$style){
  156. global $empire,$dbtbpre,$pr,$class_r;
  157. if(!$pr['wapchstyle'])
  158. {
  159. $style=0;
  160. }
  161. $style=(int)$style;
  162. $styleid=$pr['wapdefstyle'];
  163. $classid=0;
  164. if(WapPage=='index')
  165. {
  166. $classid=(int)$add['bclassid'];
  167. }
  168. elseif(WapPage=='list')
  169. {
  170. $classid=(int)$add['classid'];
  171. }
  172. elseif(WapPage=='show')
  173. {
  174. $classid=(int)$add['classid'];
  175. }
  176. if($classid&&$class_r[$classid]['tbname'])
  177. {
  178. $cr=$empire->fetch1("select wapstyleid from {$dbtbpre}enewsclass where classid='$classid'");
  179. if($cr['wapstyleid'])
  180. {
  181. $styleid=$cr['wapstyleid'];
  182. }
  183. }
  184. if($style&&$styleid==$pr['wapdefstyle'])
  185. {
  186. $styleid=$style;
  187. }
  188. $sr=$empire->fetch1("select path from {$dbtbpre}enewswapstyle where styleid='$styleid'");
  189. $wapstyle=$sr['path'];
  190. if(empty($wapstyle))
  191. {
  192. $wapstyle=1;
  193. }
  194. return $wapstyle;
  195. }
  196. //----------------- 模板调用区 ------------------
  197. //返回sql语句
  198. function ewap_ReturnBqQuery($classid,$line,$enews=0,$do=0,$ewhere='',$eorder=''){
  199. global $empire,$public_r,$class_r,$class_zr,$navclassid,$dbtbpre,$fun_r,$class_tr,$emod_r,$etable_r,$eyh_r;
  200. $navclassid=(int)$navclassid;
  201. if($enews==24)//按sql查询
  202. {
  203. $query_first=substr($classid,0,7);
  204. if(!($query_first=='select '||$query_first=='SELECT '))
  205. {
  206. return "";
  207. }
  208. $classid=RepSqlTbpre($classid);
  209. $sql=$empire->query1($classid);
  210. if(!$sql)
  211. {
  212. echo"SQL Error: ".ReRepSqlTbpre($classid);
  213. }
  214. return $sql;
  215. }
  216. if($enews==0||$enews==1||$enews==2||$enews==9||$enews==12||$enews==15)//栏目
  217. {
  218. if(strstr($classid,','))//多栏目
  219. {
  220. $son_r=sys_ReturnMoreClass($classid,1);
  221. $classid=$son_r[0];
  222. $where=$son_r[1];
  223. }
  224. else
  225. {
  226. if($classid=='selfinfo')//显示当前栏目信息
  227. {
  228. $classid=$navclassid;
  229. }
  230. if($class_r[$classid][islast])
  231. {
  232. $where="classid='$classid'";
  233. }
  234. else
  235. {
  236. $where=ReturnClass($class_r[$classid][sonclass]);
  237. }
  238. }
  239. $tbname=$class_r[$classid][tbname];
  240. $mid=$class_r[$classid][modid];
  241. $yhid=$class_r[$classid][yhid];
  242. }
  243. elseif($enews==6||$enews==7||$enews==8||$enews==11||$enews==14||$enews==17)//专题
  244. {
  245. echo"Error:Change to use e:indexloop";
  246. return false;
  247. }
  248. elseif($enews==25||$enews==26||$enews==27||$enews==28||$enews==29||$enews==30)//标题分类
  249. {
  250. if(strstr($classid,','))//多标题分类
  251. {
  252. $son_r=sys_ReturnMoreTT($classid);
  253. $classid=$son_r[0];
  254. $where=$son_r[1];
  255. }
  256. else
  257. {
  258. if($classid=='selfinfo')//显示当前标题分类信息
  259. {
  260. $classid=$navclassid;
  261. }
  262. $where="ttid='$classid'";
  263. }
  264. $mid=$class_tr[$classid][mid];
  265. $tbname=$emod_r[$mid][tbname];
  266. $yhid=$class_tr[$classid][yhid];
  267. }
  268. $query='';
  269. $qand=' and ';
  270. if($enews==0)//栏目最新
  271. {
  272. $query=' where ('.$where.')';
  273. $order='newstime';
  274. $yhvar='bqnew';
  275. }
  276. elseif($enews==1)//栏目热门
  277. {
  278. $query=' where ('.$where.')';
  279. $order='onclick';
  280. $yhvar='bqhot';
  281. }
  282. elseif($enews==2)//栏目推荐
  283. {
  284. $query=' where ('.$where.') and isgood>0';
  285. $order='newstime';
  286. $yhvar='bqgood';
  287. }
  288. elseif($enews==9)//栏目评论排行
  289. {
  290. $query=' where ('.$where.')';
  291. $order='plnum';
  292. $yhvar='bqpl';
  293. }
  294. elseif($enews==12)//栏目头条
  295. {
  296. $query=' where ('.$where.') and firsttitle>0';
  297. $order='newstime';
  298. $yhvar='bqfirst';
  299. }
  300. elseif($enews==15)//栏目下载排行
  301. {
  302. $query=' where ('.$where.')';
  303. $order='totaldown';
  304. $yhvar='bqdown';
  305. }
  306. elseif($enews==3)//所有最新
  307. {
  308. $qand=' where ';
  309. $order='newstime';
  310. $tbname=$public_r[tbname];
  311. $mid=$etable_r[$tbname][mid];
  312. $yhvar='bqnew';
  313. $yhid=$etable_r[$tbname][yhid];
  314. }
  315. elseif($enews==4)//所有点击排行
  316. {
  317. $qand=' where ';
  318. $order='onclick';
  319. $tbname=$public_r[tbname];
  320. $mid=$etable_r[$tbname][mid];
  321. $yhvar='bqhot';
  322. $yhid=$etable_r[$tbname][yhid];
  323. }
  324. elseif($enews==5)//所有推荐
  325. {
  326. $query=' where isgood>0';
  327. $order='newstime';
  328. $tbname=$public_r[tbname];
  329. $mid=$etable_r[$tbname][mid];
  330. $yhvar='bqgood';
  331. $yhid=$etable_r[$tbname][yhid];
  332. }
  333. elseif($enews==10)//所有评论排行
  334. {
  335. $qand=' where ';
  336. $order='plnum';
  337. $tbname=$public_r[tbname];
  338. $mid=$etable_r[$tbname][mid];
  339. $yhvar='bqpl';
  340. $yhid=$etable_r[$tbname][yhid];
  341. }
  342. elseif($enews==13)//所有头条
  343. {
  344. $query=' where firsttitle>0';
  345. $order='newstime';
  346. $tbname=$public_r[tbname];
  347. $mid=$etable_r[$tbname][mid];
  348. $yhvar='bqfirst';
  349. $yhid=$etable_r[$tbname][yhid];
  350. }
  351. elseif($enews==16)//所有下载排行
  352. {
  353. $qand=' where ';
  354. $order='totaldown';
  355. $tbname=$public_r[tbname];
  356. $mid=$etable_r[$tbname][mid];
  357. $yhvar='bqdown';
  358. $yhid=$etable_r[$tbname][yhid];
  359. }
  360. elseif($enews==18)//各表最新
  361. {
  362. $qand=' where ';
  363. $order='newstime';
  364. $tbname=$classid;
  365. $mid=$etable_r[$tbname][mid];
  366. $yhvar='bqnew';
  367. $yhid=$etable_r[$tbname][yhid];
  368. }
  369. elseif($enews==19)//各表热门
  370. {
  371. $qand=' where ';
  372. $order='onclick';
  373. $tbname=$classid;
  374. $mid=$etable_r[$tbname][mid];
  375. $yhvar='bqhot';
  376. $yhid=$etable_r[$tbname][yhid];
  377. }
  378. elseif($enews==20)//各表推荐
  379. {
  380. $query=' where isgood>0';
  381. $order='newstime';
  382. $tbname=$classid;
  383. $mid=$etable_r[$tbname][mid];
  384. $yhvar='bqgood';
  385. $yhid=$etable_r[$tbname][yhid];
  386. }
  387. elseif($enews==21)//各表评论排行
  388. {
  389. $qand=' where ';
  390. $order='plnum';
  391. $tbname=$classid;
  392. $mid=$etable_r[$tbname][mid];
  393. $yhvar='bqpl';
  394. $yhid=$etable_r[$tbname][yhid];
  395. }
  396. elseif($enews==22)//各表头条信息
  397. {
  398. $query=' where firsttitle>0';
  399. $order="newstime";
  400. $tbname=$classid;
  401. $mid=$etable_r[$tbname][mid];
  402. $yhvar='bqfirst';
  403. $yhid=$etable_r[$tbname][yhid];
  404. }
  405. elseif($enews==23)//各表下载排行
  406. {
  407. $qand=' where ';
  408. $order='totaldown';
  409. $tbname=$classid;
  410. $mid=$etable_r[$tbname][mid];
  411. $yhvar='bqdown';
  412. $yhid=$etable_r[$tbname][yhid];
  413. }
  414. elseif($enews==25)//标题分类最新
  415. {
  416. $query=' where ('.$where.')';
  417. $order='newstime';
  418. $yhvar='bqnew';
  419. }
  420. elseif($enews==26)//标题分类点击排行
  421. {
  422. $query=' where ('.$where.')';
  423. $order='onclick';
  424. $yhvar='bqhot';
  425. }
  426. elseif($enews==27)//标题分类推荐
  427. {
  428. $query=' where ('.$where.') and isgood>0';
  429. $order='newstime';
  430. $yhvar='bqgood';
  431. }
  432. elseif($enews==28)//标题分类评论排行
  433. {
  434. $query=' where ('.$where.')';
  435. $order='plnum';
  436. $yhvar='bqpl';
  437. }
  438. elseif($enews==29)//标题分类头条
  439. {
  440. $query=' where ('.$where.') and firsttitle>0';
  441. $order='newstime';
  442. $yhvar='bqfirst';
  443. }
  444. elseif($enews==30)//标题分类下载排行
  445. {
  446. $query=' where ('.$where.')';
  447. $order='totaldown';
  448. $yhvar='bqdown';
  449. }
  450. //优化
  451. $yhadd='';
  452. if(!empty($eyh_r[$yhid]['dobq']))
  453. {
  454. $yhadd=ReturnYhSql($yhid,$yhvar);
  455. if(!empty($yhadd))
  456. {
  457. $query.=$qand.$yhadd;
  458. $qand=' and ';
  459. }
  460. }
  461. //不调用
  462. if(!strstr($public_r['nottobq'],','.$classid.','))
  463. {
  464. $notbqwhere=ReturnNottoBqWhere();
  465. if(!empty($notbqwhere))
  466. {
  467. $query.=$qand.$notbqwhere;
  468. $qand=' and ';
  469. }
  470. }
  471. //图片信息
  472. if(!empty($do))
  473. {
  474. $query.=$qand.'ispic=1';
  475. $qand=' and ';
  476. }
  477. //附加条件
  478. if(!empty($ewhere))
  479. {
  480. $query.=$qand.'('.$ewhere.')';
  481. $qand=' and ';
  482. }
  483. //中止
  484. if(empty($tbname))
  485. {
  486. echo "ClassID=<b>".$classid."</b> Table not exists.(DoType=".$enews.")";
  487. return false;
  488. }
  489. //排序
  490. $addorder=empty($eorder)?$order.' desc':$eorder;
  491. $query='select '.ReturnSqlListF($mid).' from '.$dbtbpre.'ecms_'.$tbname.$query.' order by '.ReturnSetTopSql('bq').$addorder.' limit '.$line;
  492. $sql=$empire->query1($query);
  493. if(!$sql)
  494. {
  495. echo"SQL Error: ".ReRepSqlTbpre($query);
  496. }
  497. return $sql;
  498. }
  499. //灵动标签:返回SQL内容函数
  500. function ewap_eloop($classid=0,$line=10,$enews=3,$doing=0,$ewhere='',$eorder=''){
  501. return ewap_ReturnBqQuery($classid,$line,$enews,$doing,$ewhere,$eorder);
  502. }
  503. //灵动标签:返回特殊内容函数
  504. function ewap_eloop_sp($r){
  505. global $class_r;
  506. $sr['titleurl']=ewap_ReturnTitleUrl($r);
  507. $sr['classname']=$class_r[$r[classid]][bname]?$class_r[$r[classid]][bname]:$class_r[$r[classid]][classname];
  508. $sr['classurl']=ewap_ReturnClassUrl($r);
  509. return $sr;
  510. }
  511. //返回wap内容页地址
  512. function ewap_ReturnTitleUrl($r){
  513. global $public_r,$class_r,$ecmsvar_mbr,$wapstyle;
  514. if(empty($r['isurl']))
  515. {
  516. $titleurl='show.php?classid='.$r[classid].'&amp;id='.$r[id].'&amp;style='.$wapstyle.'&amp;bclassid='.$class_r[$r[classid]][bclassid].'&amp;cid='.$r[classid].'&amp;cpage=0';
  517. }
  518. else
  519. {
  520. if($public_r['opentitleurl'])
  521. {
  522. $titleurl=$r['titleurl'];
  523. }
  524. else
  525. {
  526. $titleurl=$public_r['newsurl'].'e/public/jump/?classid='.$r['classid'].'&amp;id='.$r['id'];
  527. }
  528. }
  529. return $titleurl;
  530. }
  531. //返回栏目页地址
  532. function ewap_ReturnClassUrl($r){
  533. global $public_r,$class_r,$ecmsvar_mbr,$wapstyle;
  534. //外部栏目
  535. if($class_r[$r[classid]][wburl])
  536. {
  537. $classurl=$class_r[$r[classid]][wburl];
  538. }
  539. else
  540. {
  541. $classurl='list.php?classid='.$r[classid].'&amp;style='.$wapstyle.'&amp;bclassid='.$class_r[$r[classid]][bclassid];
  542. }
  543. return $classurl;
  544. }
  545. //链接附加参数
  546. function ewap_UrlAddCs(){
  547. global $ecmsvar_mbr;
  548. $wapstyle=(int)$ecmsvar_mbr['wapstyle'];
  549. $fbclassid=(int)$ecmsvar_mbr['fbclassid'];
  550. $fclassid=(int)$ecmsvar_mbr['fclassid'];
  551. $fcpage=(int)$ecmsvar_mbr['fcpage'];
  552. $addcs='';
  553. if($wapstyle)
  554. {
  555. $addcs.='&amp;style='.$wapstyle;
  556. }
  557. if($fbclassid)
  558. {
  559. $addcs.='&amp;bclassid='.$fbclassid;
  560. }
  561. if($fclassid)
  562. {
  563. $addcs.='&amp;cid='.$fclassid;
  564. }
  565. if($fcpage)
  566. {
  567. $addcs.='&amp;cpage='.$fcpage;
  568. }
  569. return $addcs;
  570. }
  571. //返回WAP模板参数
  572. function ewap_UrlCsReturnStyle($ecms=0,$style=0){
  573. global $pr,$wapstyle;
  574. if(!$style)
  575. {
  576. $style=$wapstyle;
  577. }
  578. $style=(int)$style;
  579. if(!$style||$style==$pr['wapdefstyle'])
  580. {
  581. return '';
  582. }
  583. $cs=$ecms?'?style='.$style:'&style='.$style;
  584. return $cs;
  585. }
  586. $pr=$empire->fetch1("select sitekey,siteintro,wapopen,wapdefstyle,wapshowmid,waplistnum,wapsubtitle,wapshowdate,wapchar,wapchstyle from {$dbtbpre}enewspublic limit 1");
  587. //导入编码文件
  588. $iconv='';
  589. if($ecms_config['sets']['pagechar']!='utf-8')
  590. {
  591. if($pr['wapchar']!=2)
  592. {
  593. @include_once("../class/doiconv.php");
  594. $iconv=new Chinese('');
  595. }
  596. }
  597. if(empty($pr['wapopen']))
  598. {
  599. DoWapShowMsg('网站没有开启WAP功能','index.php');
  600. }
  601. if(!$pr['wapchstyle'])
  602. {
  603. $_GET['style']=0;
  604. }
  605. $wapstyle=intval($_GET['style']);
  606. //返回使用模板
  607. $usewapstyle=ReturnWapStyle($_GET,$wapstyle);
  608. if(!file_exists('template/'.$usewapstyle))
  609. {
  610. $usewapstyle=1;
  611. }
  612. ?>