@@ -3,6 +3,7 @@ package pkg
3
3
4
4
import (
5
5
"fmt"
6
+ "io"
6
7
"net/http"
7
8
"time"
8
9
@@ -12,26 +13,26 @@ import (
12
13
13
14
// Client holds the configurations of the http client as well as the actual http.Client object
14
15
type Client struct {
15
- baseUrl string
16
- endpoint string
17
- port string
18
- client http.Client
16
+ baseUrl string
17
+ endpoint string
18
+ port string
19
+ contentType string
20
+ client http.Client
19
21
}
20
22
21
- // NewClient takes the baseUrl, endpoint, port and timeout and returns a Client object
22
- func NewClient (baseUrl string , endpoint string , port string , timeout time.Duration ) Client {
23
+ // NewClient takes the baseUrl, endpoint, port, content-type and timeout and returns a Client object
24
+ func NewClient (baseUrl string , endpoint string , port string , contentType string , timeout time.Duration ) Client {
23
25
slog .Info ("New Client created! \n " )
24
26
return Client {
25
- baseUrl : baseUrl ,
26
- endpoint : endpoint ,
27
- port : port ,
28
- client : http.Client {Timeout : timeout },
27
+ baseUrl : baseUrl ,
28
+ endpoint : endpoint ,
29
+ port : port ,
30
+ contentType : contentType ,
31
+ client : http.Client {Timeout : timeout },
29
32
}
30
33
}
31
34
32
- // SendRequest takes the wanted content type as a string, creates the request
33
- // and adds the content-type header then send the request and returns the response and an error if exists
34
- func (c Client ) SendRequest (contentType string ) (* http.Response , error ) {
35
+ func (c Client ) getTime () (* http.Response , error ) {
35
36
url := c .baseUrl + ":" + c .port + c .endpoint
36
37
37
38
req , err := http .NewRequest ("GET" , url , nil )
@@ -40,7 +41,7 @@ func (c Client) SendRequest(contentType string) (*http.Response, error) {
40
41
return nil , err
41
42
}
42
43
43
- req .Header .Add ("content-type" , contentType )
44
+ req .Header .Add ("content-type" , c . contentType )
44
45
resp , err := c .client .Do (req )
45
46
46
47
if err != nil {
@@ -52,27 +53,45 @@ func (c Client) SendRequest(contentType string) (*http.Response, error) {
52
53
return resp , nil
53
54
}
54
55
55
- // RetrySendRequest takes the wanted content type as a string, creates and sends the request and uses the retry mechanism
56
+ func readBody (resp * http.Response ) (string , error ) {
57
+ defer resp .Body .Close ()
58
+ body , err := io .ReadAll (resp .Body )
59
+ if err != nil {
60
+ return "" , fmt .Errorf ("error in reading request body: %v" , err )
61
+
62
+ }
63
+ return string (body ), nil
64
+ }
65
+
66
+ // GetTime creates and sends the request and uses the retry mechanism
56
67
// for maximum of 10 seconds before the request fails
57
- // it then returns the response and an error if it failed to send for 10 seconds
58
- func (c Client ) RetrySendRequest ( contentType string ) (* http. Response , error ) {
68
+ // it then returns the time and an error if it failed to send for 10 seconds
69
+ func (c Client ) GetTime ( ) (time. Time , error ) {
59
70
var resp * http.Response
60
71
var err error
61
72
62
73
expBackoff := backoff .NewExponentialBackOff ()
63
74
expBackoff .MaxElapsedTime = 10 * time .Second
64
75
65
76
retryError := backoff .RetryNotify (func () error {
66
- resp , err = c .SendRequest ( contentType )
77
+ resp , err = c .getTime ( )
67
78
return err
68
79
}, expBackoff , func (err error , d time.Duration ) {
69
80
slog .Warn ("Request failed, Retrying ..." )
70
81
})
71
82
72
83
if retryError != nil {
73
84
slog .Error ("failed to make the request after retries: %v" , err )
74
- return resp , fmt .Errorf ("failed to make the request after retries: %v" , err )
75
- } else {
76
- return resp , nil
85
+ return time.Time {}, fmt .Errorf ("failed to make the request after retries: %v" , err )
77
86
}
87
+ body , err := readBody (resp )
88
+ if err != nil {
89
+ return time.Time {}, err
90
+ }
91
+ timeNow , err := time .Parse (time .ANSIC , body )
92
+ if err != nil {
93
+ return time.Time {}, err
94
+ }
95
+ return timeNow , nil
96
+
78
97
}
0 commit comments