Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Drone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
Drone
Commits
ab1a57d9
Commit
ab1a57d9
authored
2 years ago
by
DeathwingTheBoss
Browse files
Options
Downloads
Patches
Plain Diff
- 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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Cargo.lock
+1
-1
1 addition, 1 deletion
Cargo.lock
Cargo.toml
+1
-1
1 addition, 1 deletion
Cargo.toml
src/main.rs
+13
-4
13 additions, 4 deletions
src/main.rs
with
15 additions
and
6 deletions
Cargo.lock
+
1
−
1
View file @
ab1a57d9
...
...
@@ -574,7 +574,7 @@ checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
[[package]]
name = "drone"
version = "0.
1.9
"
version = "0.
2.0
"
dependencies = [
"actix-cors",
"actix-web",
...
...
This diff is collapsed.
Click to expand it.
Cargo.toml
+
1
−
1
View file @
ab1a57d9
[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."
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
13
−
4
View file @
ab1a57d9
...
...
@@ -188,7 +188,7 @@ async fn handle_request(
Ok
(
response
)
=>
response
,
Err
(
err
)
=>
{
return
Err
(
ErrorStructure
{
code
:
10
00
,
code
:
-
327
00
,
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
:
20
00
,
code
:
-
326
00
,
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
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment