Skip to content

Commit d5b4fd2

Browse files
fix: code dependencies, making GetTime() return time and error and isolating http logic to the client
1 parent 5370b1d commit d5b4fd2

File tree

2 files changed

+43
-41
lines changed

2 files changed

+43
-41
lines changed

cmd/main.go

+3-20
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@ package main
22

33
import (
44
"flag"
5-
"fmt"
6-
"io"
75
"log"
8-
"net/http"
96
"os"
107
"time"
118

@@ -16,16 +13,6 @@ const defaltBaseUrl = "http://localhost"
1613
const defaultEndpoint = "/datetime"
1714
const defaultPort = "8083"
1815

19-
func readBody(resp *http.Response) (string, error) {
20-
defer resp.Body.Close()
21-
body, err := io.ReadAll(resp.Body)
22-
if err != nil {
23-
return "", fmt.Errorf("error in reading request body: %v", err)
24-
25-
}
26-
return string(body), nil
27-
}
28-
2916
func getFlags() (string, string, string) {
3017
var port string
3118
flag.StringVar(&port, "port", "", "Specifies the port")
@@ -78,14 +65,10 @@ func decideConfigs() (string, string, string) {
7865
func main() {
7966
baseUrl, endpoint, port := decideConfigs()
8067

81-
c := pkg.NewClient(baseUrl, endpoint, port, time.Second)
82-
resp, err := c.RetrySendRequest("text/plain")
83-
if err != nil {
84-
log.Fatal(err)
85-
}
86-
body, err := readBody(resp)
68+
c := pkg.NewClient(baseUrl, endpoint, port, "text/plain", time.Second)
69+
timeNow, err := c.GetTime()
8770
if err != nil {
8871
log.Fatal(err)
8972
}
90-
log.Println(body)
73+
log.Println(timeNow)
9174
}

pkg/client.go

+40-21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package pkg
33

44
import (
55
"fmt"
6+
"io"
67
"net/http"
78
"time"
89

@@ -12,26 +13,26 @@ import (
1213

1314
// Client holds the configurations of the http client as well as the actual http.Client object
1415
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
1921
}
2022

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 {
2325
slog.Info("New Client created! \n")
2426
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},
2932
}
3033
}
3134

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) {
3536
url := c.baseUrl + ":" + c.port + c.endpoint
3637

3738
req, err := http.NewRequest("GET", url, nil)
@@ -40,7 +41,7 @@ func (c Client) SendRequest(contentType string) (*http.Response, error) {
4041
return nil, err
4142
}
4243

43-
req.Header.Add("content-type", contentType)
44+
req.Header.Add("content-type", c.contentType)
4445
resp, err := c.client.Do(req)
4546

4647
if err != nil {
@@ -52,27 +53,45 @@ func (c Client) SendRequest(contentType string) (*http.Response, error) {
5253
return resp, nil
5354
}
5455

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
5667
// 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) {
5970
var resp *http.Response
6071
var err error
6172

6273
expBackoff := backoff.NewExponentialBackOff()
6374
expBackoff.MaxElapsedTime = 10 * time.Second
6475

6576
retryError := backoff.RetryNotify(func() error {
66-
resp, err = c.SendRequest(contentType)
77+
resp, err = c.getTime()
6778
return err
6879
}, expBackoff, func(err error, d time.Duration) {
6980
slog.Warn("Request failed, Retrying ...")
7081
})
7182

7283
if retryError != nil {
7384
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)
7786
}
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+
7897
}

0 commit comments

Comments
 (0)