-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
149 lines (125 loc) · 3.58 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
// package main
// import (
// "fmt"
// back "groupie-tracker/backend"
// "log"
// "net/http"
// "sync"
// "time"
// )
// const (
// artistsUrl string = "https://groupietrackers.herokuapp.com/api/artists"
// locationUrl string = "https://groupietrackers.herokuapp.com/api/locations"
// dateUrl string = "https://groupietrackers.herokuapp.com/api/dates"
// relationUrl string = "https://groupietrackers.herokuapp.com/api/relation"
// )
// var (
// serverRunning bool
// serverMutex sync.Mutex
// )
// func startServer() {
// serverMutex.Lock()
// defer serverMutex.Unlock()
// if serverRunning {
// return
// }
// back.Client = &http.Client{Timeout: 10 * time.Second}
// //Synchronized goroutines
// wg := &sync.WaitGroup{}
// wg.Add(4)
// go func(wg *sync.WaitGroup) {
// back.GetJson(artistsUrl, &back.Myartists)
// wg.Done()
// }(wg)
// go func(wg *sync.WaitGroup) {
// back.GetJson(locationUrl, &back.Mylocations)
// wg.Done()
// }(wg)
// go func(wg *sync.WaitGroup) {
// back.GetJson(dateUrl, &back.Mydates)
// wg.Done()
// }(wg)
// go func(wg *sync.WaitGroup) {
// back.GetJson(relationUrl, &back.Myrelations)
// wg.Done()
// }(wg)
// wg.Wait()
// back.AppendToArtistStruct()
// fs := http.FileServer(http.Dir("static"))
// http.Handle("/static/", http.StripPrefix("/static/", fs))
// http.HandleFunc("/", back.MainpageHandler)
// fmt.Println("💻 Server listening at")
// fmt.Println("👉 http://localhost:8084")
// fmt.Println("❌ CTRL+C to STOP Server")
// log.Fatal(http.ListenAndServe(":8084", nil))
// serverRunning = true
// }
// func stopServer() {
// serverMutex.Lock()
// defer serverMutex.Unlock()
// if !serverRunning {
// return
// }
// // Implement logic to stop the server here, if necessary
// serverRunning = false
// }
// func main() {
// http.HandleFunc("/start-server", func(w http.ResponseWriter, r *http.Request) {
// startServer()
// fmt.Fprintln(w, "Server started successfully")
// })
// http.HandleFunc("/stop-server", func(w http.ResponseWriter, r *http.Request) {
// stopServer()
// fmt.Fprintln(w, "Server stopped successfully")
// })
// fmt.Println("Server control endpoints:")
// fmt.Println("👉 http://localhost:8084/start-server (Start Server)")
// fmt.Println("👉 http://localhost:8084/stop-server (Stop Server)")
// select {}
// }
package main
import (
"fmt"
back "groupie-tracker/backend"
"log"
"net/http"
"sync"
"time"
)
const (
artistsUrl string = "https://groupietrackers.herokuapp.com/api/artists"
locationUrl string = "https://groupietrackers.herokuapp.com/api/locations"
dateUrl string = "https://groupietrackers.herokuapp.com/api/dates"
relationUrl string = "https://groupietrackers.herokuapp.com/api/relation"
)
func main() {
back.Client = &http.Client{Timeout: 10 * time.Second}
//Synchronized goroutines
wg := &sync.WaitGroup{}
wg.Add(4)
go func(wg *sync.WaitGroup) {
back.GetJson(artistsUrl, &back.Myartists)
wg.Done()
}(wg)
go func(wg *sync.WaitGroup) {
back.GetJson(locationUrl, &back.Mylocations)
wg.Done()
}(wg)
go func(wg *sync.WaitGroup) {
back.GetJson(dateUrl, &back.Mydates)
wg.Done()
}(wg)
go func(wg *sync.WaitGroup) {
back.GetJson(relationUrl, &back.Myrelations)
wg.Done()
}(wg)
wg.Wait()
back.AppendToArtistStruct()
fs := http.FileServer(http.Dir("static"))
http.Handle("/static/", http.StripPrefix("/static/", fs))
http.HandleFunc("/", back.MainpageHandler)
fmt.Println("💻 Server listening at")
fmt.Println("👉 http://localhost:8084")
fmt.Println("❌ CTRL+C to STOP Server")
log.Fatal(http.ListenAndServe(":8084", nil))
}