refactor(router): profile based routes for payouts (#5794)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Prajjwal Kumar
2024-09-04 20:21:18 +05:30
committed by GitHub
parent ed0d816248
commit eea5c4e7ee
2 changed files with 14 additions and 13 deletions

View File

@ -703,13 +703,12 @@ impl Routing {
)
})),
)
.service(web::resource("/list/{profile_id}").route(web::get().to(
|state, req, path, query: web::Query<RoutingRetrieveQuery>| {
.service(web::resource("/list/profile").route(web::get().to(
|state, req, query: web::Query<RoutingRetrieveQuery>| {
routing::list_routing_configs_for_profile(
state,
req,
query,
path,
&TransactionType::Payment,
)
},
@ -796,6 +795,16 @@ impl Routing {
)
})),
)
.service(web::resource("/payouts/list/profile").route(web::get().to(
|state, req, query: web::Query<RoutingRetrieveQuery>| {
routing::list_routing_configs_for_profile(
state,
req,
query,
&TransactionType::Payout,
)
},
)))
.service(web::resource("/payouts/active").route(web::get().to(
|state, req, query_params| {
routing::routing_retrieve_linked_config(

View File

@ -216,11 +216,9 @@ pub async fn list_routing_configs_for_profile(
state: web::Data<AppState>,
req: HttpRequest,
query: web::Query<RoutingRetrieveQuery>,
path: web::Path<common_utils::id_type::ProfileId>,
transaction_type: &enums::TransactionType,
) -> impl Responder {
let flow = Flow::RoutingRetrieveDictionary;
let path = path.into_inner();
Box::pin(oss_api::server_wrap(
flow,
state,
@ -238,17 +236,11 @@ pub async fn list_routing_configs_for_profile(
#[cfg(not(feature = "release"))]
auth::auth_type(
&auth::HeaderAuth(auth::ApiKeyAuth),
&auth::JWTAuthProfileFromRoute {
profile_id: path,
required_permission: Permission::RoutingRead,
},
&auth::JWTAuth(Permission::RoutingRead),
req.headers(),
),
#[cfg(feature = "release")]
&auth::JWTAuthProfileFromRoute {
profile_id: path,
required_permission: Permission::RoutingRead,
},
&auth::JWTAuth(Permission::RoutingRead),
api_locking::LockAction::NotApplicable,
))
.await