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
0d786d45
Commit
0d786d45
authored
1 year ago
by
Mahesh Maney R
Browse files
Options
Download
Patches
Plain Diff
moving this feature sunbird-rc <ManeyMR>.
parent
6f9b1ae6
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
+1
-4
...rento/upsmf/userManagement/controller/UserController.java
src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java
+1
-8
...com/tarento/upsmf/userManagement/handler/UserHandler.java
src/main/java/com/tarento/upsmf/userManagement/model/UserAttributeModel.java
+0
-25
...arento/upsmf/userManagement/model/UserAttributeModel.java
src/main/java/com/tarento/upsmf/userManagement/repository/UserAttributeRepository.java
+0
-16
...mf/userManagement/repository/UserAttributeRepository.java
src/main/java/com/tarento/upsmf/userManagement/services/UserService.java
+0
-93
...om/tarento/upsmf/userManagement/services/UserService.java
with
2 additions
and
146 deletions
+2
-146
src/main/java/com/tarento/upsmf/userManagement/controller/UserController.java
+
1
−
4
View file @
0d786d45
...
...
@@ -104,8 +104,5 @@ public class UserController {
return
userHandler
.
getTransactionByUniqueRefNumber
(
uniqueRefNumber
);
}
@PostMapping
(
value
=
"/attribute"
,
produces
=
"application/json"
)
public
List
getUserByAttribute
(
@RequestBody
JsonNode
body
)
throws
SQLException
{
return
userHandler
.
getUserByAttribute
(
body
);
}
}
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/handler/UserHandler.java
+
1
−
8
View file @
0d786d45
...
...
@@ -167,12 +167,5 @@ public class UserHandler {
return
userService
.
getTransactionByUniqueRefNumber
(
uniqueRefNumber
);
}
public
List
getUserByAttribute
(
JsonNode
body
)
throws
SQLException
{
String
fieldName
=
body
.
get
(
"fieldName"
).
asText
();
String
fieldValue
=
body
.
get
(
"fieldValue"
).
asText
();
int
offset
=
body
.
get
(
"offset"
).
asInt
();
int
limit
=
body
.
get
(
"limit"
).
asInt
();
logger
.
info
(
"Fetching user info by field {} and value {} with offset {} and limit {}"
,
fieldName
,
fieldValue
,
offset
,
limit
);
return
userService
.
getUserListByAttribute
(
fieldName
,
fieldValue
,
offset
,
limit
);
}
}
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/model/UserAttributeModel.java
deleted
100644 → 0
+
0
−
25
View file @
6f9b1ae6
package
com.tarento.upsmf.userManagement.model
;
import
lombok.*
;
import
javax.persistence.*
;
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
@ToString
@Entity
@Table
(
name
=
"user_attribute"
)
public
class
UserAttributeModel
{
@Column
(
name
=
"name"
)
private
String
name
;
@Column
(
name
=
"value"
)
private
String
value
;
@Column
(
name
=
"user_id"
)
private
String
userId
;
@Id
@GeneratedValue
(
strategy
=
GenerationType
.
IDENTITY
)
private
String
id
;
}
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/repository/UserAttributeRepository.java
deleted
100644 → 0
+
0
−
16
View file @
6f9b1ae6
package
com.tarento.upsmf.userManagement.repository
;
import
com.tarento.upsmf.userManagement.model.UserAttributeModel
;
import
org.springframework.data.jpa.repository.JpaRepository
;
import
org.springframework.data.jpa.repository.Query
;
import
org.springframework.data.repository.query.Param
;
import
org.springframework.stereotype.Repository
;
import
java.util.List
;
@Repository
public
interface
UserAttributeRepository
extends
JpaRepository
<
UserAttributeModel
,
String
>
{
@Query
(
value
=
"SELECT * FROM user_attribute WHERE name=:fieldName and value=:fieldValue OFFSET :offset LIMIT :limit"
,
nativeQuery
=
true
)
List
<
UserAttributeModel
>
findUserByAttribute
(
@Param
(
"fieldName"
)
String
fieldName
,
@Param
(
"fieldValue"
)
String
fieldValue
,
@Param
(
"offset"
)
int
offset
,
@Param
(
"limit"
)
int
limit
);
}
This diff is collapsed.
Click to expand it.
src/main/java/com/tarento/upsmf/userManagement/services/UserService.java
+
0
−
93
View file @
0d786d45
...
...
@@ -2,16 +2,13 @@ package com.tarento.upsmf.userManagement.services;
import
com.fasterxml.jackson.databind.JsonNode
;
import
com.tarento.upsmf.userManagement.model.Transaction
;
import
com.tarento.upsmf.userManagement.model.UserAttributeModel
;
import
com.tarento.upsmf.userManagement.repository.TransactionRepository
;
import
com.tarento.upsmf.userManagement.repository.UserAttributeRepository
;
import
com.tarento.upsmf.userManagement.utility.KeycloakTokenRetriever
;
import
com.tarento.upsmf.userManagement.utility.KeycloakUserCount
;
import
com.tarento.upsmf.userManagement.utility.KeycloakUserCredentialPersister
;
import
com.tarento.upsmf.userManagement.utility.SunbirdRCKeycloakTokenRetriever
;
import
org.apache.http.client.HttpClient
;
import
org.apache.http.impl.client.HttpClientBuilder
;
import
org.keycloak.representations.idm.UserRepresentation
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
...
@@ -19,7 +16,6 @@ import org.springframework.context.annotation.PropertySource;
import
org.springframework.core.env.Environment
;
import
org.springframework.http.*
;
import
org.springframework.http.client.HttpComponentsClientHttpRequestFactory
;
import
org.springframework.jdbc.core.JdbcTemplate
;
import
org.springframework.stereotype.Component
;
import
org.springframework.web.client.RestTemplate
;
import
org.springframework.web.util.UriComponentsBuilder
;
...
...
@@ -29,11 +25,7 @@ import java.io.IOException;
import
java.net.URI
;
import
java.net.URISyntaxException
;
import
java.sql.Connection
;
import
java.sql.PreparedStatement
;
import
java.sql.ResultSet
;
import
java.sql.SQLException
;
import
java.util.*
;
import
java.util.stream.Collectors
;
@Component
@PropertySource
({
"classpath:application.properties"
})
...
...
@@ -59,12 +51,6 @@ public class UserService {
@Autowired
private
TransactionRepository
transactionRepository
;
@Autowired
private
UserAttributeRepository
userAttributeRepository
;
@Autowired
private
JdbcTemplate
jdbcTemplate
;
@Autowired
private
KeycloakUserCount
keycloakUserCount
;
...
...
@@ -243,85 +229,6 @@ public class UserService {
return
new
ResponseEntity
<>(
transaction
,
HttpStatus
.
OK
);
}
public
List
<
UserAttributeModel
>
getUserByAttribute
(
String
fieldName
,
String
fieldValue
,
int
offset
,
int
limit
)
{
return
userAttributeRepository
.
findUserByAttribute
(
fieldName
,
fieldValue
,
offset
,
limit
);
}
public
List
getUserListByAttribute
(
String
fieldName
,
String
fieldValue
,
int
offset
,
int
limit
)
throws
SQLException
{
List
<
UserAttributeModel
>
userByAttribute
=
getUserByAttribute
(
fieldName
,
fieldValue
,
offset
,
limit
);
if
(
userByAttribute
==
null
||
userByAttribute
.
isEmpty
()){
logger
.
info
(
"No records found."
);
return
Collections
.
EMPTY_LIST
;
}
logger
.
info
(
"Records found {}"
,
userByAttribute
);
List
<
String
>
collect
=
userByAttribute
.
stream
().
map
(
UserAttributeModel:
:
getUserId
).
collect
(
Collectors
.
toList
());
Map
<
String
,
UserRepresentation
>
userRepresentationMap
=
getStringUserRepresentationMap
(
collect
);
if
(
userRepresentationMap
.
isEmpty
()){
logger
.
info
(
"No UserRepresentation records found for {}"
,
collect
);
return
Collections
.
EMPTY_LIST
;
}
return
new
ArrayList
<>(
userRepresentationMap
.
values
());
}
private
Map
<
String
,
UserRepresentation
>
getStringUserRepresentationMap
(
List
<
String
>
collect
)
throws
SQLException
{
Connection
connection
=
Objects
.
requireNonNull
(
jdbcTemplate
.
getDataSource
()).
getConnection
();
String
formattedString
=
getFormattedStringFromCollection
(
collect
);
Map
<
String
,
UserRepresentation
>
userRepresentationMap
=
new
HashMap
<>();
ResultSet
resultSet
=
null
;
PreparedStatement
preparedStatement
=
null
;
try
{
preparedStatement
=
connection
.
prepareStatement
(
formattedString
);
resultSet
=
preparedStatement
.
executeQuery
();
if
(
resultSet
!=
null
)
{
while
(
resultSet
.
next
())
{
String
id
=
resultSet
.
getString
(
"id"
);
UserRepresentation
userRepresentation
=
null
;
if
(
userRepresentationMap
.
containsKey
(
id
))
{
userRepresentation
=
userRepresentationMap
.
get
(
id
);
userRepresentation
.
singleAttribute
(
resultSet
.
getString
(
"name"
),
resultSet
.
getString
(
"value"
));
}
else
{
userRepresentation
=
new
UserRepresentation
();
userRepresentation
.
setId
(
id
);
userRepresentation
.
setUsername
(
resultSet
.
getString
(
"username"
));
userRepresentation
.
setEnabled
(
resultSet
.
getBoolean
(
"enabled"
));
userRepresentation
.
setEmail
(
resultSet
.
getString
(
"email"
));
userRepresentation
.
setFirstName
(
resultSet
.
getString
(
"first_name"
));
userRepresentation
.
setLastName
(
resultSet
.
getString
(
"last_name"
));
userRepresentation
.
singleAttribute
(
resultSet
.
getString
(
"name"
),
resultSet
.
getString
(
"value"
));
userRepresentationMap
.
put
(
id
,
userRepresentation
);
}
}
}
}
catch
(
Exception
exception
){
logger
.
error
(
"Exception while processing data from DB."
,
exception
);
}
finally
{
if
(
resultSet
!=
null
){
resultSet
.
close
();
}
if
(
preparedStatement
!=
null
){
preparedStatement
.
close
();
}
if
(
connection
!=
null
){
connection
.
close
();
}
}
logger
.
info
(
"userRepresentationMap {}"
,
userRepresentationMap
);
return
userRepresentationMap
;
}
private
String
getFormattedStringFromCollection
(
List
<
String
>
collect
)
{
StringBuffer
sbf
=
new
StringBuffer
();
sbf
.
append
(
"select ue.*,ua.name,ua.value from user_entity ue join user_attribute ua on ua.user_id = ue.id WHERE ue.id IN ("
);
collect
.
stream
().
forEach
(
item
->
{
sbf
.
append
(
"'"
+
item
+
"'"
);
sbf
.
append
(
","
);
});
String
substring
=
sbf
.
substring
(
0
,
sbf
.
lastIndexOf
(
","
));
substring
=
substring
+
(
" )"
);
logger
.
info
(
"Query to be Executed {}"
,
substring
);
return
substring
;
}
}
\ No newline at end of file
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