-
Notifications
You must be signed in to change notification settings - Fork 12
/
main.go
153 lines (128 loc) · 3.64 KB
/
main.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"runtime"
"sync"
"time"
"github.com/bpicode/fritzctl/fritz"
fritzctllogger "github.com/bpicode/fritzctl/logger"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/namsral/flag"
)
type client struct {
fritz.HomeAuto
*sync.Mutex
}
func (c *client) SafeLogin() error {
c.Lock()
defer c.Unlock()
return c.Login()
}
func (c *client) SafeList() (*fritz.Devicelist, error) {
c.Lock()
defer c.Unlock()
return c.List()
}
func NewClient(options ...fritz.Option) *client {
return &client{
HomeAuto: fritz.NewHomeAuto(options...),
Mutex: &sync.Mutex{},
}
}
var (
Version = "development"
GitCommit = ""
GoVersion = runtime.Version()
fritzClient *client
fbURL *url.URL
username = flag.String("username", "", "FRITZ!Box username.")
password = flag.String("password", "", "FRITZ!Box password.")
urlString = flag.String("url", "https://fritz.box", "FRITZ!Box URL.")
noVerify = flag.Bool("noverify", false, "Omit TLS verification of the FRITZ!Box certificate.")
certificatePath = flag.String("cert", "", "Path to the FRITZ!Box certificate.")
loglevel = flag.String("loglevel", "warn", "Logging verbosity (debug, info, warn, error or none)")
listenAddress = flag.String("listen-address", ":9103", "Address on which to expose metrics")
version = flag.Bool("version", false, "Print version number and exit")
)
func validateFlags() {
var err error
l := &fritzctllogger.Level{}
if err := l.Set(*loglevel); err != nil {
log.Fatalln(err)
}
fbURL, err = url.Parse(*urlString)
if err != nil {
log.Fatalln(err)
}
// Deprecate special syntax variabled for username and password.
// All flags can be set via environment variables with the same name (uppercase)
// like USERNAME for -username and PASSWORD for -password.
fritzboxUser := os.Getenv("FRITZBOX_USER")
fritzboxPassword := os.Getenv("FRITZBOX_PASSWORD")
if fritzboxUser != "" {
fmt.Println("You are using the deprecated environment variable \"FRITZBOX_USER\", please use \"USERNAME\" instead.")
if *username == "" {
*username = fritzboxUser
}
}
if fritzboxPassword != "" {
fmt.Println("You are using the deprecated environment variable \"FRITZBOX_PASSWORD\", please use \"PASSWORD\" instead.")
if *password == "" {
*password = fritzboxPassword
}
}
if len(*username) == 0 {
log.Fatalln("No username provided.")
}
if len(*password) == 0 {
log.Fatalln("No password provided.")
}
}
func main() {
flag.Parse()
if *version {
fmt.Printf("Version: \"%s\", GitCommit: \"%s\", GoVersion: \"%s\"\n", Version, GitCommit, GoVersion)
return
}
validateFlags()
options := []fritz.Option{
fritz.Credentials(*username, *password),
fritz.URL(fbURL),
}
if *noVerify {
options = append(options, fritz.SkipTLSVerify())
}
if !*noVerify && len(*certificatePath) > 0 {
crt, err := ioutil.ReadFile(*certificatePath)
if err != nil {
log.Fatalln("Unable to read certificate file:", err)
}
options = append(options, fritz.Certificate(crt))
}
fritzClient = NewClient(options...)
if err := fritzClient.SafeLogin(); err != nil {
log.Fatalln("Login failed:", err)
}
// Refresh login every 10 minutes
go func() {
for {
time.Sleep(10 * time.Minute)
err := fritzClient.SafeLogin()
if err != nil {
log.Println("Login refresh failed:", err)
}
}
}()
fc := NewFritzCollector()
prometheus.MustRegister(fc)
http.Handle("/metrics", promhttp.Handler())
if err := http.ListenAndServe(*listenAddress, nil); err != nil {
log.Fatalln(err)
}
}