mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
633 B
30 lines
633 B
package middleware
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/1Panel-dev/1Panel/global"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/gorilla/csrf"
|
|
adapter "github.com/gwatts/gin-adapter"
|
|
)
|
|
|
|
func CSRF() gin.HandlerFunc {
|
|
csrfMd := csrf.Protect(
|
|
[]byte(global.CONF.Csrf.Key),
|
|
csrf.Path("/api"),
|
|
csrf.ErrorHandler(http.HandlerFunc(
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusForbidden)
|
|
_, _ = w.Write([]byte("csrf token invalid"))
|
|
})),
|
|
)
|
|
return adapter.Wrap(csrfMd)
|
|
}
|
|
|
|
func LoadCsrfToken() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
c.Header("X-CSRF-TOKEN", csrf.Token(c.Request))
|
|
}
|
|
}
|