-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhello.go
176 lines (132 loc) · 3.17 KB
/
hello.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package main
import (
"bufio"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"strconv"
"strings"
"time"
// "io/ioutil"
// "reflect"
)
const monitoramentos = 3
const delay = 5
func main() {
// exibeNomes()
exibeIntroducao()
quemExecuta()
for {
exibeMenu()
comando := leComando()
switch comando {
case 1:
iniciarMonitoramento()
case 2:
fmt.Println("Exibindo logs...")
imprimeLogs()
case 0:
fmt.Println("Saindo do programa")
os.Exit(0)
default:
fmt.Println("Não conheço este comando")
os.Exit(-1)
}
}
// _, idade := devolveNomeEIdade()
// fmt.Println( "e tenho", idade, "anos")
}
// func devolveNomeEIdade() (string, int) {
// nome := "Karlla"
// idade := 31
// return nome, idade
// }
func exibeIntroducao() {
versao := 1.1
fmt.Println("Este programa está na versão", versao)
fmt.Println("Quem está executando o programa?")
}
func quemExecuta() string {
var nomeExecutor string
fmt.Scan(&nomeExecutor)
fmt.Println("O executor do programa será:", nomeExecutor)
return nomeExecutor
}
func exibeMenu() {
fmt.Println("1- Iniciar Monitoramento")
fmt.Println("2- Exibir logs")
fmt.Println("0- Sair do Programa")
}
func leComando() int {
var comandoLido int
fmt.Scan(&comandoLido)
fmt.Println("O comando escolhido foi", comandoLido)
fmt.Println("")
return comandoLido
}
func iniciarMonitoramento() {
fmt.Println("Monitorando...")
//leitura de arquivos com uso convencional de slice
// sites := []string{"https://random-status-code.herokuapp.com/", "https://www.alura.com.br", "https://www.caelum.com.br"}
sites := leSitesDoArquivo()
for i := 0; i < monitoramentos; i++ {
for i, site := range sites {
fmt.Println("Testando site", i, ":", site)
testaSite(site)
}
time.Sleep(delay * time.Second)
fmt.Println("")
}
fmt.Println("")
}
func testaSite(site string) {
resp, err := http.Get(site)
if err != nil {
fmt.Println("Ocorreu um erro:", err)
}
if resp.StatusCode == 200 {
fmt.Println("Site:", site, "foi carregado com sucesso!")
registraLogs(site, true)
} else {
fmt.Println("Site:", site, "está com problemas. Status code:", resp.StatusCode)
registraLogs(site, false)
}
}
func leSitesDoArquivo() []string {
var sites []string
// apenas leitura e print de arquivo
// arquivo, err := ioutil.ReadFile("sites.txt")
arquivo, err := os.Open("sites.txt")
if err != nil {
fmt.Println("Ocorreu um erro:", err)
}
// bufio é utilizado para realizar leitura de site linha a linha, extrair o site e salvar informação em um array
leitor := bufio.NewReader(arquivo)
for {
linha, err := leitor.ReadString('\n')
linha = strings.TrimSpace(linha)
sites = append(sites, linha)
if err == io.EOF {
break
}
}
arquivo.Close()
return sites
}
func registraLogs(site string, status bool) {
arquivo, err := os.OpenFile("logs.txt", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
if err != nil {
fmt.Println(err)
}
arquivo.WriteString (time.Now().Format("02/01/2006 15:04:05") + " - " + site + "- online: " + strconv.FormatBool(status) + "\n")
arquivo.Close()
}
func imprimeLogs(){
arquivo, err := ioutil.ReadFile("logs.txt")
if err != nil {
fmt.Println(err)
}
fmt.Println(string(arquivo))
}