helpers.go 4.0 KB

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