/
Integrating with User service

Integrating with User service

c. Integration with User service - Integration with user service requires the following steps -

i) Create a new class under utils by the name of UserUtil and update the User POJO to have the following content -

@Getter @Setter @AllArgsConstructor @NoArgsConstructor @Builder public class User { @JsonProperty("id") private Long id = null; @JsonProperty("uuid") private String uuid = null; @JsonProperty("userName") private String userName = null; @JsonProperty("password") private String password = null; @JsonProperty("salutation") private String salutation = null; @JsonProperty("name") private String name = null; @JsonProperty("gender") private String gender = null; @JsonProperty("mobileNumber") private String mobileNumber = null; @JsonProperty("emailId") private String emailId = null; @JsonProperty("altContactNumber") private String altContactNumber = null; @JsonProperty("pan") private String pan = null; @JsonProperty("aadhaarNumber") private String aadhaarNumber = null; @JsonProperty("permanentAddress") private String permanentAddress = null; @JsonProperty("permanentCity") private String permanentCity = null; @JsonProperty("permanentPincode") private String permanentPincode = null; @JsonProperty("correspondenceCity") private String correspondenceCity = null; @JsonProperty("correspondencePincode") private String correspondencePincode = null; @JsonProperty("correspondenceAddress") private String correspondenceAddress = null; @JsonProperty("active") private Boolean active = null; @JsonProperty("locale") private String locale = null; @JsonProperty("type") private String type = null; @JsonProperty("signature") private String signature = null; @JsonProperty("accountLocked") private Boolean accountLocked = null; @JsonProperty("roles") @Valid private List<Role> roles = null; @JsonProperty("fatherOrHusbandName") private String fatherOrHusbandName = null; @JsonProperty("bloodGroup") private String bloodGroup = null; @JsonProperty("identificationMark") private String identificationMark = null; @JsonProperty("photo") private String photo = null; @JsonProperty("createdBy") private Long createdBy = null; @JsonProperty("lastModifiedBy") private Long lastModifiedBy = null; @JsonProperty("otpReference") private String otpReference = null; @JsonProperty("tenantId") private String tenantId = null; public User addRolesItem(Role rolesItem) { if (this.roles == null) { this.roles = new ArrayList<>(); } this.roles.add(rolesItem); return this; } }

ii) Annotate the created UserUtil class with @Component and add the following code in the created class -

@Component public class UserUtil { private ObjectMapper mapper; private ServiceRequestRepository serviceRequestRepository; private VTRConfiguration config; @Autowired public UserUtil(ObjectMapper mapper, ServiceRequestRepository serviceRequestRepository, VTRConfiguration config) { this.mapper = mapper; this.serviceRequestRepository = serviceRequestRepository; this.config = config; } /** * Returns UserDetailResponse by calling user service with given uri and object * @param userRequest Request object for user service * @param uri The address of the endpoint * @return Response from user service as parsed as userDetailResponse */ public UserDetailResponse userCall(Object userRequest, StringBuilder uri) { String dobFormat = null; if(uri.toString().contains(config.getUserSearchEndpoint()) || uri.toString().contains(config.getUserUpdateEndpoint())) dobFormat="yyyy-MM-dd"; else if(uri.toString().contains(config.getUserCreateEndpoint())) dobFormat = "dd/MM/yyyy"; try{ LinkedHashMap responseMap = (LinkedHashMap)serviceRequestRepository.fetchResult(uri, userRequest); parseResponse(responseMap,dobFormat); UserDetailResponse userDetailResponse = mapper.convertValue(responseMap,UserDetailResponse.class); return userDetailResponse; } catch(IllegalArgumentException e) { throw new CustomException("IllegalArgumentException","ObjectMapper not able to convertValue in userCall"); } } /** * Parses date formats to long for all users in responseMap * @param responeMap LinkedHashMap got from user api response */ public void parseResponse(LinkedHashMap responeMap, String dobFormat){ List<LinkedHashMap> users = (List<LinkedHashMap>)responeMap.get("user"); String format1 = "dd-MM-yyyy HH:mm:ss"; if(users!=null){ users.forEach( map -> { map.put("createdDate",dateTolong((String)map.get("createdDate"),format1)); if((String)map.get("lastModifiedDate")!=null) map.put("lastModifiedDate",dateTolong((String)map.get("lastModifiedDate"),format1)); if((String)map.get("dob")!=null) map.put("dob",dateTolong((String)map.get("dob"),dobFormat)); if((String)map.get("pwdExpiryDate")!=null) map.put("pwdExpiryDate",dateTolong((String)map.get("pwdExpiryDate"),format1)); } ); } } /** * Converts date to long * @param date date to be parsed * @param format Format of the date * @return Long value of date */ private Long dateTolong(String date,String format){ SimpleDateFormat f = new SimpleDateFormat(format); Date d = null; try { d = f.parse(date); } catch (ParseException e) { throw new CustomException("INVALID_DATE_FORMAT","Failed to parse date format in user"); } return d.getTime(); } /** * enriches the userInfo with statelevel tenantId and other fields * @param mobileNumber * @param tenantId * @param userInfo */ public void addUserDefaultFields(String mobileNumber,String tenantId, User userInfo){ Role role = getCitizenRole(tenantId); userInfo.setRoles(Collections.singletonList(role)); userInfo.setType("CITIZEN"); userInfo.setUserName(mobileNumber); userInfo.setTenantId(getStateLevelTenant(tenantId)); userInfo.setActive(true); } /** * Returns role object for citizen * @param tenantId * @return */ private Role getCitizenRole(String tenantId){ Role role = new Role(); role.setCode("CITIZEN"); role.setName("Citizen"); role.setTenantId(getStateLevelTenant(tenantId)); return role; } public String getStateLevelTenant(String tenantId){ return tenantId.split("\\.")[0]; } }

iii) Create the following POJOs -

@AllArgsConstructor @Getter @NoArgsConstructor public class CreateUserRequest { @JsonProperty("requestInfo") private RequestInfo requestInfo; @JsonProperty("user") private User user; } @Getter @Setter public class UserSearchRequest { @JsonProperty("RequestInfo") private RequestInfo requestInfo; @JsonProperty("uuid") private List<String> uuid; @JsonProperty("id") private List<String> id; @JsonProperty("userName") private String userName; @JsonProperty("name") private String name; @JsonProperty("mobileNumber") private String mobileNumber; @JsonProperty("aadhaarNumber") private String aadhaarNumber; @JsonProperty("pan") private String pan; @JsonProperty("emailId") private String emailId; @JsonProperty("fuzzyLogic") private boolean fuzzyLogic; @JsonProperty("active") @Setter private Boolean active; @JsonProperty("tenantId") private String tenantId; @JsonProperty("pageSize") private int pageSize; @JsonProperty("pageNumber") private int pageNumber = 0; @JsonProperty("sort") private List<String> sort = Collections.singletonList("name"); @JsonProperty("userType") private String userType; @JsonProperty("roleCodes") private List<String> roleCodes; } @AllArgsConstructor @NoArgsConstructor @Getter public class UserDetailResponse { @JsonProperty("responseInfo") ResponseInfo responseInfo; @JsonProperty("user") List<User> user; }

v) Create a class by the name of UserService under service folder and add the following content to it -

@Service public class UserService { private UserUtil userUtils; private VTRConfiguration config; @Autowired public UserService(UserUtil userUtils, VTRConfiguration config) { this.userUtils = userUtils; this.config = config; } /** * Calls user service to enrich user from search or upsert user * @param request */ public void callUserService(VoterRegistrationRequest request){ request.getVoterRegistrationApplications().forEach(application -> { if(!StringUtils.isEmpty(application.getApplicant().getId())) enrichUser(application, request.getRequestInfo()); else upsertUser(application, request.getRequestInfo()); }); } private void upsertUser(VoterRegistrationApplication application, RequestInfo requestInfo){ Applicant applicant = application.getApplicant(); User user = User.builder().userName(applicant.getUserName()) .password(applicant.getPassword()) .salutation(applicant.getSalutation()) .name(applicant.getName()) .gender(applicant.getGender()) .mobileNumber(applicant.getMobileNumber()) .emailId(applicant.getEmailId()) .altContactNumber(applicant.getAltContactNumber()) .pan(applicant.getPan()) .permanentAddress(applicant.getPermanentAddress()) .permanentCity(applicant.getPermanentCity()) .permanentPincode(applicant.getPermanentPincode()) .correspondenceCity(applicant.getCorrespondenceCity()) .correspondencePincode(applicant.getCorrespondencePincode()) .correspondenceAddress(applicant.getCorrespondenceAddress()) .active(applicant.getActive()) .locale(applicant.getLocale()) .signature(applicant.getSignature()) .accountLocked(applicant.getAccountLocked()) .fatherOrHusbandName(applicant.getFatherOrHusbandName()) .bloodGroup(applicant.getBloodGroup()) .identificationMark(applicant.getIdentificationMark()) .photo(applicant.getPhoto()) .otpReference(applicant.getOtpReference()) .tenantId(applicant.getTenantId()) .type(applicant.getType()) .roles(applicant.getRoles()) .tenantId(applicant.getTenantId()) .aadhaarNumber(applicant.getAadhaarNumber()) .build(); String tenantId = applicant.getTenantId(); User userServiceResponse = null; // Search on mobile number as user name UserDetailResponse userDetailResponse = searchUser(userUtils.getStateLevelTenant(tenantId),null, user.getMobileNumber()); if (!userDetailResponse.getUser().isEmpty()) { User userFromSearch = userDetailResponse.getUser().get(0); if(!user.getName().equalsIgnoreCase(userFromSearch.getName())){ userServiceResponse = updateUser(requestInfo,user,userFromSearch); } else userServiceResponse = userDetailResponse.getUser().get(0); } else { userServiceResponse = createUser(requestInfo,tenantId,user); } // Enrich the accountId applicant.setId(userServiceResponse.getUuid()); } private void enrichUser(VoterRegistrationApplication application, RequestInfo requestInfo){ String accountId = application.getApplicant().getId(); String tenantId = application.getApplicant().getTenantId(); UserDetailResponse userDetailResponse = searchUser(userUtils.getStateLevelTenant(tenantId),accountId,null); if(userDetailResponse.getUser().isEmpty()) throw new CustomException("INVALID_ACCOUNTID","No user exist for the given accountId"); else application.getApplicant().setId(userDetailResponse.getUser().get(0).getUuid()); } /** * Creates the user from the given userInfo by calling user service * @param requestInfo * @param tenantId * @param userInfo * @return */ private User createUser(RequestInfo requestInfo,String tenantId, User userInfo) { userUtils.addUserDefaultFields(userInfo.getMobileNumber(),tenantId, userInfo); StringBuilder uri = new StringBuilder(config.getUserHost()) .append(config.getUserContextPath()) .append(config.getUserCreateEndpoint()); UserDetailResponse userDetailResponse = userUtils.userCall(new CreateUserRequest(requestInfo, userInfo), uri); return userDetailResponse.getUser().get(0); } /** * Updates the given user by calling user service * @param requestInfo * @param user * @param userFromSearch * @return */ private User updateUser(RequestInfo requestInfo,User user,User userFromSearch) { userFromSearch.setName(user.getName()); userFromSearch.setActive(true); StringBuilder uri = new StringBuilder(config.getUserHost()) .append(config.getUserContextPath()) .append(config.getUserUpdateEndpoint()); UserDetailResponse userDetailResponse = userUtils.userCall(new CreateUserRequest(requestInfo, userFromSearch), uri); return userDetailResponse.getUser().get(0); } /** * calls the user search API based on the given accountId and userName * @param stateLevelTenant * @param accountId * @param userName * @return */ private UserDetailResponse searchUser(String stateLevelTenant, String accountId, String userName){ UserSearchRequest userSearchRequest =new UserSearchRequest(); userSearchRequest.setActive(true); userSearchRequest.setUserType("CITIZEN"); userSearchRequest.setTenantId(stateLevelTenant); if(StringUtils.isEmpty(accountId) && StringUtils.isEmpty(userName)) return null; if(!StringUtils.isEmpty(accountId)) userSearchRequest.setUuid(Collections.singletonList(accountId)); if(!StringUtils.isEmpty(userName)) userSearchRequest.setUserName(userName); StringBuilder uri = new StringBuilder(config.getUserHost()).append(config.getUserSearchEndpoint()); return userUtils.userCall(userSearchRequest,uri); } /** * calls the user search API based on the given list of user uuids * @param uuids * @return */ private Map<String,User> searchBulkUser(List<String> uuids){ UserSearchRequest userSearchRequest =new UserSearchRequest(); userSearchRequest.setActive(true); userSearchRequest.setUserType("CITIZEN"); if(!CollectionUtils.isEmpty(uuids)) userSearchRequest.setUuid(uuids); StringBuilder uri = new StringBuilder(config.getUserHost()).append(config.getUserSearchEndpoint()); UserDetailResponse userDetailResponse = userUtils.userCall(userSearchRequest,uri); List<User> users = userDetailResponse.getUser(); if(CollectionUtils.isEmpty(users)) throw new CustomException("USER_NOT_FOUND","No user found for the uuids"); Map<String,User> idToUserMap = users.stream().collect(Collectors.toMap(User::getUuid, Function.identity())); return idToUserMap; } }

vi) Add the following properties in application.properties file -

#User config egov.user.host=http://localhost:8284/ egov.user.context.path=/user/users egov.user.create.path=/_createnovalidate egov.user.search.path=/user/_search egov.user.update.path=/_updatenovalidate

Related content