use of org.n52.shetland.ogc.filter.FilterClause in project sensorweb-server-sta by 52North.
the class CollectionSer method serialize.
@Override
public void serialize(CollectionWrapper value, JsonGenerator gen, SerializerProvider provider) throws IOException {
gen.writeStartObject();
gen.writeNumberField("@iot.count", value.getTotalEntityCount());
// We have multiple pages
if (value.hasNextPage() && !value.getEntities().isEmpty()) {
QueryOptions queryOptions = value.getEntities().get(0).getQueryOptions();
long oldTop = queryOptions.getTopFilter().getValue();
long oldSkip = queryOptions.hasSkipFilter() ? queryOptions.getSkipFilter().getValue() : 0L;
// Replace old skip Filter with new one
Set<FilterClause> allFilters = queryOptions.getAllFilters();
allFilters.remove(queryOptions.getSkipFilter());
allFilters.add(new SkipTopFilter(FilterConstants.SkipTopOperator.Skip, oldSkip + oldTop));
gen.writeStringField("@iot.nextLink", value.getRequestURL() + "?" + new QueryOptions("", allFilters).toString());
}
gen.writeArrayFieldStart("value");
for (ElementWithQueryOptions element : value.getEntities()) {
provider.defaultSerializeValue(element, gen);
}
gen.writeEndArray();
gen.writeEndObject();
}
use of org.n52.shetland.ogc.filter.FilterClause in project sensorweb-server-sta by 52North.
the class STACollectionRequestHandler method readCollectionRefDirect.
/**
* Matches all requests on Collections referenced directly and addressing an association link
* e.g. /Datastreams/$ref
*
* @param collectionName name of the collection. Automatically set by Spring via @PathVariable
* @param request Full request
* @return CollectionWrapper Requested collection
*/
@GetMapping(value = "/{collectionName:" + BASE_COLLECTION_REGEX + "}" + SLASHREF, produces = "application/json")
public CollectionWrapper readCollectionRefDirect(@PathVariable String collectionName, HttpServletRequest request) throws STACRUDException {
HashSet<FilterClause> filters = new HashSet<>();
String queryString = request.getQueryString();
if (queryString != null) {
// Parse QueryString normally and extract relevant Filters
QueryOptions options = decodeQueryString(request);
filters.add(options.getSkipFilter());
filters.add(options.getTopFilter());
filters.add(options.getCountFilter());
filters.add(options.getFilterFilter());
}
// Overwrite select filter with filter only returning id
filters.add(new SelectFilter(ID));
return serviceRepository.getEntityService(collectionName).getEntityCollection(QUERY_OPTIONS_FACTORY.createQueryOptions(filters)).setRequestURL(rootUrl + collectionName);
}
use of org.n52.shetland.ogc.filter.FilterClause in project sensorweb-server-sta by 52North.
the class STAEntityRequestHandler method readEntityRefDirect.
/**
* Matches all requests on Entities referenced directly via id and addressing an association link
* e.g. /Datastreams(52)/$ref
*
* @param entity name of entity. Automatically set by Spring via @PathVariable
* @param id id of entity. Automatically set by Spring via @PathVariable
* @param request full request
*/
@GetMapping(value = MAPPING_PREFIX + ENTITY_IDENTIFIED_DIRECTLY + SLASHREF, produces = "application/json")
public ElementWithQueryOptions<?> readEntityRefDirect(@PathVariable String entity, @PathVariable String id, HttpServletRequest request) throws Exception {
String requestURI = request.getRequestURI();
validateResource(requestURI.substring(request.getContextPath().length(), requestURI.length() - 5), serviceRepository);
String entityId = id.substring(1, id.length() - 1);
HashSet<FilterClause> filters = new HashSet<>();
// Overwrite select filter with filter only returning id
filters.add(new SelectFilter(ID));
return serviceRepository.getEntityService(entity).getEntity(entityId, QUERY_OPTIONS_FACTORY.createQueryOptions(filters));
}
use of org.n52.shetland.ogc.filter.FilterClause in project sensorweb-server-sta by 52North.
the class STAPropertyRequestHandler method readEntityPropertyDirect.
private ElementWithQueryOptions<?> readEntityPropertyDirect(String entity, String id, String property, String url) throws Exception {
validateResource(url.substring(0, url.length() - property.length() - 1), serviceRepository);
validateProperty(entity, property);
String entityId = id.substring(1, id.length() - 1);
HashSet<FilterClause> filters = new HashSet<>();
// Add select filter with filter only returning property
filters.add(new SelectFilter(property));
return serviceRepository.getEntityService(entity).getEntity(entityId, QUERY_OPTIONS_FACTORY.createQueryOptions(filters));
}
use of org.n52.shetland.ogc.filter.FilterClause in project sensorweb-server-sta by 52North.
the class STAPropertyRequestHandler method readRelatedEntityProperty.
private ElementWithQueryOptions readRelatedEntityProperty(String entity, String target, String property, String url) throws Exception {
validateResource(url.substring(0, url.length() - property.length() - 1), serviceRepository);
String sourceType = entity.substring(0, entity.indexOf("("));
String sourceId = entity.substring(sourceType.length() + 1, entity.length() - 1);
validateProperty(sourceType, property);
HashSet<FilterClause> filters = new HashSet<>();
// Add select filter with filter only returning property
filters.add(new SelectFilter(property));
return serviceRepository.getEntityService(target).getEntityByRelatedEntity(sourceId, sourceType, null, QUERY_OPTIONS_FACTORY.createQueryOptions(filters));
}
Aggregations