Files

93 lines
2.4 KiB
Go
Raw Permalink Normal View History

2021-01-26 23:36:53 +08:00
// Copyright 2020 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-01-26 23:36:53 +08:00
2021-01-30 16:55:53 +08:00
package middleware
2021-01-26 23:36:53 +08:00
import (
"fmt"
"html/template"
"net/http"
"net/url"
2024-12-24 11:43:57 +08:00
"code.gitea.io/gitea/modules/reqctx"
)
2021-01-26 23:36:53 +08:00
// Flash represents a one time data transfer between two requests.
type Flash struct {
2024-12-24 11:43:57 +08:00
DataStore reqctx.RequestDataStore
2021-01-26 23:36:53 +08:00
url.Values
ErrorMsg, WarningMsg, InfoMsg, SuccessMsg string
}
func (f *Flash) set(name, msg string, current ...bool) {
if f.Values == nil {
f.Values = make(map[string][]string)
}
2023-07-15 16:52:03 +08:00
showInCurrentPage := len(current) > 0 && current[0]
if showInCurrentPage {
// assign it to the context data, then the template can use ".Flash.XxxMsg" to render the message
f.DataStore.GetData()["Flash"] = f
2021-01-26 23:36:53 +08:00
} else {
2023-07-15 16:52:03 +08:00
// the message map will be saved into the cookie and be shown in next response (a new page response which decodes the cookie)
2021-01-26 23:36:53 +08:00
f.Set(name, msg)
}
}
func flashMsgStringOrHTML(msg any) string {
switch v := msg.(type) {
case string:
return v
case template.HTML:
return string(v)
}
panic(fmt.Sprintf("unknown type: %T", msg))
}
2021-01-26 23:36:53 +08:00
// Error sets error message
func (f *Flash) Error(msg any, current ...bool) {
f.ErrorMsg = flashMsgStringOrHTML(msg)
f.set("error", f.ErrorMsg, current...)
2021-01-26 23:36:53 +08:00
}
// Warning sets warning message
func (f *Flash) Warning(msg any, current ...bool) {
f.WarningMsg = flashMsgStringOrHTML(msg)
f.set("warning", f.WarningMsg, current...)
2021-01-26 23:36:53 +08:00
}
// Info sets info message
func (f *Flash) Info(msg any, current ...bool) {
f.InfoMsg = flashMsgStringOrHTML(msg)
f.set("info", f.InfoMsg, current...)
2021-01-26 23:36:53 +08:00
}
// Success sets success message
func (f *Flash) Success(msg any, current ...bool) {
f.SuccessMsg = flashMsgStringOrHTML(msg)
f.set("success", f.SuccessMsg, current...)
2021-01-26 23:36:53 +08:00
}
func ParseCookieFlashMessage(val string) *Flash {
if vals, _ := url.ParseQuery(val); len(vals) > 0 {
return &Flash{
Values: vals,
ErrorMsg: vals.Get("error"),
SuccessMsg: vals.Get("success"),
InfoMsg: vals.Get("info"),
WarningMsg: vals.Get("warning"),
}
}
return nil
}
func GetSiteCookieFlashMessage(dataStore reqctx.RequestDataStore, req *http.Request, cookieName string) (string, *Flash) {
// Get the last flash message from cookie
lastFlashCookie := GetSiteCookie(req, cookieName)
lastFlashMsg := ParseCookieFlashMessage(lastFlashCookie)
if lastFlashMsg != nil {
lastFlashMsg.DataStore = dataStore
return lastFlashCookie, lastFlashMsg
}
return lastFlashCookie, nil
}