2023-02-09 19:18:06 +00:00
|
|
|
package controller
|
|
|
|
|
2023-05-18 21:01:05 +00:00
|
|
|
import (
|
2025-09-24 09:25:35 +00:00
|
|
|
"net/http"
|
|
|
|
|
2025-09-19 08:05:43 +00:00
|
|
|
"github.com/mhsanaei/3x-ui/v2/web/service"
|
2025-09-24 09:25:35 +00:00
|
|
|
"github.com/mhsanaei/3x-ui/v2/web/session"
|
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 {
|
2023-04-09 19:43:18 +00:00
|
|
|
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 {
|
2023-04-09 19:43:18 +00:00
|
|
|
a := &APIController{}
|
|
|
|
a.initRouter(g)
|
|
|
|
return a
|
2023-02-09 19:18:06 +00:00
|
|
|
}
|
|
|
|
|
2025-09-24 09:25:35 +00:00
|
|
|
// checkAPIAuth is a middleware that returns 404 for unauthenticated API requests
|
|
|
|
// to hide the existence of API endpoints from unauthorized users
|
|
|
|
func (a *APIController) checkAPIAuth(c *gin.Context) {
|
|
|
|
if !session.IsLogin(c) {
|
|
|
|
c.AbortWithStatus(http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.Next()
|
|
|
|
}
|
|
|
|
|
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")
|
2025-09-24 09:25:35 +00:00
|
|
|
api.Use(a.checkAPIAuth)
|
2025-09-08 23:22:43 +00:00
|
|
|
|
|
|
|
// 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-04-25 15:16:09 +00:00
|
|
|
}
|
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
|
|
|
}
|