mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2025-03-01 01:20:49 +03:00
34 lines
750 B
Go
34 lines
750 B
Go
package job
|
|
|
|
import (
|
|
"x-ui/logger"
|
|
"x-ui/web/service"
|
|
)
|
|
|
|
type CheckInboundJob struct {
|
|
xrayService service.XrayService
|
|
inboundService service.InboundService
|
|
}
|
|
|
|
func NewCheckInboundJob() *CheckInboundJob {
|
|
return new(CheckInboundJob)
|
|
}
|
|
|
|
func (j *CheckInboundJob) Run() {
|
|
count, err := j.inboundService.DisableInvalidClients()
|
|
if err != nil {
|
|
logger.Warning("disable invalid Client err:", err)
|
|
} else if count > 0 {
|
|
logger.Debugf("disabled %v Client", count)
|
|
j.xrayService.SetToNeedRestart()
|
|
}
|
|
|
|
count, err = j.inboundService.DisableInvalidInbounds()
|
|
if err != nil {
|
|
logger.Warning("disable invalid inbounds err:", err)
|
|
} else if count > 0 {
|
|
logger.Debugf("disabled %v inbounds", count)
|
|
j.xrayService.SetToNeedRestart()
|
|
}
|
|
}
|