-
Notifications
You must be signed in to change notification settings - Fork 0
/
aleo.go
56 lines (40 loc) · 1.12 KB
/
aleo.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
package main
import (
"encoding/json"
"html/template"
"io/ioutil"
"log"
"net/http"
"strings"
)
func getAleoData() {
reader := strings.NewReader(`{"jsonrpc": "2.0", "id":"documentation", "method": "getnodeinfo", "params": [] }`)
request, err := http.NewRequest("GET", aleoNodeURL, reader)
checkErr(err)
request.Header.Set("Content-Type", "application/json")
client := &http.Client{}
resp, err := client.Do(request)
checkErr(err)
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
checkErr(err)
var nodeData AleoResponse
json.Unmarshal(body, &nodeData)
aleoData.IsBootnode = nodeData.Result.IsBootnode
aleoData.IsMiner = nodeData.Result.IsMiner
aleoData.IsSyncing = nodeData.Result.IsSyncing
aleoData.Launched = nodeData.Result.Launched
aleoData.Version = nodeData.Result.Version
}
func aleoHandler(w http.ResponseWriter, r *http.Request) {
getAleoData()
if r.Method != "POST" {
t, err := template.ParseFiles("templates/aleo.html", "templates/header.html", "templates/footer.html")
if err != nil {
log.Fatal(w, err.Error())
return
}
t.ExecuteTemplate(w, "aleo", aleoData)
return
}
}