/** * Copyright (C) 2010-2017 Structr GmbH * * This file is part of Structr <http://structr.org>. * * Structr is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * Structr is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Structr. If not, see <http://www.gnu.org/licenses/>. */ package org.structr.rest.resource; import java.util.Map; import javax.servlet.http.HttpServletRequest; import org.structr.common.SecurityContext; import org.structr.common.error.FrameworkException; import org.structr.core.Result; import org.structr.core.app.StructrApp; import org.structr.core.entity.AbstractNode; import org.structr.core.property.PropertyKey; import org.structr.rest.RestMethodResult; import org.structr.rest.exception.IllegalMethodException; /** * * */ public class EntityResolverResource extends SortableResource { @Override public boolean checkAndConfigure(String part, SecurityContext securityContext, HttpServletRequest request) { return true; } @Override public Result doGet(PropertyKey sortKey, boolean sortDescending, int pageSize, int page, String offsetId) throws FrameworkException { throw new IllegalMethodException("GET not allowed on " + getResourceSignature()); } @Override public RestMethodResult doPost(final Map<String, Object> propertySet) throws FrameworkException { // TODO: fetch nodes with superuser security context, collect forbidden nodes and return // in error response RestMethodResult result = new RestMethodResult(200); for (Object o : propertySet.values()) { if (o instanceof String) { String id = (String)o; AbstractNode node = (AbstractNode) StructrApp.getInstance().getNodeById(id); if (node != null) { result.addContent(node); } } } return result; } @Override public RestMethodResult doDelete() throws FrameworkException { throw new IllegalMethodException("DELETE not allowed on " + getResourceSignature()); } @Override public RestMethodResult doPut(final Map<String, Object> propertySet) throws FrameworkException { throw new IllegalMethodException("PUT not allowed on " + getResourceSignature()); } @Override public String getResourceSignature() { return getUriPart(); } @Override public String getUriPart() { return "resolver"; } }