Skip to content

Instantly share code, notes, and snippets.

@eloycoto
Created October 23, 2020 08:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eloycoto/3b6036b6995b17730a4ab068f5a0e3e8 to your computer and use it in GitHub Desktop.
Save eloycoto/3b6036b6995b17730a4ab068f5a0e3e8 to your computer and use it in GitHub Desktop.
use log::trace;
use proxy_wasm::traits::*;
use proxy_wasm::types::*;
use std::time::Duration;
#[no_mangle]
pub fn _start() {
proxy_wasm::set_log_level(LogLevel::Trace);
proxy_wasm::set_http_context(|_, _| -> Box<dyn HttpContext> { Box::new(HttpAuthRandom) });
}
struct HttpAuthRandom;
impl HttpContext for HttpAuthRandom {
fn on_http_request_headers(&mut self, _: usize) -> Action {
log::info!("ON HTTP REQUEST HEADERS");
let res = self.dispatch_http_call(
"web_service",
vec![
(":method", "GET"),
(":path", "/bytes/1"),
(":authority", "httpbin.org"),
],
None,
vec![],
Duration::from_secs(5),
);
log::info!("REsult-->{:?}", res);
Action::Pause
}
}
impl Context for HttpAuthRandom {
fn on_http_call_response(&mut self, _: u32, _: usize, body_size: usize, _: usize) {
self.resume_http_request();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment