47 lines
1.9 KiB
Groovy
47 lines
1.9 KiB
Groovy
|
import ch.nevis.esauth.auth.engine.AuthResponse
|
||
|
import ch.nevis.idm.client.IdmRestClient
|
||
|
import ch.nevis.idm.client.IdmRestClientFactory
|
||
|
import ch.nevis.idm.client.HTTPRequestWrapper
|
||
|
|
||
|
import groovy.json.JsonSlurper
|
||
|
import groovy.xml.XmlSlurper
|
||
|
|
||
|
// Accounting
|
||
|
def requester = session['ch.nevis.auth.saml.request.scoping.requesterId'] ?: 'unknown'
|
||
|
def requestId = session['ch.nevis.auth.saml.request.id'] ?: 'unknown'
|
||
|
def user = session['ch.adnovum.nevisidm.user.extId'] ?: 'unknown'
|
||
|
def sourceIp = request.getLoginContext()['connection.HttpHeader.X-Real-IP'] ?: 'unknown'
|
||
|
def userAgent = request.getLoginContext()['connection.HttpHeader.user-agent'] ?: request.getLoginContext()['connection.HttpHeader.User-Agent'] ?: 'unknown'
|
||
|
|
||
|
IdmRestClient idmRestClient = IdmRestClientFactory.get(parameters)
|
||
|
|
||
|
String clientExtId = session.get('ch.adnovum.nevisidm.user.clientExtId')
|
||
|
String userExtId = session.get('ch.adnovum.nevisidm.user.extId')
|
||
|
String mobile = session.get('ch.nevis.idm.User.mobile')
|
||
|
|
||
|
String baseUrl = parameters.get('baseUrl')
|
||
|
String endPoint = "${baseUrl}/core/v1/${clientExtId}/users/${userExtId}"
|
||
|
|
||
|
|
||
|
if (mobile) {
|
||
|
LOG.debug("User '${user}' has already registered a mobile number")
|
||
|
response.setResult('done')
|
||
|
return
|
||
|
}
|
||
|
if (inargs['submit'] && inargs['mobile']) {
|
||
|
String result
|
||
|
|
||
|
def patchBdy = "{\"contacts\":{\"mobile\":\"${inargs['mobile']?.trim()}\"},\"modificationComment\":\"added mobile number from user during request ${requestId}\"}"
|
||
|
try {
|
||
|
result = idmRestClient.patch(endPoint, patchBdy)
|
||
|
} catch(Exception e) {
|
||
|
LOG.warn("Event='MOBILEFAILED', Requester='${requester}', RequestId='${requestId}', User=${user}, SourceIp=${sourceIp}, UserAgent='${userAgent}', reason='failed to save number (${e})'")
|
||
|
}
|
||
|
response.setResult('done')
|
||
|
return
|
||
|
}
|
||
|
|
||
|
|
||
|
// we should ask the user
|
||
|
response.setStatus(AuthResponse.AUTH_CONTINUE)
|