org.lockss.metadata.extractor.DeleteAuItemsClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of laaws-metadataextractor-common Show documentation
Show all versions of laaws-metadataextractor-common Show documentation
The metadata extraction code of the LOCKSS Daemon
The newest version!
/*
Copyright (c) 2017-2020 Board of Trustees of Leland Stanford Jr. University,
all rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.lockss.metadata.extractor;
import static org.lockss.metadata.MetadataConstants.*;
import static org.lockss.metadata.extractor.MetadataExtractorManager.*;
import java.io.UnsupportedEncodingException;
import java.nio.charset.Charset;
import java.util.Base64;
import org.lockss.config.CurrentConfig;
import org.lockss.util.Logger;
import org.lockss.util.rest.RestUtil;
import org.springframework.http.*;
import org.springframework.web.client.RestTemplate;
/**
* A client for the REST web service operation that deletes the metadata of an
* Archival Unit.
*/
public class DeleteAuItemsClient {
private static Logger log = Logger.getLogger(DeleteAuItemsClient.class);
/**
* Deletes the metadata of an Archival Unit via a REST web service operation.
*
* @param auId
* A Sring with the Archival Unit identifier.
* @return an Integer with the count of items deleted.
*/
Integer deleteAuItems(String auId) throws UnsupportedEncodingException {
final String DEBUG_HEADER = "deleteAuItems(): ";
if (log.isDebug2()) log.debug2(DEBUG_HEADER + "auId = " + auId);
// Get the configured REST service location.
String restServiceLocation =
CurrentConfig.getParam(PARAM_MD_REST_SERVICE_LOCATION);
if (log.isDebug3()) log.debug3(DEBUG_HEADER + "restServiceLocation = "
+ restServiceLocation);
// Get the client connection timeout.
long timeoutValue = CurrentConfig.getIntParam(PARAM_MD_REST_TIMEOUT_VALUE,
DEFAULT_MD_REST_TIMEOUT_VALUE);
if (log.isDebug3())
log.debug3(DEBUG_HEADER + "timeoutValue = " + timeoutValue);
// Get the authentication credentials.
String userName = CurrentConfig.getParam(PARAM_MD_REST_USER_NAME);
if (log.isDebug3())
log.debug3(DEBUG_HEADER + "userName = '" + userName + "'");
String password = CurrentConfig.getParam(PARAM_MD_REST_PASSWORD);
if (log.isDebug3())
log.debug3(DEBUG_HEADER + "password = '" + password + "'");
// Initialize the request to the REST service.
RestTemplate restTemplate =
RestUtil.getRestTemplate(1000*timeoutValue, 1000*timeoutValue);
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
String credentials = userName + ":" + password;
String authHeaderValue = "Basic " + Base64.getEncoder()
.encodeToString(credentials.getBytes(Charset.forName("US-ASCII")));
headers.set("Authorization", authHeaderValue);
// Make the request to the REST service and get its response.
ResponseEntity response =
restTemplate.exchange(restServiceLocation + "/aus/" + auId,
HttpMethod.DELETE, new HttpEntity(null, headers),
Integer.class);
HttpStatusCode statusCode = response.getStatusCode();
HttpStatus status = HttpStatus.valueOf(statusCode.value());
if (log.isDebug3()) log.debug3(DEBUG_HEADER + "status = " + status);
Integer mdItemSeq = response.getBody();
if (log.isDebug2()) log.debug2(DEBUG_HEADER + "mdItemSeq = " + mdItemSeq);
return mdItemSeq;
}
}