-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.go
123 lines (102 loc) · 2.44 KB
/
api.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
package main
import (
"bytes"
"encoding/json"
"io/ioutil"
"log"
"net/http"
"strconv"
"time"
)
// AdminRequests is for the /api/admin/requests endpoint
type AdminRequests struct {
Ok bool `json:"ok"`
Msg string `json:"msg"`
Requests []struct {
ID int `json:"ID"`
VideoID string `json:"video_id"`
RawURL string `json:"raw_url"`
ArchivedAt interface{} `json:"archived_at"`
} `json:"requests"`
}
// Payload to push IDs
type Payload struct {
VideoIds []string `json:"video_ids"`
}
func pushIDs(videoIDs []string) error {
data := new(Payload)
data.VideoIds = videoIDs
payloadBytes, err := json.Marshal(data)
if err != nil {
return err
}
body := bytes.NewReader(payloadBytes)
req, err := http.NewRequest("POST", "https://youtube.the-eye.eu/api/admin/requests", body)
if err != nil {
return err
}
req.Header.Set("X-Secret", arguments.Secret)
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
return nil
}
func markIDsArchived(IDs ...string) error {
data := new(Payload)
data.VideoIds = IDs
payloadBytes, err := json.Marshal(data)
if err != nil {
return err
}
body := bytes.NewReader(payloadBytes)
req, err := http.NewRequest("PUT", "https://youtube.the-eye.eu/api/admin/requests", body)
if err != nil {
return err
}
req.Header.Set("X-Secret", arguments.Secret)
req.Header.Set("Content-Type", "application/json")
resp, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
return nil
}
func getID(secret string, offset, limit int) (IDs []string) {
URL := "https://youtube.the-eye.eu/api/admin/requests?" +
"offset=" + strconv.Itoa(offset) +
"&limit=" + strconv.Itoa(limit)
spaceClient := http.Client{
Timeout: time.Second * 10,
}
req, err := http.NewRequest(http.MethodGet, URL, nil)
if err != nil {
log.Fatal(err)
}
req.Header.Set("X-Secret", secret)
res, getErr := spaceClient.Do(req)
if getErr != nil {
log.Fatal(getErr)
}
body, readErr := ioutil.ReadAll(res.Body)
if readErr != nil {
log.Fatal(readErr)
}
requestResponse := AdminRequests{}
jsonErr := json.Unmarshal(body, &requestResponse)
if jsonErr != nil {
log.Println(jsonErr)
return nil
}
for _, response := range requestResponse.Requests {
IDs = append(IDs, response.VideoID)
}
if len(IDs) < 1 {
log.Println(jsonErr)
return nil
}
return IDs
}