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
14064d17
Commit
14064d17
authored
1 year ago
by
Mahesh Maney R
Browse files
Options
Download
Patches
Plain Diff
adding an API to fetch user info by email attribute <ManeyMR>.
parent
dbacc23b
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
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/main/java/com/tarento/upsmf/userManagement/controller/UserController.java
+5
-0
...rento/upsmf/userManagement/controller/UserController.java
src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java
+6
-0
...com/tarento/upsmf/userManagement/handler/UserHandler.java
src/main/java/com/tarento/upsmf/userManagement/utility/KeycloakUserGetter.java
+25
-0
...ento/upsmf/userManagement/utility/KeycloakUserGetter.java
with
36 additions
and
0 deletions
+36
-0
src/main/java/com/tarento/upsmf/userManagement/controller/UserController.java
+
5
−
0
View file @
14064d17
...
...
@@ -37,6 +37,11 @@ public class UserController {
return
userHandler
.
userDetails
(
body
);
}
@PostMapping
(
value
=
"/emaildetails"
,
consumes
=
"application/json"
,
produces
=
"application/json"
)
public
String
userEmailDetails
(
@RequestBody
final
JsonNode
body
)
throws
URISyntaxException
,
IOException
{
return
userHandler
.
userEmailDetails
(
body
);
}
@PostMapping
(
value
=
"/list"
,
consumes
=
"application/json"
,
produces
=
"application/json"
)
public
String
listUser
(
@RequestBody
final
JsonNode
body
)
throws
URISyntaxException
,
IOException
{
return
userHandler
.
listUser
(
body
);
...
...
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java
+
6
−
0
View file @
14064d17
...
...
@@ -68,6 +68,12 @@ public class UserHandler {
return
userName
;
}
public
String
userEmailDetails
(
final
JsonNode
body
)
throws
IOException
{
JsonNode
request
=
body
.
get
(
"request"
);
String
userName
=
keycloakUserGetter
.
findUserByEmail
(
request
.
get
(
"fieldName"
).
asText
(),
request
.
get
(
"fieldValue"
).
asText
());
return
userName
;
}
public
String
listUser
(
final
JsonNode
body
)
throws
URISyntaxException
,
IOException
{
logger
.
info
(
"creating user with payload {} "
,
body
.
toPrettyString
());
...
...
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/utility/KeycloakUserGetter.java
+
25
−
0
View file @
14064d17
...
...
@@ -68,4 +68,29 @@ public class KeycloakUserGetter {
logger
.
info
(
"ResponseBody {}"
,
responseBody
);
return
responseBody
;
}
public
String
findUserByEmail
(
final
String
fieldName
,
final
String
fieldValue
)
throws
IOException
{
String
userEndpoint
=
KEYCLOAK_USER_BASE_URL
;
logger
.
info
(
"userEndpoint: "
,
userEndpoint
);
if
(
fieldName
!=
null
&&
fieldValue
!=
null
)
{
userEndpoint
=
userEndpoint
+
"?"
+
fieldName
+
"="
+
fieldValue
;
logger
.
info
(
"userEndpoint {} after adding email : "
,
userEndpoint
);
JsonNode
adminToken
=
keycloakTokenRetriever
.
getAdminToken
();
logger
.
info
(
"adminToken: "
,
adminToken
);
String
accessToken
=
adminToken
.
get
(
"access_token"
).
asText
();
logger
.
info
(
"accessToken: "
,
accessToken
);
HttpClient
httpClient
=
HttpClients
.
createDefault
();
HttpGet
httpGet
=
new
HttpGet
(
userEndpoint
);
httpGet
.
setHeader
(
HttpHeaders
.
AUTHORIZATION
,
"Bearer "
+
accessToken
);
httpGet
.
setHeader
(
HttpHeaders
.
ACCEPT
,
"application/json"
);
org
.
apache
.
http
.
HttpResponse
response
=
httpClient
.
execute
(
httpGet
);
String
responseBody
=
EntityUtils
.
toString
(
response
.
getEntity
());
logger
.
info
(
"ResponseBody {}"
,
responseBody
);
return
responseBody
;
}
return
"No Response Generated since the inputs were null/empty."
;
}
}
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