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
//! Builder for getting a user's Settings.
//!
//! <https://api.mangadex.org/swagger.html#/Settings/get-settings>
//!
//! ```ignore
//! use mangadex_api::MangaDexClient;
//! use mangadex_api::types::{Password, Username};
//!
//! # async fn run() -> anyhow::Result<()> {
//! let client = MangaDexClient::default();
//!
//! let _login_res = client
//! .auth()
//! .login()
//! .username(Username::parse("myusername")?)
//! .password(Password::parse("hunter23")?)
//! .build()?
//! .send()
//! .await?;
//!
//! let res = client
//! .settings()
//! .get_user_settings()
//! .build()?
//! .send()
//! .await?;
//!
//! println!("User Settings: {:?}", res);
//! # Ok(())
//! # }
//! ```
use Builder;
use Serialize;
// use mangadex_api_schema::v5::UserSettingsResponse;
use crateHttpClientRef;
// use mangadex_api_types::error::Result;
/// Getting a user's Settings.
///
/// This requires authentication.
///
/// Makes a request to `GET /settings`.
// endpoint! {
// GET "/settings",
// #[no_data auth] GetUserSettings,
// #[flatten_result] UserSettingsResponse
// }
// #[cfg(test)]
// mod tests {
// use serde_json::json;
// use url::Url;
// use uuid::Uuid;
// use wiremock::matchers::{method, path};
// use wiremock::{Mock, MockServer, ResponseTemplate};
// use mangadex_api_types::error::Error;
// use crate::{HttpClient, MangaDexClient};
// #[tokio::test]
// async fn get_user_settings_requires_auth() -> anyhow::Result<()> {
// let mock_server = MockServer::start().await;
// let http_client: HttpClient = HttpClient::builder()
// .base_url(Url::parse(&mock_server.uri())?)
// .build()?;
// let mangadex_client = MangaDexClient::new_with_http_client(http_client);
// let error_id = Uuid::new_v4();
// let response_body = json!({
// "result": "error",
// "errors": [{
// "id": error_id.to_string(),
// "status": 403,
// "title": "Forbidden",
// "detail": "You must be logged in to continue."
// }]
// });
// Mock::given(method("GET"))
// .and(path("/settings"))
// .respond_with(ResponseTemplate::new(403).set_body_json(response_body))
// .expect(0)
// .mount(&mock_server)
// .await;
// let res = mangadex_client
// .settings()
// .get_user_settings()
// .build()?
// .send()
// .await
// .expect_err("expected error");
// match res {
// Error::MissingTokens => {}
// _ => panic!("unexpected error: {:#?}", res),
// }
// Ok(())
// }
// }