123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- package config
- import (
- "net/http"
- "net/url"
- "os"
- "path/filepath"
- "github.com/0xJacky/Nginx-UI/internal/config"
- "github.com/0xJacky/Nginx-UI/internal/helper"
- "github.com/0xJacky/Nginx-UI/internal/nginx"
- "github.com/0xJacky/Nginx-UI/query"
- "github.com/gin-gonic/gin"
- "github.com/sashabaranov/go-openai"
- "github.com/uozi-tech/cosy"
- )
- func GetConfig(c *gin.Context) {
- relativePath := c.Param("path")
- // Ensure the path is correctly decoded - handle cases where it might be encoded multiple times
- decodedPath := relativePath
- var err error
- // Try decoding until the path no longer changes
- for {
- newDecodedPath, decodeErr := url.PathUnescape(decodedPath)
- if decodeErr != nil || newDecodedPath == decodedPath {
- break
- }
- decodedPath = newDecodedPath
- }
- relativePath = decodedPath
- absPath := nginx.GetConfPath(relativePath)
- if !helper.IsUnderDirectory(absPath, nginx.GetConfPath()) {
- c.JSON(http.StatusForbidden, gin.H{
- "message": "path is not under the nginx conf path",
- })
- return
- }
- stat, err := os.Stat(absPath)
- if err != nil {
- cosy.ErrHandler(c, err)
- return
- }
- content, err := os.ReadFile(absPath)
- if err != nil {
- cosy.ErrHandler(c, err)
- return
- }
- q := query.Config
- g := query.ChatGPTLog
- chatgpt, err := g.Where(g.Name.Eq(absPath)).FirstOrCreate()
- if err != nil {
- cosy.ErrHandler(c, err)
- return
- }
- if chatgpt.Content == nil {
- chatgpt.Content = make([]openai.ChatCompletionMessage, 0)
- }
- cfg, err := q.Where(q.Filepath.Eq(absPath)).FirstOrInit()
- if err != nil {
- cosy.ErrHandler(c, err)
- return
- }
- c.JSON(http.StatusOK, config.Config{
- Name: stat.Name(),
- Content: string(content),
- ChatGPTMessages: chatgpt.Content,
- FilePath: absPath,
- ModifiedAt: stat.ModTime(),
- Dir: filepath.Dir(relativePath),
- SyncNodeIds: cfg.SyncNodeIds,
- SyncOverwrite: cfg.SyncOverwrite,
- })
- }
|