helpers.go 4.1 KB

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