/** * 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.Collections; import java.util.List; import java.util.Map; import javax.servlet.http.HttpServletRequest; import org.structr.common.SecurityContext; import org.structr.common.error.FrameworkException; import org.structr.core.GraphObject; import org.structr.core.Result; import org.structr.core.app.StructrApp; import org.structr.core.graph.CypherQueryCommand; import org.structr.core.property.PropertyKey; import org.structr.rest.RestMethodResult; import org.structr.rest.exception.NotAllowedException; import org.structr.rest.exception.NotFoundException; //~--- classes ---------------------------------------------------------------- /** * * */ public class CypherQueryResource extends Resource { @Override public boolean checkAndConfigure(String part, SecurityContext securityContext, HttpServletRequest request) throws FrameworkException { if ("cypher".equals(part)) { return true; } return false; } @Override public Result doGet(PropertyKey sortKey, boolean sortDescending, int pageSize, int page, String offsetId) throws FrameworkException { // Admins only if (!securityContext.isSuperUser()) { throw new NotAllowedException("Use of the cypher endpoint is restricted to admin users"); } try { Object queryObject = securityContext.getRequest().getParameter("query"); if (queryObject != null) { String query = queryObject.toString(); List<GraphObject> resultList = StructrApp.getInstance(securityContext).command(CypherQueryCommand.class).execute(query, Collections.EMPTY_MAP); return new Result(resultList, resultList.size(), true, false); } } catch (org.structr.api.NotFoundException nfe) { throw new NotFoundException("Entity not found for the given query"); } return new Result(Collections.EMPTY_LIST, 0, false, false); } @Override public RestMethodResult doPost(final Map<String, Object> propertySet) throws FrameworkException { // Admins only if (!securityContext.isSuperUser()) { throw new NotAllowedException("Use of the cypher endpoint is restricted to admin users"); } try { RestMethodResult result = new RestMethodResult(200); Object queryObject = propertySet.get("query"); if (queryObject != null) { String query = queryObject.toString(); List<GraphObject> resultList = StructrApp.getInstance(securityContext).command(CypherQueryCommand.class).execute(query, propertySet); for (GraphObject obj : resultList) { result.addContent(obj); } } return result; } catch (org.structr.api.NotFoundException nfe) { throw new NotFoundException("Entity not found for the given query"); } } @Override public Resource tryCombineWith(Resource next) throws FrameworkException { return null; } @Override public String getUriPart() { return "cypher"; } @Override public Class getEntityClass() { return null; } @Override public String getResourceSignature() { return "cypher"; } @Override public boolean isCollectionResource() throws FrameworkException { return true; } }