PushToSp.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. require "../".LoadLang("pub/fun.php");
  7. require("../../data/dbcache/class.php");
  8. $link=db_connect();
  9. $empire=new mysqlquery();
  10. $editor=1;
  11. //验证用户
  12. $lur=is_login();
  13. $logininid=$lur['userid'];
  14. $loginin=$lur['username'];
  15. $loginrnd=$lur['rnd'];
  16. $loginlevel=$lur['groupid'];
  17. $loginadminstyleid=$lur['adminstyleid'];
  18. //ehash
  19. $ecms_hashur=hReturnEcmsHashStrAll();
  20. //推送信息
  21. function PushInfoToSp($add,$userid,$username){
  22. global $empire,$dbtbpre,$lur,$class_r;
  23. $classid=(int)$add['classid'];
  24. $tid=(int)$add['tid'];
  25. $spid=$add['spid'];
  26. $spcount=count($spid);
  27. $id=explode(',',$add[ids]);
  28. $count=count($id);
  29. if(!$count)
  30. {
  31. printerror('NotChangeSpInfo','');
  32. }
  33. if(!$spcount)
  34. {
  35. printerror('NotChangeSp','');
  36. }
  37. //表名
  38. $tbname='';
  39. if($classid)
  40. {
  41. $tbname=$class_r[$classid]['tbname'];
  42. }
  43. elseif($tid)
  44. {
  45. $tbr=$empire->fetch1("select tbname from {$dbtbpre}enewstable where tid='$tid'");
  46. $tbname=$tbr['tbname'];
  47. }
  48. if(!$tbname)
  49. {
  50. printerror('ErrorUrl','');
  51. }
  52. //碎片
  53. $sps='';
  54. $dh='';
  55. for($spi=0;$spi<$spcount;$spi++)
  56. {
  57. $myspid=intval($spid[$spi]);
  58. if(!$myspid)
  59. {
  60. continue;
  61. }
  62. $spr=$empire->fetch1("select spid,sptype,maxnum,groupid,userclass,username,isclose,cladd from {$dbtbpre}enewssp where spid='$myspid'");
  63. if(empty($spr[spid]))
  64. {
  65. continue;
  66. }
  67. if($spr[isclose])
  68. {
  69. continue;
  70. }
  71. if($spr[sptype]!=2)
  72. {
  73. continue;
  74. }
  75. if($spr[cladd]&&!CheckDoLevel($lur,$spr[groupid],$spr[userclass],$spr[username],1))
  76. {
  77. continue;
  78. }
  79. for($i=0;$i<$count;$i++)
  80. {
  81. $myid=intval($id[$i]);
  82. $infor=$empire->fetch1("select classid,newstime from {$dbtbpre}ecms_".$tbname."_index where id='$myid'");
  83. $rer=$empire->fetch1("select sid from {$dbtbpre}enewssp_2 where spid='$myspid' and id='$myid' and classid='$infor[classid]' limit 1");
  84. if($rer['sid'])
  85. {
  86. $empire->query("update {$dbtbpre}enewssp_2 set newstime='$infor[newstime]' where sid='".$rer['sid']."'");
  87. }
  88. else
  89. {
  90. $empire->query("insert into {$dbtbpre}enewssp_2(spid,classid,id,newstime) values('$myspid','$infor[classid]','$myid','$infor[newstime]');");
  91. }
  92. }
  93. $sps.=$dh.$myspid;
  94. $dh=',';
  95. //删除多余碎片信息
  96. DelMoreSpInfo($myspid,$spr);
  97. }
  98. //操作日志
  99. insert_dolog("classid=$classid&tid=$tid<br>spid=".$sps."<br>id=".$add[ids]);
  100. echo"<script>alert('推送成功');window.close();</script>";
  101. exit();
  102. }
  103. //删除多余碎片信息
  104. function DelMoreSpInfo($spid,$spr){
  105. global $empire,$dbtbpre;
  106. if(!$spr[maxnum]||$spr[sptype]==3)
  107. {
  108. return '';
  109. }
  110. if($spr[sptype]==1)
  111. {
  112. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewssp_1 where spid='$spid'");
  113. if($num>$spr[maxnum])
  114. {
  115. $limitnum=$num-$spr[maxnum];
  116. $ids='';
  117. $dh='';
  118. $sql=$empire->query("select sid from {$dbtbpre}enewssp_1 where spid='$spid' order by sid limit ".$limitnum);
  119. while($r=$empire->fetch($sql))
  120. {
  121. $ids.=$dh.$r['sid'];
  122. $dh=',';
  123. }
  124. $empire->query("delete from {$dbtbpre}enewssp_1 where sid in ($ids)");
  125. }
  126. }
  127. elseif($spr[sptype]==2)
  128. {
  129. $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewssp_2 where spid='$spid'");
  130. if($num>$spr[maxnum])
  131. {
  132. $limitnum=$num-$spr[maxnum];
  133. $ids='';
  134. $dh='';
  135. $sql=$empire->query("select sid from {$dbtbpre}enewssp_2 where spid='$spid' order by sid limit ".$limitnum);
  136. while($r=$empire->fetch($sql))
  137. {
  138. $ids.=$dh.$r['sid'];
  139. $dh=',';
  140. }
  141. $empire->query("delete from {$dbtbpre}enewssp_2 where sid in ($ids)");
  142. }
  143. }
  144. }
  145. $enews=$_POST['enews'];
  146. if(empty($enews))
  147. {$enews=$_GET['enews'];}
  148. if($enews)
  149. {
  150. hCheckEcmsRHash();
  151. }
  152. if($enews=='PushInfoToSp')//增加碎片
  153. {
  154. PushInfoToSp($_POST,$logininid,$loginin);
  155. }
  156. //审核表
  157. $addecmscheck='';
  158. $ecmscheck=(int)$_GET['ecmscheck'];
  159. $indexchecked=1;
  160. if($ecmscheck)
  161. {
  162. $addecmscheck='&ecmscheck='.$ecmscheck;
  163. $indexchecked=0;
  164. }
  165. $add='';
  166. //分类
  167. $cid=(int)$_GET['cid'];
  168. if($cid)
  169. {
  170. $add.=" and cid='$cid'";
  171. }
  172. //栏目
  173. $classid=(int)$_GET['classid'];
  174. if($classid)
  175. {
  176. $classwhere=ReturnClass($class_r[$classid][featherclass]);
  177. $add.=" and (classid=0 or classid='$classid' or (".$classwhere."))";
  178. }
  179. //表ID
  180. $tid=(int)$_GET['tid'];
  181. //ID
  182. $ids=RepPostStr($_GET['id'],1);
  183. if(!$ids)
  184. {
  185. echo"<script>alert('请选择信息');window.close();</script>";
  186. exit();
  187. }
  188. $query="select spid,spname,varname,sppic,spsay from {$dbtbpre}enewssp where sptype=2 and isclose=0 and (cladd=0 or (cladd=1 and (groupid like '%,".$lur[groupid].",%' or userclass like '%,".$lur[classid].",%' or username like '%,".$lur[username].",%')))".$add." order by spid desc";
  189. $sql=$empire->query($query);
  190. //分类
  191. $scstr="";
  192. $scsql=$empire->query("select classid,classname from {$dbtbpre}enewsspclass order by classid");
  193. while($scr=$empire->fetch($scsql))
  194. {
  195. $select="";
  196. if($scr[classid]==$cid)
  197. {
  198. $select=" selected";
  199. }
  200. $scstr.="<option value='".$scr[classid]."'".$select.">".$scr[classname]."</option>";
  201. }
  202. ?>
  203. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  204. <html>
  205. <head>
  206. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  207. <title>推送信息到碎片</title>
  208. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  209. </head>
  210. <body>
  211. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  212. <tr>
  213. <td>位置: 推送信息到碎片
  214. <div align="right"> </div></td>
  215. </tr>
  216. </table>
  217. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  218. <form name="searchform" method="GET" action="PushToSp.php<?=$ecms_hashur['whehref']?>">
  219. <tr>
  220. <td> 选择分类:
  221. <select name="select" id="select" onchange=window.location='PushToSp.php?<?=$ecms_hashur['ehref']?>&classid=<?=$classid?>&tid=<?=$tid?>&id=<?=$ids?>&cid='+this.options[this.selectedIndex].value>
  222. <option value="0">所有分类</option>
  223. <?=$scstr?>
  224. </select></td>
  225. </tr>
  226. </form>
  227. </table>
  228. <form name="form1" method="post" action="PushToSp.php">
  229. <table width="100%" border="0" cellspacing="1" cellpadding="3">
  230. <?=$ecms_hashur['form']?>
  231. <tr>
  232. <td>推送信息ID:<?=$ids?></td>
  233. </tr>
  234. </table>
  235. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  236. <tr class="header">
  237. <td width="26%"><div align="center">选择</div></td>
  238. <td width="74%" height="25"> <div align="center">碎片名称</div></td>
  239. </tr>
  240. <?
  241. while($r=$empire->fetch($sql))
  242. {
  243. if($r[sptype]==1)
  244. {
  245. $sptype='静态信息';
  246. }
  247. elseif($r[sptype]==2)
  248. {
  249. $sptype='动态信息';
  250. }
  251. else
  252. {
  253. $sptype='代码碎片';
  254. }
  255. $sppic='';
  256. if($r[sppic])
  257. {
  258. $sppic='<a href="'.$r[sppic].'" title="碎片效果图" target="_blank"><img src="../../data/images/showimg.gif" border=0></a>';
  259. }
  260. ?>
  261. <tr bgcolor="#FFFFFF" id="chsp<?=$r[spid]?>">
  262. <td><div align="center">
  263. <input name="spid[]" type="checkbox" id="spid[]" value="<?=$r[spid]?>" onClick="if(this.checked){chsp<?=$r[spid]?>.style.backgroundColor='#DBEAF5';}else{chsp<?=$r[spid]?>.style.backgroundColor='#ffffff';}">
  264. </div></td>
  265. <td height="25">
  266. <?=$sppic?>
  267. <a title="<?=$r[spsay]?>">
  268. <?=$r[spname]?>
  269. </a> </td>
  270. </tr>
  271. <?
  272. }
  273. ?>
  274. <tr bgcolor="#FFFFFF">
  275. <td height="25" colspan="2"><div align="center">
  276. <input type="submit" name="Submit2" value="确定推送">
  277. &nbsp;&nbsp;<input type="button" name="Submit3" value="取消" onclick="window.close();">
  278. <input name="enews" type="hidden" id="enews" value="PushInfoToSp">
  279. <input name="classid" type="hidden" id="classid" value="<?=$classid?>">
  280. <input name="tid" type="hidden" id="tid" value="<?=$tid?>">
  281. <input name="ids" type="hidden" id="ids" value="<?=$ids?>">
  282. <input name="ecmscheck" type="hidden" id="ecmscheck" value="<?=$ecmscheck?>">
  283. </div></td>
  284. </tr>
  285. </table>
  286. </form>
  287. </body>
  288. </html>
  289. <?
  290. db_close();
  291. $empire=null;
  292. ?>