mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-15 04:14:46 +08:00
163 lines
4.9 KiB
Go
163 lines
4.9 KiB
Go
|
|
package service
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"database/sql"
|
||
|
|
"errors"
|
||
|
|
"strings"
|
||
|
|
"time"
|
||
|
|
|
||
|
|
infraerrors "github.com/Wei-Shaw/sub2api/internal/pkg/errors"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (s *OpsService) ListAlertRules(ctx context.Context) ([]*OpsAlertRule, error) {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return []*OpsAlertRule{}, nil
|
||
|
|
}
|
||
|
|
return s.opsRepo.ListAlertRules(ctx)
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *OpsService) CreateAlertRule(ctx context.Context, rule *OpsAlertRule) (*OpsAlertRule, error) {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return nil, infraerrors.ServiceUnavailable("OPS_REPO_UNAVAILABLE", "Ops repository not available")
|
||
|
|
}
|
||
|
|
if rule == nil {
|
||
|
|
return nil, infraerrors.BadRequest("INVALID_RULE", "invalid rule")
|
||
|
|
}
|
||
|
|
|
||
|
|
created, err := s.opsRepo.CreateAlertRule(ctx, rule)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
return created, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *OpsService) UpdateAlertRule(ctx context.Context, rule *OpsAlertRule) (*OpsAlertRule, error) {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return nil, infraerrors.ServiceUnavailable("OPS_REPO_UNAVAILABLE", "Ops repository not available")
|
||
|
|
}
|
||
|
|
if rule == nil || rule.ID <= 0 {
|
||
|
|
return nil, infraerrors.BadRequest("INVALID_RULE", "invalid rule")
|
||
|
|
}
|
||
|
|
|
||
|
|
updated, err := s.opsRepo.UpdateAlertRule(ctx, rule)
|
||
|
|
if err != nil {
|
||
|
|
if errors.Is(err, sql.ErrNoRows) {
|
||
|
|
return nil, infraerrors.NotFound("OPS_ALERT_RULE_NOT_FOUND", "alert rule not found")
|
||
|
|
}
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
return updated, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *OpsService) DeleteAlertRule(ctx context.Context, id int64) error {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return infraerrors.ServiceUnavailable("OPS_REPO_UNAVAILABLE", "Ops repository not available")
|
||
|
|
}
|
||
|
|
if id <= 0 {
|
||
|
|
return infraerrors.BadRequest("INVALID_RULE_ID", "invalid rule id")
|
||
|
|
}
|
||
|
|
if err := s.opsRepo.DeleteAlertRule(ctx, id); err != nil {
|
||
|
|
if errors.Is(err, sql.ErrNoRows) {
|
||
|
|
return infraerrors.NotFound("OPS_ALERT_RULE_NOT_FOUND", "alert rule not found")
|
||
|
|
}
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *OpsService) ListAlertEvents(ctx context.Context, filter *OpsAlertEventFilter) ([]*OpsAlertEvent, error) {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return []*OpsAlertEvent{}, nil
|
||
|
|
}
|
||
|
|
return s.opsRepo.ListAlertEvents(ctx, filter)
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *OpsService) GetActiveAlertEvent(ctx context.Context, ruleID int64) (*OpsAlertEvent, error) {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return nil, infraerrors.ServiceUnavailable("OPS_REPO_UNAVAILABLE", "Ops repository not available")
|
||
|
|
}
|
||
|
|
if ruleID <= 0 {
|
||
|
|
return nil, infraerrors.BadRequest("INVALID_RULE_ID", "invalid rule id")
|
||
|
|
}
|
||
|
|
return s.opsRepo.GetActiveAlertEvent(ctx, ruleID)
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *OpsService) GetLatestAlertEvent(ctx context.Context, ruleID int64) (*OpsAlertEvent, error) {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return nil, infraerrors.ServiceUnavailable("OPS_REPO_UNAVAILABLE", "Ops repository not available")
|
||
|
|
}
|
||
|
|
if ruleID <= 0 {
|
||
|
|
return nil, infraerrors.BadRequest("INVALID_RULE_ID", "invalid rule id")
|
||
|
|
}
|
||
|
|
return s.opsRepo.GetLatestAlertEvent(ctx, ruleID)
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *OpsService) CreateAlertEvent(ctx context.Context, event *OpsAlertEvent) (*OpsAlertEvent, error) {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return nil, infraerrors.ServiceUnavailable("OPS_REPO_UNAVAILABLE", "Ops repository not available")
|
||
|
|
}
|
||
|
|
if event == nil {
|
||
|
|
return nil, infraerrors.BadRequest("INVALID_EVENT", "invalid event")
|
||
|
|
}
|
||
|
|
|
||
|
|
created, err := s.opsRepo.CreateAlertEvent(ctx, event)
|
||
|
|
if err != nil {
|
||
|
|
return nil, err
|
||
|
|
}
|
||
|
|
return created, nil
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *OpsService) UpdateAlertEventStatus(ctx context.Context, eventID int64, status string, resolvedAt *time.Time) error {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return infraerrors.ServiceUnavailable("OPS_REPO_UNAVAILABLE", "Ops repository not available")
|
||
|
|
}
|
||
|
|
if eventID <= 0 {
|
||
|
|
return infraerrors.BadRequest("INVALID_EVENT_ID", "invalid event id")
|
||
|
|
}
|
||
|
|
if strings.TrimSpace(status) == "" {
|
||
|
|
return infraerrors.BadRequest("INVALID_STATUS", "invalid status")
|
||
|
|
}
|
||
|
|
return s.opsRepo.UpdateAlertEventStatus(ctx, eventID, status, resolvedAt)
|
||
|
|
}
|
||
|
|
|
||
|
|
func (s *OpsService) UpdateAlertEventEmailSent(ctx context.Context, eventID int64, emailSent bool) error {
|
||
|
|
if err := s.RequireMonitoringEnabled(ctx); err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
if s.opsRepo == nil {
|
||
|
|
return infraerrors.ServiceUnavailable("OPS_REPO_UNAVAILABLE", "Ops repository not available")
|
||
|
|
}
|
||
|
|
if eventID <= 0 {
|
||
|
|
return infraerrors.BadRequest("INVALID_EVENT_ID", "invalid event id")
|
||
|
|
}
|
||
|
|
return s.opsRepo.UpdateAlertEventEmailSent(ctx, eventID, emailSent)
|
||
|
|
}
|