2022-08-21 12:44:53 +03:00
|
|
|
use super::errors::FrontendResult;
|
|
|
|
use super::rate_limit::{rate_limit_by_ip, rate_limit_by_user_key};
|
2022-08-24 02:13:56 +03:00
|
|
|
use crate::stats::Protocol;
|
2022-08-16 22:29:00 +03:00
|
|
|
use crate::{app::Web3ProxyApp, jsonrpc::JsonRpcRequestEnum};
|
2022-08-06 04:17:25 +03:00
|
|
|
use axum::extract::Path;
|
2022-09-07 06:54:16 +03:00
|
|
|
use axum::{response::IntoResponse, Extension, Json};
|
2022-07-07 06:22:09 +03:00
|
|
|
use axum_client_ip::ClientIp;
|
2022-06-05 22:58:47 +03:00
|
|
|
use std::sync::Arc;
|
2022-08-16 03:33:26 +03:00
|
|
|
use tracing::{error_span, Instrument};
|
2022-08-06 04:17:25 +03:00
|
|
|
use uuid::Uuid;
|
2022-06-05 22:58:47 +03:00
|
|
|
|
2022-08-05 22:22:23 +03:00
|
|
|
pub async fn public_proxy_web3_rpc(
|
2022-07-07 06:22:09 +03:00
|
|
|
Json(payload): Json<JsonRpcRequestEnum>,
|
|
|
|
Extension(app): Extension<Arc<Web3ProxyApp>>,
|
|
|
|
ClientIp(ip): ClientIp,
|
2022-08-21 12:39:38 +03:00
|
|
|
) -> FrontendResult {
|
2022-08-27 05:13:36 +03:00
|
|
|
let _ip = rate_limit_by_ip(&app, ip).await?;
|
2022-08-04 04:10:27 +03:00
|
|
|
|
2022-08-13 01:12:46 +03:00
|
|
|
let protocol = Protocol::HTTP;
|
2022-08-16 03:33:26 +03:00
|
|
|
let user_id = 0;
|
2022-08-13 01:12:46 +03:00
|
|
|
|
2022-08-16 07:56:01 +03:00
|
|
|
let user_span = error_span!("user", user_id, ?protocol);
|
|
|
|
|
|
|
|
/*
|
|
|
|
// TODO: move this to a helper function (or two). have it fetch method, protocol, etc. from tracing?
|
2022-08-13 01:12:46 +03:00
|
|
|
match &payload {
|
|
|
|
JsonRpcRequestEnum::Batch(batch) => {
|
2022-08-16 03:33:26 +03:00
|
|
|
// TODO: use inc_by if possible? need to group them by rpc_method
|
2022-08-13 01:12:46 +03:00
|
|
|
for single in batch {
|
|
|
|
let rpc_method = single.method.clone();
|
|
|
|
|
|
|
|
let _count = app
|
|
|
|
.stats
|
|
|
|
.proxy_requests
|
|
|
|
.get_or_create(&ProxyRequestLabels {
|
|
|
|
rpc_method,
|
2022-08-16 03:33:26 +03:00
|
|
|
protocol: protocol.clone(),
|
2022-08-13 01:12:46 +03:00
|
|
|
user_id,
|
|
|
|
})
|
|
|
|
.inc();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
JsonRpcRequestEnum::Single(single) => {
|
|
|
|
let rpc_method = single.method.clone();
|
|
|
|
|
|
|
|
let _count = app
|
|
|
|
.stats
|
|
|
|
.proxy_requests
|
|
|
|
.get_or_create(&ProxyRequestLabels {
|
|
|
|
protocol,
|
|
|
|
rpc_method,
|
|
|
|
user_id,
|
|
|
|
})
|
|
|
|
.inc();
|
|
|
|
}
|
|
|
|
};
|
2022-08-16 07:56:01 +03:00
|
|
|
*/
|
2022-08-16 03:33:26 +03:00
|
|
|
|
2022-08-21 12:39:38 +03:00
|
|
|
let response = app.proxy_web3_rpc(payload).instrument(user_span).await?;
|
|
|
|
|
2022-09-07 06:54:16 +03:00
|
|
|
Ok(Json(&response).into_response())
|
2022-08-04 04:10:27 +03:00
|
|
|
}
|
2022-07-07 06:22:09 +03:00
|
|
|
|
2022-08-04 04:10:27 +03:00
|
|
|
pub async fn user_proxy_web3_rpc(
|
|
|
|
Json(payload): Json<JsonRpcRequestEnum>,
|
|
|
|
Extension(app): Extension<Arc<Web3ProxyApp>>,
|
2022-08-06 04:17:25 +03:00
|
|
|
Path(user_key): Path<Uuid>,
|
2022-08-21 12:39:38 +03:00
|
|
|
) -> FrontendResult {
|
2022-08-21 12:47:38 +03:00
|
|
|
let user_id: u64 = rate_limit_by_user_key(&app, user_key).await?;
|
2022-07-07 06:22:09 +03:00
|
|
|
|
2022-08-16 07:56:01 +03:00
|
|
|
let protocol = Protocol::HTTP;
|
|
|
|
|
|
|
|
let user_span = error_span!("user", user_id, ?protocol);
|
|
|
|
|
2022-08-21 12:39:38 +03:00
|
|
|
let response = app.proxy_web3_rpc(payload).instrument(user_span).await?;
|
|
|
|
|
2022-09-07 06:54:16 +03:00
|
|
|
Ok(Json(&response).into_response())
|
2022-06-05 22:58:47 +03:00
|
|
|
}
|