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
#![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::blocking::{Client, RequestBuilder, Response};
use reqwest::Error as ReqwestError;
use serde_json::Error as SerdeJsonError;

use api_parameters::ApiParameters;
use error::Error;
use mode::Mode;
use token::Token;
use torrents::Torrents;

pub mod category;
pub mod token;
pub mod torrent;
pub mod torrents;
pub mod format;
pub mod limit;
pub mod api_parameters;
pub mod mode;
pub mod sort_by;
pub mod error;
pub mod api_parameters_builder;
pub mod episode_info;

/* The API has a 1req/2s limit. We take one extra second just to be sure. */
const REQUEST_TIME_LIMIT: u64 = 3;
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 {
    /// Return the name of your app.
    ///
    /// # Example
    /// ```
    /// use rarbg_api::RarBgApi;
    /// let api = RarBgApi::new("example");
    /// assert_eq!("example", api.app_id())
    /// ```
    pub fn app_id(&self) -> &str {
        &self.app_id.as_str()
    }

    /// Return the token associate to your app.
    ///
    /// # Example
    /// ```
    /// use rarbg_api::RarBgApi;
    /// use rarbg_api::token::Token;
    ///
    /// let api = RarBgApi::new("example");
    /// let token: &Token = api.token();
    /// ```
    pub fn token(&self) -> &Token {
        &self.token
    }

    /// Create a new RARBG client.
    ///
    /// # Arguments
    ///
    /// * `app_id` - A string slice that holds the name of your app.
    ///
    /// # Example
    ///
    /// ```
    /// use rarbg_api::RarBgApi;
    /// let api = RarBgApi::new("example");
    /// ```
    pub fn new(app_id: &str) -> Self {
        RarBgApi {
            token: Token::new(app_id),
            app_id: app_id.to_string(),
        }
    }

    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());
        }
        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().clone() 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().as_ref().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();

        let content = match response {
            Ok(res) => res.text(),
            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.clone().as_str());
        match torrents {
            Ok(torrents) => Ok(torrents),
            Err(reason1) => {
                let api_error: Result<Error, SerdeJsonError> = serde_json::from_str(text.clone().as_str());
                match api_error {
                    Ok(api_error) => Err(api_error),
                    Err(reason2) => panic!("First reason: {}. Second reason: {}", reason1, reason2)
                }
            }
        }
    }

    /// List the torrents avalaible depending on parameters given.
    ///
    /// # Example
    /// ```
    /// use rarbg_api::RarBgApi;
    /// let mut api = RarBgApi::new("example");
    /// // It will get the 25 last ranked torrents
    /// let result = api.list(None);
    /// ```
    pub fn list(&mut self, parameters: Option<&ApiParameters>) -> Result<Torrents, Error> {
        self.request(None, Mode::List, parameters)
    }

    /// Search torrents by its name with some or no parameters.
    ///
    /// # Example
    /// ```
    /// use rarbg_api::RarBgApi;
    /// let mut api = RarBgApi::new("example");
    /// let result = api.search("Rick and Morty", None);
    /// ```
    pub fn search(&mut self, value: &str, parameters: Option<&ApiParameters>) -> Result<Torrents, Error> {
        self.request(Some(&[("search_string", value)]), Mode::Search, parameters)
    }

    /// Search torrents by its IMDB id with some or no parameters.
    ///
    /// # Example
    /// ```
    /// use rarbg_api::RarBgApi;
    /// let mut api = RarBgApi::new("example");
    /// // tt2861424 is Rick and Morty
    /// let result = api.search_by_imdb("tt2861424", None);
    /// ```
    pub fn search_by_imdb(&mut self, value: &str, parameters: Option<&ApiParameters>) -> Result<Torrents, Error> {
        self.request(Some(&[("search_imdb", value)]), Mode::Search, parameters)
    }

    /// Search torrents by its TVDB id with some or no parameters.
    ///
    /// # Example
    /// ```
    /// use rarbg_api::RarBgApi;
    /// let mut api = RarBgApi::new("example");
    /// // 275274 is Rick and Morty
    /// let result = api.search_by_tvdb("275274", None);
    /// ```
    pub fn search_by_tvdb(&mut self, value: &str, parameters: Option<&ApiParameters>) -> Result<Torrents, Error> {
        self.request(Some(&[("search_tvdb", value)]), Mode::Search, parameters)
    }

    /// Search torrents by its TMDB id with some or no parameters.
    ///
    /// # Example
    /// ```
    /// use rarbg_api::RarBgApi;
    /// let mut api = RarBgApi::new("example");
    /// // 60625 is Rick and Morty
    /// let result = api.search_by_tmdb("60625", None);
    /// ```
    pub fn search_by_tmdb(&mut self, value: &str, parameters: Option<&ApiParameters>) -> Result<Torrents, Error> {
        self.request(Some(&[("search_tmdb", value)]), Mode::Search, parameters)
    }
}