show.php 18 KB

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