@@ -16,7 +16,7 @@ use axum::{
16
16
error_handling:: HandleErrorLayer ,
17
17
response:: { IntoResponse , Response } ,
18
18
routing:: { get, post} ,
19
- BoxError , Json , Router , Server ,
19
+ BoxError , Extension , Json , Router , Server ,
20
20
} ;
21
21
use build_info:: BuildInfo ;
22
22
use eventuals:: Eventual ;
@@ -31,7 +31,9 @@ use tower_governor::{errors::display_error, governor::GovernorConfigBuilder, Gov
31
31
use tracing:: info;
32
32
33
33
use crate :: {
34
- indexer_service:: http:: metrics:: IndexerServiceMetrics ,
34
+ indexer_service:: http:: {
35
+ metrics:: IndexerServiceMetrics , static_subgraph:: static_subgraph_request_handler,
36
+ } ,
35
37
prelude:: {
36
38
attestation_signers, dispute_manager, escrow_accounts, indexer_allocations,
37
39
AttestationSigner , DeploymentDetails , SubgraphClient ,
83
85
InvalidRequest ( anyhow:: Error ) ,
84
86
#[ error( "Error while processing the request: {0}" ) ]
85
87
ProcessingError ( E ) ,
86
- #[ error( "No receipt or free query auth token provided" ) ]
88
+ #[ error( "No valid receipt or free query auth token provided" ) ]
87
89
Unauthorized ,
88
90
#[ error( "Invalid free query auth token" ) ]
89
91
InvalidFreeQueryAuthToken ,
93
95
FailedToProvideAttestation ,
94
96
#[ error( "Failed to provide response" ) ]
95
97
FailedToProvideResponse ,
98
+ #[ error( "Failed to query subgraph: {0}" ) ]
99
+ FailedToQueryStaticSubgraph ( anyhow:: Error ) ,
96
100
}
97
101
98
102
impl < E > From < & IndexerServiceError < E > > for StatusCode
@@ -119,6 +123,8 @@ where
119
123
InvalidRequest ( _) => StatusCode :: BAD_REQUEST ,
120
124
InvalidFreeQueryAuthToken => StatusCode :: BAD_REQUEST ,
121
125
ProcessingError ( _) => StatusCode :: BAD_REQUEST ,
126
+
127
+ FailedToQueryStaticSubgraph ( _) => StatusCode :: INTERNAL_SERVER_ERROR ,
122
128
}
123
129
}
124
130
}
@@ -192,7 +198,7 @@ impl IndexerService {
192
198
. build ( )
193
199
. expect ( "Failed to init HTTP client" ) ;
194
200
195
- let network_subgraph = Box :: leak ( Box :: new ( SubgraphClient :: new (
201
+ let network_subgraph: & ' static SubgraphClient = Box :: leak ( Box :: new ( SubgraphClient :: new (
196
202
http_client. clone ( ) ,
197
203
options
198
204
. config
@@ -234,7 +240,7 @@ impl IndexerService {
234
240
dispute_manager,
235
241
) ;
236
242
237
- let escrow_subgraph = Box :: leak ( Box :: new ( SubgraphClient :: new (
243
+ let escrow_subgraph: & ' static SubgraphClient = Box :: leak ( Box :: new ( SubgraphClient :: new (
238
244
http_client,
239
245
options
240
246
. config
@@ -294,7 +300,7 @@ impl IndexerService {
294
300
// Rate limits by allowing bursts of 10 requests and requiring 100ms of
295
301
// time between consecutive requests after that, effectively rate
296
302
// limiting to 10 req/s.
297
- let rate_limiter = GovernorLayer {
303
+ let misc_rate_limiter = GovernorLayer {
298
304
config : Box :: leak ( Box :: new (
299
305
GovernorConfigBuilder :: default ( )
300
306
. per_millisecond ( 100 )
@@ -304,17 +310,69 @@ impl IndexerService {
304
310
) ) ,
305
311
} ;
306
312
307
- let misc_routes = Router :: new ( )
313
+ let mut misc_routes = Router :: new ( )
308
314
. route ( "/" , get ( "Service is up and running" ) )
309
315
. route ( "/version" , get ( Json ( options. release ) ) )
310
316
. layer (
311
317
ServiceBuilder :: new ( )
312
318
. layer ( HandleErrorLayer :: new ( |e : BoxError | async move {
313
319
display_error ( e)
314
320
} ) )
315
- . layer ( rate_limiter) ,
316
- )
317
- . with_state ( state. clone ( ) ) ;
321
+ . layer ( misc_rate_limiter) ,
322
+ ) ;
323
+
324
+ // Rate limits by allowing bursts of 50 requests and requiring 20ms of
325
+ // time between consecutive requests after that, effectively rate
326
+ // limiting to 50 req/s.
327
+ let static_subgraph_rate_limiter = GovernorLayer {
328
+ config : Box :: leak ( Box :: new (
329
+ GovernorConfigBuilder :: default ( )
330
+ . per_millisecond ( 20 )
331
+ . burst_size ( 50 )
332
+ . finish ( )
333
+ . expect ( "Failed to set up rate limiting" ) ,
334
+ ) ) ,
335
+ } ;
336
+
337
+ if options. config . network_subgraph . serve_subgraph {
338
+ info ! ( "Serving network subgraph at /network" ) ;
339
+
340
+ misc_routes = misc_routes. route (
341
+ "/network" ,
342
+ post ( static_subgraph_request_handler :: < I > )
343
+ . route_layer ( Extension ( network_subgraph) )
344
+ . route_layer ( Extension (
345
+ options. config . network_subgraph . serve_auth_token . clone ( ) ,
346
+ ) )
347
+ . route_layer (
348
+ ServiceBuilder :: new ( )
349
+ . layer ( HandleErrorLayer :: new ( |e : BoxError | async move {
350
+ display_error ( e)
351
+ } ) )
352
+ . layer ( static_subgraph_rate_limiter. clone ( ) ) ,
353
+ ) ,
354
+ ) ;
355
+ }
356
+
357
+ if options. config . escrow_subgraph . serve_subgraph {
358
+ info ! ( "Serving escrow subgraph at /escrow" ) ;
359
+
360
+ misc_routes = misc_routes
361
+ . route ( "/escrow" , post ( static_subgraph_request_handler :: < I > ) )
362
+ . route_layer ( Extension ( escrow_subgraph) )
363
+ . route_layer ( Extension (
364
+ options. config . escrow_subgraph . serve_auth_token . clone ( ) ,
365
+ ) )
366
+ . route_layer (
367
+ ServiceBuilder :: new ( )
368
+ . layer ( HandleErrorLayer :: new ( |e : BoxError | async move {
369
+ display_error ( e)
370
+ } ) )
371
+ . layer ( static_subgraph_rate_limiter) ,
372
+ ) ;
373
+ }
374
+
375
+ misc_routes = misc_routes. with_state ( state. clone ( ) ) ;
318
376
319
377
let data_routes = Router :: new ( )
320
378
. route (
0 commit comments