Ensure submission images folder exits and flush images after writing
This commit is contained in:
parent
4f0655f388
commit
d28ecd438d
1 changed files with 7 additions and 0 deletions
|
@ -62,6 +62,11 @@ async fn submit(ctx: &Context, msg: &Message) -> CommandResult {
|
||||||
let hugo_path = env::var("HUGO").unwrap();
|
let hugo_path = env::var("HUGO").unwrap();
|
||||||
let challenge_number = get_challenge_number();
|
let challenge_number = get_challenge_number();
|
||||||
let submission_images_dir = format!("{}/assets/{}", hugo_path, challenge_number);
|
let submission_images_dir = format!("{}/assets/{}", hugo_path, challenge_number);
|
||||||
|
|
||||||
|
// Ensure that submission_images_dir exists
|
||||||
|
let path = std::path::Path::new(&submission_images_dir);
|
||||||
|
std::fs::create_dir_all(path)?;
|
||||||
|
|
||||||
let submission_data_path = format!("{}/data/challenges/{}.json", hugo_path, challenge_number);
|
let submission_data_path = format!("{}/data/challenges/{}.json", hugo_path, challenge_number);
|
||||||
let submission_data_json = match File::open(&submission_data_path) {
|
let submission_data_json = match File::open(&submission_data_path) {
|
||||||
Ok(mut file) => {
|
Ok(mut file) => {
|
||||||
|
@ -115,6 +120,7 @@ async fn submit(ctx: &Context, msg: &Message) -> CommandResult {
|
||||||
let mut image_file =
|
let mut image_file =
|
||||||
File::create(format!("{}/{}", submission_images_dir, file_name))?;
|
File::create(format!("{}/{}", submission_images_dir, file_name))?;
|
||||||
image_file.write_all(&image)?;
|
image_file.write_all(&image)?;
|
||||||
|
image_file.flush()?;
|
||||||
}
|
}
|
||||||
submission["images"] = images.into();
|
submission["images"] = images.into();
|
||||||
break;
|
break;
|
||||||
|
@ -159,6 +165,7 @@ async fn submit(ctx: &Context, msg: &Message) -> CommandResult {
|
||||||
let image = reqwest::get(&attachment.url).await?.bytes().await?;
|
let image = reqwest::get(&attachment.url).await?.bytes().await?;
|
||||||
let mut image_file = File::create(format!("{}/{}", submission_images_dir, file_name))?;
|
let mut image_file = File::create(format!("{}/{}", submission_images_dir, file_name))?;
|
||||||
image_file.write_all(&image)?;
|
image_file.write_all(&image)?;
|
||||||
|
image_file.flush()?;
|
||||||
}
|
}
|
||||||
submitter_data.insert(String::from("images"), images.into());
|
submitter_data.insert(String::from("images"), images.into());
|
||||||
submitter_data.insert(
|
submitter_data.insert(
|
||||||
|
|
Loading…
Add table
Reference in a new issue