helpers.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package helpers
  2. import (
  3. "errors"
  4. "fmt"
  5. "log"
  6. "net/http"
  7. "os"
  8. "regexp"
  9. "runtime"
  10. "strconv"
  11. "time"
  12. "github.com/vladimirok5959/golang-server-sessions/session"
  13. )
  14. // func HandlerApplicationStatus() http.Handler
  15. // func HandlerBuildInFile(data, contentType string) http.Handler
  16. // func MinifyHtmlCode(str string) string
  17. // func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error)
  18. // func RespondAsMethodNotAllowed(w http.ResponseWriter, r *http.Request)
  19. // func SessionStart(w http.ResponseWriter, r *http.Request) (*session.Session, error)
  20. // func SetLanguageCookie(w http.ResponseWriter, r *http.Request) error
  21. var mHtml = regexp.MustCompile(`>[\n\t\r\s]+<`)
  22. var mHtmlLeft = regexp.MustCompile(`>[\n\t\r\s]+`)
  23. var mHtmlRight = regexp.MustCompile(`[\n\t\r\s]+<`)
  24. func HandlerApplicationStatus() http.Handler {
  25. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  26. if r.Method != http.MethodGet {
  27. RespondAsMethodNotAllowed(w, r)
  28. return
  29. }
  30. var m runtime.MemStats
  31. runtime.ReadMemStats(&m)
  32. memory := fmt.Sprintf(
  33. `{"alloc":"%v","total_alloc":"%v","sys":"%v","num_gc":"%v"}`,
  34. m.Alloc, m.TotalAlloc, m.Sys, m.NumGC,
  35. )
  36. w.Header().Set("Content-Type", "application/json")
  37. if _, err := w.Write([]byte(fmt.Sprintf(`{"routines":%d,"memory":%s}`, runtime.NumGoroutine(), memory))); err != nil {
  38. log.Printf("%s\n", err.Error())
  39. }
  40. })
  41. }
  42. func HandlerBuildInFile(data, contentType string) http.Handler {
  43. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  44. if r.Method != http.MethodGet {
  45. RespondAsMethodNotAllowed(w, r)
  46. return
  47. }
  48. w.Header().Set("Content-Type", contentType)
  49. if _, err := w.Write([]byte(data)); err != nil {
  50. fmt.Printf("%s\n", err.Error())
  51. }
  52. })
  53. }
  54. func MinifyHtmlCode(str string) string {
  55. str = mHtml.ReplaceAllString(str, "><")
  56. str = mHtmlLeft.ReplaceAllString(str, ">")
  57. str = mHtmlRight.ReplaceAllString(str, "<")
  58. return str
  59. }
  60. func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error) {
  61. if err != nil {
  62. log.Printf("%s\n", err.Error())
  63. w.Header().Set("Content-Type", "application/json")
  64. w.WriteHeader(http.StatusBadRequest)
  65. if _, e := w.Write([]byte(`{"error":"` + strconv.Quote(err.Error()) + `"}`)); e != nil {
  66. log.Printf("%s\n", e.Error())
  67. }
  68. } else {
  69. w.WriteHeader(http.StatusBadRequest)
  70. }
  71. }
  72. func RespondAsMethodNotAllowed(w http.ResponseWriter, r *http.Request) {
  73. w.WriteHeader(http.StatusMethodNotAllowed)
  74. }
  75. // Example:
  76. //
  77. // sess := helpers.SessionStart(w, r)
  78. //
  79. // defer sess.Close()
  80. func SessionStart(w http.ResponseWriter, r *http.Request) (*session.Session, error) {
  81. sess, err := session.New(w, r, "/tmp")
  82. if err != nil && !errors.Is(err, os.ErrNotExist) {
  83. log.Printf("%s\n", err.Error())
  84. }
  85. return sess, err
  86. }
  87. func SetLanguageCookie(w http.ResponseWriter, r *http.Request) error {
  88. var clang string
  89. if c, err := r.Cookie("lang"); err == nil {
  90. clang = c.Value
  91. }
  92. // if err := r.ParseForm(); err != nil {
  93. // RespondAsBadRequest(w, r, err)
  94. // return err
  95. // }
  96. lang := r.Form.Get("lang")
  97. if lang != "" && lang != clang {
  98. http.SetCookie(w, &http.Cookie{
  99. Name: "lang",
  100. Value: lang,
  101. Expires: time.Now().Add(365 * 24 * time.Hour),
  102. HttpOnly: true,
  103. })
  104. }
  105. return nil
  106. }