ShowInfo.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. <?php
  2. require('../class/connect.php');
  3. require('../class/db_sql.php');
  4. require('../class/functions.php');
  5. require('../class/t_functions.php');
  6. require LoadLang('pub/fun.php');
  7. require('../data/dbcache/class.php');
  8. require('../data/dbcache/MemberLevel.php');
  9. $link=db_connect();
  10. $empire=new mysqlquery();
  11. $classid=(int)$_GET['classid'];
  12. $id=(int)$_GET['id'];
  13. $page=(int)$_GET['page'];
  14. $page=RepPIntvar($page);
  15. $mid=$class_r[$classid]['modid'];
  16. $tbname=$class_r[$classid]['tbname'];
  17. //验证IP
  18. eCheckAccessDoIp('showinfo');
  19. if(!$classid||!$id||!$mid||!$tbname||InfoIsInTable($tbname))
  20. {
  21. printerror('此信息不存在','',1,0,1);
  22. }
  23. $r=$empire->fetch1("select * from {$dbtbpre}ecms_".$tbname." where id='$id' limit 1");
  24. if(!$r['id']||$classid!=$r['classid'])
  25. {
  26. printerror('此信息不存在','',1,0,1);
  27. }
  28. //外部链接
  29. if($r['isurl'])
  30. {
  31. $titleurl=$r['titleurl'];
  32. Header("Location:$titleurl");
  33. exit();
  34. }
  35. //moreport
  36. if(Moreport_ReturnMustDt())
  37. {
  38. $class_r[$classid]['showdt']=2;
  39. }
  40. //是否支持动态内容页
  41. if($class_r[$classid]['showdt']!=2)
  42. {
  43. $titleurl=sys_ReturnBqTitleLink($r);
  44. Header("Location:$titleurl");
  45. exit();
  46. }
  47. //缓存
  48. if($public_r['ctimeopen'])
  49. {
  50. $public_r['usetotalnum']=0;
  51. }
  52. $ecms_tofunr=array();
  53. $ecms_tofunr['cacheuse']=0;
  54. $ecms_tofunr['cacheselfcid']=$classid;
  55. $ecms_tofunr['cachetype']='textpage';
  56. $ecms_tofunr['cacheids']=$classid.','.$id.','.$page;
  57. $ecms_tofunr['cachepath']='empirecms';
  58. $ecms_tofunr['cachedatepath']='ctext/'.date('Y/md',$r['truetime']);
  59. $ecms_tofunr['cachetime']=$public_r['ctimetext'];
  60. $ecms_tofunr['cachelasttime']=$public_r['ctimelast'];
  61. $ecms_tofunr['cachelastedit']=$r['lastdotime'];
  62. $ecms_tofunr['cacheopen']=Ecms_eCacheCheckOpen($ecms_tofunr['cachetime']);
  63. $ecms_tofunr['cachehavedo']=0;
  64. if($ecms_tofunr['cacheopen']==1&&!($r['groupid']||$class_r[$classid]['cgtoinfo']))
  65. {
  66. $ecms_tofunr['cacheuse']=Ecms_eCacheOut($ecms_tofunr,2);
  67. if($ecms_tofunr['cacheuse'])
  68. {
  69. //更新点击
  70. $empire->query("update {$dbtbpre}ecms_".$tbname." set onclick=onclick+1 where id='$id' limit 1");
  71. db_close();
  72. $empire=null;
  73. exit();
  74. }
  75. $ecms_tofunr['cachehavedo']=1;
  76. }
  77. //缓存
  78. //副表
  79. $finfor=$empire->fetch1("select ".ReturnSqlFtextF($mid)." from {$dbtbpre}ecms_".$tbname."_data_".$r['stb']." where id='$r[id]' limit 1");
  80. $r=array_merge($r,$finfor);
  81. //权限
  82. if($r['groupid']||$class_r[$classid]['cgtoinfo'])
  83. {
  84. define('empirecms','wm_chief');
  85. define('PageCheckLevel','wm_chief');
  86. $check_tbname=$tbname;
  87. $check_infoid=$id;
  88. $check_classid=$classid;
  89. $check_path="../../";
  90. $checkinfor=$r;
  91. @include("../class/CheckLevel.php");
  92. }
  93. //缓存
  94. if($ecms_tofunr['cacheopen']==1&&!$ecms_tofunr['cachehavedo'])
  95. {
  96. $ecms_tofunr['cacheuse']=Ecms_eCacheOut($ecms_tofunr,2);
  97. if($ecms_tofunr['cacheuse'])
  98. {
  99. //更新点击
  100. $empire->query("update {$dbtbpre}ecms_".$tbname." set onclick=onclick+1 where id='$id' limit 1");
  101. db_close();
  102. $empire=null;
  103. exit();
  104. }
  105. }
  106. //缓存
  107. //存文本
  108. if($emod_r[$mid]['savetxtf'])
  109. {
  110. $stf=$emod_r[$mid]['savetxtf'];
  111. if($r[$stf])
  112. {
  113. $r[$stf]=GetTxtFieldText($r[$stf]);
  114. }
  115. }
  116. //初始值
  117. $search="&classid=$classid&id=$id";
  118. $line=1;
  119. $start=0;
  120. $page_line=6;//每页显示链接数
  121. $offset=$page*$line;//总偏移量
  122. $GLOBALS['navclassid']=$r[classid];
  123. $GLOBALS['navinfor']=$r;
  124. //取得内容模板
  125. $r[newstempid]=$r[newstempid]?$r[newstempid]:$class_r[$r[classid]][newstempid];
  126. $newstemp_r=$empire->fetch1("select tempid,temptext,showdate from ".GetTemptb("enewsnewstemp")." where tempid='$r[newstempid]'");
  127. //替换模板变量
  128. function DtGetHtml($add,$newstemp_r,$mid,$tbname,$line,$page_line,$start,$page,$search){
  129. global $public_r,$class_r,$class_zr,$class_tr,$fun_r,$empire,$dbtbpre,$emod_r,$level_r;
  130. //更新点击
  131. $empire->query("update {$dbtbpre}ecms_".$tbname." set onclick=onclick+1 where id='$add[id]' limit 1");
  132. $add['onclick']=$add['onclick']+1;
  133. //模板参数
  134. $newstemptext=$newstemp_r[temptext];
  135. $formatdate=$newstemp_r[showdate];
  136. //页面
  137. $pagetitle=ehtmlspecialchars($add[title]);
  138. $url=ReturnClassLink($add[classid]);//导航
  139. $newstemptext=DtInfo_ReplaceSvars($newstemptext,$url,$add[classid],$pagetitle,$add[keyboard],$pagetitle);
  140. //相关信息
  141. if(strstr($newstemptext,'[!--other.link--]'))
  142. {
  143. $keyboardtext=GetKeyboard($add[keyboard],$add[keyid],$add[classid],$add[id],$class_r[$add[classid]][link_num]);
  144. }
  145. //分页字段
  146. $ptitle=$add['title'];
  147. $truepage='';
  148. $titleselect='';
  149. $expage='[!--empirenews.page--]';//分页符
  150. $pf=$emod_r[$mid]['pagef'];
  151. if($pf&&strstr($add[$pf],$expage))//有分页
  152. {
  153. $n_r=explode($expage,$add[$pf]);
  154. $thispagenum=count($n_r);
  155. //checkpageno
  156. eCheckListPageNo($page,$line,$thispagenum);
  157. if($page<0||$page>$thispagenum-1)
  158. {
  159. $page=0;
  160. }
  161. $add[$pf]=$n_r[$page];
  162. if($page)
  163. {
  164. $ti_r=explode('[/!--empirenews.page--]',$n_r[$page]);
  165. if(count($ti_r)>=2)
  166. {
  167. $ptitle=$ti_r[0];
  168. $add[$pf]=$ti_r[1];
  169. }
  170. else
  171. {
  172. $ptitle=$add['title'].'('.($page+1).')';
  173. }
  174. }
  175. //伪静态
  176. $pagefunr=eReturnRewriteInfoUrl($add['classid'],$add['id'],0);
  177. $pagefunr['repagenum']=0;
  178. //取得分页
  179. $truepage=InfoUsePage($thispagenum,$line,$page_line,$start,$page,$search,$pagefunr);
  180. //下拉式分页
  181. if(strstr($newstemptext,'[!--title.select--]'))
  182. {
  183. for($j=0;$j<$thispagenum;$j++)
  184. {
  185. $spurl=eReturnRewritePageLink($pagefunr,$j);
  186. if($j==0)
  187. {
  188. $sptitle=$add[title];
  189. }
  190. else
  191. {
  192. $ti_r=explode('[/!--empirenews.page--]',$n_r[$j]);
  193. $sptitle=count($ti_r)>=2?$ti_r[0]:$add[title].'('.($j+1).')';
  194. }
  195. $select='';
  196. if($page==$j)
  197. {
  198. $ptitle=$sptitle;
  199. $select=' selected';
  200. }
  201. $titleselect.='<option value="'.$spurl.'"'.$select.'>'.$sptitle.'</option>';
  202. }
  203. $titleselect='<select name="titleselect" onchange="self.location.href=this.options[this.selectedIndex].value">'.$titleselect.'</select>';
  204. }
  205. //下一页链接
  206. if($page==$thispagenum-1)
  207. {
  208. $thisnextlink=eReturnRewritePageLink($pagefunr,0);
  209. }
  210. else
  211. {
  212. $thisnextlink=eReturnRewritePageLink($pagefunr,$page+1);
  213. }
  214. }
  215. else
  216. {
  217. //checkpageno
  218. if($page!=0)
  219. {
  220. printerror('ErrorUrl','history.go(-1)',1);
  221. }
  222. }
  223. //返回替换验证字符
  224. $docheckrep=ReturnCheckDoRepStr();
  225. if($add[newstext])
  226. {
  227. if(empty($public_r['dorepword'])&&$docheckrep[3])
  228. {
  229. $add[newstext]=ReplaceWord($add[newstext]);//过滤字符
  230. }
  231. if(empty($public_r['dorepkey'])&&$docheckrep[4]&&!empty($add[dokey]))//替换关键字
  232. {
  233. $add[newstext]=ReplaceKey($add['newstext'],$add['classid']);
  234. }
  235. if($public_r['opencopytext'])
  236. {
  237. $add[newstext]=AddNotCopyRndStr($add[newstext]);//随机复制字符
  238. }
  239. }
  240. //变量
  241. $tempf=$emod_r[$mid]['tempf'];
  242. $fr=explode(',',$tempf);
  243. $fcount=count($fr)-1;
  244. //变量替换
  245. $newstempstr=$newstemptext;//模板
  246. for($i=1;$i<$fcount;$i++)
  247. {
  248. $f=$fr[$i];
  249. $value=$add[$f];
  250. if($f=='downpath')//下载地址
  251. {
  252. if(strstr($newstemptext,'[!--downpath--]'))
  253. {
  254. $value=ReturnDownSoftHtml($add);
  255. }
  256. }
  257. elseif($f=='onlinepath')//观看地址
  258. {
  259. if(strstr($newstemptext,'[!--onlinepath--]'))
  260. {
  261. $value=ReturnOnlinepathHtml($add);
  262. }
  263. }
  264. elseif($f=='morepic')//图片集
  265. {
  266. if(strstr($newstemptext,'[!--morepic--]'))
  267. {
  268. $value=ReturnMorepicpathHtml($add);
  269. }
  270. }
  271. elseif($f=='newstime')//时间
  272. {
  273. if(strstr($newstemptext,'[!--newstime--]'))
  274. {
  275. $value=date($formatdate,$value);
  276. }
  277. }
  278. elseif($f=='befrom')//信息来源
  279. {
  280. if($docheckrep[1]&&strstr($newstemptext,'[!--befrom--]'))
  281. {
  282. $value=ReplaceBefrom($value);
  283. }
  284. }
  285. elseif($f=='writer')//作者
  286. {
  287. if($docheckrep[2]&&strstr($newstemptext,'[!--writer--]'))
  288. {
  289. $value=ReplaceWriter($value);
  290. }
  291. }
  292. elseif($f=='titlepic')//标题图片
  293. {
  294. if(empty($value))
  295. {$value=$public_r[newsurl].'e/data/images/notimg.gif';}
  296. }
  297. elseif($f=='title')//标题
  298. {
  299. }
  300. else//正常字段
  301. {
  302. if(!strstr($emod_r[$mid]['editorf'],','.$f.','))
  303. {
  304. if(strstr($emod_r[$mid]['tobrf'],','.$f.','))//加br
  305. {
  306. $value=nl2br($value);
  307. }
  308. if(!strstr($emod_r[$mid]['dohtmlf'],','.$f.','))//去除html
  309. {
  310. $value=RepFieldtextNbsp(ehtmlspecialchars($value));
  311. }
  312. }
  313. }
  314. $newstempstr=str_replace('[!--'.$f.'--]',$value,$newstempstr);
  315. }
  316. //固定变量
  317. $newstempstr=str_replace('[!--id--]',$add[id],$newstempstr);
  318. $newstempstr=str_replace('[!--classid--]',$add[classid],$newstempstr);
  319. $newstempstr=str_replace('[!--class.name--]',$class_r[$add[classid]][classname],$newstempstr);
  320. $newstempstr=str_replace('[!--ttid--]',$add[ttid],$newstempstr);
  321. $newstempstr=str_replace('[!--tt.name--]',$class_tr[$add[ttid]][tname],$newstempstr);
  322. $newstempstr=str_replace('[!--tt.url--]',sys_ReturnBqInfoTypeUrl($add['ttid']),$newstempstr);
  323. $newstempstr=str_replace('[!--onclick--]',$add[onclick],$newstempstr);
  324. $newstempstr=str_replace('[!--userfen--]',$add[userfen],$newstempstr);
  325. $newstempstr=str_replace('[!--username--]',$add[username],$newstempstr);
  326. //带链接的用户名
  327. if($add[ismember]==1&&$add[userid])
  328. {
  329. $newstempstr=str_replace('[!--linkusername--]',"<a href='".$public_r[newsurl]."e/space/?userid=".$add[userid]."' target=_blank>".$add[username]."</a>",$newstempstr);
  330. }
  331. else
  332. {
  333. $newstempstr=str_replace('[!--linkusername--]',$add[username],$newstempstr);
  334. }
  335. $newstempstr=str_replace('[!--userid--]',$add[userid],$newstempstr);
  336. $newstempstr=str_replace('[!--other.link--]',$keyboardtext,$newstempstr);
  337. $newstempstr=str_replace('[!--news.url--]',$public_r[newsurl],$newstempstr);
  338. $newstempstr=str_replace('[!--plnum--]',$add[plnum],$newstempstr);
  339. $newstempstr=str_replace('[!--totaldown--]',$add[totaldown],$newstempstr);
  340. $newstempstr=str_replace('[!--keyboard--]',$add[keyboard],$newstempstr);
  341. //链接
  342. $titleurl=sys_ReturnBqTitleLink($add);
  343. $newstempstr=str_replace('[!--titleurl--]',$titleurl,$newstempstr);
  344. $newstempstr=str_replace('[!--page.stats--]','',$newstempstr);
  345. $classurl=sys_ReturnBqClassname($add,9);
  346. $newstempstr=str_replace('[!--class.url--]',$classurl,$newstempstr);
  347. //下一篇
  348. if(strstr($newstemptext,'[!--info.next--]'))
  349. {
  350. $next_r=$empire->fetch1("select isurl,titleurl,classid,id,title from {$dbtbpre}ecms_".$class_r[$add[classid]][tbname]." where id>$add[id] and classid='$add[classid]' order by id limit 1");
  351. if(empty($next_r[id]))
  352. {
  353. $infonext="<a href='".$classurl."'>".$fun_r['HaveNoNextLink']."</a>";
  354. }
  355. else
  356. {
  357. //链接
  358. $nexttitleurl=sys_ReturnBqTitleLink($next_r);
  359. $infonext="<a href='".$nexttitleurl."'>".$next_r[title]."</a>";
  360. }
  361. $newstempstr=str_replace('[!--info.next--]',$infonext,$newstempstr);
  362. }
  363. //上一篇
  364. if(strstr($newstemptext,'[!--info.pre--]'))
  365. {
  366. $next_r=$empire->fetch1("select isurl,titleurl,classid,id,title from {$dbtbpre}ecms_".$class_r[$add[classid]][tbname]." where id<$add[id] and classid='$add[classid]' order by id desc limit 1");
  367. if(empty($next_r[id]))
  368. {
  369. $infonext="<a href='".$classurl."'>".$fun_r['HaveNoNextLink']."</a>";
  370. }
  371. else
  372. {
  373. //链接
  374. $nexttitleurl=sys_ReturnBqTitleLink($next_r);
  375. $infonext="<a href='".$nexttitleurl."'>".$next_r[title]."</a>";
  376. }
  377. $newstempstr=str_replace('[!--info.pre--]',$infonext,$newstempstr);
  378. }
  379. //投票
  380. if(strstr($newstemptext,'[!--info.vote--]'))
  381. {
  382. $myvotetext=sys_GetInfoVote($add[classid],$add[id]);
  383. $newstempstr=str_replace('[!--info.vote--]',$myvotetext,$newstempstr);
  384. }
  385. //评分
  386. if(strstr($newstemptext,'[!--pinfopfen--]'))
  387. {
  388. $pinfopfen=$add[infopfennum]?round($add[infopfen]/$add[infopfennum]):0;
  389. $newstempstr=str_replace('[!--pinfopfen--]',$pinfopfen,$newstempstr);
  390. $newstempstr=str_replace('[!--infopfennum--]',$add[infopfennum],$newstempstr);
  391. }
  392. $string=$newstempstr;
  393. //替换变量
  394. $string=str_replace('[!--p.title--]',strip_tags($ptitle),$string);
  395. $string=str_replace('[!--next.page--]',$thisnextlink,$string);
  396. $string=str_replace('[!--page.url--]',$truepage,$string);
  397. $string=str_replace('[!--title.select--]',$titleselect,$string);
  398. return $string;
  399. }
  400. if(empty($newstemp_r['tempid']))
  401. {
  402. printerror('ErrorUrl','',1);
  403. }
  404. //页面支持标签
  405. if($public_r['dtncanbq'])
  406. {
  407. $newstemp_r[temptext]=DtNewsBq('text'.$newstemp_r[tempid],$newstemp_r[temptext],1);
  408. }
  409. else
  410. {
  411. if($public_r['searchtempvar'])
  412. {
  413. $newstemp_r[temptext]=ReplaceTempvar($newstemp_r[temptext]);
  414. }
  415. }
  416. $string=DtGetHtml($r,$newstemp_r,$mid,$tbname,$line,$page_line,$start,$page,$search);
  417. //缓存
  418. if($ecms_tofunr['cacheopen']==1)
  419. {
  420. Ecms_eCacheIn($ecms_tofunr,stripSlashes($string));
  421. }
  422. else
  423. {
  424. echo stripSlashes($string);
  425. }
  426. //缓存
  427. db_close();
  428. $empire=null;
  429. ?>