![JAR search and dependency download from the Maven repository](/logo.png)
org.archive.modules.credential.HtmlFormCredential Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of heritrix-modules Show documentation
Show all versions of heritrix-modules Show documentation
This project contains some of the configurable modules used within the
Heritrix application to crawl the web. The modules in this project can
be used in applications other than Heritrix, however.
/*
* This file is part of the Heritrix web crawler (crawler.archive.org).
*
* Licensed to the Internet Archive (IA) by one or more individual
* contributors.
*
* The IA licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.archive.modules.credential;
import java.util.Map;
import java.util.TreeMap;
import java.util.logging.Logger;
import org.apache.commons.httpclient.URIException;
import org.archive.modules.CrawlURI;
import org.archive.net.UURI;
import org.archive.net.UURIFactory;
/**
* Credential that holds all needed to do a GET/POST to a HTML form.
*
* @author stack
* @version $Revision$, $Date$
*/
public class HtmlFormCredential extends Credential {
private static final long serialVersionUID = -4L;
private static final Logger logger =
Logger.getLogger(HtmlFormCredential.class.getName());
/**
* Full URI of page that contains the HTML login form we're to apply these
* credentials too: E.g. http://www.archive.org
*/
protected String loginUri = "";
public String getLoginUri() {
return this.loginUri;
}
public void setLoginUri(String loginUri) {
this.loginUri = loginUri;
}
/**
* Form items.
*
*/
protected Map formItems = new TreeMap();
public Map getFormItems() {
return this.formItems;
}
public void setFormItems(Map formItems) {
this.formItems = formItems;
}
public enum Method {
GET,
POST
}
/**
* GET or POST.
*/
/** @deprecated ignored, always POST*/
protected Method httpMethod = Method.POST;
/** @deprecated ignored, always POST*/
public Method getHttpMethod() {
return this.httpMethod;
}
/** @deprecated ignored, always POST*/
public void setHttpMethod(Method method) {
this.httpMethod = method;
}
/**
* Constructor.
*/
public HtmlFormCredential() {
}
public boolean isPrerequisite(final CrawlURI curi) {
boolean result = false;
String curiStr = curi.getUURI().toString();
String loginUri = getPrerequisite(curi);
if (loginUri != null) {
try {
UURI uuri = UURIFactory.getInstance(curi.getUURI(), loginUri);
if (uuri != null && curiStr != null &&
uuri.toString().equals(curiStr)) {
result = true;
if (!curi.isPrerequisite()) {
curi.setPrerequisite(true);
logger.fine(curi + " is prereq.");
}
}
} catch (URIException e) {
logger.severe("Failed to uuri: " + curi + ", " +
e.getMessage());
}
}
return result;
}
public boolean hasPrerequisite(CrawlURI curi) {
return getPrerequisite(curi) != null;
}
public String getPrerequisite(CrawlURI curi) {
return getLoginUri();
}
public String getKey() {
return getLoginUri();
}
public boolean isEveryTime() {
// This authentication is one time only.
return false;
}
public boolean isPost() {
return Method.POST.equals(getHttpMethod());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy