Commit 9ebaae12 authored by Radheshhathwar's avatar Radheshhathwar
Browse files

Added fetchAll and fetchBy uniqueRefNum

Showing with 50 additions and 7 deletions
+50 -7
......@@ -2,6 +2,7 @@ package com.tarento.upsmf.userManagement.controller;
import com.fasterxml.jackson.databind.JsonNode;
import com.tarento.upsmf.userManagement.handler.UserHandler;
import com.tarento.upsmf.userManagement.model.Transaction;
import com.tarento.upsmf.userManagement.services.PaymentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
......@@ -10,6 +11,7 @@ import org.springframework.web.bind.annotation.*;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Map;
@RestController
......@@ -86,5 +88,14 @@ public class UserController {
public String usrOTP(@RequestBody JsonNode body) throws IOException {
return userHandler.usrOTP(body);
}
@GetMapping(value = "/transaction", produces = "application/json")
public ResponseEntity<List<Transaction>> getAllTransactions() {
return userHandler.getAllTransactions();
}
@GetMapping(value = "/transaction/{uniqueRefNumber}", produces = "application/json")
public ResponseEntity<?> getTransactionByUniqueRefNumber(@PathVariable String uniqueRefNumber) {
return userHandler.getTransactionByUniqueRefNumber(uniqueRefNumber);
}
}
......@@ -2,6 +2,7 @@ package com.tarento.upsmf.userManagement.handler;
import com.fasterxml.jackson.databind.JsonNode;
import com.tarento.upsmf.userManagement.model.Payment;
import com.tarento.upsmf.userManagement.model.Transaction;
import com.tarento.upsmf.userManagement.services.UserService;
import com.tarento.upsmf.userManagement.utility.*;
import org.slf4j.Logger;
......@@ -12,6 +13,7 @@ import org.springframework.stereotype.Component;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Map;
@Component
......@@ -141,8 +143,14 @@ public class UserHandler {
}
public String usrOTP(JsonNode body) throws IOException {
logger.info("OTP mail to user with body {}",body);
logger.info("OTP mail to user with body {}", body);
return userService.usrOTP(body);
}
public ResponseEntity<List<Transaction>> getAllTransactions() {
return userService.getAllTransactions();
}
public ResponseEntity<?> getTransactionByUniqueRefNumber(String uniqueRefNumber) {
return userService.getTransactionByUniqueRefNumber(uniqueRefNumber);
}
}
......@@ -4,4 +4,5 @@ import com.tarento.upsmf.userManagement.model.Transaction;
import org.springframework.data.jpa.repository.JpaRepository;
public interface TransactionRepository extends JpaRepository<Transaction,Long> {
Transaction findByUniqueRefNumber(String uniqueRefNumber);
}
package com.tarento.upsmf.userManagement.services;
import com.fasterxml.jackson.databind.JsonNode;
import com.tarento.upsmf.userManagement.model.Payment;
import com.tarento.upsmf.userManagement.model.Transaction;
import com.tarento.upsmf.userManagement.repository.TransactionRepository;
import com.tarento.upsmf.userManagement.utility.KeycloakTokenRetriever;
import com.tarento.upsmf.userManagement.utility.KeycloakUserCredentialPersister;
import com.tarento.upsmf.userManagement.utility.SunbirdRCKeycloakTokenRetriever;
......@@ -20,8 +21,11 @@ import org.springframework.web.util.UriComponentsBuilder;
import javax.annotation.PostConstruct;
import java.io.IOException;
import java.net.*;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Map;
import java.util.Optional;
@Component
@PropertySource({ "classpath:application.properties" })
......@@ -44,6 +48,9 @@ public class UserService {
@Autowired
private KeycloakUserCredentialPersister keycloakUserCredentialPersister;
@Autowired
private TransactionRepository transactionRepository;
private static Environment environment;
private String BASE_URL;
private String KEYCLOAK_BASEURL;
......@@ -197,5 +204,21 @@ public class UserService {
logger.info("OTP mail to user with body {}",body);
return keycloakUserCredentialPersister.sendOTPMail(body);
}
public ResponseEntity<List<Transaction>> getAllTransactions() {
List<Transaction> result = transactionRepository.findAll();
if (result.isEmpty()) {
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
}
return new ResponseEntity<>(result, HttpStatus.OK);
}
public ResponseEntity<Transaction> getTransactionByUniqueRefNumber(String uniqueRefNumber) {
Transaction transaction = transactionRepository.findByUniqueRefNumber(uniqueRefNumber);
if (transaction == null) {
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
}
return new ResponseEntity<>(transaction, HttpStatus.OK);
}
}
}
\ No newline at end of file
......@@ -27,7 +27,7 @@ spring.datasource.password=postgres
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.show-sql=false
spring.jpa.hibernate.ddl-auto=create
spring.jpa.hibernate.ddl-auto=none
otp.mail.endpoint = /api/v1/keycloak/mail/sendOTP
user.create.mail.endpoint =/api/v1/keycloak/mail/userCreate
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment