-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
51 lines (41 loc) · 858 Bytes
/
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
package main
import (
"fmt"
"net/http"
"os"
"time"
go_arg "github.com/alexflint/go-arg"
)
const (
DayFormat string = "2006-01-02 15:04:05 MST"
)
var args struct {
Url string `arg:"required,positional"`
Follow bool `arg:"-f,--follow"`
Quiet bool `arg:"-q,--quiet"`
}
func main() {
var output string
var now time.Time
var lastStatus string
go_arg.MustParse(&args)
for {
resp, err := http.Get(args.Url)
if err != nil {
fmt.Printf("Error returned in GET request: %v\n", err)
os.Exit(1)
}
defer resp.Body.Close()
now = time.Now()
currentStatus := resp.Status
output = now.Format(DayFormat) + " " + args.Url + ": " + currentStatus
if !args.Quiet || lastStatus != currentStatus {
fmt.Println(output)
}
lastStatus = currentStatus
if !args.Follow {
break
}
time.Sleep(500 * time.Millisecond)
}
}