use simple_proxy::middlewares::Logger;
use simple_proxy::{SimpleProxy, Environment};
use structopt::StructOpt;
#[derive(StructOpt, Debug)]
struct Cli {
port: u16,
}
fn main() {
let args = Cli::from_args();
let mut proxy = SimpleProxy::new(args.port, Environment::Development);
let logger = Logger::new();
// Order matters
proxy.add_middleware(Box::new(logger));
// Start proxy
proxy.run();
}
You can create your custom middleware by creating a struct implementing Middleware, consisting of 4 callbacks:
before_request
will be run every timerequest_failure
will be run when the request failsrequest_success
will be run when the request succeeds, you can then handle the response according to the status code or the bodyafter_request
will be run every time