io.katharsis.dispatcher.controller.resource.ResourcePatch Maven / Gradle / Ivy
package io.katharsis.dispatcher.controller.resource;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import io.katharsis.dispatcher.controller.HttpMethod;
import io.katharsis.queryParams.QueryParams;
import io.katharsis.repository.RepositoryMethodParameterProvider;
import io.katharsis.request.dto.DataBody;
import io.katharsis.request.dto.RequestBody;
import io.katharsis.request.path.JsonPath;
import io.katharsis.request.path.ResourcePath;
import io.katharsis.resource.exception.RequestBodyException;
import io.katharsis.resource.exception.RequestBodyNotFoundException;
import io.katharsis.resource.exception.ResourceNotFoundException;
import io.katharsis.resource.registry.RegistryEntry;
import io.katharsis.resource.registry.ResourceRegistry;
import io.katharsis.resource.registry.responseRepository.ResourceRepositoryAdapter;
import io.katharsis.response.BaseResponseContext;
import io.katharsis.response.JsonApiResponse;
import io.katharsis.response.ResourceResponseContext;
import io.katharsis.utils.parser.TypeParser;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
public class ResourcePatch extends ResourceUpsert {
public ResourcePatch(ResourceRegistry resourceRegistry, TypeParser typeParser, @SuppressWarnings("SameParameterValue") ObjectMapper objectMapper) {
super(resourceRegistry, typeParser, objectMapper);
}
@Override
public boolean isAcceptable(JsonPath jsonPath, String requestType) {
return !jsonPath.isCollection() &&
jsonPath instanceof ResourcePath &&
HttpMethod.PATCH.name().equals(requestType);
}
@Override
public BaseResponseContext handle(JsonPath jsonPath, QueryParams queryParams,
RepositoryMethodParameterProvider parameterProvider, RequestBody requestBody) {
String resourceEndpointName = jsonPath.getResourceName();
RegistryEntry endpointRegistryEntry = resourceRegistry.getEntry(resourceEndpointName);
if (endpointRegistryEntry == null) {
throw new ResourceNotFoundException(resourceEndpointName);
}
if (requestBody == null) {
throw new RequestBodyNotFoundException(HttpMethod.PATCH, resourceEndpointName);
}
if (requestBody.isMultiple()) {
throw new RequestBodyException(HttpMethod.PATCH, resourceEndpointName, "Multiple data in body");
}
String idString = jsonPath.getIds().getIds().get(0);
DataBody dataBody = requestBody.getSingleData();
if (dataBody == null) {
throw new RequestBodyException(HttpMethod.POST, resourceEndpointName, "No data field in the body.");
}
RegistryEntry bodyRegistryEntry = resourceRegistry.getEntry(dataBody.getType());
verifyTypes(HttpMethod.PATCH, resourceEndpointName, endpointRegistryEntry, bodyRegistryEntry);
Class> type = bodyRegistryEntry
.getResourceInformation()
.getIdField()
.getType();
Serializable resourceId = typeParser.parse(idString, (Class extends Serializable>) type);
ResourceRepositoryAdapter resourceRepository = endpointRegistryEntry.getResourceRepository(parameterProvider);
@SuppressWarnings("unchecked")
Object resource = extractResource(resourceRepository.findOne(resourceId, queryParams));
String attributesFromFindOne = null;
try {
// extract attributes from find one without any manipulation by query params (such as sparse fieldsets)
attributesFromFindOne = this.extractAttributesFromResourceAsJson(resource, jsonPath, new QueryParams());
Map attributesToUpdate = objectMapper.readValue(attributesFromFindOne, Map.class);
// get the JSON form the request and deserialize into a map
String attributesAsJson = objectMapper.writeValueAsString(dataBody.getAttributes());
Map attributesFromRequest = objectMapper.readValue(attributesAsJson, Map.class);;
// walk the source map and apply target values from request
updateValues(attributesToUpdate, attributesFromRequest);
JsonNode upsertedAttributes = objectMapper.valueToTree(attributesToUpdate);
dataBody.setAttributes(upsertedAttributes);
} catch (Exception e) {
attributesFromFindOne = "";
}
setAttributes(dataBody, resource, bodyRegistryEntry.getResourceInformation());
setRelations(resource, bodyRegistryEntry, dataBody, queryParams, parameterProvider);
JsonApiResponse response = resourceRepository.save(resource, queryParams);
return new ResourceResponseContext(response, jsonPath, queryParams);
}
private String extractAttributesFromResourceAsJson(Object resource, JsonPath jsonPath, QueryParams queryParams) throws Exception {
JsonApiResponse response = new JsonApiResponse();
response.setEntity(resource);
ResourceResponseContext katharsisResponse = new ResourceResponseContext(response, jsonPath, queryParams);
// deserialize using the objectMapper so it becomes json-api
String newRequestBody = objectMapper.writeValueAsString(katharsisResponse);
JsonNode node = objectMapper.readTree(newRequestBody);
JsonNode attributes = node.findValue("attributes");
return objectMapper.writeValueAsString(attributes);
}
private void updateValues(Map source, Map updates) {
for (Map.Entry entry : updates.entrySet()) {
String fieldName = entry.getKey();
Object updatedValue = entry.getValue();
// updating an embedded object
if (updatedValue instanceof Map) {
// source may lack the whole entry yet
if (!source.containsKey(fieldName)) {
source.put(fieldName, new HashMap());
}
Object sourceMap = source.get(fieldName);
updateValues((Map)sourceMap, (Map)updatedValue);
continue;
}
// updating a simple value
source.put(fieldName, updatedValue);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy