-
Notifications
You must be signed in to change notification settings - Fork 392
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c67319f
commit ebc2dd1
Showing
5 changed files
with
134 additions
and
25 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
67 changes: 67 additions & 0 deletions
67
...loudbeaver.model/src/io/cloudbeaver/registry/WebCommonAuthProviderPropertyDescriptor.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,67 @@ | ||
/* | ||
* DBeaver - Universal Database Manager | ||
* Copyright (C) 2010-2024 DBeaver Corp and others | ||
* | ||
* 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 io.cloudbeaver.registry; | ||
|
||
import org.eclipse.core.runtime.IConfigurationElement; | ||
import org.jkiss.code.NotNull; | ||
import org.jkiss.dbeaver.model.impl.AbstractDescriptor; | ||
import org.jkiss.utils.CommonUtils; | ||
|
||
import java.util.Arrays; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import java.util.Set; | ||
|
||
public class WebCommonAuthProviderPropertyDescriptor extends AbstractDescriptor { | ||
private final Set<String> supportedTypes = new HashSet<>(); | ||
private final Set<String> excludedTypes = new HashSet<>(); | ||
@NotNull | ||
private final List<WebAuthProviderProperty> configurationParameters; | ||
|
||
public WebCommonAuthProviderPropertyDescriptor(IConfigurationElement cfg) { | ||
super(cfg); | ||
configurationParameters = WebAuthProviderRegistry.readProperties(cfg); | ||
String supportedTypesAttr = cfg.getAttribute("supportedTypes"); | ||
if (CommonUtils.isNotEmpty(supportedTypesAttr)) { | ||
supportedTypes.addAll(Arrays.stream(supportedTypesAttr.split(",")).toList()); | ||
} | ||
|
||
String excludeAttr = cfg.getAttribute("exclude"); | ||
if (CommonUtils.isNotEmpty(excludeAttr)) { | ||
supportedTypes.addAll(Arrays.stream(excludeAttr.split(",")).toList()); | ||
} | ||
} | ||
|
||
|
||
@NotNull | ||
public List<WebAuthProviderProperty> getConfigurationParameters() { | ||
return configurationParameters; | ||
} | ||
|
||
public boolean isApplicableFor(@NotNull WebAuthProviderDescriptor providerDescriptor) { | ||
Check warning on line 55 in server/bundles/io.cloudbeaver.model/src/io/cloudbeaver/registry/WebCommonAuthProviderPropertyDescriptor.java Jenkins-CI-integration / CheckStyle Java Reportserver/bundles/io.cloudbeaver.model/src/io/cloudbeaver/registry/WebCommonAuthProviderPropertyDescriptor.java#L55
|
||
boolean supported = supportedTypes.isEmpty(); | ||
for (String type : providerDescriptor.getTypes()) { | ||
if (excludedTypes.contains(type)) { | ||
return false; | ||
} | ||
if (supportedTypes.contains(type)) { | ||
supported = true; | ||
} | ||
} | ||
return supported; | ||
} | ||
} |
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