Java tutorial
/* * Aipo is a groupware program developed by TOWN, Inc. * Copyright (C) 2004-2015 TOWN, Inc. * http://www.aipo.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.apache.shindig.sample.container; import org.apache.shindig.common.util.ImmediateFuture; import org.apache.shindig.common.uri.Uri; import org.apache.shindig.protocol.Operation; import org.apache.shindig.protocol.ProtocolException; import org.apache.shindig.protocol.RequestItem; import org.apache.shindig.protocol.Service; import org.apache.shindig.social.sample.spi.JsonDbOpensocialService; import org.json.JSONException; import org.json.JSONObject; import org.apache.shindig.gadgets.GadgetException; import org.apache.shindig.gadgets.http.HttpFetcher; import org.apache.shindig.gadgets.http.HttpRequest; import org.apache.shindig.gadgets.http.HttpResponse; import java.util.concurrent.Future; import java.util.Map; import javax.servlet.http.HttpServletResponse; import com.google.inject.Inject; @Service(name = "samplecontainer", path = "/{type}/{doevil}") public class SampleContainerHandler { private final JsonDbOpensocialService service; private final HttpFetcher fetcher; @Inject public SampleContainerHandler(JsonDbOpensocialService dbService, HttpFetcher fetcher) { this.service = dbService; this.fetcher = fetcher; } /** * We don't distinguish between put and post for these urls. */ @Operation(httpMethods = "PUT") public Future<?> update(RequestItem request) throws ProtocolException { return create(request); } /** * Handles /samplecontainer/setstate and /samplecontainer/setevilness/{doevil}. TODO(doll): These * urls aren't very resty. Consider changing the samplecontainer.html calls post. */ @Operation(httpMethods = "POST", bodyParam = "data") public Future<?> create(RequestItem request) throws ProtocolException { String type = request.getParameter("type"); if ("setstate".equals(type)) { try { @SuppressWarnings("unchecked") Map<String, String> bodyparams = request.getTypedParameter("data", Map.class); String stateFile = bodyparams.get("fileurl"); service.setDb(new JSONObject(fetchStateDocument(stateFile))); } catch (JSONException e) { throw new ProtocolException(HttpServletResponse.SC_BAD_REQUEST, "The json state file was not valid json", e); } } else if ("setevilness".equals(type)) { throw new ProtocolException(HttpServletResponse.SC_NOT_IMPLEMENTED, "evil data has not been implemented yet"); } return ImmediateFuture.newInstance(null); } /** * Handles /samplecontainer/dumpstate */ @Operation(httpMethods = "GET") public Future<?> get(RequestItem request) { return ImmediateFuture.newInstance(service.getDb()); } private String fetchStateDocument(String stateFileLocation) { String errorMessage = "The json state file " + stateFileLocation + " could not be fetched and parsed."; try { HttpResponse response = fetcher.fetch(new HttpRequest(Uri.parse(stateFileLocation))); if (response.getHttpStatusCode() != 200) { throw new RuntimeException(errorMessage); } return response.getResponseAsString(); } catch (GadgetException e) { throw new RuntimeException(errorMessage, e); } } }