-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.go
55 lines (42 loc) · 1.04 KB
/
config.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
// Copyright 2023 J&J Ideenschmiede GmbH. All rights reserved.
package goshopify
import (
"bytes"
"net/http"
)
const (
transferProtocol = "https://"
baseUrl = ".myshopify.com/admin/api/"
apiVersion = "2024-01"
)
// Config is to define config data
type Config struct {
Path, Method string
Body []byte
}
// Request is to define the request data
type Request struct {
StoreName, AccessToken string
}
// Send is to send a new request
func (c Config) Send(r Request) (*http.Response, error) {
// Set url
url := transferProtocol + r.StoreName + baseUrl + apiVersion + c.Path
// Define client
client := &http.Client{}
// Request
request, err := http.NewRequest(c.Method, url, bytes.NewBuffer(c.Body))
if err != nil {
return nil, err
}
// Define header
request.Header.Set("Content-Type", "application/json")
request.Header.Set("X-Shopify-Access-Token", r.AccessToken)
// Send request & get response
response, err := client.Do(request)
if err != nil {
return nil, err
}
// Return data
return response, nil
}