Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
userManagement
Commits
9ebaae12
Commit
9ebaae12
authored
1 year ago
by
Radheshhathwar
Browse files
Options
Download
Patches
Plain Diff
Added fetchAll and fetchBy uniqueRefNum
parent
14064d17
main
UAT_quick_fix_keycloak
UPHRH_8164_ErrorHandling
dev
dev_stable
devops-patch
feature_update_fee
rahu_error_message_fix
uat
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
src/main/java/com/tarento/upsmf/userManagement/controller/UserController.java
+12
-1
...rento/upsmf/userManagement/controller/UserController.java
src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java
+10
-2
...com/tarento/upsmf/userManagement/handler/UserHandler.java
src/main/java/com/tarento/upsmf/userManagement/repository/TransactionRepository.java
+1
-0
...psmf/userManagement/repository/TransactionRepository.java
src/main/java/com/tarento/upsmf/userManagement/services/UserService.java
+26
-3
...om/tarento/upsmf/userManagement/services/UserService.java
src/main/resources/application.properties
+1
-1
src/main/resources/application.properties
with
50 additions
and
7 deletions
+50
-7
src/main/java/com/tarento/upsmf/userManagement/controller/UserController.java
+
12
−
1
View file @
9ebaae12
...
...
@@ -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
);
}
}
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java
+
10
−
2
View file @
9ebaae12
...
...
@@ -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
);
}
}
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/repository/TransactionRepository.java
+
1
−
0
View file @
9ebaae12
...
...
@@ -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
);
}
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/services/UserService.java
+
26
−
3
View file @
9ebaae12
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
This diff is collapsed.
Click to expand it.
src/main/resources/application.properties
+
1
−
1
View file @
9ebaae12
...
...
@@ -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
=
creat
e
spring.jpa.hibernate.ddl-auto
=
non
e
otp.mail.endpoint
=
/api/v1/keycloak/mail/sendOTP
user.create.mail.endpoint
=
/api/v1/keycloak/mail/userCreate
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets