-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactoring for external auth. Vol II #66
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ mod filter; | |
mod glob; | ||
mod policy; | ||
mod policy_index; | ||
mod service; | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
pub(crate) mod rate_limit; | ||
|
||
use protobuf::Message; | ||
use proxy_wasm::types::Status; | ||
|
||
pub trait Service<M: Message> { | ||
fn send(&self, message: M) -> Result<u32, Status>; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
use crate::envoy::{RateLimitDescriptor, RateLimitRequest}; | ||
use crate::service::Service; | ||
use protobuf::{Message, RepeatedField}; | ||
use proxy_wasm::hostcalls::dispatch_grpc_call; | ||
use proxy_wasm::types::Status; | ||
use std::time::Duration; | ||
|
||
const RATELIMIT_SERVICE_NAME: &str = "envoy.service.ratelimit.v3.RateLimitService"; | ||
const RATELIMIT_METHOD_NAME: &str = "ShouldRateLimit"; | ||
pub struct RateLimitService<'a> { | ||
endpoint: String, | ||
metadata: Vec<(&'a str, &'a [u8])>, | ||
} | ||
|
||
impl<'a> RateLimitService<'a> { | ||
pub fn new(endpoint: &str, metadata: Vec<(&'a str, &'a [u8])>) -> RateLimitService<'a> { | ||
Self { | ||
endpoint: String::from(endpoint), | ||
metadata, | ||
} | ||
} | ||
pub fn message( | ||
domain: String, | ||
descriptors: RepeatedField<RateLimitDescriptor>, | ||
) -> RateLimitRequest { | ||
RateLimitRequest { | ||
domain, | ||
descriptors, | ||
hits_addend: 1, | ||
unknown_fields: Default::default(), | ||
cached_size: Default::default(), | ||
} | ||
} | ||
} | ||
|
||
fn grpc_call( | ||
upstream_name: &str, | ||
initial_metadata: Vec<(&str, &[u8])>, | ||
message: RateLimitRequest, | ||
) -> Result<u32, Status> { | ||
let msg = Message::write_to_bytes(&message).unwrap(); // TODO(didierofrivia): Error Handling | ||
dispatch_grpc_call( | ||
upstream_name, | ||
RATELIMIT_SERVICE_NAME, | ||
RATELIMIT_METHOD_NAME, | ||
initial_metadata, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess this should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've made the |
||
Some(&msg), | ||
Duration::from_secs(5), | ||
) | ||
} | ||
|
||
impl Service<RateLimitRequest> for RateLimitService<'_> { | ||
fn send(&self, message: RateLimitRequest) -> Result<u32, Status> { | ||
grpc_call(self.endpoint.as_str(), self.metadata.clone(), message) | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use crate::envoy::{RateLimitDescriptor, RateLimitDescriptor_Entry, RateLimitRequest}; | ||
use crate::service::rate_limit::RateLimitService; | ||
//use crate::service::Service; | ||
use protobuf::{CachedSize, RepeatedField, UnknownFields}; | ||
//use proxy_wasm::types::Status; | ||
//use crate::filter::http_context::{Filter}; | ||
|
||
fn build_message() -> RateLimitRequest { | ||
let domain = "rlp1"; | ||
let mut field = RateLimitDescriptor::new(); | ||
let mut entry = RateLimitDescriptor_Entry::new(); | ||
entry.set_key("key1".to_string()); | ||
entry.set_value("value1".to_string()); | ||
field.set_entries(RepeatedField::from_vec(vec![entry])); | ||
let descriptors = RepeatedField::from_vec(vec![field]); | ||
|
||
RateLimitService::message(domain.to_string(), descriptors.clone()) | ||
} | ||
#[test] | ||
fn builds_correct_message() { | ||
let msg = build_message(); | ||
|
||
assert_eq!(msg.hits_addend, 1); | ||
assert_eq!(msg.domain, "rlp1".to_string()); | ||
assert_eq!(msg.descriptors.first().unwrap().entries[0].key, "key1"); | ||
assert_eq!(msg.descriptors.first().unwrap().entries[0].value, "value1"); | ||
assert_eq!(msg.unknown_fields, UnknownFields::default()); | ||
assert_eq!(msg.cached_size, CachedSize::default()); | ||
} | ||
/*#[test] | ||
fn sends_message() { | ||
let msg = build_message(); | ||
let metadata = vec![("header-1", "value-1".as_bytes())]; | ||
let rls = RateLimitService::new("limitador-cluster", metadata); | ||
|
||
// TODO(didierofrivia): When we have a grpc response type, assert the async response | ||
} | ||
|
||
fn grpc_call( | ||
_upstream_name: &str, | ||
_initial_metadata: Vec<(&str, &[u8])>, | ||
_message: RateLimitRequest, | ||
) -> Result<u32, Status> { | ||
Ok(1) | ||
} */ | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think, if
metadata
is the "headers", and in our case the tracing ones, you can just claim ownership of thesestr
and get rid of<'a>