hplfun.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  1. <?php
  2. //************************************ 评论设置参数 ************************************
  3. function SetPl($add,$userid,$username){
  4. global $empire,$dbtbpre;
  5. //验证权限
  6. CheckLevel($userid,$username,$classid,"public");
  7. $add['pltime']=(int)$add['pltime'];
  8. $add['plsize']=(int)$add['plsize'];
  9. $add['plincludesize']=(int)$add['plincludesize'];
  10. $add['plkey_ok']=(int)$add['plkey_ok'];
  11. $add['plfacenum']=(int)$add['plfacenum'];
  12. $add['plgroupid']=(int)$add['plgroupid'];
  13. $add['pl_num']=(int)$add['pl_num'];
  14. $add['plmaxfloor']=(int)$add['plmaxfloor'];
  15. $add['plurl']=hRepPostStr($add['plurl'],1);
  16. $sql=$empire->query("update {$dbtbpre}enewspl_set set pltime='$add[pltime]',plsize='$add[plsize]',plincludesize='$add[plincludesize]',plkey_ok='$add[plkey_ok]',plfacenum='$add[plfacenum]',plgroupid='$add[plgroupid]',plclosewords='".eaddslashes($add[plclosewords])."',pl_num='$add[pl_num]',plurl='$add[plurl]',plmaxfloor='$add[plmaxfloor]',plquotetemp='".eaddslashes2($add[plquotetemp])."' limit 1");
  17. GetConfig();//更新缓存
  18. if($sql)
  19. {
  20. insert_dolog("");//操作日志
  21. printerror('SetPlSuccess','pl/SetPl.php'.hReturnEcmsHashStrHref2(1));
  22. }
  23. else
  24. {
  25. printerror('DbError','history.go(-1)');
  26. }
  27. }
  28. //************************************ 评论 ************************************
  29. //批量删除评论
  30. function DelPl_all($plid,$id,$bclassid,$classid,$userid,$username){
  31. global $empire,$class_r,$dbtbpre,$public_r;
  32. //验证权限
  33. //CheckLevel($userid,$username,$classid,"news");
  34. $restb=(int)$_POST['restb'];
  35. $count=count($plid);
  36. if(empty($count)||!$restb)
  37. {
  38. printerror("NotDelPlid","history.go(-1)");
  39. }
  40. if(!strstr($public_r['pldatatbs'],','.$restb.','))
  41. {
  42. printerror("NotDelPlid","history.go(-1)");
  43. }
  44. $add='';
  45. for($i=0;$i<$count;$i++)
  46. {
  47. $add.="plid='".intval($plid[$i])."' or ";
  48. }
  49. $add=substr($add,0,strlen($add)-4);
  50. //更新数据表
  51. $fsql=$empire->query("select id,classid,plid,pubid from {$dbtbpre}enewspl_{$restb} where ".$add);
  52. while($r=$empire->fetch($fsql))
  53. {
  54. if($class_r[$r[classid]][tbname]&&$r['pubid']>0)
  55. {
  56. $index_r=$empire->fetch1("select checked from {$dbtbpre}ecms_".$class_r[$r[classid]][tbname]."_index where id='$r[id]' limit 1");
  57. //返回表
  58. $infotb=ReturnInfoMainTbname($class_r[$r[classid]][tbname],$index_r['checked']);
  59. $empire->query("update ".$infotb." set plnum=plnum-1 where id='$r[id]'");
  60. }
  61. }
  62. $sql=$empire->query("delete from {$dbtbpre}enewspl_{$restb} where ".$add);
  63. if($sql)
  64. {
  65. //操作日志
  66. insert_dolog("classid=".$classid."<br>classname=".$class_r[$classid][classname]);
  67. printerror("DelPlSuccess",EcmsGetReturnUrl());
  68. }
  69. else
  70. {printerror("DbError","history.go(-1)");}
  71. }
  72. //批量审核评论
  73. function CheckPl_all($plid,$id,$bclassid,$classid,$userid,$username){
  74. global $empire,$class_r,$dbtbpre,$public_r;
  75. //验证权限
  76. //CheckLevel($userid,$username,$classid,"news");
  77. $restb=(int)$_POST['restb'];
  78. $count=count($plid);
  79. if(empty($count)||!$restb)
  80. {
  81. printerror("NotCheckPlid","history.go(-1)");
  82. }
  83. if(!strstr($public_r['pldatatbs'],','.$restb.','))
  84. {
  85. printerror("NotCheckPlid","history.go(-1)");
  86. }
  87. $add='';
  88. $docheck=(int)$_POST['docheck'];
  89. $docheck=$docheck?1:0;
  90. for($i=0;$i<$count;$i++)
  91. {
  92. $add.="plid='".intval($plid[$i])."' or ";
  93. }
  94. $add=substr($add,0,strlen($add)-4);
  95. $sql=$empire->query("update {$dbtbpre}enewspl_{$restb} set checked='$docheck' where ".$add);
  96. if($sql)
  97. {
  98. //操作日志
  99. insert_dolog("docheck=$docheck<br>classid=".$classid."<br>classname=".$class_r[$classid][classname]);
  100. printerror("CheckPlSuccess",EcmsGetReturnUrl());
  101. }
  102. else
  103. {printerror("DbError","history.go(-1)");}
  104. }
  105. //批量推荐/取消评论
  106. function DoGoodPl_all($plid,$id,$bclassid,$classid,$isgood,$userid,$username){
  107. global $empire,$class_r,$dbtbpre,$public_r;
  108. //验证权限
  109. //CheckLevel($userid,$username,$classid,"news");
  110. $restb=(int)$_POST['restb'];
  111. $count=count($plid);
  112. if(empty($count)||!$restb)
  113. {
  114. printerror("NotGoodPlid","history.go(-1)");
  115. }
  116. if(!strstr($public_r['pldatatbs'],','.$restb.','))
  117. {
  118. printerror("NotGoodPlid","history.go(-1)");
  119. }
  120. $add='';
  121. $isgood=(int)$isgood;
  122. for($i=0;$i<$count;$i++)
  123. {
  124. $add.="plid='".intval($plid[$i])."' or ";
  125. }
  126. $add=substr($add,0,strlen($add)-4);
  127. $sql=$empire->query("update {$dbtbpre}enewspl_{$restb} set isgood='$isgood' where ".$add);
  128. if($sql)
  129. {
  130. //操作日志
  131. insert_dolog("isgood=$isgood<br>classid=".$classid."<br>classname=".$class_r[$classid][classname]);
  132. printerror("DoGoodPlSuccess",EcmsGetReturnUrl());
  133. }
  134. else
  135. {printerror("DbError","history.go(-1)");}
  136. }
  137. //批量更新信息评论数
  138. function UpdateAllInfoPlnum($add,$userid,$username){
  139. global $empire,$public_r,$class_r,$fun_r,$dbtbpre;
  140. //验证权限
  141. CheckLevel($userid,$username,$classid,"changedata");
  142. $start=(int)$add['start'];
  143. $tbname=RepPostVar($add['tbname']);
  144. $from=$add['from'];
  145. if(empty($tbname)||!eCheckTbname($tbname))
  146. {
  147. printerror("ErrorUrl","history.go(-1)");
  148. }
  149. //按栏目刷新
  150. $classid=(int)$add['classid'];
  151. if($classid)
  152. {
  153. if(empty($class_r[$classid][islast]))//父栏目
  154. {
  155. $where=ReturnClass($class_r[$classid][sonclass]);
  156. }
  157. else//终极栏目
  158. {
  159. $where="classid='$classid'";
  160. }
  161. $add1=" and (".$where.")";
  162. }
  163. //按ID刷新
  164. $retype=(int)$add['retype'];
  165. if($retype)
  166. {
  167. $startid=(int)$add['startid'];
  168. $endid=(int)$add['endid'];
  169. if($endid)
  170. {
  171. $add1.=" and id>=$startid and id<=$endid";
  172. }
  173. }
  174. else
  175. {
  176. $startday=RepPostVar($add['startday']);
  177. $endday=RepPostVar($add['endday']);
  178. if($startday&&$endday)
  179. {
  180. $add1.=" and truetime>=".to_time($startday." 00:00:00")." and truetime<=".to_time($endday." 23:59:59");
  181. }
  182. }
  183. //指定ID
  184. $doids=trim($add['doids']);
  185. $whereid='';
  186. if($doids)
  187. {
  188. $doidr=explode(',',$doids);
  189. $doidcount=count($doidr);
  190. $wheredh='';
  191. for($doi=0;$doi<$doidcount;$doi++)
  192. {
  193. $whereid.=$wheredh.intval($doidr[$doi]);
  194. $wheredh=',';
  195. }
  196. $add1.=' and id in ('.$whereid.')';
  197. }
  198. $b=0;
  199. $sql=$empire->query("select id,classid,checked from {$dbtbpre}ecms_".$tbname."_index where id>$start".$add1." order by id limit ".$public_r[infolinknum]);
  200. while($r=$empire->fetch($sql))
  201. {
  202. $b=1;
  203. $new_start=$r['id'];
  204. //更信息评论数
  205. UpdateSingleInfoPlnum($r['classid'],$r['id'],$r['checked']);
  206. }
  207. if(empty($b))
  208. {
  209. insert_dolog("");//操作日志
  210. printerror("UpdateInfoPlnumSuccess",$from);
  211. }
  212. echo $fun_r[OneUpdateInfoPlnumSuccess]."(ID:<font color=red><b>".$new_start."</b></font>)<script>self.location.href='ecmspl.php?enews=UpdateAllInfoPlnum&tbname=$tbname&classid=$classid&start=$new_start&from=".urlencode($from)."&retype=$retype&startday=$startday&endday=$endday&startid=$startid&endid=$endid&doids=$whereid".hReturnEcmsHashStrHref(0)."';</script>";
  213. exit();
  214. }
  215. //************************************ 评论字段管理 ************************************
  216. //验证字段是否重复
  217. function CheckRePlF($add,$ecms=0){
  218. global $empire,$dbtbpre;
  219. //修改
  220. if($ecms==1&&$add[f]==$add[oldf])
  221. {
  222. return '';
  223. }
  224. //主表
  225. $s=$empire->query("SHOW FIELDS FROM {$dbtbpre}enewspl_1");
  226. $b=0;
  227. while($r=$empire->fetch($s))
  228. {
  229. if($r[Field]==$add[f])
  230. {
  231. $b=1;
  232. break;
  233. }
  234. }
  235. if($b)
  236. {
  237. printerror("ReF","history.go(-1)");
  238. }
  239. }
  240. //返回字段类型
  241. function ReturnPlFtype($add){
  242. //字段类型
  243. if($add[ftype]=="TINYINT"||$add[ftype]=="SMALLINT"||$add[ftype]=="INT"||$add[ftype]=="BIGINT"||$add[ftype]=="FLOAT"||$add[ftype]=="DOUBLE")
  244. {
  245. $def=" default '0'";
  246. }
  247. elseif($add[ftype]=="VARCHAR")
  248. {
  249. $def=" default ''";
  250. }
  251. else
  252. {
  253. $def="";
  254. }
  255. $type=$add[ftype];
  256. //VARCHAR
  257. if($add[ftype]=='VARCHAR'&&empty($add[flen]))
  258. {
  259. $add[flen]='255';
  260. }
  261. //字段长度
  262. if($add[flen])
  263. {
  264. if($add[ftype]!="TEXT"&&$add[ftype]!="MEDIUMTEXT"&&$add[ftype]!="LONGTEXT")
  265. {
  266. $type.="(".$add[flen].")";
  267. }
  268. }
  269. $field="`".$add[f]."` ".$type." NOT NULL".$def;
  270. return $field;
  271. }
  272. //增加评论字段
  273. function AddPlF($add,$userid,$username){
  274. global $empire,$dbtbpre;
  275. $add[f]=RepPostVar($add[f]);
  276. if(empty($add[f])||empty($add[fname]))
  277. {
  278. printerror("EmptyF","history.go(-1)");
  279. }
  280. //验证权限
  281. CheckLevel($userid,$username,$classid,"plf");
  282. $add['fname']=hRepPostStr($add['fname'],1);
  283. $add['fzs']=hRepPostStr($add['fzs'],1);
  284. $add['ftype']=hRepPostStr($add['ftype'],1);
  285. $add['flen']=hRepPostStr($add['flen'],1);
  286. //验证字段重复
  287. CheckRePlF($add,0);
  288. //字段类型
  289. $field=ReturnPlFtype($add);
  290. //新增字段
  291. $tbr=$empire->fetch1("select pldatatbs from {$dbtbpre}enewspl_set limit 1");
  292. if($tbr['pldatatbs'])
  293. {
  294. $dtbr=explode(',',$tbr['pldatatbs']);
  295. $count=count($dtbr);
  296. for($i=1;$i<$count-1;$i++)
  297. {
  298. $empire->query("alter table {$dbtbpre}enewspl_".$dtbr[$i]." add ".$field);
  299. }
  300. }
  301. //处理变量
  302. $add[ismust]=(int)$add[ismust];
  303. $sql=$empire->query("insert into {$dbtbpre}enewsplf(f,fname,fzs,ftype,flen,ismust) values('$add[f]','$add[fname]','".addslashes($add[fzs])."','$add[ftype]','$add[flen]','$add[ismust]');");
  304. $lastid=$empire->lastid();
  305. UpdatePlF();//更新字段
  306. GetConfig();//更新缓存
  307. if($sql)
  308. {
  309. //操作日志
  310. insert_dolog("fid=".$lastid."<br>f=".$add[f]);
  311. printerror("AddFSuccess","pl/AddPlF.php?enews=AddPlF".hReturnEcmsHashStrHref2(0));
  312. }
  313. else
  314. {
  315. printerror("DbError","history.go(-1)");
  316. }
  317. }
  318. //修改评论字段
  319. function EditPlF($add,$userid,$username){
  320. global $empire,$dbtbpre;
  321. $fid=(int)$add['fid'];
  322. $add[f]=RepPostVar($add[f]);
  323. $add[oldf]=RepPostVar($add[oldf]);
  324. if(empty($add[f])||empty($add[fname])||!$fid)
  325. {
  326. printerror("EmptyF","history.go(-1)");
  327. }
  328. //验证权限
  329. CheckLevel($userid,$username,$classid,"plf");
  330. $add['fname']=hRepPostStr($add['fname'],1);
  331. $add['fzs']=hRepPostStr($add['fzs'],1);
  332. $add['ftype']=hRepPostStr($add['ftype'],1);
  333. $add['flen']=hRepPostStr($add['flen'],1);
  334. //验证字段重复
  335. CheckRePlF($add,1);
  336. $cr=$empire->fetch1("select * from {$dbtbpre}enewsplf where fid='$fid'");
  337. //改变字段
  338. if($cr[f]<>$add[f]||$cr[ftype]<>$add[ftype]||$cr[flen]<>$add[flen])
  339. {
  340. $field=ReturnPlFtype($add);//字段类型
  341. $tbr=$empire->fetch1("select pldatatbs from {$dbtbpre}enewspl_set limit 1");
  342. if($tbr['pldatatbs'])
  343. {
  344. $dtbr=explode(',',$tbr['pldatatbs']);
  345. $count=count($dtbr);
  346. for($i=1;$i<$count-1;$i++)
  347. {
  348. $empire->query("alter table {$dbtbpre}enewspl_".$dtbr[$i]." change `".$cr[f]."` ".$field);
  349. }
  350. }
  351. }
  352. //处理变量
  353. $add[ismust]=(int)$add[ismust];
  354. $sql=$empire->query("update {$dbtbpre}enewsplf set f='$add[f]',fname='$add[fname]',fzs='".addslashes($add[fzs])."',ftype='$add[ftype]',flen='$add[flen]',ismust='$add[ismust]' where fid=$fid");
  355. UpdatePlF();//更新字段
  356. GetConfig();//更新缓存
  357. if($sql)
  358. {
  359. //操作日志
  360. insert_dolog("fid=".$fid."<br>f=".$add[f]);
  361. printerror("EditFSuccess","pl/ListPlF.php".hReturnEcmsHashStrHref2(1));
  362. }
  363. else
  364. {printerror("DbError","history.go(-1)");}
  365. }
  366. //删除评论字段
  367. function DelPlF($add,$userid,$username){
  368. global $empire,$dbtbpre;
  369. $fid=(int)$add['fid'];
  370. if(empty($fid))
  371. {
  372. printerror("EmptyFid","history.go(-1)");
  373. }
  374. //验证权限
  375. CheckLevel($userid,$username,$classid,"plf");
  376. $r=$empire->fetch1("select f from {$dbtbpre}enewsplf where fid=$fid");
  377. if(!$r[f])
  378. {
  379. printerror("EmptyFid","history.go(-1)");
  380. }
  381. if($r[f]=="saytext")
  382. {
  383. printerror("NotIsAdd","history.go(-1)");
  384. }
  385. //删除字段
  386. $tbr=$empire->fetch1("select pldatatbs from {$dbtbpre}enewspl_set limit 1");
  387. if($tbr['pldatatbs'])
  388. {
  389. $dtbr=explode(',',$tbr['pldatatbs']);
  390. $count=count($dtbr);
  391. for($i=1;$i<$count-1;$i++)
  392. {
  393. $empire->query("alter table {$dbtbpre}enewspl_".$dtbr[$i]." drop COLUMN `".$r[f]."`");
  394. }
  395. }
  396. $sql=$empire->query("delete from {$dbtbpre}enewsplf where fid=$fid");
  397. UpdatePlF();//更新字段
  398. GetConfig();//更新缓存
  399. if($sql)
  400. {
  401. //操作日志
  402. insert_dolog("fid=".$fid."<br>f=".$r[f]);
  403. printerror("DelFSuccess","pl/ListPlF.php".hReturnEcmsHashStrHref2(1));
  404. }
  405. else
  406. {printerror("DbError","history.go(-1)");}
  407. }
  408. //更新评论字段
  409. function UpdatePlF(){
  410. global $empire,$dbtbpre;
  411. $plf=',';
  412. $plmustf=',';
  413. $sql=$empire->query("select f,ismust from {$dbtbpre}enewsplf");
  414. while($r=$empire->fetch($sql))
  415. {
  416. $plf.=$r[f].',';
  417. if($r[ismust])
  418. {
  419. $plmustf.=$r[f].',';
  420. }
  421. }
  422. $empire->query("update {$dbtbpre}enewspl_set set plf='$plf',plmustf='$plmustf' limit 1");
  423. }
  424. //************************************ 评论分表管理 ************************************
  425. //增加评论分表
  426. function AddPlDataTable($add,$userid,$username){
  427. echo'This is the Free Version of EmpireCMS.';
  428. exit();
  429. }
  430. //默认评论存放表
  431. function DefPlDataTable($add,$userid,$username){
  432. echo'This is the Free Version of EmpireCMS.';
  433. exit();
  434. }
  435. //删除评论分表
  436. function DelPlDataTable($add,$userid,$username){
  437. echo'This is the Free Version of EmpireCMS.';
  438. exit();
  439. }
  440. ?>