LayerSynchro.asmx.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Services;
  6. using Utility.Utils.DbUtils;
  7. using Utility.Utils.ConvertUtils;
  8. using System.Data;
  9. using System.IO;
  10. using Utility.Utils.OfficeUtils;
  11. using Utility.Utils.FileUtils;
  12. using System.Xml;
  13. using System.Text.RegularExpressions;
  14. namespace LayerWebservice
  15. {
  16. /// <summary>
  17. /// LayerSynchro 的摘要说明
  18. /// </summary>
  19. [WebService(Namespace = "http://tempuri.org/")]
  20. [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
  21. [System.ComponentModel.ToolboxItem(false)]
  22. // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消注释以下行。
  23. // [System.Web.Script.Services.ScriptService]
  24. public class LayerSynchro : System.Web.Services.WebService
  25. {
  26. // [WebMethod]
  27. // public string getDelLayer()
  28. // {
  29. // string resultStr = "{\"error\":\"true\"}";
  30. // DataConvertor dc = new DataConvertor();
  31. // string connstr = System.Configuration.ConfigurationManager.AppSettings["connstr"].ToString();
  32. // string shapeOwner = System.Configuration.ConfigurationManager.AppSettings["shapeOwner"].ToString();
  33. // string LogicOwner = System.Configuration.ConfigurationManager.AppSettings["LogicOwner"].ToString();
  34. // string dbtype = System.Configuration.ConfigurationManager.AppSettings["database"].ToString();
  35. // string f_table_schema = System.Configuration.ConfigurationManager.AppSettings["f_table_schema"].ToString();
  36. // DbOperator dbOpe = new DbOperator(connstr, dbtype);
  37. // if (!dbOpe.Connect())
  38. // {
  39. // return resultStr;
  40. // }
  41. // string sql = "SELECT a.[f_table_name] as 图层名称 FROM [" + shapeOwner + "].[sde].[SDE_geometry_columns] a,[" + shapeOwner + "].[sde].[SDE_layers] b where a.f_table_name = b.table_name and a.geometry_type in (1,9,11) and a.f_table_schema='" + f_table_schema + "' and b.layer_config<>'DATA_DICTIONARY' order by geometry_type";
  42. // DataTable dt_sde = dbOpe.Select(sql);
  43. // if (dt_sde == null )
  44. // {
  45. // return resultStr;
  46. // }
  47. // sql = "SELECT [LAYER_ID] ,[LAYER_NAME] as 图层名称 FROM [" + LogicOwner + "].[GS_LOGIC].[T_LAYERS]";
  48. // DataTable dt_logic = dbOpe.Select(sql);
  49. // if (dt_logic == null )
  50. // {
  51. // return resultStr;
  52. // }
  53. // for (int j = dt_logic.Rows.Count - 1; j >= 0; j--)
  54. // {
  55. // bool f = true;
  56. // for (int i = 0; i < dt_sde.Rows.Count; i++)
  57. // {
  58. // if (dt_sde.Rows[i]["图层名称"].ToString() == dt_logic.Rows[j]["图层名称"].ToString())
  59. // {
  60. // f = false;
  61. // break;
  62. // }
  63. // }
  64. // if (!f)
  65. // {
  66. // dt_logic.Rows.RemoveAt(j);
  67. // }
  68. // }
  69. // dbOpe.Close();
  70. // return dc.DataTable2JSON(dt_logic).ToString();
  71. // }
  72. public bool IsNumAndEn(string input)
  73. {
  74. string pattern = @"^[A-Za-z0-9]+$";
  75. Regex regex = new Regex(pattern);
  76. return regex.IsMatch(input);
  77. }
  78. public bool IsNumAndEnAndCh(string input)
  79. {
  80. string pattern = @"^[A-Za-z0-9\u4e00-\u9fa5]+$";
  81. Regex regex = new Regex(pattern);
  82. return regex.IsMatch(input);
  83. }
  84. private const string StrRegex = @"-|;|,|/|(|)|[|]|}|{|%|@|*|!|'";
  85. private const string StrKeyWord = @"select|insert|delete|from|count(|drop table|update|truncate|asc(|mid(|char(|xp_cmdshell|exec master|netlocalgroup administrators|:|net user|""|or|and";
  86. /// <summary>
  87. /// 检查_sword是否包涵SQL关键字
  88. /// </summary>
  89. /// <param name="_sWord">需要检查的字符串</param>
  90. /// <returns>存在SQL注入关键字时返回 true,否则返回 false</returns>
  91. public bool CheckKeyWord(string _sWord)
  92. {
  93. bool result = false;
  94. //模式1 : 对应Sql注入的可能关键字
  95. string[] patten1 = StrKeyWord.Split('|');
  96. //模式2 : 对应Sql注入的可能特殊符号
  97. string[] patten2 = StrRegex.Split('|');
  98. //开始检查 模式1:Sql注入的可能关键字 的注入情况
  99. foreach (string sqlKey in patten1)
  100. {
  101. if (_sWord.IndexOf(" " + sqlKey) >= 0 || _sWord.IndexOf(sqlKey + " ") >= 0)
  102. {
  103. //只要存在一个可能出现Sql注入的参数,则直接退出
  104. result = true;
  105. break;
  106. }
  107. }
  108. //开始检查 模式1:Sql注入的可能特殊符号 的注入情况
  109. foreach (string sqlKey in patten2)
  110. {
  111. if (_sWord.IndexOf(sqlKey) >= 0)
  112. {
  113. //只要存在一个可能出现Sql注入的参数,则直接退出
  114. result = true;
  115. break;
  116. }
  117. }
  118. return result;
  119. }
  120. public string getLayerAuthor(string dep)
  121. {
  122. string lays = "";
  123. string connstr = System.Configuration.ConfigurationManager.AppSettings["connstr"].ToString();
  124. string LogicOwner = System.Configuration.ConfigurationManager.AppSettings["LogicOwner"].ToString();
  125. string dbtype = System.Configuration.ConfigurationManager.AppSettings["database"].ToString();
  126. DbOperator dbOpe = new DbOperator(connstr, dbtype);
  127. if (!dbOpe.Connect())
  128. {
  129. return "";
  130. }
  131. string sql = "select a.LAYER_NAME as 图层名称,a.LAYER_ID from [" + LogicOwner + "].[t_layers] a where a.DEPARTMENT ='" + dep + "' union " +
  132. "select b.LAYER_NAME as 图层名称,b.LAYER_ID from [" + LogicOwner + "].[t_layers] b where b.LEVEL_ID = 1 and b.DEPARTMENT !='" + dep + "' union " +
  133. "select f.LAYER_NAME as 图层名称,f.LAYER_ID from [" + LogicOwner + "].[t_layers] f,[" + LogicOwner + "].[t_resource_authorized] t " +
  134. "where f.LAYER_ID = t.RELATED_ID and t.APPLY_DEPARTMENT ='" + dep + "' and t.authorized_type_id = '2' " +
  135. "and t.AUTHORIZED_STATUS = '1' and f.LEVEL_ID = 2 and f.DEPARTMENT !='" + dep + "'";
  136. DataTable dt_logic = dbOpe.Select(sql);
  137. if (dt_logic != null || dt_logic.Rows.Count > 0)
  138. {
  139. for (int j = 0; j < dt_logic.Rows.Count; j++)
  140. {
  141. lays += dt_logic.Rows[j]["图层名称"].ToString() + ",";
  142. }
  143. lays = lays.Substring(0, lays.Length - 1);
  144. }
  145. dbOpe.Close();
  146. return lays;
  147. }
  148. [WebMethod]
  149. public string getMapAuthor(string serviceName,string dep,string username="",string userdep="")
  150. {
  151. if(!IsNumAndEn(serviceName) ||!IsNumAndEnAndCh(dep)||!IsNumAndEnAndCh(username)||!IsNumAndEnAndCh(userdep))
  152. {
  153. return "{\"success\":\"false\",\"Message\":\"参数不正确\"}";
  154. }
  155. string relatetab = "";
  156. string relateLay = "";
  157. string sqlays = "";
  158. string result = "";
  159. string connstr = System.Configuration.ConfigurationManager.AppSettings["connstr"].ToString();
  160. string LogicOwner = System.Configuration.ConfigurationManager.AppSettings["LogicOwner"].ToString();
  161. string dbtype = System.Configuration.ConfigurationManager.AppSettings["database"].ToString();
  162. DbOperator dbOpe = new DbOperator(connstr, dbtype);
  163. string insSQL = "";
  164. string service_id = "";
  165. string resultStr = "";
  166. if (!dbOpe.Connect())
  167. {
  168. return "{\"success\":\"false\",\"Message\":\"数据库连接失败\"}";
  169. }
  170. string sql = "SELECT [NAME],[SERVICE_URL],[RELATE_LAYERS],[RELATE_TABLES],[SERVICE_ID] FROM [" +
  171. LogicOwner + "].[T_SERVICE] where [TYPE_ID] = 2 and [NAME] = '" + serviceName +
  172. "' and DEPARTMENT = '" + dep + "'";
  173. DataTable dt_logic = dbOpe.Select(sql);
  174. if (dt_logic != null && dt_logic.Rows.Count ==1)
  175. {
  176. relatetab = dt_logic.Rows[0]["RELATE_TABLES"].ToString();
  177. relateLay = dt_logic.Rows[0]["RELATE_LAYERS"].ToString();
  178. service_id = dt_logic.Rows[0]["SERVICE_ID"].ToString();
  179. sqlays = getLayerAuthor(dep);
  180. if (sqlays.Length > 0)
  181. {
  182. insSQL += "INSERT INTO [GS_LOGIC].[T_AUDIT]([AUDIT_TYPE],[RELATE_NAME],[VISIT_DATE],[DEPARTMENT],[USERNAME]) VALUES(1,'"
  183. + serviceName + "',getdate(),'" + userdep + "','" + username + "');";
  184. string[] arrSq = sqlays.Split(',');
  185. string[] arrRelateTab = relatetab.Split(',');
  186. string[] arrRelateLay = relateLay.Split(',');
  187. if (arrRelateTab.Length != arrRelateLay.Length)
  188. {
  189. resultStr = "{\"success\":\"false\",\"Message\":\"数据不匹配,建议重新发布服务\"}";
  190. }
  191. else
  192. {
  193. for (int i = 0; i < arrRelateTab.Length; i++)
  194. {
  195. string r = arrRelateTab[i];
  196. foreach (string s in arrSq)
  197. {
  198. if (r == s)
  199. {
  200. insSQL += "INSERT INTO [GS_LOGIC].[T_AUDIT]([AUDIT_TYPE],[RELATE_NAME],[VISIT_DATE],[DEPARTMENT],[USERNAME]) VALUES(2,'"
  201. + r + "',getdate(),'" + userdep + "','" + username + "');";
  202. result += arrRelateLay[i] + ",";
  203. break;
  204. }
  205. }
  206. }
  207. if (result.Length > 0)
  208. {
  209. result = result.Substring(0, result.Length - 1);
  210. dbOpe.Update(insSQL.Substring(0, insSQL.Length - 1), ";");
  211. }
  212. resultStr = "{\"success\":\"true\",\"Message\":\"" + result + "\"}";
  213. }
  214. }
  215. else
  216. {
  217. resultStr = "{\"success\":\"true\",\"Message\":\"\"}";
  218. }
  219. }
  220. else
  221. {
  222. resultStr = "{\"success\":\"false\",\"Message\":\"未获取该服务的授权\"}";
  223. }
  224. dbOpe.Close();
  225. return resultStr;
  226. }
  227. }
  228. }