mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-11-29 02:42:51 +00:00
461 lines
14 KiB
Go
461 lines
14 KiB
Go
package controller
|
||
|
||
import (
|
||
"bytes"
|
||
"encoding/json"
|
||
"fmt"
|
||
"io"
|
||
"runtime/debug"
|
||
"strconv"
|
||
|
||
"github.com/mhsanaei/3x-ui/v2/database/model"
|
||
"github.com/mhsanaei/3x-ui/v2/logger"
|
||
"github.com/mhsanaei/3x-ui/v2/web/service"
|
||
"github.com/mhsanaei/3x-ui/v2/web/session"
|
||
|
||
"github.com/gin-gonic/gin"
|
||
)
|
||
|
||
// InboundController handles HTTP requests related to Xray inbounds management.
|
||
type InboundController struct {
|
||
inboundService service.InboundService
|
||
xrayService service.XrayService
|
||
}
|
||
|
||
// NewInboundController creates a new InboundController and sets up its routes.
|
||
func NewInboundController(g *gin.RouterGroup) *InboundController {
|
||
a := &InboundController{}
|
||
a.initRouter(g)
|
||
return a
|
||
}
|
||
|
||
// initRouter initializes the routes for inbound-related operations.
|
||
func (a *InboundController) initRouter(g *gin.RouterGroup) {
|
||
g.Use(func(c *gin.Context) {
|
||
defer func() {
|
||
if rec := recover(); rec != nil {
|
||
logger.Errorf("PANIC: %v\nStack: %s", rec, debug.Stack())
|
||
c.AbortWithStatusJSON(500, gin.H{"msg": fmt.Sprintf("panic: %v", rec)})
|
||
}
|
||
}()
|
||
c.Next()
|
||
})
|
||
|
||
g.Use(func(c *gin.Context) {
|
||
// Заголовки
|
||
logger.Debug("=== REQUEST INFO ===")
|
||
logger.Debug(fmt.Sprintf("%s %s", c.Request.Method, c.Request.URL.String()))
|
||
logger.Debug("Headers:")
|
||
for k, v := range c.Request.Header {
|
||
logger.Debug(fmt.Sprintf(" %s: %v", k, v))
|
||
}
|
||
|
||
// Тело (прочитаем и восстановим)
|
||
bodyBytes, _ := io.ReadAll(c.Request.Body)
|
||
logger.Debug(fmt.Sprintf("\nBody:\n%s\n", string(bodyBytes)))
|
||
logger.Debug("====================")
|
||
|
||
// Обязательно восстановить тело, чтобы Gin потом смог его обработать
|
||
c.Request.Body = io.NopCloser(bytes.NewBuffer(bodyBytes))
|
||
|
||
})
|
||
|
||
g.GET("/list", a.getInbounds)
|
||
g.GET("/get/:id", a.getInbound)
|
||
g.GET("/getClientTraffics/:email", a.getClientTraffics)
|
||
g.GET("/getClientTrafficsById/:id", a.getClientTrafficsById)
|
||
|
||
g.POST("/add", a.addInbound)
|
||
g.POST("/del/:id", a.delInbound)
|
||
g.POST("/update/:id", a.updateInbound)
|
||
g.POST("/clientIps/:email", a.getClientIps)
|
||
g.POST("/clearClientIps/:email", a.clearClientIps)
|
||
g.POST("/addClient", a.addInboundClient)
|
||
g.POST("/:id/delClient/:clientId", a.delInboundClient)
|
||
g.POST("/updateClient/:clientId", a.updateInboundClient)
|
||
g.POST("/:id/resetClientTraffic/:email", a.resetClientTraffic)
|
||
g.POST("/resetAllTraffics", a.resetAllTraffics)
|
||
g.POST("/resetAllClientTraffics/:id", a.resetAllClientTraffics)
|
||
g.POST("/delDepletedClients/:id", a.delDepletedClients)
|
||
g.POST("/import", a.importInbound)
|
||
g.POST("/onlines", a.onlines)
|
||
g.POST("/lastOnline", a.lastOnline)
|
||
g.POST("/updateClientTraffic/:email", a.updateClientTraffic)
|
||
g.POST("/:id/delClientByEmail/:email", a.delInboundClientByEmail)
|
||
}
|
||
|
||
// getInbounds retrieves the list of inbounds for the logged-in user.
|
||
func (a *InboundController) getInbounds(c *gin.Context) {
|
||
user := session.GetLoginUser(c)
|
||
if user == nil {
|
||
user = &model.User{}
|
||
user.Id = 1
|
||
}
|
||
inbounds, err := a.inboundService.GetInbounds(user.Id)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.obtain"), err)
|
||
return
|
||
}
|
||
jsonObj(c, inbounds, nil)
|
||
}
|
||
|
||
// getInbound retrieves a specific inbound by its ID.
|
||
func (a *InboundController) getInbound(c *gin.Context) {
|
||
id, err := strconv.Atoi(c.Param("id"))
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "get"), err)
|
||
return
|
||
}
|
||
inbound, err := a.inboundService.GetInbound(id)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.obtain"), err)
|
||
return
|
||
}
|
||
jsonObj(c, inbound, nil)
|
||
}
|
||
|
||
// getClientTraffics retrieves client traffic information by email.
|
||
func (a *InboundController) getClientTraffics(c *gin.Context) {
|
||
email := c.Param("email")
|
||
clientTraffics, err := a.inboundService.GetClientTrafficByEmail(email)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.trafficGetError"), err)
|
||
return
|
||
}
|
||
jsonObj(c, clientTraffics, nil)
|
||
}
|
||
|
||
// getClientTrafficsById retrieves client traffic information by inbound ID.
|
||
func (a *InboundController) getClientTrafficsById(c *gin.Context) {
|
||
id := c.Param("id")
|
||
clientTraffics, err := a.inboundService.GetClientTrafficByID(id)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.trafficGetError"), err)
|
||
return
|
||
}
|
||
jsonObj(c, clientTraffics, nil)
|
||
}
|
||
|
||
// addInbound creates a new inbound configuration.
|
||
func (a *InboundController) addInbound(c *gin.Context) {
|
||
inbound := &model.Inbound{}
|
||
err := c.ShouldBind(inbound)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
user := session.GetLoginUser(c)
|
||
// since the request came through the API without a login and session, we don't know what to do with the UserId here
|
||
// and it's unclear why it's needed in this place anyway
|
||
// so we just set it to 1 to only 1 user only first user
|
||
if user == nil {
|
||
inbound.UserId = 1
|
||
} else {
|
||
|
||
inbound.UserId = user.Id
|
||
}
|
||
if inbound.Listen == "" || inbound.Listen == "0.0.0.0" || inbound.Listen == "::" || inbound.Listen == "::0" {
|
||
inbound.Tag = fmt.Sprintf("inbound-%v", inbound.Port)
|
||
} else {
|
||
inbound.Tag = fmt.Sprintf("inbound-%v:%v", inbound.Listen, inbound.Port)
|
||
}
|
||
|
||
inbound, needRestart, err := a.inboundService.AddInbound(inbound)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
jsonMsgObj(c, I18nWeb(c, "pages.inbounds.toasts.inboundCreateSuccess"), inbound, nil)
|
||
if needRestart {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
}
|
||
|
||
// delInbound deletes an inbound configuration by its ID.
|
||
func (a *InboundController) delInbound(c *gin.Context) {
|
||
id, err := strconv.Atoi(c.Param("id"))
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundDeleteSuccess"), err)
|
||
return
|
||
}
|
||
needRestart, err := a.inboundService.DelInbound(id)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
jsonMsgObj(c, I18nWeb(c, "pages.inbounds.toasts.inboundDeleteSuccess"), id, nil)
|
||
if needRestart {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
}
|
||
|
||
// updateInbound updates an existing inbound configuration.
|
||
func (a *InboundController) updateInbound(c *gin.Context) {
|
||
id, err := strconv.Atoi(c.Param("id"))
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), err)
|
||
return
|
||
}
|
||
inbound := &model.Inbound{
|
||
Id: id,
|
||
}
|
||
err = c.ShouldBind(inbound)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), err)
|
||
return
|
||
}
|
||
inbound, needRestart, err := a.inboundService.UpdateInbound(inbound)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
jsonMsgObj(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), inbound, nil)
|
||
if needRestart {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
}
|
||
|
||
// getClientIps retrieves the IP addresses associated with a client by email.
|
||
func (a *InboundController) getClientIps(c *gin.Context) {
|
||
email := c.Param("email")
|
||
|
||
ips, err := a.inboundService.GetInboundClientIps(email)
|
||
if err != nil || ips == "" {
|
||
jsonObj(c, "No IP Record", nil)
|
||
return
|
||
}
|
||
|
||
jsonObj(c, ips, nil)
|
||
}
|
||
|
||
// clearClientIps clears the IP addresses for a client by email.
|
||
func (a *InboundController) clearClientIps(c *gin.Context) {
|
||
email := c.Param("email")
|
||
|
||
err := a.inboundService.ClearClientIps(email)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.updateSuccess"), err)
|
||
return
|
||
}
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.logCleanSuccess"), nil)
|
||
}
|
||
|
||
// addInboundClient adds a new client to an existing inbound.
|
||
func (a *InboundController) addInboundClient(c *gin.Context) {
|
||
data := &model.Inbound{}
|
||
err := c.ShouldBind(data)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), err)
|
||
return
|
||
}
|
||
|
||
needRestart, err := a.inboundService.AddInboundClient(data)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundClientAddSuccess"), nil)
|
||
if needRestart {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
}
|
||
|
||
// delInboundClient deletes a client from an inbound by inbound ID and client ID.
|
||
func (a *InboundController) delInboundClient(c *gin.Context) {
|
||
id, err := strconv.Atoi(c.Param("id"))
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), err)
|
||
return
|
||
}
|
||
clientId := c.Param("clientId")
|
||
|
||
needRestart, err := a.inboundService.DelInboundClient(id, clientId)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundClientDeleteSuccess"), nil)
|
||
if needRestart {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
}
|
||
|
||
// updateInboundClient updates a client's configuration in an inbound.
|
||
func (a *InboundController) updateInboundClient(c *gin.Context) {
|
||
clientId := c.Param("clientId")
|
||
|
||
inbound := &model.Inbound{}
|
||
err := c.ShouldBind(inbound)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), err)
|
||
return
|
||
}
|
||
|
||
needRestart, err := a.inboundService.UpdateInboundClient(inbound, clientId)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundClientUpdateSuccess"), nil)
|
||
if needRestart {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
}
|
||
|
||
// resetClientTraffic resets the traffic counter for a specific client in an inbound.
|
||
func (a *InboundController) resetClientTraffic(c *gin.Context) {
|
||
id, err := strconv.Atoi(c.Param("id"))
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), err)
|
||
return
|
||
}
|
||
email := c.Param("email")
|
||
|
||
needRestart, err := a.inboundService.ResetClientTraffic(id, email)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.resetInboundClientTrafficSuccess"), nil)
|
||
if needRestart {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
}
|
||
|
||
// resetAllTraffics resets all traffic counters across all inbounds.
|
||
func (a *InboundController) resetAllTraffics(c *gin.Context) {
|
||
err := a.inboundService.ResetAllTraffics()
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
} else {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.resetAllTrafficSuccess"), nil)
|
||
}
|
||
|
||
// resetAllClientTraffics resets traffic counters for all clients in a specific inbound.
|
||
func (a *InboundController) resetAllClientTraffics(c *gin.Context) {
|
||
id, err := strconv.Atoi(c.Param("id"))
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), err)
|
||
return
|
||
}
|
||
|
||
err = a.inboundService.ResetAllClientTraffics(id)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
} else {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.resetAllClientTrafficSuccess"), nil)
|
||
}
|
||
|
||
// importInbound imports an inbound configuration from provided data.
|
||
func (a *InboundController) importInbound(c *gin.Context) {
|
||
inbound := &model.Inbound{}
|
||
err := json.Unmarshal([]byte(c.PostForm("data")), inbound)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
user := session.GetLoginUser(c)
|
||
inbound.Id = 0
|
||
// again, if the request is from the API with an API key, then user == nil and set it to 1
|
||
if user == nil {
|
||
inbound.UserId = 1
|
||
} else {
|
||
inbound.UserId = user.Id
|
||
}
|
||
if inbound.Listen == "" || inbound.Listen == "0.0.0.0" || inbound.Listen == "::" || inbound.Listen == "::0" {
|
||
inbound.Tag = fmt.Sprintf("inbound-%v", inbound.Port)
|
||
} else {
|
||
inbound.Tag = fmt.Sprintf("inbound-%v:%v", inbound.Listen, inbound.Port)
|
||
}
|
||
|
||
for index := range inbound.ClientStats {
|
||
inbound.ClientStats[index].Id = 0
|
||
inbound.ClientStats[index].Enable = true
|
||
}
|
||
|
||
needRestart := false
|
||
inbound, needRestart, err = a.inboundService.AddInbound(inbound)
|
||
jsonMsgObj(c, I18nWeb(c, "pages.inbounds.toasts.inboundCreateSuccess"), inbound, err)
|
||
if err == nil && needRestart {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
}
|
||
|
||
// delDepletedClients deletes clients in an inbound who have exhausted their traffic limits.
|
||
func (a *InboundController) delDepletedClients(c *gin.Context) {
|
||
id, err := strconv.Atoi(c.Param("id"))
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), err)
|
||
return
|
||
}
|
||
err = a.inboundService.DelDepletedClients(id)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.delDepletedClientsSuccess"), nil)
|
||
}
|
||
|
||
// onlines retrieves the list of currently online clients.
|
||
func (a *InboundController) onlines(c *gin.Context) {
|
||
jsonObj(c, a.inboundService.GetOnlineClients(), nil)
|
||
}
|
||
|
||
// lastOnline retrieves the last online timestamps for clients.
|
||
func (a *InboundController) lastOnline(c *gin.Context) {
|
||
data, err := a.inboundService.GetClientsLastOnline()
|
||
jsonObj(c, data, err)
|
||
}
|
||
|
||
// updateClientTraffic updates the traffic statistics for a client by email.
|
||
func (a *InboundController) updateClientTraffic(c *gin.Context) {
|
||
email := c.Param("email")
|
||
|
||
// Define the request structure for traffic update
|
||
type TrafficUpdateRequest struct {
|
||
Upload int64 `json:"upload"`
|
||
Download int64 `json:"download"`
|
||
}
|
||
|
||
var request TrafficUpdateRequest
|
||
err := c.ShouldBindJSON(&request)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundUpdateSuccess"), err)
|
||
return
|
||
}
|
||
|
||
err = a.inboundService.UpdateClientTrafficByEmail(email, request.Upload, request.Download)
|
||
if err != nil {
|
||
jsonMsg(c, I18nWeb(c, "somethingWentWrong"), err)
|
||
return
|
||
}
|
||
|
||
jsonMsg(c, I18nWeb(c, "pages.inbounds.toasts.inboundClientUpdateSuccess"), nil)
|
||
}
|
||
|
||
// delInboundClientByEmail deletes a client from an inbound by email address.
|
||
func (a *InboundController) delInboundClientByEmail(c *gin.Context) {
|
||
inboundId, err := strconv.Atoi(c.Param("id"))
|
||
if err != nil {
|
||
jsonMsg(c, "Invalid inbound ID", err)
|
||
return
|
||
}
|
||
|
||
email := c.Param("email")
|
||
needRestart, err := a.inboundService.DelInboundClientByEmail(inboundId, email)
|
||
if err != nil {
|
||
jsonMsg(c, "Failed to delete client by email", err)
|
||
return
|
||
}
|
||
|
||
jsonMsg(c, "Client deleted successfully", nil)
|
||
if needRestart {
|
||
a.xrayService.SetToNeedRestart()
|
||
}
|
||
}
|