-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
129 lines (99 loc) · 2.49 KB
/
Copy pathmain.go
File metadata and controls
129 lines (99 loc) · 2.49 KB
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
package main
import (
"context"
"encoding/json"
"fmt"
"http-multiplexer/lib/envReader"
"http-multiplexer/lib/httpClientMultiplexer"
"http-multiplexer/lib/httpServe"
"http-multiplexer/schemas"
"io"
"log"
"net/http"
"os"
"os/signal"
"sync/atomic"
"syscall"
"time"
)
var (
Config schemas.Config
countRequest int32
)
func main() {
atomic.StoreInt32(&countRequest, 0)
err := envReader.GetEnvVariable(&Config)
if err != nil {
log.Fatal(err)
}
endpoint := httpServe.Endpoint{
Path: Config.ServerPath,
Handler: HandlerHttp,
}
server, err := httpServe.Listen(Config.ServerPort, []httpServe.Endpoint{endpoint})
if err != nil {
log.Fatal(err)
}
quit := make(chan os.Signal, 1)
signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
<-quit
fmt.Println("Shutting down server...")
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
if err := server.Shutdown(ctx); err != nil {
fmt.Fprintf(os.Stderr, "Server forced to shutdown: %v\n", err)
}
fmt.Println("Server exiting")
}
func HandlerHttp(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
if r.Method != "POST" {
w.WriteHeader(http.StatusBadRequest)
return
}
numberReq := atomic.LoadInt32(&countRequest)
if int(numberReq) >= Config.ServerMaxCountReq {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(w, "Too much request")
return
}
atomic.AddInt32(&countRequest, 1)
reqBody, err := io.ReadAll(r.Body)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
return
}
var Req schemas.RequestBody
err = json.Unmarshal(reqBody, &Req)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
return
}
CountUrl := len(Req.UrlList)
if CountUrl > Config.HttpMaxCountURL {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(w, "Max url %v", Config.HttpMaxCountURL)
return
}
var (
result schemas.ResponseGeneral
)
result.CountRequest = CountUrl
Responses, err := httpClientMultiplexer.SendMultiplexerRequests(r.Context(), Req.UrlList, "GET",
time.Duration(Config.HttpTimeout)*time.Millisecond, Config.HttpMaxParallelReq)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(w, "Error url request %v", err)
log.Println(err)
return
}
result.Responses = Responses
response, err := json.MarshalIndent(result, "", "\t")
if err != nil {
w.WriteHeader(http.StatusBadRequest)
fmt.Fprintf(w, "Error body decode")
return
}
atomic.AddInt32(&countRequest, -1)
fmt.Fprintf(w, string(response))
}