-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathservice.go
53 lines (47 loc) · 1.99 KB
/
service.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright (c) 2024, s0up and the autobrr contributors.
// SPDX-License-Identifier: GPL-2.0-or-later
package models
import (
"context"
"time"
)
// Service represents a configured service instance
type Service struct {
ID string `json:"id"`
Type string `json:"type"`
URL string `json:"url"`
AccessURL string `json:"accessUrl,omitempty"` // New field for external access URL
APIKey string `json:"apiKey,omitempty"`
Name string `json:"name"`
DisplayName string `json:"displayName,omitempty"`
HealthEndpoint string `json:"healthEndpoint,omitempty"`
}
// ServiceHealth represents the health status of a service
type ServiceHealth struct {
Status string `json:"status"`
ResponseTime int64 `json:"responseTime"`
LastChecked time.Time `json:"lastChecked"`
Message string `json:"message,omitempty"`
Version string `json:"version,omitempty"`
UpdateAvailable bool `json:"updateAvailable,omitempty"`
ServiceID string `json:"serviceId"`
Stats map[string]interface{} `json:"stats,omitempty"`
Details map[string]interface{} `json:"details,omitempty"`
}
// ServiceHealthChecker defines the interface for service health checking
type ServiceHealthChecker interface {
CheckHealth(ctx context.Context, url, apiKey string) (ServiceHealth, int)
}
// Service creation function types
var (
NewAutobrrService func() ServiceHealthChecker
NewRadarrService func() ServiceHealthChecker
NewSonarrService func() ServiceHealthChecker
NewProwlarrService func() ServiceHealthChecker
NewOverseerrService func() ServiceHealthChecker
NewPlexService func() ServiceHealthChecker
NewOmegabrrService func() ServiceHealthChecker
NewTailscaleService func() ServiceHealthChecker
NewMaintainerrService func() ServiceHealthChecker
NewGeneralService func() ServiceHealthChecker
)