An API Gateway provides a unified interface for a set of microservices so that clients do not need to know about all the details of microservice internals.
DIGIT uses Zuul as an edge service that proxies request to multiple back-end services. It provides a unified “front door” to our ecosystem. This allows any browser, mobile app or other user interface to consume underlying services.
Before you proceed with the documentation, make sure the following pre-requisites are met -
Java 8
egov-user service is running
egov-accesscontrol service is running
Provides easier API interface to clients
Can be used to prevent exposing the internal micro-services structure to the outside world.
Allows to refactor microservices without forcing the clients to refactor consuming logic
Can centralize cross-cutting concerns like security, monitoring, rate limiting etc
Zuul has mainly four types of filters that enable us to intercept the traffic in the different timelines of the request processing for any particular transaction. We can add any number of filters for a particular URL pattern.
pre-filters – are invoked before the request is routed.
post filters – are invoked after the request has been routed.
route filters – are used to route the request.
error filters – are invoked when an error occurs while handling the request.
Microservice authentication and security
Authorization
API Routing
Open APIs using Whitelisting
RBAC filter
Logout filter for the finance module
Property module tax calculation filter for firecess
Request enrichment filter:
Addition of co-relation id
Addition of authenticated user (userinfo) to requestInfo.
Error filter:
Error response formatting
Validation Filter to check if a tenant of a particular module is enabled or not.
Multitenancy Validation Filter. Take the tenant id from the Req body or Query Param and validate against the additional tenant role or primary tenant role.
DevOps efficiency: API response time for logging and sending notifications if it is taking more time.
Rate Throttling
Routing Property
For each service, below mentioned property has to be add-in routes.properties
Rate Limiting Property
For endpoints which require rate throttling, below mentioned property has to be added in limiter.properties
Deploy the latest version of the Zuul service.
Add Zuul routing context paths and service hostname in the configuration.
The Zuul service is used to act as an API gateway for services which citizens avail from ULBs.
Can perform service-specific business logic without impacting the other module.
Provides the capability of routing and authorizing users for accessing resources.
To integrate, the host of the Zuul module should be overwritten in the helm chart.