-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.go
66 lines (51 loc) · 1.46 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
56
57
58
59
60
61
62
63
64
65
66
//********************************************************************************************************************//
//
// Copyright (C) 2018 - 2021 J&J Ideenschmiede GmbH <info@jj-ideenschmiede.de>
//
// This file is part of gowoocommerce.
// All code may be used. Feel free and maybe code something better.
//
// Author: Jonas Kwiedor (aka gowizzard)
//
//********************************************************************************************************************//
package gowoocommerce
import (
"bytes"
"net/http"
)
// Config is to define config data
type Config struct {
Path, Method string
Body []byte
}
// Request is to define the request data
type Request struct {
BaseUrl, ConsumerKey, ConsumerSecret string
}
// Send is to send a new request
func (c *Config) Send(r Request) (*http.Response, error) {
// Set url
url := r.BaseUrl + 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")
// Define url parameter
parameter := request.URL.Query()
parameter.Add("consumer_key", r.ConsumerKey)
parameter.Add("consumer_secret", r.ConsumerSecret)
// Set new url
request.URL.RawQuery = parameter.Encode()
// Send request & get response
response, err := client.Do(request)
if err != nil {
return nil, err
}
// Return data
return response, nil
}