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 {
Ok(response) => {
if response.status().is_success() {
info!("success!");
} else if response.status().is_server_error() {
error!("server error!");
} else {
error!("Something else happened. Status: {:?}", response.status());
}
response
}
Err(e) => {
error!("Failed to send request: {}", e);
error!("Failed to send request to OLLAMA: {}", e);
return Err(Box::from(e));
}
};

View file

@ -41,7 +41,7 @@ pub fn bulk_upload_images(
};
let client = match reqwest::blocking::ClientBuilder::new()
.connect_timeout(Duration::new(30, 0))
.connect_timeout(Duration::new(60, 0))
.timeout(Duration::new(300, 0))
.connection_verbose(true)
.build()
@ -54,11 +54,16 @@ pub fn bulk_upload_images(
};
// construct the full URL for the Pixelfed Upload
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
for image_path in images {
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
match caption_mode {
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
let form = match reqwest::blocking::multipart::Form::new()
@ -145,7 +154,7 @@ pub fn bulk_upload_images(
{
Ok(f) => f,
Err(e) => {
error!("Failed to construct multipart form: {}", e);
error!("Failed to construct multipart form for Pixelfed: {}", e);
return Err(Box::from(e));
}
};
@ -159,7 +168,7 @@ pub fn bulk_upload_images(
{
Ok(result) => result,
Err(e) => {
error!("Failed to send request: {}", e);
error!("Failed to send request to Pixelfed: {}", e);
return Err(Box::from(e));
}
};
@ -169,12 +178,25 @@ pub fn bulk_upload_images(
// Check if the response status indicates success
if status.is_success() {
// Parse the success response
let success_response: serde_json::Value = res.json()?;
let image_id = success_response["id"].clone();
let success_response: serde_json::Value = match res.json() {
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);
} else {
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,
"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!("Alt_texts: {}", &media_descriptions.len());
println!(
@ -212,17 +234,22 @@ pub fn bulk_upload_images(
match res {
Ok(response) => {
if response.status().is_success() {
info!("Post created successfully!");
info!("Post on Pixelfed created successfully!");
} else {
error!("Failed to create post. Status: {:?}", response.status());
let error_message = response
error!(
"Failed to create post on Pixelfed. Status: {:?}",
response
.text()
.unwrap_or_else(|_| "Unknown error".to_string());
error!("Error message: {}", error_message);
.unwrap_or_else(|_| "Unknown error from Pixelfed".to_string())
)
}
}
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
)));
}
}
}