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
4846d822
Commit
4846d822
authored
2 years ago
by
DeathwingTheBoss
Browse files
Options
Downloads
Patches
Plain Diff
- Improve unwrap survival
- Ignore content-type header (jussi-like) - Version bump
parent
916f30a5
No related branches found
Branches containing commit
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
+16
-6
16 additions, 6 deletions
src/main.rs
with
18 additions
and
8 deletions
Cargo.lock
+
1
−
1
View file @
4846d822
...
@@ -559,7 +559,7 @@ checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
...
@@ -559,7 +559,7 @@ checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
[[package]]
[[package]]
name = "drone"
name = "drone"
version = "0.1.
2
"
version = "0.1.
3
"
dependencies = [
dependencies = [
"actix-web",
"actix-web",
"config",
"config",
...
...
This diff is collapsed.
Click to expand it.
Cargo.toml
+
1
−
1
View file @
4846d822
[package]
[package]
name
=
"drone"
name
=
"drone"
version
=
"0.1.
2
"
version
=
"0.1.
3
"
edition
=
"2021"
edition
=
"2021"
authors
=
[
"Deathwing <hi@deathwing.me>"
]
authors
=
[
"Deathwing <hi@deathwing.me>"
]
description
=
"A caching reverse-proxy application for the Hive blockchain."
description
=
"A caching reverse-proxy application for the Hive blockchain."
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
16
−
6
View file @
4846d822
use
std
::{
time
::
Duration
,
sync
::
Mutex
};
use
std
::{
time
::
Duration
,
sync
::
Mutex
};
use
actix_web
::{
web
,
App
,
HttpResponse
,
HttpServer
,
Responder
,
HttpRequest
};
use
actix_web
::{
web
::{
self
,
JsonConfig
}
,
App
,
HttpResponse
,
HttpServer
,
Responder
,
HttpRequest
};
use
serde
::{
Deserialize
,
Serialize
};
use
serde
::{
Deserialize
,
Serialize
};
use
reqwest
::{
Client
,
ClientBuilder
};
use
reqwest
::{
Client
,
ClientBuilder
};
use
lru_time_cache
::
LruCache
;
use
lru_time_cache
::
LruCache
;
...
@@ -90,16 +90,25 @@ async fn api_call(req: HttpRequest, call: web::Json<APICall>, data: web::Data<Ap
...
@@ -90,16 +90,25 @@ async fn api_call(req: HttpRequest, call: web::Json<APICall>, data: web::Data<Ap
// Log the request, if there's Cloudflare header (CF-Connecting-IP) use that instead of peer_addr.
// Log the request, if there's Cloudflare header (CF-Connecting-IP) use that instead of peer_addr.
let
get_cloudflare_ip
=
req
.headers
()
.get
(
"CF-Connecting-IP"
);
let
get_cloudflare_ip
=
req
.headers
()
.get
(
"CF-Connecting-IP"
);
let
client_ip
=
match
get_cloudflare_ip
{
let
client_ip
=
match
get_cloudflare_ip
{
Some
(
ip
)
=>
ip
.to_str
()
.unwrap
()
.to_string
(),
Some
(
ip
)
=>
ip
.to_str
()
.map
(|
ip
|
ip
.to_string
()),
None
=>
req
.peer_addr
()
.unwrap
()
.ip
()
.to_string
(),
None
=>
Ok
(
req
.peer_addr
()
.unwrap
()
.ip
()
.to_string
()),
};
};
let
client_ip
=
match
client_ip
{
Ok
(
ip
)
=>
ip
,
Err
(
_
)
=>
return
HttpResponse
::
InternalServerError
()
.json
(
ErrorStructure
{
code
:
9999
,
message
:
"Internal Server Error"
.to_string
(),
error_data
:
"Invalid Cloudflare Proxy Header."
.to_string
(),
}),
};
let
formatted_log
=
let
formatted_log
=
format!
(
format!
(
"Timestamp: {} || IP: {} ||
HTTP Version: {:?} ||
Request Method: {} || Request Params: {}"
,
"Timestamp: {} || IP: {} || Request Method: {} || Request Params: {}"
,
human_timestamp
,
human_timestamp
,
client_ip
,
client_ip
,
req
.version
(),
json_rpc_call
.method
,
json_rpc_call
.method
,
json_rpc_call
.params
,
json_rpc_call
.params
,
);
);
...
@@ -258,6 +267,7 @@ async fn main() -> std::io::Result<()> {
...
@@ -258,6 +267,7 @@ async fn main() -> std::io::Result<()> {
HttpServer
::
new
(
move
||
{
HttpServer
::
new
(
move
||
{
App
::
new
()
App
::
new
()
.app_data
(
_cache
.clone
())
.app_data
(
_cache
.clone
())
.app_data
(
JsonConfig
::
default
()
.content_type_required
(
false
))
.route
(
"/"
,
web
::
get
()
.to
(
index
))
.route
(
"/"
,
web
::
get
()
.to
(
index
))
.route
(
"/"
,
web
::
post
()
.to
(
api_call
))
.route
(
"/"
,
web
::
post
()
.to
(
api_call
))
.route
(
"/health"
,
web
::
get
()
.to
(
index
))
.route
(
"/health"
,
web
::
get
()
.to
(
index
))
...
...
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