/** * 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.LinkedList; import java.util.List; import java.util.Map; import javax.servlet.http.HttpServletRequest; import org.structr.common.SecurityContext; import org.structr.common.VersionHelper; import org.structr.common.error.FrameworkException; import org.structr.core.GraphObjectMap; import org.structr.core.Result; import org.structr.core.property.GenericProperty; import org.structr.core.property.PropertyKey; import org.structr.core.property.StringProperty; import org.structr.rest.RestMethodResult; import org.structr.rest.exception.IllegalMethodException; import org.structr.rest.exception.IllegalPathException; /** * * */ public class EnvResource extends Resource { public enum UriPart { _env } @Override public boolean checkAndConfigure(String part, SecurityContext securityContext, HttpServletRequest request) throws FrameworkException { this.securityContext = securityContext; if (UriPart._env.name().equals(part)) { return true; } return false; } @Override public Result doGet(PropertyKey sortKey, boolean sortDescending, int pageSize, int page, String offsetId) throws FrameworkException { final List<GraphObjectMap> resultList = new LinkedList<>(); final GraphObjectMap info = new GraphObjectMap(); info.setProperty(new GenericProperty("modules"), VersionHelper.getModules()); info.setProperty(new GenericProperty("components"), VersionHelper.getComponents()); info.setProperty(new StringProperty("classPath"), VersionHelper.getClassPath()); info.setProperty(new StringProperty("instanceName"), VersionHelper.getInstanceName()); info.setProperty(new StringProperty("instanceStage"), VersionHelper.getInstanceStage()); resultList.add(info); return new Result(resultList, resultList.size(), false, false); } @Override public RestMethodResult doPost(Map<String, Object> propertySet) throws FrameworkException { throw new IllegalMethodException("POST not allowed on " + getResourceSignature()); } @Override public Resource tryCombineWith(Resource next) throws FrameworkException { throw new IllegalPathException(getResourceSignature() + " has no subresources"); } @Override public String getUriPart() { return getResourceSignature(); } @Override public Class getEntityClass() { return null; } @Override public String getResourceSignature() { return UriPart._env.name(); } @Override public boolean isCollectionResource() throws FrameworkException { return false; } }