All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.geosolutions.geoserver.rest.GeoWebCacheREST Maven / Gradle / Ivy

Go to download

GeoServer Manager is a library to interact with GeoServer The scope of this library is to have a simple API, and use as few external libs as possible.

The newest version!
/*
 *  GeoServer-Manager - Simple Manager Library for GeoServer
 *  
 *  Copyright (C) 2007 - 2016 GeoSolutions S.A.S.
 *  http://www.geo-solutions.it
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package it.geosolutions.geoserver.rest;

import java.net.URL;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import it.geosolutions.geoserver.rest.encoder.GSCachedLayerEncoder;
import it.geosolutions.geoserver.rest.http.GeoServerRestAuthenticator;
import it.geosolutions.geoserver.rest.http.HTTPUtils;

/**
 * 

GeoWebCacheREST class.

* * @author niels * @version $Id: $ */ public class GeoWebCacheREST { /** The logger for this class */ private static final Logger LOGGER = LoggerFactory.getLogger(GeoWebCacheREST.class); /** * GeoServer instance base URL. E.g.: http://localhost:8080/geoserver. */ private final String restURL; /** * GeoServer instance privileged username/pw, with read & write permission on REST API */ private final GeoServerRestAuthenticator auth; /** * Creates a GeoServerRESTPublisher to connect against a GeoServer instance with the given URL and user credentials. * * @param restURL the base GeoServer URL (e.g.: http://localhost:8080/geoserver) * @param auth auth credential */ public GeoWebCacheREST(URL restURL, GeoServerRestAuthenticator auth) { this.restURL = HTTPUtils.decurtSlash(restURL.toString()); this.auth = auth; } /** *

configureLayer

* * @param layer a {@link it.geosolutions.geoserver.rest.encoder.GSCachedLayerEncoder} object. * @return a boolean. * @throws java.lang.IllegalArgumentException if any. */ public boolean configureLayer(final GSCachedLayerEncoder layer) throws IllegalArgumentException { if (layer == null) { throw new IllegalArgumentException("Null argument"); } if (layer.isEmpty()) { throw new IllegalArgumentException("Empty argument"); } final String layerName = layer.getName(); if (layerName == null || layerName.isEmpty()) { throw new IllegalArgumentException("Missing layer name"); } final String url = restURL + "/gwc/rest/layers/" + HTTPUtils.enc(layerName) + ".xml"; String layerXml = layer.toString(); String sendResult = HTTPUtils.putXml(url, layerXml, auth); if (sendResult != null) { if (LOGGER.isInfoEnabled()) { LOGGER.info("Cached layer successfully configured: " + layerName); } } else { if (LOGGER.isWarnEnabled()) LOGGER.warn("Error configuring cached layer " + layerName + " (" + sendResult + ")"); } return sendResult != null; } /** *

updateLayer

* * @param layer a {@link it.geosolutions.geoserver.rest.encoder.GSCachedLayerEncoder} object. * @return a boolean. * @throws java.lang.IllegalArgumentException if any. */ public boolean updateLayer(final GSCachedLayerEncoder layer) throws IllegalArgumentException { if (layer == null) { throw new IllegalArgumentException("Null argument"); } if (layer.isEmpty()) { throw new IllegalArgumentException("Empty argument"); } final String layerName = layer.getName(); if (layerName == null || layerName.isEmpty()) { throw new IllegalArgumentException("Missing layer name"); } final String url = restURL + "/gwc/rest/layers/" + HTTPUtils.enc(layerName) + ".xml"; String layerXml = layer.toString(); String sendResult = HTTPUtils.postXml(url, layerXml, auth); if (sendResult != null) { if (LOGGER.isInfoEnabled()) { LOGGER.info("Cached layer successfully configured: " + layerName); } } else { if (LOGGER.isWarnEnabled()) LOGGER.warn("Error configuring cached layer " + layerName + " (" + sendResult + ")"); } return sendResult != null; } /** *

getLayer

* * @param layerName a {@link java.lang.String} object. * @return a {@link it.geosolutions.geoserver.rest.encoder.GSCachedLayerEncoder} object. */ public GSCachedLayerEncoder getLayer(final String layerName) { if (layerName == null) { throw new IllegalArgumentException("Null argument"); } if (layerName.isEmpty()) { throw new IllegalArgumentException("Empty argument"); } final String url = restURL + "/gwc/rest/layers/" + HTTPUtils.enc(layerName) + ".xml"; return GSCachedLayerEncoder.build(HTTPUtils.get(url, auth)); } /** *

deleteLayer

* * @param layerName a {@link java.lang.String} object. * @return a boolean. */ public boolean deleteLayer(final String layerName) { if (layerName == null) { throw new IllegalArgumentException("Null argument"); } if (layerName.isEmpty()) { throw new IllegalArgumentException("Empty argument"); } final String url = restURL + "/gwc/rest/layers/" + HTTPUtils.enc(layerName) + ".xml"; boolean sendResult = HTTPUtils.delete(url, auth); if (sendResult) { if (LOGGER.isInfoEnabled()) { LOGGER.info("Successfully deleted cached layer: " + layerName); } } else { if (LOGGER.isWarnEnabled()) { LOGGER.warn("Error deleting cached layer " + layerName); } } return sendResult; } /** *

truncateLayer

* * @param layerName a {@link java.lang.String} object. * @return a boolean. */ public boolean truncateLayer(final String layerName) { final String url = restURL + "/gwc/rest/masstruncate"; final String xml = "" + layerName + ""; String sendResult = HTTPUtils.postXml(url, xml, auth); if (sendResult != null) { if (LOGGER.isInfoEnabled()) { LOGGER.info("Successfully mass truncated layer: " + layerName); } return true; } else { if (LOGGER.isWarnEnabled()) { LOGGER.warn("Error mass truncating layer " + layerName + " (" + sendResult + ")"); } return false; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy