-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.go
74 lines (58 loc) · 1.63 KB
/
request.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
70
71
72
73
74
package files
import (
"bytes"
"encoding/json"
"mime/multipart"
"net/http"
)
const baseUrl = "https://api.uploadfly.cloud"
type Request struct {
APIKey string
}
func NewAPIClient(apiKey string) *Request {
return &Request{
APIKey: apiKey,
}
}
type UploadRequest struct {
File multipart.FileHeader `json:"file"`
Filename string `json:"filename"`
MaxFileSize string `json:"maxFileSize"`
AllowedFileTypes string `json:"allowedFileTypes"`
}
// Post sends a POST request to the specified endpoint with the given payload.
func (c *Request) Post(payload UploadRequest) (*http.Response, error) {
url := baseUrl + "/upload"
// Convert payload to JSON
payloadBytes, err := json.Marshal(payload)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", url, bytes.NewBuffer(payloadBytes))
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer "+c.APIKey)
client := http.DefaultClient
return client.Do(req)
}
type DeleteRequest struct {
FileUrl string `json:"file_url"`
}
// Post sends a POST request to the specified endpoint with the given payload.
func (c *Request) Delete(payload DeleteRequest) (*http.Response, error) {
url := baseUrl + "/delete"
// Convert payload to JSON
payloadBytes, err := json.Marshal(payload)
if err != nil {
return nil, err
}
req, err := http.NewRequest("DELETE", url, bytes.NewBuffer(payloadBytes))
if err != nil {
return nil, err
}
req.Header.Set("Authorization", "Bearer "+c.APIKey)
client := http.DefaultClient
return client.Do(req)
}