// Copyright 2020 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. use proxy_wasm_experimental as proxy_wasm; use proxy_wasm::traits::*; use proxy_wasm::types::*; #[no_mangle] pub fn _start() { proxy_wasm::set_log_level(LogLevel::Trace); proxy_wasm::set_root_context(|_| -> Box { Box::new(HttpConfigHeaderRoot { header_content: String::new(), }) }); } struct HttpConfigHeader { header_content: String, } impl Context for HttpConfigHeader {} impl HttpContext for HttpConfigHeader { fn on_http_response_headers(&mut self, _: usize, _: bool) -> Action { self.add_http_response_header("custom-header", self.header_content.as_str()); Action::Continue } } struct HttpConfigHeaderRoot { header_content: String, } impl Context for HttpConfigHeaderRoot {} impl RootContext for HttpConfigHeaderRoot { fn on_configure(&mut self, configuration_size: usize) -> bool { if let Ok(Some(config_bytes)) = proxy_wasm::hostcalls::get_buffer( BufferType::PluginConfiguration, 0, configuration_size, ) { self.header_content = config_bytes.into_string().unwrap(); } true } fn create_http_context(&self, _: u32) -> Option> { Some(Box::new(HttpConfigHeader { header_content: self.header_content.clone(), })) } fn get_type(&self) -> Option { Some(ContextType::HttpContext) } }