shindan_maker/client.rs
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
use std::fmt;
use scraper::Html;
use anyhow::Result;
use reqwest::Client;
use crate::http_utils;
use crate::html_utils;
use std::time::Duration;
#[cfg(feature = "segments")]
use crate::segment::Segments;
/// A domain of ShindanMaker.
#[derive(Debug, Clone, Copy)]
pub enum ShindanDomain {
Jp,
En,
Cn,
Kr,
Th,
}
impl fmt::Display for ShindanDomain {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let url = match self {
Self::Jp => "https://shindanmaker.com/",
Self::En => "https://en.shindanmaker.com/",
Self::Cn => "https://cn.shindanmaker.com/",
Self::Kr => "https://kr.shindanmaker.com/",
Self::Th => "https://th.shindanmaker.com/",
};
write!(f, "{}", url)
}
}
/// A client for interacting with ShindanMaker.
#[derive(Clone, Debug)]
pub struct ShindanClient {
client: Client,
domain: ShindanDomain,
}
impl ShindanClient {
/**
Create a new ShindanMaker client.
# Arguments
- `domain` - The domain of ShindanMaker to use.
# Returns
A new ShindanMaker client.
# Examples
```
use shindan_maker::{ShindanClient, ShindanDomain};
let client = ShindanClient::new(ShindanDomain::En).unwrap();
```
*/
pub fn new(domain: ShindanDomain) -> Result<Self> {
const TIMEOUT_SECS: u64 = 3;
Ok(Self {
domain,
client: Client::builder()
.user_agent("shindan-maker")
.timeout(Duration::from_secs(TIMEOUT_SECS))
.build()?,
})
}
/**
Get the title of a shindan.
# Arguments
- `id` - The ID of the shindan.
# Returns
The title of the shindan.
# Examples
```
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() {
let client = ShindanClient::new(ShindanDomain::En).unwrap();
let title = client
.get_title("1222992")
.await
.unwrap();
assert_eq!("Fantasy Stats", title);
}
```
*/
pub async fn get_title(&self, id: &str) -> Result<String> {
let url = format!("{}{}", self.domain, id);
let response = self.client
.get(&url)
.send()
.await?;
let text = response
.text()
.await?;
let document = Html::parse_document(&text);
html_utils::extract_title(&document)
}
async fn get_title_and_init_res(&self, id: &str, name: &str) -> Result<(String, String)> {
let url = format!("{}{}", self.domain, id);
let initial_response = self.client
.get(&url)
.send()
.await?;
let session_cookie = http_utils::extract_session_cookie(&initial_response)?;
let initial_response_text = initial_response
.text()
.await?;
let (title, form_data) = html_utils::extract_title_and_form_data(&initial_response_text, name)?;
let headers = http_utils::prepare_headers(&session_cookie)?;
let response_text = self.client
.post(&url)
.headers(headers)
.form(&form_data)
.send()
.await?
.text()
.await?;
Ok((title, response_text))
}
/**
Get the segments of a shindan.
# Arguments
- `id` - The ID of the shindan.
- `name` - The name to use for the shindan.
# Returns
The segments of the shindan and the title of the shindan.
# Examples
```
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() {
let client = ShindanClient::new(ShindanDomain::En).unwrap();
let (segments, title) = client
.get_segments_with_title("1222992", "test_user")
.await
.unwrap();
assert_eq!("Fantasy Stats", title);
println!("Result title: {}", title);
println!("Result text: {}", segments);
println!("Result segments: {:#?}", segments);
}
```
*/
#[cfg(feature = "segments")]
pub async fn get_segments_with_title(
&self,
id: &str,
name: &str,
) -> Result<(Segments, String)> {
let (title, response_text) = self.get_title_and_init_res(id, name).await?;
let segments = html_utils::get_segments(&response_text)?;
Ok((segments, title))
}
/**
Get the HTML string of a shindan.
# Arguments
- `id` - The ID of the shindan.
- `name` - The name to use for the shindan.
# Returns
The HTML string of the shindan and the title of the shindan.
# Examples
```
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() {
let client = ShindanClient::new(ShindanDomain::En).unwrap();
let (_html_str, title) = client
.get_html_str_with_title("1222992", "test_user")
.await
.unwrap();
assert_eq!("Fantasy Stats", title);
}
```
*/
#[cfg(feature = "html")]
pub async fn get_html_str_with_title(
&self,
id: &str,
name: &str,
) -> Result<(String, String)> {
let (title, response_text) = self.get_title_and_init_res(id, name).await?;
let html = html_utils::get_html_str(id, &response_text)?;
Ok((html, title))
}
}