2019-12-07 18:14:40 +08:00
|
|
|
package model
|
|
|
|
|
2020-11-06 20:56:46 +08:00
|
|
|
import (
|
2021-04-22 21:53:31 +08:00
|
|
|
"encoding/json"
|
2021-09-02 23:45:21 +08:00
|
|
|
"fmt"
|
2021-04-22 21:53:31 +08:00
|
|
|
|
2020-11-11 10:07:45 +08:00
|
|
|
pb "github.com/naiba/nezha/proto"
|
2021-09-02 23:45:21 +08:00
|
|
|
"github.com/robfig/cron/v3"
|
2021-04-22 21:53:31 +08:00
|
|
|
"gorm.io/gorm"
|
2020-11-06 20:56:46 +08:00
|
|
|
)
|
2019-12-07 18:14:40 +08:00
|
|
|
|
2019-12-09 16:02:49 +08:00
|
|
|
const (
|
|
|
|
_ = iota
|
2021-01-19 09:59:04 +08:00
|
|
|
TaskTypeHTTPGET
|
|
|
|
TaskTypeICMPPing
|
|
|
|
TaskTypeTCPPing
|
|
|
|
TaskTypeCommand
|
2021-08-18 11:56:54 +08:00
|
|
|
TaskTypeTerminal
|
2021-09-27 21:24:04 +08:00
|
|
|
TaskTypeUpgrade
|
2021-11-11 12:49:54 +08:00
|
|
|
TaskTypeKeepalive
|
2019-12-09 16:02:49 +08:00
|
|
|
)
|
|
|
|
|
2021-08-18 11:56:54 +08:00
|
|
|
type TerminalTask struct {
|
|
|
|
// websocket 主机名
|
|
|
|
Host string `json:"host,omitempty"`
|
|
|
|
// 是否启用 SSL
|
|
|
|
UseSSL bool `json:"use_ssl,omitempty"`
|
|
|
|
// 会话标识
|
|
|
|
Session string `json:"session,omitempty"`
|
|
|
|
}
|
|
|
|
|
2021-06-21 21:30:42 +08:00
|
|
|
const (
|
|
|
|
MonitorCoverAll = iota
|
|
|
|
MonitorCoverIgnoreAll
|
|
|
|
)
|
|
|
|
|
2021-01-16 00:45:49 +08:00
|
|
|
type Monitor struct {
|
|
|
|
Common
|
2021-04-22 21:53:31 +08:00
|
|
|
Name string
|
|
|
|
Type uint8
|
|
|
|
Target string
|
|
|
|
SkipServersRaw string
|
2021-09-02 23:45:21 +08:00
|
|
|
Duration uint64
|
2021-04-22 21:53:31 +08:00
|
|
|
Notify bool
|
2021-06-21 21:30:42 +08:00
|
|
|
Cover uint8
|
2021-09-02 23:45:21 +08:00
|
|
|
|
|
|
|
SkipServers map[uint64]bool `gorm:"-" json:"-"`
|
|
|
|
CronJobID cron.EntryID `gorm:"-" json:"-"`
|
2019-12-07 18:14:40 +08:00
|
|
|
}
|
|
|
|
|
2021-01-16 00:45:49 +08:00
|
|
|
func (m *Monitor) PB() *pb.Task {
|
|
|
|
return &pb.Task{
|
|
|
|
Id: m.ID,
|
|
|
|
Type: uint64(m.Type),
|
|
|
|
Data: m.Target,
|
2019-12-09 18:14:31 +08:00
|
|
|
}
|
|
|
|
}
|
2021-04-22 21:53:31 +08:00
|
|
|
|
2021-09-02 23:45:21 +08:00
|
|
|
func (m *Monitor) CronSpec() string {
|
|
|
|
if m.Duration == 0 {
|
|
|
|
// 默认间隔 30 秒
|
|
|
|
m.Duration = 30
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("@every %ds", m.Duration)
|
|
|
|
}
|
|
|
|
|
2021-04-22 21:53:31 +08:00
|
|
|
func (m *Monitor) AfterFind(tx *gorm.DB) error {
|
|
|
|
var skipServers []uint64
|
|
|
|
if err := json.Unmarshal([]byte(m.SkipServersRaw), &skipServers); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.SkipServers = make(map[uint64]bool)
|
|
|
|
for i := 0; i < len(skipServers); i++ {
|
|
|
|
m.SkipServers[skipServers[i]] = true
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2021-09-27 21:18:09 +08:00
|
|
|
|
|
|
|
func IsServiceSentinelNeeded(t uint64) bool {
|
2021-09-27 23:07:05 +08:00
|
|
|
return t != TaskTypeCommand && t != TaskTypeTerminal && t != TaskTypeUpgrade
|
2021-09-27 21:18:09 +08:00
|
|
|
}
|