com.sdl.odata.unmarshaller.json.JsonActionUnmarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata_renderer Show documentation
Show all versions of odata_renderer Show documentation
Tridion OData Framework Renderer Implementation
The newest version!
/**
* Copyright (c) 2014-2024 All Rights Reserved by the RWS Group for and on behalf of its affiliates and subsidiaries.
*
* 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 com.sdl.odata.unmarshaller.json;
import com.sdl.odata.api.ODataException;
import com.sdl.odata.api.parser.ODataUriUtil;
import com.sdl.odata.api.service.MediaType;
import com.sdl.odata.api.service.ODataRequestContext;
import com.sdl.odata.unmarshaller.AbstractUnmarshaller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
import static com.sdl.odata.renderer.AbstractRenderer.DEFAULT_SCORE;
/**
* The unmarshaller for Action and ActionImport operations.
*/
@Component
public class JsonActionUnmarshaller extends AbstractUnmarshaller {
private static final Logger LOG = LoggerFactory.getLogger(JsonActionUnmarshaller.class);
private static final int ACTION_OPERATION_SCORE = 50;
@Override
public int score(ODataRequestContext requestContext) {
if (isRightMethodForUnmarshall(requestContext.getRequest()) &&
ODataUriUtil.isActionCallUri(requestContext.getUri())) {
MediaType contentType = requestContext.getRequest().getContentType();
int baseScore = super.score(contentType, MediaType.JSON);
int actionScore = baseScore + ACTION_OPERATION_SCORE;
LOG.debug("Match for JsonActionUnmarshaller: {} with score: {}", requestContext.getRequest(), actionScore);
return actionScore;
}
return DEFAULT_SCORE;
}
@Override
public Object unmarshall(ODataRequestContext requestContext) throws ODataException {
LOG.debug("Unmarshalling action parameters from request: {}", requestContext.getRequest().toString());
return new ODataJsonActionParser(requestContext).getAction();
}
}