Skip to content
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

refactor to improve readability #172

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 19 additions & 12 deletions src/middlewares/methods/inject_params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ impl Middleware<CallRequest, CallResult> for InjectParamsMiddleware {
if param.ty == "BlockNumber" {
if let Some(number) = request.params.get(idx).and_then(|x| x.as_u64()) {
let (_, finalized) = self.finalized.read().await;
// avoid cache unfinalized data
if number > finalized {
context.insert(BypassCache(true));
}
Expand All @@ -121,37 +122,43 @@ impl Middleware<CallRequest, CallResult> for InjectParamsMiddleware {
};

let idx = self.get_index();
match request.params.len() {
len if len > idx + 1 => {
// unexpected number of params
let min_len = idx + 1;
let len = request.params.len();

match len.cmp(&min_len) {
std::cmp::Ordering::Greater => {
// too many params, no injection needed
return handle_request(request).await;
}
len if len <= idx => {
// without current block
let params_passed = request.params.len();
while request.params.len() < idx {
let current = request.params.len();
if self.params[current].optional {
std::cmp::Ordering::Less => {
// too few params

// ensure missing params are optional and push null
for i in len..(min_len - 1) {
if self.params[i].optional {
request.params.push(JsonValue::Null);
} else {
let (required, optional) = self.params_count();
return Err(errors::invalid_params(format!(
"Expected {:?} parameters ({:?} optional), {:?} found instead",
required + optional,
optional,
params_passed
len
)));
}
}

// Set param to null, it will be replaced later
request.params.push(JsonValue::Null);
}
_ => {} // full params, block potentially might be null
std::cmp::Ordering::Equal => {
// same number of params, no need to push params
}
};

// Here we are sure we have full params in the request, but it still might be set to null
async move {
if request.params[idx] == JsonValue::Null {
if request.params[idx].is_null() {
let to_inject = self.get_parameter().await;
tracing::trace!("Injected param {} to method {}", &to_inject, request.method);
request.params[idx] = to_inject;
Expand Down
Loading