Skip to content
Snippets Groups Projects
Select Git revision
  • c35cc57d55081da6415295d13f0c56fe699efe2b
  • master default protected
2 results

main.rs

Blame
  • main.rs 5.99 KiB
    //! static contact is a server side tool that relays post requests with form fields like name, email, phone and message to email via SMTP.
    //!
    //! This is meant to be a simple self-hosted solution for contact forms on static websites. You can connect multiple static websites to one single instance of the service
    //! 
    //! You can send a test request to static_contact via curl:
    //! ```Bash
    //! curl --header "Content-Type: application/json" --request POST --data '{"name":"Mr. Foo Bar", "email":"mrfoo@bar.com", "phone":"+49012345678", "message":"Media is the massage", "identifier":"mysiteidentifier"}' http://localhost:8088
    //! ```
    //! 
    //! Or if you want to view the returned headers:
    //! ```Bash
    //! curl -sSL -D - --header "Content-Type: application/json" --request POST --data '{"name":"Mr. Foo Bar", "email":"mrfoo@bar.com", "phone":"+49012345678", "message":"Media is the massage", "identifier":"mysiteidentifier"}' http://localhost:8088 -o /dev/null
    //! ```
    //!
    //! This emulates a user with the name "Mr. Foo Bar", the email "mrfoo@bar.com" and the phone number "+49012345678" writing a message with the content "Media is the massage".
    //! Note the field `"identifier":"mysitename"` – this identifies the site against the server. If there is no endpoint with the identifier "mysiteidentifier" in the `config.toml`, the request is ignored.
    //! This message is checked for type and length, and will be sent via SMTP to the according `endpoint.target` email adress specified in the config.
    #[macro_use] extern crate failure;
    
    use crate::form::FormData;
    use crate::email::send_mail;
    use actix_cors::Cors;
    use actix_web::{http, error, web, FromRequest, HttpResponse, Responder};
    use actix_web::middleware::Logger;
    use lazy_static::lazy_static;
    
    mod form;
    mod email;
    mod config;
    use config::Config;
    
    /// Generic Error type
    type GenError = failure::Error;
    
    /// Generic Result type
    type GenResult<T> = Result<T, GenError>;
    
    
    
    /// The index route deserializes [FormData] from the request's JSON body, whose maximum payload size is defined in the config. The following processing steps are taken:
    /// 1. Check if the identifier provided by the Endpoint is found among the endpoints in the `config.toml`
    /// 2. Check if the length of the files in the FormData is within the provided limits (some of which are hardcoded, some of which are setable via config)
    /// 3. Check if the email is valid
    /// 4. Send the email to the defined target
    async fn index(mut data: web::Json<FormData>, data2: web::Data<Config>) -> impl Responder {
        let mut response = None;
    
        println!("Received message");
    
        let config = data2.get_ref();
        let matching_endpoints = config.endpoints
                                       .iter()
                                       .find(|e| e.identifier == data.identifier);
    
        if matching_endpoints.is_none() {
            response = Some(HttpResponse::NotAcceptable().body(format!("Error: The Endpoint with the identifier-value \"{}\" was not named in the config", data.identifier)))
        }
    
        // Check length of form data
        if response.is_none(){
            let result = data.check_length(matching_endpoints.unwrap());
    
            match result {
                Err(ref e) => response = Some(HttpResponse::PayloadTooLarge().body(format!("Error while checking form data: {}", e))),
                _ => ()
            }
        }
    
        // Check email validity
        if response.is_none(){