plfun.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. <?php
  2. //发表评论
  3. function AddPl($username,$password,$nomember,$key,$saytext,$id,$classid,$repid,$add){
  4. global $empire,$dbtbpre,$public_r,$class_r,$level_r;
  5. //验证本时间允许操作
  6. eCheckTimeCloseDo('pl');
  7. //验证IP
  8. eCheckAccessDoIp('pl');
  9. $id=(int)$id;
  10. $repid=(int)$repid;
  11. $classid=(int)$classid;
  12. //验证码
  13. $keyvname='checkplkey';
  14. if($public_r['plkey_ok'])
  15. {
  16. ecmsCheckShowKey($keyvname,$key,1);
  17. }
  18. $username=RepPostVar($username);
  19. $password=RepPostVar($password);
  20. $muserid=(int)getcvar('mluserid');
  21. $musername=RepPostVar(getcvar('mlusername'));
  22. $mgroupid=(int)getcvar('mlgroupid');
  23. $mrnd=RepPostVar(getcvar('mlrnd'));
  24. $ur=array();
  25. $cklgr=array();
  26. if($muserid)//已登陆
  27. {
  28. $cklgr=qCheckLoginAuthstr();
  29. if($cklgr['islogin'])
  30. {
  31. $ur=$empire->fetch1("select ".eReturnSelectMemberF('userid,checked,groupid,isern')." from ".eReturnMemberTable()." where ".egetmf('userid')."='$muserid' and ".egetmf('username')."='$musername' and ".egetmf('rnd')."='$mrnd' limit 1");
  32. if(empty($ur['userid']))
  33. {
  34. printerror("NotSingleLogin",'',1);
  35. }
  36. if($ur['checked']==0)
  37. {
  38. printerror("NotCheckedUser",'',1);
  39. }
  40. $username=$musername;
  41. $muserid=$ur['userid'];
  42. $mgroupid=$ur['groupid'];
  43. }
  44. else
  45. {
  46. $muserid=0;
  47. $mgroupid=0;
  48. }
  49. }
  50. else
  51. {
  52. if(empty($nomember))//非匿名
  53. {
  54. if(!$username||!$password)
  55. {
  56. printerror("FailPassword","history.go(-1)",1);
  57. }
  58. $ur=$empire->fetch1("select ".eReturnSelectMemberF('userid,salt,password,checked,groupid,isern')." from ".eReturnMemberTable()." where ".egetmf('username')."='$username' limit 1");
  59. if(empty($ur['userid']))
  60. {
  61. printerror("FailPassword","history.go(-1)",1);
  62. }
  63. if(!eDoCkMemberPw($password,$ur['password'],$ur['salt']))
  64. {
  65. printerror("FailPassword","history.go(-1)",1);
  66. }
  67. if($ur['checked']==0)
  68. {
  69. printerror("NotCheckedUser",'',1);
  70. }
  71. $muserid=$ur['userid'];
  72. $mgroupid=$ur['groupid'];
  73. }
  74. else
  75. {
  76. $muserid=0;
  77. $mgroupid=0;
  78. }
  79. }
  80. if($public_r['plgroupid'])
  81. {
  82. if(!$muserid)
  83. {
  84. printerror("GuestNotToPl","history.go(-1)",1);
  85. }
  86. if($level_r[$mgroupid][level]<$level_r[$public_r['plgroupid']][level])
  87. {
  88. printerror("NotLevelToPl","history.go(-1)",1);
  89. }
  90. }
  91. //实名验证
  92. eCheckHaveTruename('pl',$ur['userid'],$ur['username'],$ur['isern'],$ur['checked'],0);
  93. //专题
  94. $doaction=$add['doaction'];
  95. if($doaction=='dozt')
  96. {
  97. if(!trim($saytext)||!$classid)
  98. {
  99. printerror("EmptyPl","history.go(-1)",1);
  100. }
  101. //是否关闭评论
  102. $r=$empire->fetch1("select ztid,closepl,checkpl,restb from {$dbtbpre}enewszt where ztid='$classid'");
  103. if(!$r['ztid'])
  104. {
  105. printerror("ErrorUrl","history.go(-1)",1);
  106. }
  107. if($r['closepl'])
  108. {
  109. printerror("CloseClassPl","history.go(-1)",1);
  110. }
  111. //审核
  112. if($r['checkpl'])
  113. {$checked=1;}
  114. else
  115. {$checked=0;}
  116. $restb=$r['restb'];
  117. $pubid='-'.$classid;
  118. $id=0;
  119. $pagefunr=eReturnRewritePlUrl($classid,$id,'dozt',0,0,1);
  120. $returl=$pagefunr['pageurl'];
  121. }
  122. else//信息
  123. {
  124. if(!trim($saytext)||!$id||!$classid)
  125. {
  126. printerror("EmptyPl","history.go(-1)",1);
  127. }
  128. //表存在
  129. if(empty($class_r[$classid][tbname]))
  130. {
  131. printerror("ErrorUrl","history.go(-1)",1);
  132. }
  133. //是否关闭评论
  134. $r=$empire->fetch1("select classid,stb,restb from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' limit 1");
  135. if(!$r['classid']||$r['classid']!=$classid)
  136. {
  137. printerror("ErrorUrl","history.go(-1)",1);
  138. }
  139. if($class_r[$r[classid]][openpl])
  140. {
  141. printerror("CloseClassPl","history.go(-1)",1);
  142. }
  143. //单信息关闭评论
  144. $pubid=ReturnInfoPubid($classid,$id);
  145. $finfor=$empire->fetch1("select closepl from {$dbtbpre}ecms_".$class_r[$classid][tbname]."_data_".$r['stb']." where id='$id' limit 1");
  146. if($finfor['closepl'])
  147. {
  148. printerror("CloseInfoPl","history.go(-1)",1);
  149. }
  150. //审核
  151. if($class_r[$classid][checkpl])
  152. {$checked=1;}
  153. else
  154. {$checked=0;}
  155. $restb=$r['restb'];
  156. $pagefunr=eReturnRewritePlUrl($classid,$id,'doinfo',0,0,1);
  157. $returl=$pagefunr['pageurl'];
  158. }
  159. //设置参数
  160. $plsetr=$empire->fetch1("select pltime,plsize,plincludesize,plclosewords,plmustf,plf,plmaxfloor,plquotetemp from {$dbtbpre}enewspl_set limit 1");
  161. if(strlen($saytext)>$plsetr['plsize'])
  162. {
  163. $GLOBALS['setplsize']=$plsetr['plsize'];
  164. printerror("PlSizeTobig","history.go(-1)",1);
  165. }
  166. $time=time();
  167. $saytime=$time;
  168. $pltime=getcvar('lastpltime');
  169. if($pltime)
  170. {
  171. if($time-$pltime<$plsetr['pltime'])
  172. {
  173. $GLOBALS['setpltime']=$plsetr['pltime'];
  174. printerror("PlOutTime","history.go(-1)",1);
  175. }
  176. }
  177. $sayip=egetip();
  178. $eipport=egetipport();
  179. $username=str_replace("\r\n","",$username);
  180. $username=dgdb_tosave($username);
  181. $saytext=nl2br(RepFieldtextNbsp(RepPostStr($saytext)));
  182. if($repid)
  183. {
  184. $saytext=RepPlTextQuote($repid,$saytext,$plsetr,$restb);
  185. CkPlQuoteFloor($plsetr['plmaxfloor'],$saytext);//验证楼层
  186. }
  187. //过滤字符
  188. $saytext=ReplacePlWord($plsetr['plclosewords'],$saytext);
  189. if($level_r[$mgroupid]['plchecked'])
  190. {
  191. $checked=0;
  192. }
  193. $ret_r=ReturnPlAddF($add,$plsetr,0);
  194. //主表
  195. $sql=$empire->query("insert into {$dbtbpre}enewspl_".$restb."(pubid,username,sayip,saytime,id,classid,checked,zcnum,fdnum,userid,isgood,saytext,eipport".$ret_r['fields'].") values('$pubid','".$username."','$sayip','$saytime','$id','$classid','$checked',0,0,'$muserid',0,'".addslashes($saytext)."','$eipport'".$ret_r['values'].");");
  196. $plid=$empire->lastid();
  197. if($doaction!='dozt')
  198. {
  199. //信息表加1
  200. $usql=$empire->query("update {$dbtbpre}ecms_".$class_r[$classid][tbname]." set plnum=plnum+1 where id='$id' limit 1");
  201. }
  202. //更新新评论数
  203. DoUpdateAddDataNum('pl',$restb,1);
  204. //设置最后发表时间
  205. $set1=esetcookie("lastpltime",time(),time()+3600*24);
  206. ecmsEmptyShowKey($keyvname);//清空验证码
  207. if($sql)
  208. {
  209. $reurl=DoingReturnUrl($returl,$_POST['ecmsfrom']);
  210. printerror("AddPlSuccess",$reurl,1);
  211. }
  212. else
  213. {printerror("DbError","history.go(-1)",1);}
  214. }
  215. //替换回复
  216. function RepPlTextQuote($repid,$saytext,$pr,$restb){
  217. global $public_r,$empire,$dbtbpre,$fun_r;
  218. $quotetemp=stripSlashes($pr['plquotetemp']);
  219. $r=$empire->fetch1("select userid,username,saytime,saytext from {$dbtbpre}enewspl_".$restb." where plid='$repid'");
  220. if(empty($r['username']))
  221. {
  222. $r['username']=$fun_r['nomember'];
  223. }
  224. if($r['userid'])
  225. {
  226. $r['username']="<a href=\"$public_r[newsurl]e/space/?userid=$r[userid]\" target=\"_blank\">$r[username]</a>";
  227. }
  228. $quotetemp=str_replace('[!--plid--]',$repid,$quotetemp);
  229. $quotetemp=str_replace('[!--pltime--]',date('Y-m-d H:i:s',$r['saytime']),$quotetemp);
  230. $quotetemp=str_replace('[!--username--]',$r['username'],$quotetemp);
  231. $quotetemp=str_replace('[!--pltext--]',$r['saytext'],$quotetemp);
  232. $restr=$quotetemp.$saytext;
  233. return $restr;
  234. }
  235. //去掉原引用
  236. function RepYPlQuote($text){
  237. $preg_str="/<div (.+?)<\/div>/is";
  238. $text=preg_replace($preg_str,"",$text);
  239. return $text;
  240. }
  241. //验证引用楼数
  242. function CkPlQuoteFloor($plmaxfloor,$saytext){
  243. if(!$plmaxfloor)
  244. {
  245. return '';
  246. }
  247. $fr=explode('<div',$saytext);
  248. $fcount=count($fr)-1;
  249. if($fcount>$plmaxfloor)
  250. {
  251. printerror('PlOutMaxFloor','history.go(-1)',1);
  252. }
  253. }
  254. //禁用字符
  255. function ReplacePlWord($plclosewords,$text){
  256. global $empire,$dbtbpre;
  257. if(empty($text))
  258. {
  259. return $text;
  260. }
  261. toCheckCloseWord($text,$plclosewords,'HavePlCloseWords');
  262. return $text;
  263. }
  264. //返回字段
  265. function ReturnPlAddF($add,$pr,$ecms=0){
  266. global $empire,$dbtbpre;
  267. $fr=explode(',',$pr['plf']);
  268. $count=count($fr)-1;
  269. $ret_r['fields']='';
  270. $ret_r['values']='';
  271. for($i=1;$i<$count;$i++)
  272. {
  273. $f=$fr[$i];
  274. $fval=RepPostStr($add[$f]);
  275. //必填
  276. if(strstr($pr[plmustf],','.$f.','))
  277. {
  278. if(!trim($fval))
  279. {
  280. $chfr=$empire->fetch1("select fname from {$dbtbpre}enewsplf where f='$f' limit 1");
  281. $GLOBALS['msgmustf']=$chfr['fname'];
  282. printerror('EmptyPlMustF','',1);
  283. }
  284. }
  285. $fval=nl2br(RepFieldtextNbsp($fval));
  286. $ret_r['fields'].=",".$f;
  287. $ret_r['values'].=",'".addslashes($fval)."'";
  288. }
  289. return $ret_r;
  290. }
  291. //支持/反对评论
  292. function DoForPl($add){
  293. global $empire,$dbtbpre,$class_r;
  294. $classid=(int)$add['classid'];
  295. $id=(int)$add['id'];
  296. $plid=(int)$add['plid'];
  297. $dopl=(int)$add['dopl'];
  298. $doajax=(int)$add['doajax'];
  299. //专题
  300. $doaction=$add['doaction'];
  301. if($doaction=='dozt')
  302. {
  303. if(!$classid||!$plid)
  304. {
  305. $doajax==1?ajax_printerror('','','ErrorUrl',1):printerror('ErrorUrl','',1);
  306. }
  307. $infor=$empire->fetch1("select ztid,restb from {$dbtbpre}enewszt where ztid='$classid'");
  308. if(!$infor['ztid'])
  309. {
  310. $doajax==1?ajax_printerror('','','ErrorUrl',1):printerror('ErrorUrl','',1);
  311. }
  312. $pubid='-'.$classid;
  313. }
  314. else//信息
  315. {
  316. if(!$classid||!$id||!$plid||!$class_r[$classid][tbname])
  317. {
  318. $doajax==1?ajax_printerror('','','ErrorUrl',1):printerror('ErrorUrl','',1);
  319. }
  320. $infor=$empire->fetch1("select classid,restb from {$dbtbpre}ecms_".$class_r[$classid][tbname]." where id='$id' limit 1");
  321. if(!$infor['classid'])
  322. {
  323. $doajax==1?ajax_printerror('','','ErrorUrl',1):printerror('ErrorUrl','',1);
  324. }
  325. $pubid=ReturnInfoPubid($classid,$id);
  326. }
  327. //连续发表
  328. if(getcvar('lastforplid'.$plid))
  329. {
  330. $doajax==1?ajax_printerror('','','ReDoForPl',1):printerror('ReDoForPl','',1);
  331. }
  332. if($dopl==1)
  333. {
  334. $f='zcnum';
  335. $msg='DoForPlGSuccess';
  336. }
  337. else
  338. {
  339. $f='fdnum';
  340. $msg='DoForPlBSuccess';
  341. }
  342. $sql=$empire->query("update {$dbtbpre}enewspl_".$infor['restb']." set ".$f."=".$f."+1 where plid='$plid' and pubid='$pubid'");
  343. if($sql)
  344. {
  345. esetcookie('lastforplid'.$plid,$plid,time()+30*24*3600); //最后发布
  346. if($doajax==1)
  347. {
  348. $nr=$empire->fetch1("select ".$f." from {$dbtbpre}enewspl_".$infor['restb']." where plid='$plid' and pubid='$pubid'");
  349. ajax_printerror($nr[$f],RepPostVar($add['ajaxarea']),$msg,1);
  350. }
  351. else
  352. {
  353. printerror($msg,EcmsGetReturnUrl(),1);
  354. }
  355. }
  356. else
  357. {
  358. $doajax==1?ajax_printerror('','','DbError',1):printerror('DbError','',1);
  359. }
  360. }
  361. ?>