info.unterrainer.commons.httpserver.GenericHandlerGroupBuilder Maven / Gradle / Ivy
package info.unterrainer.commons.httpserver;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.concurrent.ExecutorService;
import info.unterrainer.commons.httpserver.daos.CoreDao;
import info.unterrainer.commons.httpserver.daos.ParamMap;
import info.unterrainer.commons.httpserver.enums.Endpoint;
import info.unterrainer.commons.httpserver.extensions.AsyncExtensionContextMapper;
import info.unterrainer.commons.httpserver.interceptors.InterceptorData;
import info.unterrainer.commons.httpserver.interceptors.InterceptorParamBuilder;
import info.unterrainer.commons.httpserver.interceptors.delegates.GetListInterceptor;
import info.unterrainer.commons.httpserver.rql.RqlData;
import info.unterrainer.commons.httpserver.rql.RqlUtils;
import info.unterrainer.commons.rdbutils.entities.BasicJpa;
import info.unterrainer.commons.serialization.jsonmapper.JsonMapper;
import info.unterrainer.commons.serialization.jsons.BasicJson;
import info.unterrainer.commons.serialization.objectmapper.ObjectMapper;
import io.javalin.core.security.Role;
import lombok.AccessLevel;
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor(access = AccessLevel.PACKAGE)
public class GenericHandlerGroupBuilder {
private final HttpServer server;
private final Class
jpaType;
private final Class jsonType;
private final CoreDao dao;
private JsonMapper jsonMapper;
private ObjectMapper objectMapper;
private String path;
private List endpoints = new ArrayList<>();
private List getListInterceptors = new ArrayList<>();
private List asyncExtensionContextMappers = new ArrayList<>();
private ExecutorService executorService;
HandlerExtensions extensions = new HandlerExtensions<>();
private LinkedHashMap accessRoles = new LinkedHashMap<>();
public HttpServer add() {
if (jsonMapper == null)
jsonMapper = JsonMapper.create();
if (objectMapper == null)
objectMapper = new ObjectMapper();
if (executorService == null)
executorService = server.executorService;
GenericHandlerGroup handlerGroupInstance = new GenericHandlerGroup<>(dao, jpaType, jsonType,
jsonMapper, objectMapper, path, endpoints, getListInterceptors, extensions,
asyncExtensionContextMappers, accessRoles, executorService);
server.addHandlerGroup(handlerGroupInstance);
return server;
}
public AddonBuilder
extension() {
return new AddonBuilder<>(this);
}
public GenericHandlerGroupBuilder
addRoleFor(final Endpoint endpoint, final Role... roles) {
accessRoles.put(endpoint, roles);
return this;
}
public GenericHandlerGroupBuilder
jsonMapper(final JsonMapper jsonMapper) {
this.jsonMapper = jsonMapper;
return this;
}
public GenericHandlerGroupBuilder
objectMapper(final ObjectMapper objectMapper) {
this.objectMapper = objectMapper;
return this;
}
public GenericHandlerGroupBuilder
path(final String path) {
this.path = path;
return this;
}
public GenericHandlerGroupBuilder
endpoints(final ExecutorService executorService) {
this.executorService = executorService;
return this;
}
public GenericHandlerGroupBuilder
endpoints(final Endpoint... endpoints) {
this.endpoints.addAll(Arrays.asList(endpoints));
return this;
}
public GenericHandlerGroupBuilder
getListInterceptor(final GetListInterceptor interceptor) {
getListInterceptors.add(interceptor);
return this;
}
/**
* Here you may register {@link AsyncExtensionContextMapper}s that allow you to
* map attributes located in the Javalin-context to an offline, asynchronous one
* which you can address within asynchronous extension methods.
*
* @param asyncExtensionContextMapper a mapper of type
* {@link AsyncExtensionContextMapper} you
* may register as an extension that moves
* variables from the Javalin-context to the
* async-context.
* @return an instance of this object to assure a fluent interface
*/
public GenericHandlerGroupBuilder
asyncExtensionContextMapper(
final AsyncExtensionContextMapper asyncExtensionContextMapper) {
asyncExtensionContextMappers.add(asyncExtensionContextMapper);
return this;
}
/**
* Gives you a {@link InterceptorParamBuilder} object that allows you to declare
* an interceptor with minimal code.
* You can specify every important part of it (select-clause, where-clause,
* join-clause and order-by-clause) and utilizes its own parser for the
* where-clause ({@link InterceptorParamBuilder#query(String)}).
*
* @return a new instance of the {@link InterceptorParamBuilder}
*/
public InterceptorParamBuilder
getListInterceptor() {
return new InterceptorParamBuilder<>(this, (passedData, query) -> {
getListInterceptors.add((ctx, hu) -> {
RqlUtils rqlUtils = new RqlUtils(ctx, hu, server.getEnumLookupFqnForInterceptorParser());
RqlData data = rqlUtils.parseRql(query);
InterceptorData r = InterceptorData.builder()
.selectClause(passedData.getSelectClause())
.whereClause(data.getParsedCommandAsString())
.joinClause(passedData.getJoinClause())
.params(ParamMap.builder().parameters(data.getParams()).build())
.partOfQueryString(data.getQueryStringAsString())
.orderByClause(passedData.getOrderByClause())
.build();
return r;
});
});
}
}