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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
//! # urban-rs: API for Urban Dictionary
//!
//! An async API to interact with Urban Dictionary to get definitions from it.
//!
//! The API Uses reqwest for fetching definitions off of the internet
//!
//! There are three ways to get a definition:
//!
//! * by word
//! * by id
//! * randomly
//!
//! ## Example
//! ```rust
//! use std::io;
//!
//! use tokio::runtime::Runtime;
//!
//! println!("What word do you want defined?");
//! let mut word = String::new();
//! io::stdin()
//!     .read_line(&mut word)
//!     .expect("Failed to read line");
//!
//! // A reqwest client is needed to use the urban API
//! let client = reqwest::Client::new();
//!
//! // The function is async. Thus it needs an executor to be ran from inside a non-async
//! // function.
//! if let Ok(result) = Runtime::new()
//!     .expect("Failed to create tokio runtime")
//!     .block_on(urban_rs::fetch_definition(&client, &word))
//! {
//!
//!     // the result is a vector of definitions. If it has no length then there were no words
//!     // found
//!     if result.is_empty() {
//!         println!("No words were found");
//!         return;
//!     }
//!
//!     let first_result = &result[0];
//!     println!("Definition for {}:\n{}", first_result.word(), first_result.definition());
//!
//! } else {
//!     println!("An error has occured while fetching the definition");
//! }
//! ```
//! This example asks a user for a word and prints out its definition
//!
//! ## Guide
//! To start using urban-rs. Add it to your cargo.toml
//!
//! ```toml
//! urban-rs = "0.1.0"
//! ```
//! Urban-rs uses `reqwest` to fetch definitions trough the internet asynchronously.
//!
//! This means that you will need to use a `reqwest::Client` to give to the functions.
//! The reasons for the user to provide a client is so that it can be reused across multiple function calls.
//! Or even across different APIs that all need a reqwest client.
//!
//! Aditionally, since the functions are asynchronous, they won't directly return a result.
//! But instead will return a Future that needs to be executed.
//! Using `futures`'s executors won't work. As reqwest requires tokios runtime to be executed.
//! Thus the futures returned from the functions need to be called trough `tokio`'s `Runtime` and its executors.
//!
//! ```rust
//! use tokio::runtime::Runtime;
//!
//! // A reqwest client is needed so that the Urban API can make web API calls
//! let client = reqwest::Client::new();
//!
//! // As stated before. The API uses async functions which return futures. These need to be executed trough
//! // tokio's Runtime.
//! if let Ok(result) = Runtime::new()
//!     .expect("Failed to create tokio runtime")
//!     .block_on(urban_rs::fetch_random(&client))
//! {
//!
//!     // the result is a vector of definitions. If it has no length then there were no words
//!     // found
//!     if result.is_empty() {
//!         println!("No words were found");
//!         return;
//!     }
//!
//!     let first_result = &result[0];
//!     println!("Definition of the day: {}!\n{}", first_result.word(), first_result.definition());
//!
//! } else {
//!     println!("An error has occured while fetching the definition");
//! }
//! ```
//!
//! ## License
//! [MIT](https://choosealicense.com/licenses/mit/)

// std libraries
use std::fmt;

// external libraries
use chrono::naive::NaiveDate;

/// A wrapper for the id of a definition entry.
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)]
pub struct Defid(u64);

impl Defid {
    /// defid constructor from u64
    pub fn new(id: u64) -> Defid {
        Defid(id)
    }

    /// Getter method to unwrap the u64 from a Defid.
    pub fn as_u64(self) -> u64 {
        self.0
    }
}

/// The struct to represent an Urban definition entry.
///
/// ## Example
///
#[derive(Debug, Clone)]
pub struct Definition {
    word: String,
    definition: String,
    example: String,
    author: String,
    written_on: NaiveDate,
    defid: Defid,
    thumbs_up: u32,
    thumbs_down: u32,
    permalink: String,
    sound_urls: Vec<String>,
}

impl PartialEq for Definition {
    fn eq(&self, other: &Self) -> bool {
        self.defid == other.defid
    }
}

impl Eq for Definition {}

impl fmt::Display for Definition {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}: {}", self.word, self.definition)
    }
}

/// Getter methods for a Definition
impl Definition {
    fn new(json_definition: &serde_json::Value) -> Option<Definition> {

        let word = json_definition["word"].as_str()?.to_string();
        let definition = json_definition["definition"].as_str()?.to_string();
        let example = json_definition["example"].as_str()?.to_string();
        let author = json_definition["author"].as_str()?.to_string();
        let parsed_date_str = json_definition["written_on"].as_str()?;
        let written_on = NaiveDate::parse_from_str(
            parsed_date_str,
            "%Y-%m-%dT%H:%M:%S%.3fZ"
        ).ok()?;
        let defid = Defid(json_definition["defid"].as_u64()?);
        let thumbs_up = json_definition["thumbs_up"].as_u64()? as u32;
        let thumbs_down = json_definition["thumbs_down"].as_u64()? as u32;
        let permalink = json_definition["permalink"].as_str()?.to_string();
        let sound_urls = json_definition["sound_urls"].as_array()?
            .iter().filter_map(|j_url| j_url.as_str())
            .map(|s_url| s_url.to_string()).collect();

        Some(Definition {
            word,
            definition,
            example,
            author,
            written_on,
            defid,
            thumbs_up,
            thumbs_down,
            permalink,
            sound_urls,
        })
    }

    /// The word the entry is defining
    pub fn word(&self) -> &str {
        &self.word
    }

    /// The body of the definition
    pub fn definition(&self) -> &str {
        &self.definition
    }

    /// An example of the use of the word
    pub fn example(&self) -> &str {
        &self.example
    }

    /// The author of the Definition entry
    pub fn author(&self) -> &str {
        &self.author
    }

    /// The date the entry was written on
    pub fn written_on(&self) -> &NaiveDate {
        &self.written_on
    }

    /// The id of the definition
    pub fn defid(&self) -> Defid {
        self.defid
    }

    /// The number of thumbs up the entry has
    pub fn thumbs_up(&self) -> u32 {
        self.thumbs_up
    }

    /// The number of thumbs down the entry has
    pub fn thumbs_down(&self) -> u32 {
        self.thumbs_down
    }

    /// A permalink to the entry
    pub fn permalink(&self) -> &str {
        &self.permalink
    }

    /// A list of urls to sounds of the entry
    pub fn sound_urls(&self) -> &Vec<String> {
        &self.sound_urls
    }
}

// API Functions

/// Get a list of definitions trough a reqwest client by word.
///
/// ## Example
/// ```rust
/// use std::io;
///
/// use tokio::runtime::Runtime;
///
/// println!("What word do you want defined?");
/// let mut word = String::new();
/// io::stdin()
///     .read_line(&mut word)
///     .expect("Failed to read line");
///
/// // A reqwest client is needed to use the urban API
/// let client = reqwest::Client::new();
///
/// // The function is async. Thus it needs an executor to be ran from inside a non-async
/// // function.
/// if let Ok(result) = Runtime::new()
///     .expect("Failed to create tokio runtime")
///     .block_on(urban_rs::fetch_definition(&client, &word))
/// {
///
///     // the result is a vector of definitions. If it has no length then there were no words
///     // found
///     if result.is_empty() {
///         println!("No words were found");
///         return;
///     }
///
///     let first_result = &result[0];
///     println!("Definition for {}:\n{}", first_result.word(), first_result.definition());
///
/// } else {
///     println!("An error has occured while fetching the definition");
/// }
/// ```
/// This example asks the user for a word and returns the first definition from Urban Dictionary.
///
/// ## Errors
/// The error type of the result is UrbanError. Which is an enum of three types.
/// * ReqwestError
/// * SerdeError
/// * UnknownJsonError
///
/// ### ReqwestError
/// This error occurs when reqwest fails to fetch from the Urban API.
///
/// ### SerdeError
/// This error occurs when the json received is invalid.
///
/// ### UnknownJsonError
/// This error occurs when the json received is valid but does not have the expected structure.
///
/// ### Empty result
/// There is a fourth case. In which there are no entries in Urban Dictionary for the looked up
/// word. In which case the Vector returned will be empty.
pub async fn fetch_definition(client: &reqwest::Client, word: &str) -> Result<Vec<Definition>, UrbanError> {
    let response: serde_json::Value = client.get(&format!("https://api.urbandictionary.com/v0/define?term={}", word))
        .send()
        .await?
        .json()
        .await?;

    response.get("list")
        .ok_or_else(|| UrbanError::UnknownJsonError)?
        .as_array()
        .ok_or_else(|| UrbanError::UnknownJsonError)?
        .iter()
        .map(|def| Definition::new(def).ok_or_else(|| UrbanError::UnknownJsonError))
        .collect()
}

/// Get a definition trough a reqwest client by Defid, or None if the Defid is invalid.
///
/// ## Example
/// ```rust
/// tokio::runtime::Runtime;
/// // client and tokio runtime are needed to fetch the definitions
/// let client = reqwest::Client::new();
/// let mut rt = Runtime::new().expect("Failed to create runtime");
///
/// // for the purpose of the example we first get some random definitions and focus on the first
/// // some random definitions and focus on the first one.
/// let randoms = rt.block_on(urban_rs::fetch_random(&client)).unwrap();
/// let first = &randoms[0];
///
/// // Using the defid of the first entry we got. We can fetch the exact same entry later on.
/// let copy = rt.block_on(urban_rs::fetch_by_defid(&client, first.defid())).unwrap().unwrap();
///
/// assert_eq!(first, &copy);
/// ```
/// This example shows how one can get the same entry by using a defid.
/// Do note that this is a bad example with a ton of unwraps used only for the purpose of showing
/// off the function.
///
/// In a real world application. You could use the defid to store entries with just an id number
/// and then later on fetch them when needed.
///
/// ## Errors
/// The error type of the result is UrbanError. Which is an enum of three types.
/// * ReqwestError
/// * SerdeError
/// * UnknownJsonError
///
/// ### ReqwestError
/// This error occurs when reqwest fails to fetch from the Urban API.
///
/// ### SerdeError
/// This error occurs when the json received is invalid.
///
/// ### UnknownJsonError
/// This error occurs when the json received is valid but does not have the expected structure.
///
/// ### Empty result
/// There is a fourth case. In which the funtion returns None. This happens when the querried defid
/// is invalid.
pub async fn fetch_by_defid(client: &reqwest::Client, defid: Defid) -> Result<Option<Definition>, UrbanError> {
    let response: serde_json::Value = client.get(&format!("https://api.urbandictionary.com/v0/define?defid={}", defid.0))
        .send()
        .await?
        .json()
        .await?;

    response.get("list")
        .ok_or_else(|| UrbanError::UnknownJsonError)?
        .as_array()
        .ok_or_else(|| UrbanError::UnknownJsonError)?
        .first()
        .map(|def| Definition::new(def).ok_or_else(|| UrbanError::UnknownJsonError))
        .transpose()
}
/// Fetch a list of random definitions trough a reqwest client.
///
/// ## Example
/// ```rust
/// use tokio::runtime::Runtime;
///
/// // A reqwest client is needed to use the urban API
/// let client = reqwest::Client::new();
///
/// // The function is async. Thus it needs an executor to be ran from inside a non-async
/// // function.
/// if let Ok(random_defs) = Runtime::new()
///     .expect("Failed to create tokio runtime")
///     .block_on(urban_rs::fetch_random(&client))
/// {
///
///     // the random_defs is a vector of definitions. If it has no length then there were no words
///     // found
///     if random_defs.is_empty() {
///         println!("No words were found");
///         return;
///     }
///
///     let first_random = &random_defs[0];
///     println!("Word of the day: {}!\n{}", first_random.word(), first_random.definition());
///
/// } else {
///     println!("An error has occured while fetching the definition");
/// }
/// ```
/// This example prints a random word and its definition.
///
/// ## Errors
/// The error type of the result is UrbanError. Which is an enum of three types.
/// * ReqwestError
/// * SerdeError
/// * UnknownJsonError
///
/// ### ReqwestError
/// This error occurs when reqwest fails to fetch from the Urban API.
///
/// ### SerdeError
/// This error occurs when the json received is invalid.
///
/// ### UnknownJsonError
/// This error occurs when the json received is valid but does not have the expected structure.
///
/// ### Empty result
/// There is the case in which the vector returned is empty. In theory it would always be populated
/// as there is no reason for Urban to not find any definitions to return. But you should always be
/// safe with fetches trough the internet and check that the vector is not empty.
pub async fn fetch_random(client: &reqwest::Client) -> Result<Vec<Definition>, UrbanError> {
    let response: serde_json::Value = client.get("https://api.urbandictionary.com/v0/random")
        .send()
        .await?
        .json()
        .await?;

    response.get("list")
        .ok_or_else(|| UrbanError::UnknownJsonError)?
        .as_array()
        .ok_or_else(|| UrbanError::UnknownJsonError)?
        .iter()
        .map(|def| Definition::new(def).ok_or_else(|| UrbanError::UnknownJsonError))
        .collect()
}


// Errors

/// Errors for the library.
///
/// There are many different types of errors that can arise when calling for definitions. Like a
/// reqwest error in case it can't access the online API, or a serde_json error when there's an
/// error in json parsing.
///
/// For this reason all the different possible errors are encapsulated under the `UrbanError` enum.
#[derive(thiserror::Error, Debug)]
pub enum UrbanError {
    /// Produced when reqwest fails.
    #[error("reqwest error: {0:?}")]
    ReqwestError(#[from] reqwest::Error),

    /// Produced when serde fails.
    #[error("serde_json error: {0:?}")]
    SerdeError(#[from] serde_json::Error),

    /// Error produced when the Json received from Urban's API has an unexpected structure.
    ///
    /// If a function returns this error. It means that it has correctly been able to fetch and
    /// recieve the Json from Urban's API. But it doesn't have the expected structure of a definition.
    #[error("Valid json has unkown structure")]
    UnknownJsonError
}