Features guide

Co-authored-by: stianst <stianst@gmail.com>

Closes #9461
This commit is contained in:
Dominik Guhr 2022-01-13 12:44:54 +01:00 committed by Pedro Igor
parent 9e257d4a01
commit 80072b30cd
5 changed files with 183 additions and 22 deletions

View file

@ -48,37 +48,43 @@ public class Profile {
} }
public enum Feature { public enum Feature {
AUTHORIZATION(Type.DEFAULT), AUTHORIZATION("Authorization Service", Type.DEFAULT),
ACCOUNT2(Type.DEFAULT), ACCOUNT2("New Account Management Console", Type.DEFAULT),
ACCOUNT_API(Type.DEFAULT), ACCOUNT_API("Account Management REST API", Type.DEFAULT),
ADMIN_FINE_GRAINED_AUTHZ(Type.PREVIEW), ADMIN_FINE_GRAINED_AUTHZ("Fine-Grained Admin Permissions", Type.PREVIEW),
ADMIN2(Type.EXPERIMENTAL), ADMIN2("New Admin Console", Type.EXPERIMENTAL),
DOCKER(Type.DISABLED_BY_DEFAULT), DOCKER("Docker Registry protocol", Type.DISABLED_BY_DEFAULT),
IMPERSONATION(Type.DEFAULT), IMPERSONATION("Ability for admins to impersonate users", Type.DEFAULT),
OPENSHIFT_INTEGRATION(Type.PREVIEW), OPENSHIFT_INTEGRATION("Extension to enable securing OpenShift", Type.PREVIEW),
SCRIPTS(Type.PREVIEW), SCRIPTS("Write custom authenticators using JavaScript", Type.PREVIEW),
TOKEN_EXCHANGE(Type.PREVIEW), TOKEN_EXCHANGE("Token Exchange Service", Type.PREVIEW),
UPLOAD_SCRIPTS(DEPRECATED), UPLOAD_SCRIPTS("Ability to upload custom JavaScript through Admin REST API", DEPRECATED),
WEB_AUTHN(Type.DEFAULT, Type.PREVIEW), WEB_AUTHN("W3C Web Authentication (WebAuthn)", Type.DEFAULT, Type.PREVIEW),
CLIENT_POLICIES(Type.DEFAULT), CLIENT_POLICIES("Client configuration policies", Type.DEFAULT),
CIBA(Type.DEFAULT), CIBA("OpenID Connect Client Initiated Backchannel Authentication (CIBA)", Type.DEFAULT),
MAP_STORAGE(Type.EXPERIMENTAL), MAP_STORAGE("New store", Type.EXPERIMENTAL),
PAR(Type.DEFAULT), PAR("OAuth 2.0 Pushed Authorization Requests (PAR)", Type.DEFAULT),
DECLARATIVE_USER_PROFILE(Type.PREVIEW), DECLARATIVE_USER_PROFILE("Configure user profiles using a declarative style", Type.PREVIEW),
DYNAMIC_SCOPES(Type.EXPERIMENTAL); DYNAMIC_SCOPES("Dynamic OAuth 2.0 scopes", Type.EXPERIMENTAL);
private String label;
private final Type typeProject; private final Type typeProject;
private final Type typeProduct; private final Type typeProduct;
Feature(Type type) { Feature(String label, Type type) {
this(type, type); this(label, type, type);
} }
Feature(Type typeProject, Type typeProduct) { Feature(String label, Type typeProject, Type typeProduct) {
this.label = label;
this.typeProject = typeProject; this.typeProject = typeProject;
this.typeProduct = typeProduct; this.typeProduct = typeProduct;
} }
public String getLabel() {
return label;
}
public Type getTypeProject() { public Type getTypeProject() {
return typeProject; return typeProject;
} }

View file

@ -0,0 +1,78 @@
<#import "/templates/guide.adoc" as tmpl>
<#import "/templates/kc.adoc" as kc>
<#import "/templates/options.adoc" as opts>
<@tmpl.guide
title="Enabling and disabling features"
summary="Understand how to configure Keycloak to use optional features">
Keycloak has packed some functionality in features, some of them not enabled by default. These features include features that are in tech preview or deprecated features. In addition there are some features that are enabled by default, but can be disabled if you don't need them for your specific usage scenario.
== Enabling features
Some supported features, and all preview features, are not enabled by default. To enable a feature use:
<@kc.build parameters="--features=<name>[,<name>]"/>
For example to enable `docker` and `token-exchange` use:
<@kc.build parameters="--features=docker,token-exchange"/>
All preview features can be enabled with the special name `preview`:
<@kc.build parameters="--features=preview"/>
== Disabling features
To disable a feature that is enabled by default use:
<@kc.build parameters="--features-disabled=<name>[,<name>]"/>
For example to disable `impersonation` use:
<@kc.build parameters="--features-disabled=impersonation"/>
It is also possible to disable all default features with:
<@kc.build parameters="--features-disabled=default"/>
This can be used in combination with `features` to explicitly set what features should be available. If a feature is
added both to the `features-disabled` list and the `features` list it will be enabled.
== Supported features
The following list contains supported features that are enabled by default, and can be disabled if not needed.
<@showFeatures ctx.features.supported/>
=== Disabled by default
The following list contains supported features that are not enabled by default, and can be enabled if needed.
<@showFeatures ctx.features.supportedDisabledByDefault/>
== Preview features
Preview features are not enabled by default, and are not recommended for use in production. These features may change, or
even be removed, in a future release.
<@showFeatures ctx.features.preview/>
== Deprecated features
The following list contains deprecated features that will be removed in a future release. These features are not enabled by default.
<@showFeatures ctx.features.deprecated/>
</@tmpl.guide>
<#macro showFeatures features>
[cols="1,3",role="features"]
|===
<#list features as feature>
|[.features-name]#${feature.name}#
|[.features-description]#${feature.description}#
</#list>
|===
</#macro>

View file

@ -69,6 +69,16 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-common</artifactId>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency> <dependency>
<groupId>io.quarkus</groupId> <groupId>io.quarkus</groupId>
<artifactId>quarkus-core</artifactId> <artifactId>quarkus-core</artifactId>

View file

@ -11,11 +11,13 @@ public class Context {
private File srcDir; private File srcDir;
private Options options; private Options options;
private Features features;
private List<Guide> guides; private List<Guide> guides;
public Context(File srcDir) throws IOException { public Context(File srcDir) throws IOException {
this.srcDir = srcDir; this.srcDir = srcDir;
this.options = new Options(); this.options = new Options();
this.features = new Features();
this.guides = new LinkedList<>(); this.guides = new LinkedList<>();
@ -34,7 +36,12 @@ public class Context {
return options; return options;
} }
public Features getFeatures() {
return features;
}
public List<Guide> getGuides() { public List<Guide> getGuides() {
return guides; return guides;
} }
} }

View file

@ -0,0 +1,60 @@
package org.keycloak.guides.maven;
import org.keycloak.common.Profile;
import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collectors;
public class Features {
private List<Feature> features;
public Features() {
this.features = Arrays.stream(Profile.Feature.values())
.filter(f -> !f.getTypeProject().equals(Profile.Type.EXPERIMENTAL))
.map(f -> new Feature(f))
.sorted(Comparator.comparing(Feature::getName))
.collect(Collectors.toList());
}
public List<Feature> getSupported() {
return features.stream().filter(f -> f.getType().equals(Profile.Type.DEFAULT)).collect(Collectors.toList());
}
public List<Feature> getSupportedDisabledByDefault() {
return features.stream().filter(f -> f.getType().equals(Profile.Type.DISABLED_BY_DEFAULT)).collect(Collectors.toList());
}
public List<Feature> getDeprecated() {
return features.stream().filter(f -> f.getType().equals(Profile.Type.DEPRECATED)).collect(Collectors.toList());
}
public List<Feature> getPreview() {
return features.stream().filter(f -> f.getType().equals(Profile.Type.PREVIEW)).collect(Collectors.toList());
}
public class Feature {
private Profile.Feature profileFeature;
public Feature(Profile.Feature profileFeature) {
this.profileFeature = profileFeature;
}
public String getName() {
return profileFeature.name().toLowerCase().replaceAll("_", "-");
}
public String getDescription() {
return profileFeature.getLabel();
}
private Profile.Type getType() {
return profileFeature.getTypeProject();
}
}
}