-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
69 lines (55 loc) · 1.55 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
67
68
69
//********************************************************************************************************************//
//
// Copyright (C) 2018 - 2021 J&J Ideenschmiede GmbH <[email protected]>
//
// This file is part of gosendcloud.
// All code may be used. Feel free and maybe code something better.
//
// Author: Jonas Kwiedor (aka gowizzard)
//
//********************************************************************************************************************//
package gosendcloud
import (
"bytes"
"encoding/base64"
"net/http"
)
const (
transferProtocol = "https://"
baseUrl = "panel.sendcloud.sc/api"
apiVersion = "/v2"
)
// Config is to define config data
type Config struct {
Path, Method string
Body []byte
}
// Request is to define the request data
type Request struct {
PublicKey string
SecretKey string
}
// Send is to send a new request
func (c Config) Send(r Request) (*http.Response, error) {
// Set url
url := transferProtocol + baseUrl + apiVersion + c.Path
// Create basic authentication
auth := "Basic " + base64.StdEncoding.EncodeToString([]byte(r.PublicKey+":"+r.SecretKey))
// 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("Authorization", auth)
request.Header.Set("Content-Type", "application/json")
// Send request & get response
response, err := client.Do(request)
if err != nil {
return nil, err
}
// Return data
return response, nil
}