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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
#![crate_name = "rarbg_api"]
extern crate chrono;
extern crate reqwest;
extern crate serde;
extern crate serde_json;
use std::thread::sleep;
use std::time::Duration;
use reqwest::{Client, Error as ReqwestError, RequestBuilder, Response};
use serde_json::Error as SerdeJsonError;
use crate::api_parameters::ApiParameters;
use crate::error::Error;
use crate::mode::Mode;
use crate::token::Token;
use crate::torrents::Torrents;
pub mod api_parameters;
pub mod api_parameters_builder;
pub mod category;
pub mod episode_info;
pub mod error;
pub mod format;
pub mod limit;
pub mod mode;
pub mod sort_by;
pub mod token;
pub mod torrent;
pub mod torrents;
const REQUEST_TIME_LIMIT: u64 = 5;
const USER_AGENT: &str =
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:73.0) Gecko/20100101 Firefox/73.0";
const ENDPOINT: &str = "https://torrentapi.org/pubapi_v2.php";
#[derive(Debug)]
pub struct RarBgApi {
app_id: String,
token: Token,
}
impl RarBgApi {
pub fn app_id(&self) -> &str {
self.app_id.as_str()
}
pub fn token(&self) -> &Token {
&self.token
}
pub async fn new(app_id: &str) -> Self {
RarBgApi {
token: Token::new(app_id).await,
app_id: app_id.to_string(),
}
}
async fn request(
&mut self,
search_value: Option<&[(&str, &str)]>,
mode: Mode,
parameters: Option<&ApiParameters>,
) -> Result<Torrents, Error> {
if !self.token.is_valid() {
self.token = Token::new(self.app_id()).await;
}
sleep(Duration::new(REQUEST_TIME_LIMIT, 0));
let client: Client = Client::builder().user_agent(USER_AGENT).build().unwrap();
let mut request: RequestBuilder = client
.get(ENDPOINT)
.query(&[("mode", mode.as_str())])
.query(&[("token", self.token().value())])
.query(&[("app_id", self.app_id())]);
if search_value.is_some() {
request = request.query(search_value.unwrap());
}
if parameters.is_some() {
let pm = parameters.unwrap();
request = request
.query(&[("ranked", *pm.ranked() as isize)])
.query(&[("sort", &pm.sort_by().as_str())])
.query(&[("limit", pm.limit().as_str())])
.query(&[("format", pm.format().as_str())]);
if pm.minimum_seeders().is_some() {
request = request.query(&[("min_seeders", pm.minimum_seeders().unwrap())]);
}
if pm.minimum_leechers().is_some() {
request = request.query(&[("min_leechers", pm.minimum_leechers().unwrap())]);
}
if pm.categories().is_some() {
let categories = pm.categories().unwrap();
let stringified_categories: Vec<&str> =
categories.iter().map(|c| c.as_str()).collect();
let joined_categories: String = stringified_categories.join(";");
request = request.query(&[("category", joined_categories)]);
}
}
let response: Result<Response, ReqwestError> = request.send().await;
let content = match response {
Ok(res) => res.text().await,
Err(reason) => panic!("{}", reason),
};
let text = match content {
Ok(text) => text,
Err(reason) => panic!("{}", reason),
};
let torrents: Result<Torrents, SerdeJsonError> = serde_json::from_str(text.as_str());
match torrents {
Ok(torrents) => Ok(torrents),
Err(reason1) => {
let api_error: Result<Error, SerdeJsonError> = serde_json::from_str(text.as_str());
match api_error {
Ok(api_error) => Err(api_error),
Err(reason2) => panic!("First reason: {}. Second reason: {}", reason1, reason2),
}
}
}
}
pub async fn list(&mut self, parameters: Option<&ApiParameters>) -> Result<Torrents, Error> {
self.request(None, Mode::List, parameters).await
}
pub async fn search(
&mut self,
value: &str,
parameters: Option<&ApiParameters>,
) -> Result<Torrents, Error> {
self.request(Some(&[("search_string", value)]), Mode::Search, parameters)
.await
}
pub async fn search_by_imdb(
&mut self,
value: &str,
parameters: Option<&ApiParameters>,
) -> Result<Torrents, Error> {
self.request(Some(&[("search_imdb", value)]), Mode::Search, parameters)
.await
}
pub async fn search_by_tvdb(
&mut self,
value: &str,
parameters: Option<&ApiParameters>,
) -> Result<Torrents, Error> {
self.request(Some(&[("search_tvdb", value)]), Mode::Search, parameters)
.await
}
pub async fn search_by_tmdb(
&mut self,
value: &str,
parameters: Option<&ApiParameters>,
) -> Result<Torrents, Error> {
self.request(Some(&[("search_tmdb", value)]), Mode::Search, parameters)
.await
}
}