-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
64 lines (51 loc) · 1.4 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
//********************************************************************************************************************//
//
// Copyright (C) 2018 - 2022 J&J Ideenschmiede GmbH <[email protected]>
//
// This file is part of gocheck24.
// All code may be used. Feel free and maybe code something better.
//
// Author: Jonas Kwiedor (aka gowizzard)
//
//********************************************************************************************************************//
package gocheck24
import (
"bytes"
"encoding/base64"
"net/http"
)
const (
baseUrl = "https://opentrans.shopping.check24.de/api"
)
// Config is to define config data
type Config struct {
Path, Method string
Body []byte
}
// Request is to define the request data
type Request struct {
Username, Password string
}
// Send is to send a new request
func (c *Config) Send(r Request) (*http.Response, error) {
// Set url
url := 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 basic auth
auth := r.Username + ":" + r.Password
basic := base64.StdEncoding.EncodeToString([]byte(auth))
request.Header.Add("Authorization", "Basic "+basic)
// Send request & get response
response, err := client.Do(request)
if err != nil {
return nil, err
}
// Return data
return response, nil
}