-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.js
128 lines (111 loc) · 3.34 KB
/
index.js
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
124
125
126
127
128
var axios = require("axios");
var FormData = require('form-data');
module.exports = class Seedr {
constructor() {}
async login(username, password) {
this.username = username;
this.password = password;
var data = new FormData();
data.append('grant_type', 'password');
data.append('client_id', 'seedr_chrome');
data.append('type', 'login');
data.append('username', this.username);
data.append('password', this.password);
var token = await axios({
method: 'post',
url: 'https://www.seedr.cc/oauth_test/token.php',
headers: data.getHeaders(),
data: data
});
this.token = token.data["access_token"];
this.rft = token.data["refresh_token"];
return this.token;
}
async getDeviceCode() {
var dc = await axios("https://www.seedr.cc/api/device/code?client_id=seedr_xbmc");
this.devc = dc.data["device_code"];
this.usc = dc.data["user_code"];
console.log(`Paste this code into Seedr ${this.usc} || And here is your token ${this.devc}`);
return this.usc;
}
async getToken(devc) {
var token = await axios("https://www.seedr.cc/api/device/authorize?device_code=" + devc + "&client_id=seedr_xbmc");
this.token = token.data["access_token"];
return this.token;
}
async addToken(token) {
this.token = token;
}
async addMagnet(magnet) {
var data = new FormData();
data.append('access_token', this.token);
data.append('func', 'add_torrent');
data.append('torrent_magnet', magnet);
var res = await axios({
method: 'post',
url: 'https://www.seedr.cc/oauth_test/resource.php',
headers: data.getHeaders(),
data: data
});
return res.data;
}
async getVideos() {
var res = [];
var data = await axios("https://www.seedr.cc/api/folder?access_token=" + this.token);
for (var folder of data.data.folders) {
res.push((await axios("https://www.seedr.cc/api/folder/" + folder.id + "?access_token=" + this.token)).data.files.filter(x => x["play_video"]).map(x => {
return {
fid: folder.id,
id: x["folder_file_id"],
name: x.name
}
}));
}
return res;
}
async getFile(id) {
var data = new FormData();
data.append('access_token', this.token);
data.append('func', 'fetch_file');
data.append('folder_file_id', id);
var res = await axios({
method: 'post',
url: 'https://www.seedr.cc/oauth_test/resource.php',
headers: data.getHeaders(),
data: data
});
return res.data;
}
async deleteFolder(id) {
var data = new FormData();
data.append('access_token', this.token);
data.append('func', 'delete');
data.append('delete_arr', JSON.stringify([{
type: 'folder',
id: id
}]));
var res = await axios({
method: 'post',
url: 'https://www.seedr.cc/oauth_test/resource.php',
headers: data.getHeaders(),
data: data
});
return res.data;
}
async deleteFile(id) {
var data = new FormData();
data.append('access_token', this.token);
data.append('func', 'delete');
data.append('delete_arr', JSON.stringify([{
type: 'file',
id: id
}]));
var res = await axios({
method: 'post',
url: 'https://www.seedr.cc/oauth_test/resource.php',
headers: data.getHeaders(),
data: data
});
return res.data;
}
}