SPageContext.kt 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /*
  2. * ********************************************************************************************************************
  3. *
  4. * iFHS7.
  5. * ;BBMBMBMc rZMBMBR BMB
  6. * MBEr:;PBM, 7MBMMEOBB: BBB RBW
  7. * XK: BO SB. :SZ MBM. c;; ir BBM :FFr :SSF: ;xBMB:r iuGXv. i:. iF2;
  8. * DBBM0r. :D S7 ;XMBMB GMBMu. MBM: BMB MBMBBBMBMS WMBMBMBBK MBMBMBM BMBRBMBW .MBMBMBMBB
  9. * :JMRMMD .. , 1MMRM1; ;MBMBBR: MBM ;MB: BMB: MBM. RMBr sBMH BM0 UMB, BMB. KMBv
  10. * ;. XOW B1; :uM: 1RE, i .2BMBs rMB. MBO MBO JMB; MBB MBM BBS 7MBMBOBM: MBW :BMc
  11. * OBRJ.SEE MRDOWOR, 3DE:7OBM . ;BMB RMR7BM BMB MBB. BMB ,BMR .BBZ MMB rMB, BMM rMB7
  12. * :FBRO0D0 RKXSXPR. JOKOOMPi BMBSSWBMB; BMBB: MBMB0ZMBMS .BMBOXRBMB MBMDE RBM2;SMBM; MBB xBM2
  13. * iZGE O0SHSPO. uGZ7. sBMBMBDL :BMO OZu:BMBK, rRBMB0; ,EBMB xBMBr:ER. RDU :OO;
  14. * ,BZ, 1D0 RPSFHXR. xWZ .SMr . .BBB
  15. * :0BMRDG RESSSKR. 2WOMBW; BMBMR
  16. * i0BM: SWKHKGO MBDv
  17. * .UB OOGDM. MK, Copyright (c) 2015-2019. 斯伯坦机器人
  18. * , XMW ..
  19. * r All rights reserved.
  20. *
  21. * ********************************************************************************************************************
  22. */
  23. package com.sybotan.service
  24. import org.slf4j.LoggerFactory
  25. import javax.servlet.http.Cookie
  26. import javax.servlet.http.HttpServletRequest
  27. import javax.servlet.http.HttpServletResponse
  28. import javax.servlet.http.HttpSession
  29. /**
  30. * 页面上下文
  31. *
  32. * @author 庞利祥 <sybotan@126.com>
  33. */
  34. object SPageContext {
  35. // 日志记录器
  36. private val logger = LoggerFactory.getLogger(SPageContext::class.java)
  37. // 客户端请求对象")
  38. private val request = ThreadLocal<HttpServletRequest>()
  39. // 服务器应答对象")
  40. private val response = ThreadLocal<HttpServletResponse>()
  41. var domain = "sybotan"
  42. /**
  43. * 获得客户端请求对象
  44. *
  45. * @return 返回客户端请求对象
  46. */
  47. fun getRequest(): HttpServletRequest {
  48. return request.get()
  49. } // Fun getRequest()
  50. /**
  51. * 设置客户端请求对象
  52. *
  53. * @param req 客户端请求对象
  54. */
  55. fun setRequest(req: HttpServletRequest) {
  56. request.set(req)
  57. return
  58. } // Fun setRequest()
  59. /**
  60. * 释放保存客户端请求对象的变量
  61. */
  62. fun removeRequest() {
  63. request.remove()
  64. return
  65. } // Fun removeRequest()
  66. /**
  67. * 获得服务器应答对象
  68. *
  69. * @return 服务器应答对象
  70. */
  71. fun getResponse(): HttpServletResponse {
  72. return response.get()
  73. } // Fun getRequest()
  74. /**
  75. * 设置服务器应答对象
  76. *
  77. * @param resp 服务器应答对象
  78. */
  79. fun setResponse(resp: HttpServletResponse) {
  80. response.set(resp)
  81. return
  82. } // Fun setRequest()
  83. /**
  84. * 释放保存服务器应答对象的变量
  85. */
  86. fun removeResponse() {
  87. response.remove()
  88. return
  89. } // Fun removeRequest()
  90. /**
  91. * 获得客户端会话对象
  92. *
  93. * @return 返回客户端会话对象
  94. */
  95. fun getSession(): HttpSession? {
  96. val req = request.get()
  97. return req?.session
  98. } // Fun getSession()
  99. /**
  100. * 获得保存在客户端会话中的指定属性
  101. *
  102. * @param name 属性名
  103. * @return 返回保存在客户端会话中的指定属性
  104. */
  105. fun getAttribute(name: String): Any? {
  106. val session = getSession()
  107. return session?.getAttribute(name)
  108. } // Fun getAttribute()
  109. /**
  110. * 设置保存在客户端会话中的指定属性
  111. *
  112. * @param name 属性名
  113. * @param object 值
  114. */
  115. fun setAttribute(name: String, `object`: Any) {
  116. val session = getSession()
  117. session?.setAttribute(name, `object`)
  118. return
  119. } // Fun setAttribute()
  120. /**
  121. * 移除保存在客户端会话中的指定属性
  122. *
  123. * @param name 属性名
  124. */
  125. fun removeAttribute(name: String) {
  126. val session = getSession()
  127. session?.removeAttribute(name)
  128. return
  129. } // Fun removeAttribute()
  130. /**
  131. * 移除保存在客户端会话中的所有属性
  132. */
  133. fun removeAllAttribute() {
  134. val session = getSession() ?: return
  135. val nameList = session.attributeNames
  136. while (nameList.hasMoreElements()) {
  137. val name = nameList.nextElement()
  138. session.removeAttribute(name)
  139. }
  140. return
  141. } // Fun removeAllAttribute()
  142. /**
  143. * 获得cookie
  144. *
  145. * @param name cookie名
  146. * @return cookie
  147. */
  148. fun getCookie(name: String): Cookie? {
  149. val request = getRequest()
  150. val cookieList = request.cookies
  151. if (null != cookieList) {
  152. for (cookie in cookieList) {
  153. if (name.compareTo(cookie.name) == 0) {
  154. return cookie
  155. }
  156. }
  157. }
  158. return null
  159. } // Fun getCookie()
  160. /**
  161. * 添加cookie
  162. *
  163. * @param name cookie名称
  164. * @param value cookie值
  165. */
  166. fun setCookie(name: String, value: String) {
  167. val response = getResponse()
  168. val cookie = Cookie(name, value)
  169. cookie.domain = domain
  170. cookie.path = "/"
  171. cookie.maxAge = 365 * 24 * 3600 // cookie最大生命周期1年
  172. response.addCookie(cookie)
  173. return
  174. } // Fun setCookie()
  175. /**
  176. * 删除cookie
  177. *
  178. * @param name cookie名称
  179. */
  180. fun removeCookie(name: String) {
  181. val response = getResponse()
  182. val cookie = Cookie(name, null)
  183. cookie.domain = domain
  184. cookie.path = "/"
  185. cookie.maxAge = 0
  186. response.addCookie(cookie)
  187. return
  188. } // Fun addCookie()
  189. /**
  190. * 获得请求头
  191. *
  192. * @param name 请求头名
  193. * @return 请求头内容
  194. */
  195. fun getHeader(name: String): String? {
  196. val request = getRequest()
  197. return request.getHeader(name)
  198. } // Fun getHeader()
  199. /**
  200. * 获得客户端的IP地址
  201. *
  202. * @return 客户端的IP地址
  203. */
  204. fun getRequestIp(): String {
  205. val request = getRequest()
  206. var ip: String? = request.getHeader("x-forwarded-for")
  207. if (null == ip || ip.isEmpty() || ip.equals("unknown", ignoreCase = true)) {
  208. ip = request.getHeader("Proxy-Client-IP")
  209. }
  210. if (null == ip || ip.isEmpty() || ip.equals("unknown", ignoreCase = true)) {
  211. ip = request.getHeader("WL-Proxy-Client-IP")
  212. }
  213. if (null == ip || ip.isEmpty() || ip.equals("unknown", ignoreCase = true)) {
  214. ip = request.getHeader("HTTP_CLIENT_IP")
  215. }
  216. if (null == ip || ip.isEmpty() || ip.equals("unknown", ignoreCase = true)) {
  217. ip = request.getHeader("HTTP_X_FORWARDED_FOR")
  218. }
  219. if (null == ip || ip.isEmpty() || ip.equals("unknown", ignoreCase = true)) {
  220. ip = request.remoteAddr
  221. if (ip!!.contains(":")) {
  222. ip = "127.0.0.1"
  223. }
  224. }
  225. return ip
  226. } // Fun getRequestIp()
  227. } // Object SPageContext