DoSql.php 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. //验证权限
  19. CheckLevel($logininid,$loginin,$classid,"execsql");
  20. //执行SQL语句
  21. function DoExecSql($add,$userid,$username){
  22. global $empire,$dbtbpre;
  23. $dosave=(int)$add['dosave'];
  24. $query=$add['query'];
  25. if(!$query)
  26. {
  27. printerror("EmptyDoSqlQuery","history.go(-1)");
  28. }
  29. if($dosave==1&&!$add['sqlname'])
  30. {
  31. printerror("EmptySqltext","history.go(-1)");
  32. }
  33. $query=ClearAddsData($query);
  34. //保存
  35. if($dosave==1)
  36. {
  37. $add['sqlname']=hRepPostStr($add['sqlname'],1);
  38. $isql=$empire->query("insert into {$dbtbpre}enewssql(sqlname,sqltext) values('".$add['sqlname']."','".addslashes($query)."');");
  39. }
  40. $query=RepSqlTbpre($query);
  41. DoRunQuery($query);
  42. //操作日志
  43. insert_dolog("query=".$query);
  44. printerror("DoExecSqlSuccess","DoSql.php".hReturnEcmsHashStrHref2(1));
  45. }
  46. //运行SQL
  47. function DoRunQuery($sql){
  48. global $empire;
  49. $sql=str_replace("\r","\n",$sql);
  50. $ret=array();
  51. $num=0;
  52. foreach(explode(";\n",trim($sql)) as $query)
  53. {
  54. $queries=explode("\n",trim($query));
  55. foreach($queries as $query)
  56. {
  57. $ret[$num].=$query[0]=='#'||$query[0].$query[1]=='--'?'':$query;
  58. }
  59. $num++;
  60. }
  61. unset($sql);
  62. foreach($ret as $query)
  63. {
  64. $query=trim($query);
  65. if($query)
  66. {
  67. $empire->query($query);
  68. }
  69. }
  70. }
  71. //增加SQL语句
  72. function AddSql($add,$userid,$username){
  73. global $empire,$dbtbpre;
  74. if(!$add['sqlname']||!$add['sqltext'])
  75. {
  76. printerror("EmptySqltext","history.go(-1)");
  77. }
  78. $add['sqlname']=hRepPostStr($add['sqlname'],1);
  79. $add[sqltext]=ClearAddsData($add[sqltext]);
  80. $sql=$empire->query("insert into {$dbtbpre}enewssql(sqlname,sqltext) values('".$add['sqlname']."','".addslashes($add[sqltext])."');");
  81. $lastid=$empire->lastid();
  82. if($sql)
  83. {
  84. //操作日志
  85. insert_dolog("id=".$lastid."<br>sqlname=".$add[sqlname]);
  86. printerror("AddSqlSuccess","AddSql.php?enews=AddSql".hReturnEcmsHashStrHref2(0));
  87. }
  88. else
  89. {
  90. printerror("DbError","history.go(-1)");
  91. }
  92. }
  93. //修改SQL语句
  94. function EditSql($add,$userid,$username){
  95. global $empire,$dbtbpre;
  96. $id=(int)$add[id];
  97. if(!$add['sqlname']||!$add['sqltext']||!$id)
  98. {
  99. printerror("EmptySqltext","history.go(-1)");
  100. }
  101. $add['sqlname']=hRepPostStr($add['sqlname'],1);
  102. $add[sqltext]=ClearAddsData($add[sqltext]);
  103. $sql=$empire->query("update {$dbtbpre}enewssql set sqlname='".$add['sqlname']."',sqltext='".addslashes($add[sqltext])."' where id='$id'");
  104. if($sql)
  105. {
  106. //操作日志
  107. insert_dolog("id=".$id."<br>sqlname=".$add[sqlname]);
  108. printerror("EditSqlSuccess","ListSql.php".hReturnEcmsHashStrHref2(1));
  109. }
  110. else
  111. {
  112. printerror("DbError","history.go(-1)");
  113. }
  114. }
  115. //删除SQL语句
  116. function DelSql($id,$userid,$username){
  117. global $empire,$dbtbpre;
  118. $id=(int)$id;
  119. if(!$id)
  120. {
  121. printerror("EmptySqlid","history.go(-1)");
  122. }
  123. $r=$empire->fetch1("select sqlname from {$dbtbpre}enewssql where id='$id'");
  124. $sql=$empire->query("delete from {$dbtbpre}enewssql where id='$id'");
  125. if($sql)
  126. {
  127. //操作日志
  128. insert_dolog("id=".$id."<br>sqlname=".$r[sqlname]);
  129. printerror("DelSqlSuccess","ListSql.php".hReturnEcmsHashStrHref2(1));
  130. }
  131. else
  132. {
  133. printerror("DbError","history.go(-1)");
  134. }
  135. }
  136. //运行SQL语句
  137. function ExecSql($id,$userid,$username){
  138. global $empire,$dbtbpre;
  139. $id=(int)$id;
  140. if(empty($id))
  141. {
  142. printerror('EmptyExecSqlid','');
  143. }
  144. $r=$empire->fetch1("select sqltext from {$dbtbpre}enewssql where id='$id'");
  145. if(!$r['sqltext'])
  146. {
  147. printerror('EmptyExecSqlid','');
  148. }
  149. $query=RepSqlTbpre($r['sqltext']);
  150. DoRunQuery($query);
  151. //操作日志
  152. insert_dolog("query=".$query);
  153. printerror("DoExecSqlSuccess","ListSql.php".hReturnEcmsHashStrHref2(1));
  154. }
  155. $enews=$_POST['enews'];
  156. if(empty($enews))
  157. {$enews=$_GET['enews'];}
  158. if($enews)
  159. {
  160. hCheckEcmsRHash();
  161. @set_time_limit(0);
  162. }
  163. //执行SQL语句
  164. if($enews=='DoExecSql')
  165. {
  166. DoExecSql($_POST,$logininid,$loginin);
  167. }
  168. elseif($enews=='AddSql')//增加
  169. {
  170. AddSql($_POST,$logininid,$loginin);
  171. }
  172. elseif($enews=='EditSql')//修改
  173. {
  174. EditSql($_POST,$logininid,$loginin);
  175. }
  176. elseif($enews=='DelSql')//删除
  177. {
  178. DelSql($_GET['id'],$logininid,$loginin);
  179. }
  180. elseif($enews=='ExecSql')//执行
  181. {
  182. ExecSql($_GET['id'],$logininid,$loginin);
  183. }
  184. $url="<a href=DoSql.php".$ecms_hashur['whehref'].">执行SQL语句</a>";
  185. db_close();
  186. $empire=null;
  187. ?>
  188. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  189. <html>
  190. <head>
  191. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  192. <title>执行SQL语句</title>
  193. <link href="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
  194. </head>
  195. <body>
  196. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
  197. <tr>
  198. <td height="25">位置:
  199. <?=$url?>
  200. </td>
  201. <td width="50%"><div align="right" class="emenubutton">
  202. <input type="button" name="Submit5" value="增加SQL语句" onclick="self.location.href='AddSql.php?enews=AddSql<?=$ecms_hashur['ehref']?>';">&nbsp;&nbsp;
  203. <input type="button" name="Submit4" value="管理SQL语句" onclick="self.location.href='ListSql.php<?=$ecms_hashur['whehref']?>';">
  204. </div></td>
  205. </tr>
  206. </table>
  207. <form action="DoSql.php" method="POST" name="sqlform" onsubmit="return confirm('确认要执行?');">
  208. <table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  209. <?=$ecms_hashur['form']?>
  210. <tr class="header">
  211. <td height="25"><div align="center">执行SQL语句</div></td>
  212. </tr>
  213. <tr>
  214. <td height="25" bgcolor="#FFFFFF"><div align="center">(多条语句请用&quot;回车&quot;格开,每条语句以&quot;;&quot;结束,数据表前缀可用:“[!db.pre!]&quot;表示)</div></td>
  215. </tr>
  216. <tr>
  217. <td height="25" bgcolor="#FFFFFF"><div align="center">
  218. <textarea name="query" cols="90" rows="12" id="query"></textarea>
  219. </div></td>
  220. </tr>
  221. <tr>
  222. <td height="25" bgcolor="#FFFFFF"><div align="center">
  223. <input type="submit" name="Submit" value=" 执行SQL">
  224. &nbsp;&nbsp;
  225. <input type="reset" name="Submit2" value="重置">
  226. <input name="enews" type="hidden" id="enews" value="DoExecSql" onclick="document.sqlform.dosave.value=0;">
  227. <input name="dosave" type="hidden" id="dosave" value="0">
  228. </div></td>
  229. </tr>
  230. <tr>
  231. <td height="25" bgcolor="#FFFFFF"><div align="center">SQL名称:
  232. <input name="sqlname" type="text" id="sqlname">
  233. <input type="submit" name="Submit3" value="执行SQL并保存" onclick="document.sqlform.dosave.value=1;">
  234. </div></td>
  235. </tr>
  236. <tr>
  237. <td height="25" bgcolor="#FFFFFF"><div align="center">此功能影响到整个系统的数据,请慎用.</div></td>
  238. </tr>
  239. </table>
  240. </form>
  241. </body>
  242. </html>