ListUserjs.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  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. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. //验证权限
  20. CheckLevel($logininid,$loginin,$classid,"userjs");
  21. //增加用户自定义js
  22. function AddUserjs($add,$userid,$username){
  23. global $empire,$dbtbpre;
  24. $cid=(int)$add['cid'];
  25. $jstempid=(int)$add['jstempid'];
  26. if(!$add[jsname]||!$jstempid||!$add[jssql]||!$add[jsfilename])
  27. {
  28. printerror("EmptyUserJsname","history.go(-1)");
  29. }
  30. $query_first=substr($add['jssql'],0,7);
  31. if(!($query_first=="select "||$query_first=="SELECT "))
  32. {
  33. printerror("JsSqlError","history.go(-1)");
  34. }
  35. //验证权限
  36. CheckLevel($userid,$username,$classid,"userjs");
  37. $add[jssql]=ClearAddsData($add[jssql]);
  38. $add[jsname]=hRepPostStr($add[jsname],1);
  39. $add['classid']=(int)$add['classid'];
  40. $add['jsfilename']=hRepPostStr($add['jsfilename'],1);
  41. $sql=$empire->query("insert into {$dbtbpre}enewsuserjs(jsname,jssql,jstempid,jsfilename,classid) values('$add[jsname]','".addslashes($add[jssql])."',$jstempid,'$add[jsfilename]','$add[classid]');");
  42. $jsid=$empire->lastid();
  43. //刷新js
  44. $add['jsid']=$jsid;
  45. ReUserjs($add,"../");
  46. if($sql)
  47. {
  48. //操作日志
  49. insert_dolog("jsid=$jsid&jsname=$add[jsname]");
  50. printerror("AddUserjsSuccess","AddUserjs.php?enews=AddUserjs&classid=$cid".hReturnEcmsHashStrHref2(0));
  51. }
  52. else
  53. {
  54. printerror("DbError","history.go(-1)");
  55. }
  56. }
  57. //修改用户自定义js
  58. function EditUserjs($add,$userid,$username){
  59. global $empire,$dbtbpre;
  60. $cid=(int)$add['cid'];
  61. $jsid=(int)$add['jsid'];
  62. $jstempid=(int)$add['jstempid'];
  63. if(!$jsid||!$add[jsname]||!$jstempid||!$add[jssql]||!$add[jsfilename])
  64. {
  65. printerror("EmptyUserJsname","history.go(-1)");
  66. }
  67. $query_first=substr($add['jssql'],0,7);
  68. if(!($query_first=="select "||$query_first=="SELECT "))
  69. {
  70. printerror("JsSqlError","history.go(-1)");
  71. }
  72. //验证权限
  73. CheckLevel($userid,$username,$classid,"userjs");
  74. //删除旧js文件
  75. if($add['oldjsfilename']<>$add['jsfilename'])
  76. {
  77. DelFiletext($add['oldjsfilename']);
  78. }
  79. $add[jssql]=ClearAddsData($add[jssql]);
  80. $add[jsname]=hRepPostStr($add[jsname],1);
  81. $add['classid']=(int)$add['classid'];
  82. $add['jsfilename']=hRepPostStr($add['jsfilename'],1);
  83. $sql=$empire->query("update {$dbtbpre}enewsuserjs set jsname='$add[jsname]',jssql='".addslashes($add[jssql])."',jstempid=$jstempid,jsfilename='$add[jsfilename]',classid='$add[classid]' where jsid='$jsid'");
  84. //刷新js
  85. $add['jsid']=$jsid;
  86. ReUserjs($add,"../");
  87. if($sql)
  88. {
  89. //操作日志
  90. insert_dolog("jsid=$jsid&jsname=$add[jsname]");
  91. printerror("EditUserjsSuccess","ListUserjs.php?classid=$cid".hReturnEcmsHashStrHref2(0));
  92. }
  93. else
  94. {
  95. printerror("DbError","history.go(-1)");
  96. }
  97. }
  98. //删除用户自定义js
  99. function DelUserjs($jsid,$userid,$username){
  100. global $empire,$dbtbpre;
  101. $cid=(int)$add['cid'];
  102. $jsid=(int)$jsid;
  103. if(!$jsid)
  104. {
  105. printerror("NotChangeUserjsid","history.go(-1)");
  106. }
  107. //验证权限
  108. CheckLevel($userid,$username,$classid,"userjs");
  109. $r=$empire->fetch1("select jsname,jsfilename from {$dbtbpre}enewsuserjs where jsid=$jsid");
  110. $sql=$empire->query("delete from {$dbtbpre}enewsuserjs where jsid=$jsid");
  111. //删除文件
  112. DelFiletext("../".$r['jsfilename']);
  113. //moreportdo
  114. $eautodofile=str_replace('../../','',$r['jsfilename']);
  115. if($eautodofile)
  116. {
  117. $eautodofname='delfile|'.$eautodofile.'||';
  118. eAutodo_AddDo('eDelFileUserjs',0,0,0,0,0,$eautodofname);
  119. }
  120. if($sql)
  121. {
  122. //操作日志
  123. insert_dolog("jsid=$jsid&jsname=$r[jsname]");
  124. printerror("DelUserjsSuccess","ListUserjs.php?classid=$cid".hReturnEcmsHashStrHref2(0));
  125. }
  126. else
  127. {
  128. printerror("DbError","history.go(-1)");
  129. }
  130. }
  131. //刷新自定义JS
  132. function DoReUserjs($add,$userid,$username){
  133. global $empire,$dbtbpre;
  134. //操作权限
  135. CheckLevel($userid,$username,$classid,"userjs");
  136. $jsid=$add['jsid'];
  137. $count=count($jsid);
  138. if(!$count)
  139. {
  140. printerror("EmptyReUserjsid","history.go(-1)");
  141. }
  142. for($i=0;$i<$count;$i++)
  143. {
  144. $jsid[$i]=(int)$jsid[$i];
  145. if(empty($jsid[$i]))
  146. {
  147. continue;
  148. }
  149. $ur=$empire->fetch1("select jsid,jsname,jssql,jstempid,jsfilename from {$dbtbpre}enewsuserjs where jsid='".$jsid[$i]."'");
  150. ReUserjs($ur,'../');
  151. }
  152. //操作日志
  153. insert_dolog("");
  154. printerror("DoReUserjsSuccess",EcmsGetReturnUrl());
  155. }
  156. $enews=$_POST['enews'];
  157. if(empty($enews))
  158. {$enews=$_GET['enews'];}
  159. if($enews)
  160. {
  161. hCheckEcmsRHash();
  162. require("../../data/dbcache/class.php");
  163. }
  164. if($enews=="AddUserjs")
  165. {
  166. AddUserjs($_POST,$logininid,$loginin);
  167. }
  168. elseif($enews=="EditUserjs")
  169. {
  170. EditUserjs($_POST,$logininid,$loginin);
  171. }
  172. elseif($enews=="DelUserjs")
  173. {
  174. $jsid=$_GET['jsid'];
  175. DelUserjs($jsid,$logininid,$loginin);
  176. }
  177. elseif($enews=="DoReUserjs")
  178. {
  179. DoReUserjs($_POST,$logininid,$loginin);
  180. }
  181. else
  182. {}
  183. $page=(int)$_GET['page'];
  184. $page=RepPIntvar($page);
  185. $start=0;
  186. $line=20;//每页显示条数
  187. $page_line=20;//每页显示链接数
  188. $offset=$page*$line;//总偏移量
  189. $search='';
  190. $search.=$ecms_hashur['ehref'];
  191. $query="select jsid,jsname,jsfilename from {$dbtbpre}enewsuserjs";
  192. $totalquery="select count(*) as total from {$dbtbpre}enewsuserjs";
  193. //类别
  194. $add="";
  195. $classid=(int)$_GET['classid'];
  196. if($classid)
  197. {
  198. $add=" where classid=$classid";
  199. $search.="&classid=$classid";
  200. }
  201. $query.=$add;
  202. $totalquery.=$add;
  203. $num=$empire->gettotal($totalquery);//取得总条数
  204. $query=$query." order by jsid desc limit $offset,$line";
  205. $sql=$empire->query($query);
  206. $returnpage=page2($num,$line,$page_line,$start,$page,$search);
  207. //分类
  208. $cstr="";
  209. $csql=$empire->query("select classid,classname from {$dbtbpre}enewsuserjsclass order by classid");
  210. while($cr=$empire->fetch($csql))
  211. {
  212. $select="";
  213. if($cr[classid]==$classid)
  214. {
  215. $select=" selected";
  216. }
  217. $cstr.="<option value='".$cr[classid]."'".$select.">".$cr[classname]."</option>";
  218. }
  219. ?>
  220. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  221. <html>
  222. <head>
  223. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  224. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  225. <title>管理用户自定义JS</title>
  226. <script>
  227. function CheckAll(form)
  228. {
  229. for (var i=0;i<form.elements.length;i++)
  230. {
  231. var e = form.elements[i];
  232. if (e.name != 'chkall')
  233. e.checked = form.chkall.checked;
  234. }
  235. }
  236. </script>
  237. </head>
  238. <body>
  239. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  240. <tr>
  241. <td width="50%" height="25">位置:<a href=ListUserjs.php<?=$ecms_hashur['whehref']?>>管理用户自定义JS</a></td>
  242. <td><div align="right" class="emenubutton">
  243. <input type="button" name="Submit" value="增加自定义JS" onclick="self.location.href='AddUserjs.php?enews=AddUserjs<?=$ecms_hashur['ehref']?>';">
  244. &nbsp;&nbsp;
  245. <input type="button" name="Submit5" value="管理自定义JS分类" onclick="self.location.href='UserjsClass.php<?=$ecms_hashur['whehref']?>';">
  246. </div></td>
  247. </tr>
  248. </table>
  249. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  250. <tr>
  251. <td> 选择类别:
  252. <select name="classid" id="classid" onchange=window.location='ListUserjs.php?<?=$ecms_hashur['ehref']?>&classid='+this.options[this.selectedIndex].value>
  253. <option value="0">显示所有类别</option>
  254. <?=$cstr?>
  255. </select>
  256. </td>
  257. </tr>
  258. </table>
  259. <br>
  260. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  261. <form name="form1" method="post" action="ListUserjs.php">
  262. <?=$ecms_hashur['form']?>
  263. <tr class="header">
  264. <td width="5%"><div align="center">
  265. <input type=checkbox name=chkall value=on onclick=CheckAll(this.form)>
  266. </div></td>
  267. <td width="9%" height="25"> <div align="center">ID</div></td>
  268. <td width="32%" height="25"> <div align="center">JS名称</div></td>
  269. <td width="26%" height="25"> <div align="center">JS地址</div></td>
  270. <td width="10%"><div align="center">预览</div></td>
  271. <td width="18%" height="25"> <div align="center">操作</div></td>
  272. </tr>
  273. <?
  274. while($r=$empire->fetch($sql))
  275. {
  276. $jspath=$public_r['newsurl'].str_replace("../../","",$r['jsfilename']);
  277. ?>
  278. <tr bgcolor="#FFFFFF" onmouseout="this.style.backgroundColor='#ffffff'" onmouseover="this.style.backgroundColor='#C3EFFF'">
  279. <td><div align="center">
  280. <input name="jsid[]" type="checkbox" id="jsid[]" value="<?=$r[jsid]?>">
  281. </div></td>
  282. <td height="25"> <div align="center">
  283. <?=$r[jsid]?>
  284. </div></td>
  285. <td height="25"> <div align="center">
  286. <?=$r[jsname]?>
  287. </div></td>
  288. <td height="25"> <div align="center">
  289. <input name="jspath" type="text" id="jspath" value="<?=$jspath?>">
  290. </div></td>
  291. <td><div align="center">[<a href="../view/js.php?js=<?=$jspath?>&classid=1<?=$ecms_hashur['ehref']?>" target="_blank">预览</a>]</div></td>
  292. <td height="25"> <div align="center">[<a href="AddUserjs.php?enews=EditUserjs&jsid=<?=$r[jsid]?>&cid=<?=$classid?><?=$ecms_hashur['ehref']?>">修改</a>]&nbsp;[<a href="AddUserjs.php?enews=AddUserjs&docopy=1&jsid=<?=$r[jsid]?>&cid=<?=$classid?><?=$ecms_hashur['ehref']?>">复制</a>]&nbsp;[<a href="ListUserjs.php?enews=DelUserjs&jsid=<?=$r[jsid]?>&cid=<?=$classid?><?=$ecms_hashur['href']?>" onclick="return confirm('确认要删除?');">删除</a>]</div></td>
  293. </tr>
  294. <?
  295. }
  296. ?>
  297. <tr bgcolor="#FFFFFF">
  298. <td height="25" colspan="6">
  299. <?=$returnpage?>
  300. &nbsp;&nbsp;&nbsp; <input type="submit" name="Submit3" value="刷新"> <input name="enews" type="hidden" id="enews" value="DoReUserjs">
  301. </td>
  302. </tr>
  303. <tr bgcolor="#FFFFFF">
  304. <td height="25" colspan="6">JS调用方法:
  305. <input name="textfield" type="text" size="60" value="&lt;script src=&quot;JS地址&quot;&gt;&lt;/script&gt;"></td>
  306. </tr>
  307. </form>
  308. </table>
  309. </body>
  310. </html>
  311. <?
  312. db_close();
  313. $empire=null;
  314. ?>