Skip to content
Snippets Groups Projects
Commit ab1a57d9 authored by DeathwingTheBoss's avatar DeathwingTheBoss
Browse files

- Limit batch calls with 100 calls

- Change error codes.
- Increase payload limit to 100KB.
- Version bump
parent 7c76164d
No related branches found
No related tags found
No related merge requests found
......@@ -574,7 +574,7 @@ checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
[[package]]
name = "drone"
version = "0.1.9"
version = "0.2.0"
dependencies = [
"actix-cors",
"actix-web",
......
[package]
name = "drone"
version = "0.1.9"
version = "0.2.0"
edition = "2021"
authors = ["Deathwing <hi@deathwing.me>"]
description = "A caching reverse-proxy application for the Hive blockchain."
......
......@@ -188,7 +188,7 @@ async fn handle_request(
Ok(response) => response,
Err(err) => {
return Err(ErrorStructure {
code: 1000,
code: -32700,
message: format!("Unable to send request to endpoint."),
error: ErrorField::Message(err.to_string()),
})
......@@ -198,7 +198,7 @@ async fn handle_request(
Ok(text) => text,
Err(err) => {
return Err(ErrorStructure {
code: 2000,
code: -32600,
message: format!("Received an invalid response from the endpoint."),
error: ErrorField::Message(err.to_string()),
})
......@@ -216,7 +216,7 @@ async fn handle_request(
};
if json_body["error"].is_object() {
return Err(ErrorStructure {
code: 4000,
code: -32602,
message: format!("Endpoint returned an error."),
error: ErrorField::Object(json_body["error"].clone()),
});
......@@ -284,6 +284,15 @@ async fn api_call(
}
APICall::Batch(requests) => {
let mut responses = Vec::new();
// If there's over 100 in the batch, return an error.
if requests.len() > 100 {
return HttpResponse::InternalServerError().json(ErrorStructure {
code: -32600,
message: "Internal Server Error".to_string(),
error: ErrorField::Message("Batch size too large.".to_string()),
});
}
for request in requests {
let result = handle_request(&request, &data, &user_ip).await;
match result {
......@@ -365,7 +374,7 @@ async fn main() -> std::io::Result<()> {
.app_data(web::JsonConfig::default()
.content_type(|_| true)
.content_type_required(false)
.limit(1024))
.limit(1024 * 100)) // 100kb
.app_data(_cache.clone())
.route("/", web::get().to(index))
.route("/", web::post().to(api_call))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment