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 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
use scraper::Html;
use reqwest::Client;
use anyhow::Result;
use std::time::Duration;
use crate::http_utils;
use crate::html_utils;
use crate::shindan_domain::ShindanDomain;
#[cfg(feature = "segments")]
use crate::segment::Segments;
/// 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 anyhow::Result;
use shindan_maker::{ShindanClient, ShindanDomain};
fn main() -> Result<()> {
let client = ShindanClient::new(ShindanDomain::En)?; // Enum variant
let client = ShindanClient::new("Jp".parse()?)?; // String slice
let client = ShindanClient::new("EN".parse()?)?; // Case-insensitive
let client = ShindanClient::new(String::from("cn").parse()?)?; // String
Ok(())
}
```
*/
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()?,
})
}
/**
Fetches and extracts title from a shindan page.
# Arguments
- `id` - The ID of the shindan
# Returns
The title of the shindan page.
# Errors
Returns error if network request fails or title cannot be extracted.
# Examples
```
use anyhow::Result;
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() -> Result<()> {
let client = ShindanClient::new(ShindanDomain::En)?;
let title = client
.get_title("1222992")
.await?;
println!("Title: {}", title);
Ok(())
}
```
*/
pub async fn get_title(&self, id: &str) -> Result<String> {
let document = self.fetch_document(id).await?;
html_utils::extract_title(&document)
}
/**
Fetches and extracts description from a shindan page.
# Arguments
- `id` - The ID of the shindan
# Returns
The description of the shindan page.
# Errors
Returns error if network request fails or description cannot be extracted.
# Examples
```
use anyhow::Result;
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() -> Result<()> {
let client = ShindanClient::new(ShindanDomain::En)?;
let desc = client
.get_description("1222992")
.await?;
println!("Description: {}", desc);
Ok(())
}
```
*/
pub async fn get_description(&self, id: &str) -> Result<String> {
let document = self.fetch_document(id).await?;
html_utils::extract_description(&document)
}
/**
Fetches and extracts both title and description from a shindan page.
# Arguments
- `id` - The ID of the shindan
# Returns
A tuple containing the title and description.
# Errors
Returns error if network request fails or content cannot be extracted.
# Examples
```
use anyhow::Result;
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() -> Result<()> {
let client = ShindanClient::new(ShindanDomain::En)?;
let (title, desc) = client
.get_title_with_description("1222992")
.await?;
println!("Title: {}", title);
println!("Description: {}", desc);
Ok(())
}
```
*/
pub async fn get_title_with_description(&self, id: &str) -> Result<(String, String)> {
let document = self.fetch_document(id).await?;
Ok((
html_utils::extract_title(&document)?,
html_utils::extract_description(&document)?
))
}
async fn fetch_document(&self, id: &str) -> Result<Html> {
let url = format!("{}{}", self.domain, id);
let text = self.client
.get(&url)
.send()
.await?
.text()
.await?;
Ok(Html::parse_document(&text))
}
async fn fetch_with_form_data(
&self,
id: &str,
name: &str,
extract_title: bool,
) -> Result<(Option<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) = if extract_title {
let (title, form_data) = html_utils::extract_title_and_form_data(&initial_response_text, name)?;
(Some(title), form_data)
} else {
let document = Html::parse_document(&initial_response_text);
let form_data = html_utils::extract_form_data(&document, name)?;
(None, form_data)
};
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))
}
async fn init_res(&self, id: &str, name: &str) -> Result<String> {
let (_, response_text) = self.fetch_with_form_data(id, name, false).await?;
Ok(response_text)
}
async fn get_title_and_init_res(&self, id: &str, name: &str) -> Result<(String, String)> {
let (title, response_text) = self.fetch_with_form_data(id, name, true).await?;
Ok((title.unwrap(), 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.
# Examples
```
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() {
let client = ShindanClient::new(ShindanDomain::En).unwrap();
let segments = client
.get_segments("1222992", "test_user")
.await
.unwrap();
println!("Result segments: {:#?}", segments);
}
```
*/
#[cfg(feature = "segments")]
pub async fn get_segments(&self, id: &str, name: &str) -> Result<Segments> {
let response_text = self.init_res(id, name).await?;
html_utils::get_segments(&response_text)
}
/**
Get the segments of a shindan and the title of the 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.
# Examples
```
use shindan_maker::{ShindanClient, ShindanDomain};
#[tokio::main]
async fn main() {
let client = ShindanClient::new(ShindanDomain::En).unwrap();
let html_str = client
.get_html_str("1222992", "test_user")
.await
.unwrap();
println!("{}", html_str);
}
```
*/
#[cfg(feature = "html")]
pub async fn get_html_str(&self, id: &str, name: &str) -> Result<String> {
let response_text = self.init_res(id, name).await?;
html_utils::get_html_str(id, &response_text)
}
/**
Get the HTML string of a shindan and the title of the 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))
}
}