User Service
Overview
User service is responsible for user data management, and providing functionality to login and logout in the DIGIT system.
Pre-requisites
Before you proceed with the configuration, make sure the following pre-requisites are met:
Java 8
Kafka server is up and running
Encryption and MDMS services are running
PSQL server is running and database
Redis is running
Key Functionalities
Store, update and search user data
Provide authentication
Provide login,logout functionality into DIGIT platform
Store user data PIIs in encrypted form
Interaction Diagram
Deployment Details
Set up latest version of egov-enc-service and egov-mdms- service.
Deploy latest version of egov-user service.
Add role action mapping for APIs.
Configuration Details
Following are the properties in application.properties file in user service which are configurable:
Integration
Integration Scope
User data management and functionality to login and logout into Digit system using OTP and password.
Integration Benefits
Employee
User registration
Search user
Update user details
Forgot password
Change password
User role mapping (single ULB to multiple roles)
Enable employee to login into DIGIT system based on password
Citizen
Create user
Update user
Search user
User registration using OTP
OTP-based login
Steps to Integration
To integrate, the host of the egov-user should be overwritten in helm chart.
Use
/citizen/_create
endpoint for creating users into the system. This endpoint requires the user to validate his/her mobile number using OTP. The OTP will be send to his/her mobile number, and then that OTP will be send asotpReference
in the request body.Use
/v1/_search
and/_search
endpoints to search users in the system depending on various search parameters.Use
/profile/_update
for updating the user profile. The user will be validated (either by OTP-based validation or password validation) when this API is called./users/_createnovalidate
and/users/_updatenovalidate
are endpoints to create user data into the system without any validations (no OTP or password required). They should be strictly used only for creating/updating users internally and should not be exposed outside.Forgot password: In case the user forgets the password, it can be reset by calling
/user-otp/v1/_send
which will generate and send the OTP to the employee’s mobile number. The password can then be updated using this OTP by calling the API/password/nologin/_update
in which new password along with the OTP has to be sent.Use
/password/_update
to update the existing password by logging in. In the request body, both the old and new passwords hace to be sent. Details of the API can be found in the attached swagger documentation.Use
/user/oauth/token
for generating token,/_logout
for logout and/_details
for getting user information from the token.Multi-tenant user: This functionality allows a user to perform actions across multiple ULBs. For example, an employee belonging to Amritsar can perform a role of say a trade license approver for Jalandhar by assigning a tenant-level role of tenantId pb.jalandhar to him/her.
If an employee has a role with a state-level
tenantId
he/she can perform actions corresponding to that role across all tenants.Refresh token: Whenever the
/user/oauth/token
is called to generate theaccess_token
, along with theaccess_token
one more token is generated calledrefresh_token
. The refresh token is used to generate a newaccess_token
whenever the existing one expires. Till the refresh token is valid, the user will not have to login even if his/heraccess_token
gets expired as it will be generated usingrefresh_token
. The validity time of the refresh token is configurable and can be configured using the property:refresh.token.validity.in.minutes
User Data Privacy
MDMS configuration for security policy
There are two security policy model for user data: User and UserSelf.
In model User, field attributes
contain a list of fields from the User object that needs to be secured and field roleBasedDecryptionPolicy
is an attribute-level role-based policy. It will define visibility for each attribute.
UserSelf model contains the same structure of security policy, but User security model is used for Search API response and UserSelf is used for Create/Update API response.
Visibility of the PII data is based on the above MDMS configuration. There are three types of visibility mentioned in the configuration:
PLAIN - Show text in plain form.
MASKED - The returned text will contain masked data. The masking pattern will be applied as defined in the Masking Patterns master data.
NONE - The returned text will not contain any data. It would contain string like “Confidential Information”.
Plain access request
Any user will be able to get plain access to the secured data (citizen’s PII) by requesting through the plainAccessRequest
parameter. It takes the following parameters:
recordId
- It is the unique identifier of the record that is requested for plain access.fields
- It defines a list of attributes that are requested for plain access.
To know more about the encryption policy, refer to document Encryption Service mentioned in the reference docs.
Reference Docs
API List
Note: All APIs are in the same postman collection, and hence, the same link has been added in each row.
Last updated