helpers.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. package helpers
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "log"
  7. "net/http"
  8. "os"
  9. "regexp"
  10. "runtime"
  11. "strconv"
  12. "strings"
  13. "time"
  14. "github.com/vladimirok5959/golang-server-sessions/session"
  15. )
  16. // func ClientIP(r *http.Request) string
  17. // func ClientIPs(r *http.Request) []string
  18. // func HandleAppStatus() http.Handler
  19. // func HandleFile(data, contentType string) http.Handler
  20. // func HandleImageJpeg(data string) http.Handler
  21. // func HandleImagePng(data string) http.Handler
  22. // func HandleTextCss(data string) http.Handler
  23. // func HandleTextJavaScript(data string) http.Handler
  24. // func HandleTextPlain(data string) http.Handler
  25. // func HandleTextXml(data string) http.Handler
  26. // func MinifyHtmlCode(str string) string
  27. // func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error)
  28. // func RespondAsMethodNotAllowed(w http.ResponseWriter, r *http.Request)
  29. // func SessionStart(w http.ResponseWriter, r *http.Request) (*session.Session, error)
  30. // func SetLanguageCookie(w http.ResponseWriter, r *http.Request) error
  31. var mHtml = regexp.MustCompile(`>[\n\t\r]+<`)
  32. var mHtmlLeft = regexp.MustCompile(`>[\n\t\r]+`)
  33. var mHtmlRight = regexp.MustCompile(`[\n\t\r]+<`)
  34. func ClientIP(r *http.Request) string {
  35. ips := ClientIPs(r)
  36. if len(ips) >= 1 {
  37. return ips[0]
  38. }
  39. return ""
  40. }
  41. func ClientIPs(r *http.Request) []string {
  42. ra := r.RemoteAddr
  43. if xff := strings.Trim(r.Header.Get("X-Forwarded-For"), " "); xff != "" {
  44. ra = strings.Join([]string{xff, ra}, ",")
  45. }
  46. res := []string{}
  47. ips := strings.Split(ra, ",")
  48. for _, ip := range ips {
  49. res = append(res, strings.Trim(ip, " "))
  50. }
  51. return res
  52. }
  53. func HandleAppStatus() http.Handler {
  54. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  55. if r.Method != http.MethodGet {
  56. RespondAsMethodNotAllowed(w, r)
  57. return
  58. }
  59. var m runtime.MemStats
  60. runtime.ReadMemStats(&m)
  61. type respMemory struct {
  62. Alloc uint64 `json:"alloc"`
  63. NumGC uint32 `json:"num_gc"`
  64. Sys uint64 `json:"sys"`
  65. TotalAlloc uint64 `json:"total_alloc"`
  66. }
  67. type respRoot struct {
  68. Memory respMemory `json:"memory"`
  69. Routines int `json:"routines"`
  70. }
  71. resp := respRoot{
  72. Memory: respMemory{
  73. Alloc: m.Alloc,
  74. NumGC: m.NumGC,
  75. Sys: m.Sys,
  76. TotalAlloc: m.TotalAlloc,
  77. },
  78. Routines: runtime.NumGoroutine(),
  79. }
  80. j, err := json.Marshal(resp)
  81. if err != nil {
  82. RespondAsBadRequest(w, r, err)
  83. return
  84. }
  85. w.Header().Set("Content-Type", "application/json")
  86. if _, err := w.Write(j); err != nil {
  87. fmt.Printf("%s\n", err.Error())
  88. }
  89. })
  90. }
  91. func HandleFile(data, contentType string) http.Handler {
  92. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  93. if r.Method != http.MethodGet {
  94. RespondAsMethodNotAllowed(w, r)
  95. return
  96. }
  97. w.Header().Set("Content-Type", contentType)
  98. if _, err := w.Write([]byte(data)); err != nil {
  99. fmt.Printf("%s\n", err.Error())
  100. }
  101. })
  102. }
  103. func HandleImageJpeg(data string) http.Handler {
  104. return HandleFile(data, "image/jpeg")
  105. }
  106. func HandleImagePng(data string) http.Handler {
  107. return HandleFile(data, "image/png")
  108. }
  109. func HandleTextCss(data string) http.Handler {
  110. return HandleFile(data, "text/css")
  111. }
  112. func HandleTextJavaScript(data string) http.Handler {
  113. return HandleFile(data, "text/javascript")
  114. }
  115. func HandleTextPlain(data string) http.Handler {
  116. return HandleFile(data, "text/plain")
  117. }
  118. func HandleTextXml(data string) http.Handler {
  119. return HandleFile(data, "text/xml")
  120. }
  121. func MinifyHtmlCode(str string) string {
  122. str = mHtml.ReplaceAllString(str, "><")
  123. str = mHtmlLeft.ReplaceAllString(str, ">")
  124. str = mHtmlRight.ReplaceAllString(str, "<")
  125. return str
  126. }
  127. func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error) {
  128. if err != nil {
  129. log.Printf("%s\n", err.Error())
  130. w.Header().Set("Content-Type", "application/json")
  131. w.WriteHeader(http.StatusBadRequest)
  132. if _, e := w.Write([]byte(`{"error":` + strconv.Quote(err.Error()) + `}`)); e != nil {
  133. log.Printf("%s\n", e.Error())
  134. }
  135. } else {
  136. w.WriteHeader(http.StatusBadRequest)
  137. }
  138. }
  139. func RespondAsMethodNotAllowed(w http.ResponseWriter, r *http.Request) {
  140. w.WriteHeader(http.StatusMethodNotAllowed)
  141. }
  142. // Example:
  143. //
  144. // sess, err := helpers.SessionStart(w, r)
  145. //
  146. // if err != nil && !errors.Is(err, os.ErrNotExist) {
  147. //
  148. // helpers.RespondAsBadRequest(w, r, err)
  149. // return
  150. //
  151. // }
  152. //
  153. // defer sess.Close()
  154. func SessionStart(w http.ResponseWriter, r *http.Request) (*session.Session, error) {
  155. sess, err := session.New(w, r, "/tmp")
  156. if err != nil && !errors.Is(err, os.ErrNotExist) {
  157. log.Printf("%s\n", err.Error())
  158. }
  159. return sess, err
  160. }
  161. // Example:
  162. //
  163. // if err = r.ParseForm(); err != nil {
  164. // helpers.RespondAsBadRequest(w, r, err)
  165. // return
  166. // }
  167. //
  168. // if err = helpers.SetLanguageCookie(w, r); err != nil {
  169. // helpers.RespondAsBadRequest(w, r, err)
  170. // return
  171. // }
  172. func SetLanguageCookie(w http.ResponseWriter, r *http.Request) error {
  173. var clang string
  174. if c, err := r.Cookie("lang"); err == nil {
  175. clang = c.Value
  176. }
  177. lang := r.Form.Get("lang")
  178. if lang != "" && lang != clang {
  179. http.SetCookie(w, &http.Cookie{
  180. Name: "lang",
  181. Value: lang,
  182. Expires: time.Now().Add(365 * 24 * time.Hour),
  183. HttpOnly: true,
  184. })
  185. }
  186. return nil
  187. }