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.
Make
QuarkusLiquibaseConnectionProvider
extending `DefaultLiquibase…
…ConnectionProvider` to allow `indexCreationThreshold` working Closes keycloak#32860 Signed-off-by: vramik <vramik@redhat.com>
- Loading branch information
Showing
16 changed files
with
111 additions
and
168 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
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
79 changes: 79 additions & 0 deletions
79
...ycloak/quarkus/runtime/storage/database/liquibase/QuarkusLiquibaseConnectionProvider.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,79 @@ | ||
/* | ||
* Copyright 2021 Red Hat, Inc. and/or its affiliates | ||
* and other contributors as indicated by the @author tags. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.keycloak.quarkus.runtime.storage.database.liquibase; | ||
|
||
import java.lang.reflect.Method; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import javax.xml.parsers.SAXParserFactory; | ||
import liquibase.Scope; | ||
import liquibase.parser.ChangeLogParser; | ||
import liquibase.parser.ChangeLogParserFactory; | ||
import liquibase.parser.core.xml.XMLChangeLogSAXParser; | ||
import liquibase.ui.LoggerUIService; | ||
import org.jboss.logging.Logger; | ||
import org.keycloak.connections.jpa.updater.liquibase.conn.DefaultLiquibaseConnectionProvider; | ||
|
||
public class QuarkusLiquibaseConnectionProvider extends DefaultLiquibaseConnectionProvider { | ||
|
||
private static final Logger logger = Logger.getLogger(QuarkusLiquibaseConnectionProvider.class); | ||
|
||
|
||
@Override | ||
protected void baseLiquibaseInitialization() { | ||
|
||
// initialize Liquibase using a custom scope | ||
final Map<String, Object> scopeValues = new HashMap<>(); | ||
scopeValues.put(Scope.Attr.ui.name(), new LoggerUIService()); | ||
try { | ||
Scope.enter(scopeValues); | ||
} catch (Exception e) { | ||
throw new RuntimeException("Failed to initialize Liquibase: " + e.getMessage(), e); | ||
} | ||
|
||
// disables XML validation | ||
for (ChangeLogParser parser : ChangeLogParserFactory.getInstance().getParsers()) { | ||
if (parser instanceof XMLChangeLogSAXParser) { | ||
Method getSaxParserFactory = null; | ||
try { | ||
getSaxParserFactory = XMLChangeLogSAXParser.class.getDeclaredMethod("getSaxParserFactory"); | ||
getSaxParserFactory.setAccessible(true); | ||
SAXParserFactory saxParserFactory = (SAXParserFactory) getSaxParserFactory.invoke(parser); | ||
saxParserFactory.setValidating(false); | ||
saxParserFactory.setSchema(null); | ||
} catch (Exception e) { | ||
logger.warnf("Failed to disable liquibase XML validations"); | ||
} finally { | ||
if (getSaxParserFactory != null) { | ||
getSaxParserFactory.setAccessible(false); | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
@Override | ||
public String getId() { | ||
return "quarkus"; | ||
} | ||
|
||
@Override | ||
public int order() { | ||
return 100; | ||
} | ||
} |
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
152 changes: 0 additions & 152 deletions
152
...keycloak/quarkus/runtime/storage/legacy/liquibase/QuarkusLiquibaseConnectionProvider.java
This file was deleted.
Oops, something went wrong.
19 changes: 18 additions & 1 deletion
19
...ime/src/main/resources/META-INF/services/org.keycloak.cluster.ManagedCacheManagerProvider
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 |
---|---|---|
@@ -1 +1,18 @@ | ||
org.keycloak.quarkus.runtime.storage.legacy.infinispan.QuarkusCacheManagerProvider | ||
# | ||
# Copyright 2021 Red Hat, Inc. and/or its affiliates | ||
# and other contributors as indicated by the @author tags. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
org.keycloak.quarkus.runtime.storage.infinispan.QuarkusCacheManagerProvider |
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
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