From 7b9f13ef74b4b7ef3e545f6d07ad09689019fd50 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 12 Dec 2023 17:00:28 -0600 Subject: [PATCH] remove rust main --- src/main.rs | 88 ----------------------------------------------------- 1 file changed, 88 deletions(-) delete mode 100644 src/main.rs diff --git a/src/main.rs b/src/main.rs deleted file mode 100644 index 33e675f..0000000 --- a/src/main.rs +++ /dev/null @@ -1,88 +0,0 @@ -use actix_multipart::{ - form::{ - tempfile::{TempFile, TempFileConfig}, - text::Text, - MultipartForm, - }, - Multipart, -}; -use actix_web::{middleware, post, web, App, Error, HttpResponse, HttpServer, Result}; -// use serde::Deserialize; -use futures_util::StreamExt as _; -use std::{env, io}; - -#[derive(Debug, MultipartForm)] -struct HealthForm { - #[multipart(rename = "file")] - files: Vec, - firstname: Text, - lastname: Text, - birthdate: Text, -} - -#[actix_web::main] -async fn main() -> io::Result<()> { - env::set_var("RUST_LOG", "actix_web=debug,actix_server=info"); - env_logger::init(); - - HttpServer::new(|| { - App::new() - // enable logger - always register actix-web Logger middleware last - .wrap(middleware::Logger::default()) - .app_data(web::FormConfig::default().limit(1048576)) - // register HTTP requests handlers - .service(form) - }) - .bind("0.0.0.0:4242")? - .run() - .await -} - -// #[post("/health-form")] -// async fn form(mut form: Multipart) -> Result { -// // println!("{form:?}"); -// while let Some(item) = form.next().await { -// let mut field = item?; -// // let mut value = ""; -// let name = field.name(); -// let content_type = field.content_type().unwrap().to_string(); -// if content_type == "application/octet-stream" { -// // Handle file field -// // You can save the file or process its contents here -// while let Some(chunk) = field.next().await { -// // Process file chunk -// println!("chunk: {:?}", std::str::from_utf8(&chunk?)); -// } -// } else { -// // Handle other field types (e.g., text fields) -// let field_value = field -// .next() -// .await -// .expect("Field value not found") -// .expect("Field value not found"); - -// // Process the field value (e.g., store in a database, perform validation, etc.) -// println!("Field {:?}: {:?}", name, field_value); -// } -// // while let Some(chunk) = field.try_next().await { -// // let value = std::str::from_utf8(&chunk?).unwrap(); -// // println!("{:?}: {:?}", name, value); -// // } -// } -// Ok(HttpResponse::Ok().into()) -// } - -#[post("/health-form")] -async fn form(form: MultipartForm) -> Result { - println!("{:?}", form.firstname); - println!("{:?}", form.lastname); - Ok(HttpResponse::Ok().into()) -} - -fn get_boundary(s: &str) -> &str { - if let Some(index) = s.find("=") { - &s[(index + 1)..] - } else { - s - } -}