forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KEYCLOAK-2290 bulk update of algorithm field during migration from 1.7
- Loading branch information
Showing
6 changed files
with
71 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
...update/src/main/java/org/keycloak/connections/mongo/updater/impl/updates/Update1_8_0.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package org.keycloak.connections.mongo.updater.impl.updates; | ||
|
||
import com.mongodb.BasicDBList; | ||
import com.mongodb.BasicDBObject; | ||
import com.mongodb.DBCollection; | ||
import com.mongodb.WriteResult; | ||
import org.keycloak.hash.Pbkdf2PasswordHashProvider; | ||
import org.keycloak.models.KeycloakSession; | ||
import org.keycloak.models.UserCredentialModel; | ||
|
||
/** | ||
* @author <a href="mailto:mposolda@redhat.com">Marek Posolda</a> | ||
*/ | ||
public class Update1_8_0 extends Update { | ||
|
||
@Override | ||
public String getId() { | ||
return "1.8.0"; | ||
} | ||
|
||
@Override | ||
public void update(KeycloakSession session) { | ||
BasicDBList orArgs = new BasicDBList(); | ||
orArgs.add(new BasicDBObject("type", UserCredentialModel.PASSWORD)); | ||
orArgs.add(new BasicDBObject("type", UserCredentialModel.PASSWORD_HISTORY)); | ||
|
||
BasicDBObject elemMatch = new BasicDBObject("$or", orArgs); | ||
elemMatch.put("algorithm", new BasicDBObject("$exists", false)); | ||
|
||
BasicDBObject query = new BasicDBObject("credentials", new BasicDBObject("$elemMatch", elemMatch)); | ||
|
||
BasicDBObject update = new BasicDBObject("$set", new BasicDBObject("credentials.$.algorithm", Pbkdf2PasswordHashProvider.ID)); | ||
|
||
DBCollection users = db.getCollection("users"); | ||
|
||
// Not sure how to do in single query | ||
int countModified = 1; | ||
while (countModified > 0) { | ||
WriteResult wr = users.update(query, update, false, true); | ||
countModified = wr.getN(); | ||
log.debugf("%d credentials modified in current iteration during upgrade to 1.8", countModified); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters