admin管理员组文章数量:1344975
I'm extending the AbstractEventHandler because most of my users' claims values are filled from the data retrieved from a RestAPI response, which is already implemented, i've already done almost everything i needed to in my handler, even my claims are already being succesfully setted.
In the handler based on the given and last names of the user, the username is going to be randomly generated on each request, my idea is:
- Sending to the self-register endpoint a random string, handled by the Service Provider
- Based on the ID provided (which i need for retreive data from the API) calling the API, and processing the response
- Saving the data retrieved and mapping each value to a claim
- Taking the givenName and lastName values, the generating the random username
Also the username value in the request is being modified when i call:
String newUsername = citizen.getRandomUsername();
while (userStoreManager.isExistingUser(newUsername)) {
newUsername = citizen.getRandomUsername();
}
eventProperties.put(IdentityEventConstants.EventProperty.USER_NAME, newUsername);
This is the original event context properties:
.... {PROFILE_NAME=null, user-name=ajpdoajASDPJASD12312ASDPJ, USER_CLAIMS=.... }
This is the context props after modifying it with my handler:
.... {PROFILE_NAME=null, user-name=kgarcia65083, USER_CLAIMS=.... }
However in the DB it is saved with the originally generated username, not the one i after established, how can i set that username before being saved to the DB, i have tried:
- Setting the PriorityCode to 0, and to 999, but nothing
- Using the userStore in the POST_ADD_USER, but the username is inmutable in DB
I don't know what else to try, any feedback will be really apretiated :).
本文标签: How to modify username in WSO2 IS 7XX in the event handler PREADDUSERStack Overflow
版权声明:本文标题:How to modify username in WSO2 IS 7.X.X in the event handler PRE_ADD_USER? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743801134a2541334.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论