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
//! Builder for completing the account recovery process.
//!
//! <https://api.mangadex.org/swagger.html#/Account/post-account-recover-code>
//!
//! # Examples
//!
//! ```rust
//! use mangadex_api::MangaDexClient;
//! use mangadex_api::types::Password;
//!
//! # async fn run() -> anyhow::Result<()> {
//! let client = MangaDexClient::default();
//!
//! let account_complete_recovery_res = client
//!     .account()
//!     .complete_recovery()
//!     .code("abc123")
//!     .new_password(Password::parse("hunter23")?)
//!     .build()?
//!     .send()
//!     .await?;
//!
//! println!("account recovery: {:?}", account_complete_recovery_res);
//! # Ok(())
//! # }
//! ```

use derive_builder::Builder;
use serde::Serialize;

use crate::HttpClientRef;
use mangadex_api_schema::NoData;
use mangadex_api_types::error::Result;
use mangadex_api_types::Password;

/// Complete an account recovery.
///
/// Makes a request to `POST /account/recover/{code}`.
#[derive(Debug, Builder, Serialize, Clone)]
#[serde(rename_all = "camelCase")]
#[builder(setter(into, strip_option))]
pub struct CompleteAccountRecovery<'a> {
    /// This should never be set manually as this is only for internal use.
    #[doc(hidden)]
    #[serde(skip)]
    #[builder(pattern = "immutable")]
    pub(crate) http_client: HttpClientRef,

    #[serde(skip)]
    pub code: &'a str,

    /// Update the account's password to this value.
    ///
    /// Min: 8 characters
    ///
    /// Max: 1024 characters
    pub new_password: Password,
}

endpoint! {
    POST ("/account/recover/{}", code),
    #[body] CompleteAccountRecovery<'_>,
    #[discard_result] Result<NoData>
}

#[cfg(test)]
mod tests {
    use fake::faker::internet::en::Password;
    use fake::Fake;
    use serde_json::json;
    use url::Url;
    use uuid::Uuid;
    use wiremock::matchers::{body_json, header, method, path_regex};
    use wiremock::{Mock, MockServer, ResponseTemplate};

    use crate::{HttpClient, MangaDexClient};
    use mangadex_api_types::Password as MDPassword;

    #[tokio::test]
    async fn complete_recovery_fires_a_request_to_base_url() -> anyhow::Result<()> {
        let mock_server = MockServer::start().await;
        let http_client = HttpClient::builder()
            .base_url(Url::parse(&mock_server.uri())?)
            .build()?;
        let mangadex_client = MangaDexClient::new_with_http_client(http_client);

        let new_password: String = Password(8..1024).fake();

        Mock::given(method("POST"))
            .and(path_regex(r"/account/recover/[0-9a-fA-F-]+"))
            .and(header("Content-Type", "application/json"))
            .and(body_json(json!({ "newPassword": new_password })))
            .respond_with(ResponseTemplate::new(200).set_body_json(json!({"result": "ok"})))
            .expect(1)
            .mount(&mock_server)
            .await;

        let code = Uuid::new_v4();

        let _ = mangadex_client
            .account()
            .complete_recovery()
            .code(code.to_string().as_str())
            .new_password(MDPassword::parse(&new_password)?)
            .build()?
            .send()
            .await?;

        Ok(())
    }
}