3x-ui/web/controller/api.go

46 lines
1.2 KiB
Go
Raw Normal View History

2023-02-09 19:18:06 +00:00
package controller
2023-05-18 21:01:05 +00:00
import (
2025-09-19 08:05:43 +00:00
"github.com/mhsanaei/3x-ui/v2/web/service"
2023-05-18 21:01:05 +00:00
"github.com/gin-gonic/gin"
)
2023-02-09 19:18:06 +00:00
2025-09-20 07:35:50 +00:00
// APIController handles the main API routes for the 3x-ui panel, including inbounds and server management.
2023-04-01 22:00:15 +00:00
type APIController struct {
BaseController
inboundController *InboundController
2025-09-08 23:22:43 +00:00
serverController *ServerController
2023-05-18 21:01:05 +00:00
Tgbot service.Tgbot
2023-02-09 19:18:06 +00:00
}
2025-09-20 07:35:50 +00:00
// NewAPIController creates a new APIController instance and initializes its routes.
2023-02-09 19:18:06 +00:00
func NewAPIController(g *gin.RouterGroup) *APIController {
a := &APIController{}
a.initRouter(g)
return a
2023-02-09 19:18:06 +00:00
}
2025-09-20 07:35:50 +00:00
// initRouter sets up the API routes for inbounds, server, and other endpoints.
2023-02-09 19:18:06 +00:00
func (a *APIController) initRouter(g *gin.RouterGroup) {
2025-09-08 23:22:43 +00:00
// Main API group
api := g.Group("/panel/api")
api.Use(a.checkLogin)
// Inbounds API
inbounds := api.Group("/inbounds")
a.inboundController = NewInboundController(inbounds)
// Server API
server := api.Group("/server")
a.serverController = NewServerController(server)
// Extra routes
api.GET("/backuptotgbot", a.BackuptoTgbot)
}
2023-05-18 21:01:05 +00:00
2025-09-20 07:35:50 +00:00
// BackuptoTgbot sends a backup of the panel data to Telegram bot admins.
2025-09-08 23:22:43 +00:00
func (a *APIController) BackuptoTgbot(c *gin.Context) {
2023-05-20 22:59:27 +00:00
a.Tgbot.SendBackupToAdmins()
2023-05-18 21:01:05 +00:00
}