<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">We just put up and blog post[0] and some sample code[1] on how to do this type of migration.<div class=""><br class=""></div><div class="">[0]:&nbsp;<a href="http://tech.smartling.com/migrate-to-keycloak-with-zero-downtime/" class="">http://tech.smartling.com/migrate-to-keycloak-with-zero-downtime/</a></div><div class="">[1]:&nbsp;<a href="https://github.com/Smartling/keycloak-user-migration-provider" class="">https://github.com/Smartling/keycloak-user-migration-provider</a></div><div class=""><br class=""></div><div class=""><br class=""><div class="">
<div class="">Scott Rossillo</div><div class="">Smartling | Senior Software Engineer</div><div class=""><a href="mailto:srossillo@smartling.com" class="">srossillo@smartling.com</a></div><div class=""><br class=""></div><div class=""><a href="https://app.sigstr.com/uc/55e5d41c6533390d03580000" id="campaignblock" target="_blank" style="box-sizing: border-box; color: rgb(0, 75, 118); outline-offset: -2px; font-family: gesta, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px; widows: 1; background-color: rgb(255, 255, 255); outline: 0px !important;" class=""><img alt="Latest News + Events" border="0" src="https://app.sigstr.com/uc/55e5d41c6533390d03580000/img" style="box-sizing: border-box; border: 0px; vertical-align: top; max-width: 100%; height: auto; width: inherit; color: blue; font-family: Helvetica; font-size: 12px;" class=""></a><span style="color: rgb(169, 169, 169); font-family: gesta, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px; widows: 1; background-color: rgb(255, 255, 255);" class=""></span><div id="watermark" style="box-sizing: border-box; color: rgb(169, 169, 169); font-family: gesta, Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px; widows: 1; background-color: rgb(255, 255, 255);" class=""><a href="http://www.sigstr.com/" style="box-sizing: border-box; color: rgb(0, 124, 194); text-decoration: none; background-color: transparent; outline: 0px !important;" class=""><img alt="Powered by Sigstr" border="0" src="https://app.sigstr.com/uc/55e5d41c6533390d03580000/watermark" style="box-sizing: border-box; border: 0px; vertical-align: top; max-width: 100%; height: auto; width: inherit; color: rgb(99, 99, 99); font-family: Helvetica; font-size: 11px;" class=""></a></div></div>
</div>
<br class=""><div><blockquote type="cite" class=""><div class="">On Jan 15, 2016, at 11:06 AM, Thomas Darimont &lt;<a href="mailto:thomas.darimont@googlemail.com" class="">thomas.darimont@googlemail.com</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div class="">Hello Reed,</div><div class=""><br class=""></div><div class="">as you already wrote, you can write a federation provider that queries your</div><div class="">backend service via REST for user data.</div><div class="">Within the federation provider you can then import the user data&nbsp;</div><div class="">returned from the REST call.&nbsp;</div><div class=""><br class=""></div><div class="">This would work as follows - within the method:</div><div class="">&nbsp; org.keycloak.models.UserFederationProvider.getUserByUsername(RealmModel, String)</div><div class="">you call your backend REST service.</div><div class=""><br class=""></div><div class="">As a next step you create a new user with the given username</div><div class="">&nbsp; UserModel keycloakUser = session.userStorage().addUser(realm, username);</div><div class=""><br class=""></div><div class="">Then you copy all the user data from your backend into Keycloak's UserModel.</div><div class=""><br class=""></div><div class="">After that your backend user has a corresponding representation in Keycloak</div><div class="">with a reference to this federation provider (id) via the "userModel.federationLink" property.</div><div class=""><br class=""></div><div class="">The federation link will also be shown in the user page in the keycloak admin console.</div><div class="">As long as the federation link is in place keycloak will ask the federation provider&nbsp;</div><div class="">for the latest user data. Once you decide to cut the link to the federation provider you can&nbsp;</div><div class="">simply do userModel.setFederationLink(null). You could basically cut (or rather omit) the federation</div><div class="">&nbsp;link right after you added the user to Keycloak.</div><div class=""><br class=""></div><div class="">Keycloak has no link information after that anymore and it will only use the user data stored</div><div class="">in the Keycloak database for that particular user.</div><div class=""><br class=""></div><div class="">You also have the option to do that for all your users via:</div><div class="">&nbsp; org.keycloak.models.UserFederationProviderFactory.syncAllUsers(KeycloakSessionFactory, String, UserFederationProviderModel)<br class=""></div><div class="">or just use on demand per User when he / she want's to login for the first time.</div><div class=""><br class=""></div><div class="">Cheers,</div><div class="">Thomas</div></div><div class="gmail_extra"><br class=""><div class="gmail_quote">2016-01-15 16:16 GMT+01:00 Reed Lewis <span dir="ltr" class="">&lt;<a href="mailto:RLewis@carbonite.com" target="_blank" class="">RLewis@carbonite.com</a>&gt;</span>:<br class=""><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">



<div style="word-wrap: break-word; font-size: 14px; font-family: Calibri, sans-serif;" class="">
<div class="">Hi,</div>
<div class="">&nbsp; &nbsp;We are examining KeyCloak (It looks like it can do what we want), but we have the need to have an external lookup of accounts who are not in KeyCloak in an external database which is accessible via a REST call. &nbsp; I know about federation, but would prefer
 to only check the external datasource if the user is not in KeyCloak, but from then on have all the data “live” in KeyCloak and never refer to the external datasource again once the account is “migrated” into KeyCloak.</div>
<div class=""><br class="">
</div>
<div class=""><br class="">
</div>
<div class="">Can this be done with some modification of federation? &nbsp;&nbsp;</div>
<div class=""><br class="">
</div>
<div class="">We do not want to add the user accounts directly into KeyCloak as there are many more there than will ever be in KeyCloak.</div>
<div class=""><br class="">
</div>
<div class="">Thank you,</div>
<div class=""><br class="">
</div>
<div class="">Reed Lewis</div>
<div class=""><br class="">
</div>
<div class="">&nbsp;</div>
<div class="">
<div class=""></div>
</div>
</div>

<br class="">_______________________________________________<br class="">
keycloak-user mailing list<br class="">
<a href="mailto:keycloak-user@lists.jboss.org" class="">keycloak-user@lists.jboss.org</a><br class="">
<a href="https://lists.jboss.org/mailman/listinfo/keycloak-user" rel="noreferrer" target="_blank" class="">https://lists.jboss.org/mailman/listinfo/keycloak-user</a><br class=""></blockquote></div><br class=""></div>
_______________________________________________<br class="">keycloak-user mailing list<br class=""><a href="mailto:keycloak-user@lists.jboss.org" class="">keycloak-user@lists.jboss.org</a><br class="">https://lists.jboss.org/mailman/listinfo/keycloak-user</div></blockquote></div><br class=""></div></body></html>