1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package helpers
- import (
- "errors"
- "fmt"
- "log"
- "net/http"
- "os"
- "regexp"
- "runtime"
- "strconv"
- "time"
- "github.com/vladimirok5959/golang-server-sessions/session"
- )
- var mHtml = regexp.MustCompile(`>[\n\t\r\s]+<`)
- var mHtmlLeft = regexp.MustCompile(`>[\n\t\r\s]+`)
- var mHtmlRight = regexp.MustCompile(`[\n\t\r\s]+<`)
- func MinifyHtmlCode(str string) string {
- str = mHtml.ReplaceAllString(str, "><")
- str = mHtmlLeft.ReplaceAllString(str, ">")
- str = mHtmlRight.ReplaceAllString(str, "<")
- return str
- }
- // Example:
- //
- // sess := helpers.SessionStart(w, r)
- //
- // defer sess.Close()
- func SessionStart(w http.ResponseWriter, r *http.Request) (*session.Session, error) {
- sess, err := session.New(w, r, "/tmp")
- if err != nil && !errors.Is(err, os.ErrNotExist) {
- log.Printf("%s\n", err.Error())
- }
- return sess, err
- }
- func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error) {
- if err != nil {
- log.Printf("%s\n", err.Error())
- w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
- w.Header().Set("Content-Type", "application/json")
- w.WriteHeader(http.StatusBadRequest)
- if _, e := w.Write([]byte(`{"error":"` + strconv.Quote(err.Error()) + `"}`)); e != nil {
- log.Printf("%s\n", e.Error())
- }
- } else {
- w.WriteHeader(http.StatusBadRequest)
- }
- }
- func RespondAsMethodNotAllowed(w http.ResponseWriter, r *http.Request) {
- w.WriteHeader(http.StatusMethodNotAllowed)
- }
- func SetLanguageCookie(w http.ResponseWriter, r *http.Request) error {
- var clang string
- if c, err := r.Cookie("lang"); err == nil {
- clang = c.Value
- }
- // if err := r.ParseForm(); err != nil {
- // RespondAsBadRequest(w, r, err)
- // return err
- // }
- lang := r.Form.Get("lang")
- if lang != "" && lang != clang {
- http.SetCookie(w, &http.Cookie{
- Name: "lang",
- Value: lang,
- Expires: time.Now().Add(365 * 24 * time.Hour),
- HttpOnly: true,
- })
- }
- return nil
- }
- func HandlerApplicationStatus() http.Handler {
- return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- if r.Method != http.MethodGet {
- RespondAsMethodNotAllowed(w, r)
- return
- }
- var m runtime.MemStats
- runtime.ReadMemStats(&m)
- memory := fmt.Sprintf(
- `{"alloc":"%v","total_alloc":"%v","sys":"%v","num_gc":"%v"}`,
- m.Alloc, m.TotalAlloc, m.Sys, m.NumGC,
- )
- w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
- w.Header().Set("Content-Type", "application/json")
- if _, err := w.Write([]byte(fmt.Sprintf(`{"routines":%d,"memory":%s}`, runtime.NumGoroutine(), memory))); err != nil {
- log.Printf("%s\n", err.Error())
- }
- })
- }
|