123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package controller
- import (
- "fmt"
- "strconv"
- "x-ui/database/model"
- "x-ui/logger"
- "x-ui/web/global"
- "x-ui/web/service"
- "x-ui/web/session"
- "github.com/gin-gonic/gin"
- )
- type InboundController struct {
- inboundService service.InboundService
- xrayService service.XrayService
- }
- func NewInboundController(g *gin.RouterGroup) *InboundController {
- a := &InboundController{}
- a.initRouter(g)
- a.startTask()
- return a
- }
- func (a *InboundController) initRouter(g *gin.RouterGroup) {
- g = g.Group("/inbound")
- g.POST("/list", a.getInbounds)
- g.POST("/add", a.addInbound)
- g.POST("/del/:id", a.delInbound)
- g.POST("/update/:id", a.updateInbound)
- g.POST("/resetClientTraffic/:email", a.resetClientTraffic)
- }
- func (a *InboundController) startTask() {
- webServer := global.GetWebServer()
- c := webServer.GetCron()
- c.AddFunc("@every 10s", func() {
- if a.xrayService.IsNeedRestartAndSetFalse() {
- err := a.xrayService.RestartXray(false)
- if err != nil {
- logger.Error("restart xray failed:", err)
- }
- }
- })
- }
- func (a *InboundController) getInbounds(c *gin.Context) {
- user := session.GetLoginUser(c)
- inbounds, err := a.inboundService.GetInbounds(user.Id)
- if err != nil {
- jsonMsg(c, I18n(c, "pages.inbounds.toasts.obtain"), err)
- return
- }
- jsonObj(c, inbounds, nil)
- }
- func (a *InboundController) getInbound(c *gin.Context) {
- id, err := strconv.Atoi(c.Param("id"))
- if err != nil {
- jsonMsg(c, I18n(c, "get"), err)
- return
- }
- inbound, err := a.inboundService.GetInbound(id)
- if err != nil {
- jsonMsg(c, I18n(c, "pages.inbounds.toasts.obtain"), err)
- return
- }
- jsonObj(c, inbound, nil)
- }
- func (a *InboundController) addInbound(c *gin.Context) {
- inbound := &model.Inbound{}
- err := c.ShouldBind(inbound)
- if err != nil {
- jsonMsg(c, I18n(c, "pages.inbounds.addTo"), err)
- return
- }
- user := session.GetLoginUser(c)
- inbound.UserId = user.Id
- inbound.Enable = true
- inbound.Tag = fmt.Sprintf("inbound-%v", inbound.Port)
- inbound, err = a.inboundService.AddInbound(inbound)
- jsonMsgObj(c, I18n(c, "pages.inbounds.addTo"), inbound, err)
- if err == nil {
- a.xrayService.SetToNeedRestart()
- }
- }
- func (a *InboundController) delInbound(c *gin.Context) {
- id, err := strconv.Atoi(c.Param("id"))
- if err != nil {
- jsonMsg(c, I18n(c, "delete"), err)
- return
- }
- err = a.inboundService.DelInbound(id)
- jsonMsgObj(c, I18n(c, "delete"), id, err)
- if err == nil {
- a.xrayService.SetToNeedRestart()
- }
- }
- func (a *InboundController) updateInbound(c *gin.Context) {
- id, err := strconv.Atoi(c.Param("id"))
- if err != nil {
- jsonMsg(c, I18n(c, "pages.inbounds.revise"), err)
- return
- }
- inbound := &model.Inbound{
- Id: id,
- }
- err = c.ShouldBind(inbound)
- if err != nil {
- jsonMsg(c, I18n(c, "pages.inbounds.revise"), err)
- return
- }
- inbound, err = a.inboundService.UpdateInbound(inbound)
- jsonMsgObj(c, I18n(c, "pages.inbounds.revise"), inbound, err)
- if err == nil {
- a.xrayService.SetToNeedRestart()
- }
- }
- func (a *InboundController) resetClientTraffic(c *gin.Context) {
- email := c.Param("email")
- err := a.inboundService.ResetClientTraffic(email)
- if err != nil {
- jsonMsg(c, "something worng!", err)
- return
- }
- jsonMsg(c, "traffic reseted", nil)
- }
|