Skip to content

Commit 374fefa

Browse files
committed
#174 Add cognito affiliation report support
1 parent 90296a0 commit 374fefa

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

userdetails-cognito/grails-app/conf/application.yml

+5
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,11 @@ environments:
184184
cas:
185185
appServerName: "https://auth.ala.org.au"
186186

187+
attributes:
188+
affiliations:
189+
enabled: true
190+
attribute-name: 'custom:affiliation'
191+
187192
cognito:
188193
mapping:
189194
email: 'email'

userdetails-cognito/src/main/groovy/au/org/ala/userdetails/CognitoUserService.groovy

+19-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ class CognitoUserService implements IUserService<UserRecord, UserPropertyRecord,
5959

6060
EmailService emailService
6161
TokenService tokenService
62+
LocationService locationService
6263

6364
AWSCognitoIdentityProvider cognitoIdp
6465
String poolId
@@ -461,7 +462,24 @@ class CognitoUserService implements IUserService<UserRecord, UserPropertyRecord,
461462

462463
@Override
463464
List<String[]> countByProfileAttribute(String s, Date date, Locale locale) {
464-
return null
465+
def token
466+
def counts = [:]
467+
def results = cognitoIdp.listUsers(new ListUsersRequest().withUserPoolId(poolId))
468+
469+
while (results) {
470+
def users = results.getUsers()
471+
token = results.getPaginationToken()
472+
473+
users.each {
474+
def value = it.attributes.find { it.name == "custom.$s" }?.value
475+
counts[value ?: ''] = ((counts[value ?: '']) ?: 0)++
476+
}
477+
478+
results = token ? cognitoIdp.listUsers(new ListUsersRequest().withUserPoolId(poolId).withPaginationToken(token)) : null
479+
}
480+
def affiliations = locationService.affiliationSurvey(locale)
481+
482+
return counts.collect { [affiliations[it.key] ?: it.key, it.value.toString()].toArray(new String[0]) }
465483
}
466484

467485
@Override

userdetails-plugin/grails-app/controllers/au/org/ala/userdetails/AdminController.groovy

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import com.opencsv.CSVWriterBuilder
2121
import com.opencsv.RFC4180ParserBuilder
2222
import org.springframework.beans.factory.annotation.Autowired
2323
import org.springframework.beans.factory.annotation.Qualifier
24+
import org.springframework.beans.factory.annotation.Value
2425
import org.springframework.web.multipart.MultipartFile
2526
import org.springframework.web.multipart.MultipartHttpServletRequest
2627

@@ -33,6 +34,9 @@ class AdminController {
3334
def profileService
3435
def authorisedSystemService
3536

37+
@Value('${attributes.affiliations.attribute-name:affiliation}')
38+
String affiliationAttribute = 'affiliation'
39+
3640
@Autowired
3741
@Qualifier('userService')
3842
IUserService userService
@@ -153,7 +157,7 @@ class AdminController {
153157
}
154158

155159
def surveyResults() {
156-
def results = userService.countByProfileAttribute('affiliation', null, request.locale)
160+
def results = userService.countByProfileAttribute(affiliationAttribute, null, request.locale)
157161
respondWithCsv(results, "user-survey-${new Date()}.csv")
158162
}
159163

0 commit comments

Comments
 (0)