Files
trihuy-russian/web/controller/xui.go
T

90 lines
2.7 KiB
Go
Raw Normal View History

2023-02-09 22:48:06 +03:30
package controller
import (
2026-05-09 17:38:48 +02:00
"net/http"
2026-05-10 02:13:42 +02:00
"github.com/mhsanaei/3x-ui/v3/web/entity"
"github.com/mhsanaei/3x-ui/v3/web/middleware"
"github.com/mhsanaei/3x-ui/v3/web/session"
2023-02-09 22:48:06 +03:30
"github.com/gin-gonic/gin"
)
2025-09-20 09:35:50 +02:00
// XUIController is the main controller for the X-UI panel, managing sub-controllers.
2023-02-09 22:48:06 +03:30
type XUIController struct {
BaseController
2023-12-04 19:20:46 +01:00
settingController *SettingController
xraySettingController *XraySettingController
2023-02-09 22:48:06 +03:30
}
2025-09-20 09:35:50 +02:00
// NewXUIController creates a new XUIController and initializes its routes.
2023-02-09 22:48:06 +03:30
func NewXUIController(g *gin.RouterGroup) *XUIController {
a := &XUIController{}
a.initRouter(g)
return a
}
2025-09-20 09:35:50 +02:00
// initRouter sets up the main panel routes and initializes sub-controllers.
2023-02-09 22:48:06 +03:30
func (a *XUIController) initRouter(g *gin.RouterGroup) {
2023-05-12 22:36:05 +04:30
g = g.Group("/panel")
2023-02-09 22:48:06 +03:30
g.Use(a.checkLogin)
g.Use(middleware.CSRFMiddleware())
2023-02-09 22:48:06 +03:30
g.GET("/", a.index)
g.GET("/inbounds", a.inbounds)
2026-05-09 17:38:48 +02:00
g.GET("/nodes", a.nodes)
g.GET("/settings", a.settings)
2023-12-04 19:20:46 +01:00
g.GET("/xray", a.xraySettings)
2023-02-09 22:48:06 +03:30
2026-05-09 17:38:48 +02:00
// SPA pages built by Vite don't have a server-rendered <meta name="csrf-token">,
// so they fetch the session token via this endpoint at startup and replay it
// on subsequent unsafe requests through axios.
g.GET("/csrf-token", a.csrfToken)
2023-02-09 22:48:06 +03:30
a.settingController = NewSettingController(g)
2023-12-04 19:20:46 +01:00
a.xraySettingController = NewXraySettingController(g)
2023-02-09 22:48:06 +03:30
}
2026-05-09 17:38:48 +02:00
// All four panel pages now serve the Vue 3 builds from web/dist/
// instead of rendering the legacy Go templates. Each handler is a
// thin wrapper around serveDistPage so the basePath injection +
// no-cache headers stay centralised.
2025-09-20 09:35:50 +02:00
// index renders the main panel index page.
2023-02-09 22:48:06 +03:30
func (a *XUIController) index(c *gin.Context) {
2026-05-09 17:38:48 +02:00
serveDistPage(c, "index.html")
2023-02-09 22:48:06 +03:30
}
2025-09-20 09:35:50 +02:00
// inbounds renders the inbounds management page.
2023-02-09 22:48:06 +03:30
func (a *XUIController) inbounds(c *gin.Context) {
2026-05-09 17:38:48 +02:00
serveDistPage(c, "inbounds.html")
}
// nodes renders the multi-panel nodes management page.
func (a *XUIController) nodes(c *gin.Context) {
serveDistPage(c, "nodes.html")
2023-02-09 22:48:06 +03:30
}
2025-09-20 09:35:50 +02:00
// settings renders the settings management page.
func (a *XUIController) settings(c *gin.Context) {
2026-05-09 17:38:48 +02:00
serveDistPage(c, "settings.html")
2023-02-09 22:48:06 +03:30
}
2023-12-04 19:20:46 +01:00
2025-09-20 09:35:50 +02:00
// xraySettings renders the Xray settings page.
2023-12-04 19:20:46 +01:00
func (a *XUIController) xraySettings(c *gin.Context) {
2026-05-09 17:38:48 +02:00
serveDistPage(c, "xray.html")
}
// csrfToken returns the session CSRF token to authenticated SPA clients.
// The endpoint is GET (a safe method) so it bypasses CSRFMiddleware itself,
// but checkLogin still gates the response — anonymous callers get 401/redirect.
func (a *XUIController) csrfToken(c *gin.Context) {
token, err := session.EnsureCSRFToken(c)
if err != nil {
c.JSON(http.StatusInternalServerError, entity.Msg{Success: false, Msg: err.Error()})
return
}
c.JSON(http.StatusOK, entity.Msg{Success: true, Obj: token})
2023-12-04 19:20:46 +01:00
}