mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-10 18:05:48 +02:00
83 lines
1.8 KiB
Go
83 lines
1.8 KiB
Go
package middleware
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"net/http"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/0xJacky/Nginx-UI/internal/user"
|
|
"github.com/0xJacky/Nginx-UI/settings"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/uozi-tech/cosy/logger"
|
|
)
|
|
|
|
func AuthRequired() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
abortWithAuthFailure := func() {
|
|
c.AbortWithStatusJSON(http.StatusForbidden, gin.H{
|
|
"message": "Authorization failed",
|
|
})
|
|
}
|
|
|
|
token := c.GetHeader("Authorization")
|
|
if token == "" {
|
|
if token = c.GetHeader("X-Node-Secret"); token != "" && token == settings.NodeSettings.Secret {
|
|
c.Set("Secret", token)
|
|
c.Next()
|
|
return
|
|
} else {
|
|
c.Set("ProxyNodeID", c.Query("x_node_id"))
|
|
tokenBytes, _ := base64.StdEncoding.DecodeString(c.Query("token"))
|
|
token = string(tokenBytes)
|
|
if token == "" {
|
|
abortWithAuthFailure()
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
u, ok := user.GetTokenUser(token)
|
|
if !ok {
|
|
abortWithAuthFailure()
|
|
return
|
|
}
|
|
|
|
c.Set("user", u)
|
|
|
|
if nodeID := c.GetHeader("X-Node-ID"); nodeID != "" {
|
|
c.Set("ProxyNodeID", nodeID)
|
|
}
|
|
|
|
c.Next()
|
|
}
|
|
}
|
|
|
|
type ServerFileSystemType struct {
|
|
http.FileSystem
|
|
}
|
|
|
|
func (f ServerFileSystemType) Exists(prefix string, _path string) bool {
|
|
file, err := f.Open(path.Join(prefix, _path))
|
|
if file != nil {
|
|
defer func(file http.File) {
|
|
err = file.Close()
|
|
if err != nil {
|
|
logger.Error("file not found", err)
|
|
}
|
|
}(file)
|
|
}
|
|
return err == nil
|
|
}
|
|
|
|
func CacheJs() gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
if strings.Contains(c.Request.URL.String(), "js") {
|
|
c.Header("Cache-Control", "max-age: 1296000")
|
|
if c.Request.Header.Get("If-Modified-Since") == settings.LastModified {
|
|
c.AbortWithStatus(http.StatusNotModified)
|
|
}
|
|
c.Header("Last-Modified", settings.LastModified)
|
|
}
|
|
}
|
|
}
|