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-14855 Added realm-specific localization texts which affect t…
…exts in every part of the UI (admin console / login page / personal info page / email templates). Also new API endpoints and a new UI screen to manage the realm-specific localization texts were introduced. Co-authored-by: Daniel Fesenmeyer <[email protected]>
- Loading branch information
Showing
41 changed files
with
1,428 additions
and
46 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
...in-client/src/main/java/org/keycloak/admin/client/resource/RealmLocalizationResource.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,62 @@ | ||
/* | ||
* Copyright 2016 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.admin.client.resource; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import javax.ws.rs.Consumes; | ||
import javax.ws.rs.DELETE; | ||
import javax.ws.rs.GET; | ||
import javax.ws.rs.PUT; | ||
import javax.ws.rs.Path; | ||
import javax.ws.rs.PathParam; | ||
import javax.ws.rs.Produces; | ||
import javax.ws.rs.core.MediaType; | ||
|
||
public interface RealmLocalizationResource { | ||
|
||
@GET | ||
@Produces(MediaType.APPLICATION_JSON) | ||
List<String> getRealmSpecificLocales(); | ||
|
||
@Path("{locale}") | ||
@GET | ||
@Produces(MediaType.APPLICATION_JSON) | ||
Map<String, String> getRealmLocalizationTexts(final @PathParam("locale") String locale); | ||
|
||
|
||
@Path("{locale}/{key}") | ||
@GET | ||
@Produces(MediaType.TEXT_PLAIN) | ||
String getRealmLocalizationText(final @PathParam("locale") String locale, final @PathParam("key") String key); | ||
|
||
|
||
@Path("{locale}") | ||
@DELETE | ||
void deleteRealmLocalizationTexts(@PathParam("locale") String locale); | ||
|
||
@Path("{locale}/{key}") | ||
@DELETE | ||
void deleteRealmLocalizationText(@PathParam("locale") String locale, @PathParam("key") String key); | ||
|
||
@Path("{locale}/{key}") | ||
@PUT | ||
@Consumes(MediaType.TEXT_PLAIN) | ||
void saveRealmLocalizationText(@PathParam("locale") String locale, @PathParam("key") String key, String text); | ||
} |
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
48 changes: 48 additions & 0 deletions
48
model/jpa/src/main/java/org/keycloak/models/jpa/converter/MapStringConverter.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,48 @@ | ||
/* | ||
* Copyright 2016 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.models.jpa.converter; | ||
|
||
import java.io.IOException; | ||
import java.util.Map; | ||
import javax.persistence.AttributeConverter; | ||
import org.jboss.logging.Logger; | ||
import org.keycloak.util.JsonSerialization; | ||
|
||
public class MapStringConverter implements AttributeConverter<Map<String, String>, String> { | ||
private static final Logger logger = Logger.getLogger(MapStringConverter.class); | ||
|
||
@Override | ||
public String convertToDatabaseColumn(Map<String, String> attribute) { | ||
try { | ||
return JsonSerialization.writeValueAsString(attribute); | ||
} catch (IOException e) { | ||
logger.error("Error while converting Map to JSON String: ", e); | ||
return null; | ||
} | ||
} | ||
|
||
@Override | ||
public Map<String, String> convertToEntityAttribute(String dbData) { | ||
try { | ||
return JsonSerialization.readValue(dbData, Map.class); | ||
} catch (IOException e) { | ||
logger.error("Error while converting JSON String to Map: ", e); | ||
return null; | ||
} | ||
} | ||
} |
Oops, something went wrong.