Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add exposedIdsForAll option and hidden ids for class option. #269

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ public class RepositoryRestConfiguration {
private Boolean returnBodyOnCreate = null;
private Boolean returnBodyOnUpdate = null;
private List<Class<?>> exposeIdsFor = new ArrayList<Class<?>>();
private List<Class<?>> hiddenIdsFor = new ArrayList<Class<?>>();
private boolean exposedIdsForAll=false;
private ResourceMappingConfiguration domainMappings = new ResourceMappingConfiguration();
private ResourceMappingConfiguration repoMappings = new ResourceMappingConfiguration();
private RepositoryDetectionStrategy repositoryDetectionStrategy = RepositoryDetectionStrategies.DEFAULT;
Expand Down Expand Up @@ -454,6 +456,12 @@ public ResourceMapping findRepositoryMappingForPath(String path) {
* @return {@literal true} is the ID is to be exposed, {@literal false} otherwise.
*/
public boolean isIdExposedFor(Class<?> domainType) {
if (hiddenIdsFor.contains(domainType)) {
return false;
}
if (exposedIdsForAll) {
return true;
}
return exposeIdsFor.contains(domainType);
}

Expand All @@ -468,6 +476,17 @@ public RepositoryRestConfiguration exposeIdsFor(Class<?>... domainTypes) {
return this;
}

/**
* Set the list of domain types for which we will not expose the ID in any way even set {@link exposedIdsForAll} to
* to true
*
* @param domainTypes Array of types to hidden IDs for.
* @return {@literal this}
*/
public RepositoryRestConfiguration hiddenIdsFor(Class<?>... domainTypes) {
Collections.addAll(hiddenIdsFor, domainTypes);
return this;
}
/**
* Returns the {@link ProjectionDefinitionConfiguration} to register addition projections.
*
Expand Down Expand Up @@ -610,4 +629,12 @@ public List<EntityLookup<?>> getEntityLookups(Repositories repositories) {
public boolean isLookupType(Class<?> type) {
return this.entityLookupConfiguration.isLookupType(type);
}


/** set if expose all classes ID value as a normal property except the explict @{link hiddenIdsFor} classes
* @param exposedIdsForAll if expose all ID values as a normal property
*/
public void setExposedIdsForAll(boolean exposedIdsForAll) {
this.exposedIdsForAll = exposedIdsForAll;
}
}