added some more debugging output

This commit is contained in:
Falko Zurell 2025-03-11 08:38:46 +01:00
parent a560797f20
commit 0ba551e2dc
2 changed files with 46 additions and 25 deletions

View file

@ -165,17 +165,11 @@ pub fn get_description_from_ollama(
let response = match response { let response = match response {
Ok(response) => { Ok(response) => {
if response.status().is_success() {
info!("success!"); info!("success!");
} else if response.status().is_server_error() {
error!("server error!");
} else {
error!("Something else happened. Status: {:?}", response.status());
}
response response
} }
Err(e) => { Err(e) => {
error!("Failed to send request: {}", e); error!("Failed to send request to OLLAMA: {}", e);
return Err(Box::from(e)); return Err(Box::from(e));
} }
}; };

View file

@ -41,7 +41,7 @@ pub fn bulk_upload_images(
}; };
let client = match reqwest::blocking::ClientBuilder::new() let client = match reqwest::blocking::ClientBuilder::new()
.connect_timeout(Duration::new(30, 0)) .connect_timeout(Duration::new(60, 0))
.timeout(Duration::new(300, 0)) .timeout(Duration::new(300, 0))
.connection_verbose(true) .connection_verbose(true)
.build() .build()
@ -54,11 +54,16 @@ pub fn bulk_upload_images(
}; };
// construct the full URL for the Pixelfed Upload // construct the full URL for the Pixelfed Upload
let url = format!("{}/api/v1/media", pxl_config.pixelfed_url.clone()); let url = format!("{}/api/v1/media", pxl_config.pixelfed_url.clone());
let mut image_counter: i8 = 0;
// Iterate over all the images we were given // Iterate over all the images we were given
for image_path in images { for image_path in images {
let description: String; let description: String;
debug!("Handling image {}", &image_path.to_string()); image_counter = image_counter + 1;
debug!(
"Handling image #{} at {}",
&image_counter,
&image_path.to_string()
);
// get image description depending on the caption_mode // get image description depending on the caption_mode
match caption_mode { match caption_mode {
super::Mode::ChatGPT => { super::Mode::ChatGPT => {
@ -136,7 +141,11 @@ pub fn bulk_upload_images(
} }
} }
println!("Uploading image {} to Pixelfed", &image_path.to_string()); println!(
"Uploading image #{} from {} to Pixelfed",
&image_counter,
&image_path.to_string()
);
// construct the upload form for Pixelfed Upload of a single image including image description // construct the upload form for Pixelfed Upload of a single image including image description
let form = match reqwest::blocking::multipart::Form::new() let form = match reqwest::blocking::multipart::Form::new()
@ -145,7 +154,7 @@ pub fn bulk_upload_images(
{ {
Ok(f) => f, Ok(f) => f,
Err(e) => { Err(e) => {
error!("Failed to construct multipart form: {}", e); error!("Failed to construct multipart form for Pixelfed: {}", e);
return Err(Box::from(e)); return Err(Box::from(e));
} }
}; };
@ -159,7 +168,7 @@ pub fn bulk_upload_images(
{ {
Ok(result) => result, Ok(result) => result,
Err(e) => { Err(e) => {
error!("Failed to send request: {}", e); error!("Failed to send request to Pixelfed: {}", e);
return Err(Box::from(e)); return Err(Box::from(e));
} }
}; };
@ -169,12 +178,25 @@ pub fn bulk_upload_images(
// Check if the response status indicates success // Check if the response status indicates success
if status.is_success() { if status.is_success() {
// Parse the success response // Parse the success response
let success_response: serde_json::Value = res.json()?; let success_response: serde_json::Value = match res.json() {
let image_id = success_response["id"].clone(); Ok(response_json) => response_json,
Err(e) => {
error!(
"Could not decode the Pixelfed response JSON: {}",
e.to_string()
);
return Err(Box::from(e));
}
};
let image_id: serde_json::Value = success_response["id"].clone();
media_ids.push(image_id); media_ids.push(image_id);
} else { } else {
let error_text = res.text()?; let error_text = res.text()?;
return Err(Box::from(format!("Failed to upload image: {}", error_text))); return Err(Box::from(format!(
"Failed to upload image to Pixelfed: {}",
error_text
)));
} }
} }
@ -195,7 +217,7 @@ pub fn bulk_upload_images(
"alt_texts": media_descriptions, "alt_texts": media_descriptions,
"visibility": pxl_config.pixelfed_visibility.to_string(), "visibility": pxl_config.pixelfed_visibility.to_string(),
}); });
info!("Body: \n{}", &body.to_string()); debug!("Body: \n{}", &body.to_string());
info!("MediaIDs: {}", &media_ids.len()); info!("MediaIDs: {}", &media_ids.len());
info!("Alt_texts: {}", &media_descriptions.len()); info!("Alt_texts: {}", &media_descriptions.len());
println!( println!(
@ -212,17 +234,22 @@ pub fn bulk_upload_images(
match res { match res {
Ok(response) => { Ok(response) => {
if response.status().is_success() { if response.status().is_success() {
info!("Post created successfully!"); info!("Post on Pixelfed created successfully!");
} else { } else {
error!("Failed to create post. Status: {:?}", response.status()); error!(
let error_message = response "Failed to create post on Pixelfed. Status: {:?}",
response
.text() .text()
.unwrap_or_else(|_| "Unknown error".to_string()); .unwrap_or_else(|_| "Unknown error from Pixelfed".to_string())
error!("Error message: {}", error_message); )
} }
} }
Err(e) => { Err(e) => {
error!("Failed to send request: {}", e); error!("Failed to send request to Pixelfed: {}", e);
return Err(Box::from(format!(
"Failed to upload image to Pixelfed: {}",
e
)));
} }
} }
} }