%PDF- %PDF-
| Direktori : /home/waritko/yacy/source/net/yacy/cora/document/id/ |
| Current File : //home/waritko/yacy/source/net/yacy/cora/document/id/AnchorURL.java |
/**
* Anchor
* Copyright 2013 by Michael Peter Christen
* first published 15.09.2013 on http://yacy.net
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program in the file lgpl21.txt
* If not, see <http://www.gnu.org/licenses/>.
*/
package net.yacy.cora.document.id;
import java.net.MalformedURLException;
import java.util.Properties;
public class AnchorURL extends DigestURL {
private static final long serialVersionUID = 1586579902179962086L;
private String nameProperty, relProperty, textBody; // may contain additional url properties, such as given in html a href-links
private DigestURL imageURL; // in case that the anchor contains an image link, store image url; if there is no image then set this to null
private String imageAlt; // in case that the anchor contains an image link, store the alt property; if there is no image then set this to null
public AnchorURL(final String url) throws MalformedURLException {
super(url);
this.textBody = "";
this.nameProperty = "";
this.relProperty = "";
this.imageURL = null;
this.imageAlt = null;
}
public AnchorURL(final AnchorURL url) {
super(url, url.hash());
this.textBody = url.textBody;
this.nameProperty = url.nameProperty;
this.relProperty = url.relProperty;
this.imageURL = url.imageURL;
this.imageAlt = url.imageAlt;
}
public AnchorURL(final DigestURL url) {
super(url, url.hash());
this.textBody = "";
this.nameProperty = "";
this.relProperty = "";
this.imageURL = null;
this.imageAlt = null;
}
public AnchorURL(final MultiProtocolURL baseURL, final String relPath) throws MalformedURLException {
super(baseURL, relPath);
this.textBody = "";
this.nameProperty = "";
this.relProperty = "";
this.imageURL = null;
this.imageAlt = null;
}
public AnchorURL(final String protocol, final String host, final int port, final String path) throws MalformedURLException {
super(protocol, host, port, path);
this.textBody = "";
this.nameProperty = "";
this.relProperty = "";
this.imageURL = null;
this.imageAlt = null;
}
public AnchorURL(final String protocol, final String host, final int port, final String path, final DigestURL imageURL, final String imageAlt) throws MalformedURLException {
super(protocol, host, port, path);
this.textBody = "";
this.nameProperty = "";
this.relProperty = "";
this.imageURL = imageURL;
this.imageAlt = imageAlt;
}
public static AnchorURL newAnchor(final DigestURL baseURL, String relPath) throws MalformedURLException {
if (relPath.startsWith("//")) {
// patch for urls starting with "//" which can be found in the wild
relPath = (baseURL == null) ? "http:" + relPath : baseURL.getProtocol() + ":" + relPath;
}
if ((baseURL == null) ||
isHTTP(relPath) ||
isHTTPS(relPath) ||
isFTP(relPath) ||
isFile(relPath) ||
isSMB(relPath) ||
relPath.startsWith("mailto:")) {
return new AnchorURL(relPath);
}
return new AnchorURL(baseURL, relPath);
}
public String getNameProperty() {
return nameProperty;
}
public void setNameProperty(String name) {
this.nameProperty = name;
}
public String getTextProperty() {
return textBody;
}
public void setTextProperty(String text) {
this.textBody = text;
}
public String getRelProperty() {
return relProperty;
}
public void setRelProperty(String rel) {
this.relProperty = rel;
}
public DigestURL getImageURL() {
return imageURL;
}
public void setImageURL(DigestURL imageURL) {
this.imageURL = imageURL;
}
public String getImageAlt() {
return imageAlt;
}
public void setImageAlt(String imageAlt) {
this.imageAlt = imageAlt;
}
public void setAll(final Properties tagopts) {
this.nameProperty = tagopts.getProperty("name", "");
this.textBody = tagopts.getProperty("text", "");
this.relProperty = tagopts.getProperty("rel", "");
}
public Properties getAll() {
final Properties tagopts = new Properties();
tagopts.setProperty("name", this.nameProperty);
tagopts.setProperty("text", this.textBody);
tagopts.setProperty("rel", this.relProperty);
return tagopts;
}
public boolean attachedNofollow() {
return this.relProperty.indexOf("nofollow") >= 0;
}
public String toHTML() {
return "<a href=\"" + this.toNormalform(false) + "\"" +
(this.nameProperty.length() > 0 ? (" name=\"" + this.nameProperty + "\"") : "") +
(this.relProperty.length() > 0 ? (" rel=\"" + this.relProperty + "\"") : "") +
">" + this.textBody + "</a>";
}
}