ApiBase.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. using System;
  2. using System.Web;
  3. using Newtonsoft.Json;
  4. using System.Reflection;
  5. using System.Web.SessionState;
  6. using System.Runtime.Serialization;
  7. namespace LYFZ.WanYuKeFu
  8. {
  9. public struct AjaxResult
  10. {
  11. int _code;
  12. public int code
  13. {
  14. get { return _code; }
  15. }
  16. string _info;
  17. public string info
  18. {
  19. get { return _info; }
  20. }
  21. object _data;
  22. public object data
  23. {
  24. get { return _data; }
  25. }
  26. public AjaxResult(int code, string info, object data = null)
  27. {
  28. this._code = code;
  29. this._info = info;
  30. this._data = data;
  31. }
  32. public AjaxResult(EnumCode.AjaxResultCode ResultCode, string info, object data = null)
  33. {
  34. this._code = (int)ResultCode;
  35. this._info = info.Trim();
  36. this._data = data;
  37. }
  38. public AjaxResult(EnumCode.AjaxResultCode ResultCode, object data = null)
  39. {
  40. this._code = (int)ResultCode;
  41. this._info = ResultCode.ToString().Trim();
  42. this._data = data;
  43. }
  44. public AjaxResult(EnumCode.AjaxResultCode ResultCode, string msg)
  45. {
  46. this._code = (int)ResultCode;
  47. this._info = msg;
  48. this._data = new { };
  49. }
  50. }
  51. public class ApiBase : IHttpHandler, IRequiresSessionState
  52. {
  53. protected HttpContext context;
  54. protected HttpSessionState Session;
  55. /// <summary>
  56. /// 用户子类做初始化的中间操作
  57. /// </summary>
  58. /// <param name="context"></param>
  59. public virtual void Initialize(HttpContext context) {
  60. }
  61. public virtual void ProcessRequest(HttpContext context)
  62. {
  63. this.context = context;
  64. this.Session = context.Session;
  65. context.Response.ContentType = "application/json";
  66. // 设置允许跨域请求
  67. // context.Response.Headers.Add("Access-Control-Allow-Origin", "http://"+context.Request.Url.Host+":8080");
  68. // context.Response.Headers.Add("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS");
  69. // context.Response.Headers.Add("Access-Control-Allow-Headers", "Content-Type");
  70. // context.Response.Headers.Add("Access-Control-Allow-Credentials", "true");
  71. Type thisType = this.GetType();
  72. string[] PathInfos = context.Request.PathInfo.Split('/');
  73. MethodInfo methodInfo = thisType.GetMethod(PathInfos[1]);
  74. object[] parametersObj = new object[] { context };
  75. // string callback = context.Request.QueryString["callback"];
  76. try
  77. {
  78. Initialize(context);
  79. ajaxReturn((AjaxResult)methodInfo.Invoke(this, parametersObj));
  80. }
  81. catch (NullReferenceException)
  82. {
  83. ajaxReturn(new AjaxResult(404, "Operation Not Found"));
  84. }
  85. catch (Exception e)
  86. {
  87. ajaxReturn(new AjaxResult(404, e.Message));
  88. }
  89. }
  90. public void ajaxReturn(AjaxResult result, string callback = null)
  91. {
  92. string responseBody = JsonConvert.SerializeObject(result);
  93. //if (!String.IsNullOrEmpty(callback))
  94. //{
  95. // responseBody = callback + " ( " + responseBody + " ) ";
  96. //}
  97. context.Response.Write(responseBody);
  98. }
  99. /// <summary>
  100. /// 读取某个Session对象值
  101. /// </summary>
  102. /// <param name="strSessionName">Session对象名称</param>
  103. /// <returns>Session对象值</returns>
  104. public object GetObjectFormSession(string strSessionName)
  105. {
  106. return this.Session[strSessionName];
  107. }
  108. public bool IsReusable
  109. {
  110. get
  111. {
  112. return false;
  113. }
  114. }
  115. }
  116. public class EnumCode
  117. {
  118. public enum AjaxResultCode
  119. {
  120. 参数错误 = -777,
  121. 内容超长 = -7,
  122. 授权失败 = -1,
  123. 请求失败 = -999,
  124. 推送失败 = -900,
  125. 请求成功 = 200,
  126. 没有找到目标用户注册的APP设备 = -1000,
  127. }
  128. }
  129. }