- added maxFileSize-check
- added timeout for download
- fixed dirlist (when all filenames have spaces, change to absolute links)
- enhanced isFolder()
- make sure data connection is closed, so a new can be opened
- refactoring


git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4561 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
danielr 17 years ago
parent 368b8735b5
commit c565906050

File diff suppressed because it is too large Load Diff

@ -61,15 +61,18 @@ import de.anomic.plasma.plasmaParser;
import de.anomic.plasma.plasmaSwitchboard; import de.anomic.plasma.plasmaSwitchboard;
import de.anomic.plasma.cache.ftp.ResourceInfo; import de.anomic.plasma.cache.ftp.ResourceInfo;
import de.anomic.server.logging.serverLog; import de.anomic.server.logging.serverLog;
import de.anomic.yacy.yacyURL;
public class plasmaFTPLoader { public class plasmaFTPLoader {
private final plasmaSwitchboard sb; private final plasmaSwitchboard sb;
private final serverLog log; private final serverLog log;
private final int maxFileSize;
public plasmaFTPLoader(final plasmaSwitchboard sb, final serverLog log) { public plasmaFTPLoader(final plasmaSwitchboard sb, final serverLog log) {
this.sb = sb; this.sb = sb;
this.log = log; this.log = log;
maxFileSize = (int) sb.getConfigLong("crawler.ftp.maxFileSize", -1l);
} }
protected plasmaHTCache.Entry createCacheEntry(final plasmaCrawlEntry entry, final String mimeType, protected plasmaHTCache.Entry createCacheEntry(final plasmaCrawlEntry entry, final String mimeType,
@ -79,63 +82,40 @@ public class plasmaFTPLoader {
sb.profilesActiveCrawls.getEntry(entry.profileHandle())); sb.profilesActiveCrawls.getEntry(entry.profileHandle()));
} }
/**
* Loads the entry from a ftp-server
*
* @param entry
* @return
*/
public plasmaHTCache.Entry load(final plasmaCrawlEntry entry) { public plasmaHTCache.Entry load(final plasmaCrawlEntry entry) {
final yacyURL entryUrl = entry.url();
final ByteArrayOutputStream bout = new ByteArrayOutputStream(); final String fullPath = entryUrl.getPath();
final PrintStream out = new PrintStream(bout);
// determine filename and path
final ByteArrayOutputStream berr = new ByteArrayOutputStream(); String file, path;
final PrintStream err = new PrintStream(berr); if (fullPath.endsWith("/")) {
file = "";
// create a new ftp client path = fullPath;
final ftpc ftpClient = new ftpc(System.in, out, err); } else {
final int pos = fullPath.lastIndexOf("/");
// get username and password if (pos == -1) {
final String userInfo = entry.url().getUserInfo(); file = fullPath;
String userName = "anonymous", userPwd = "anonymous"; path = "/";
if (userInfo != null) { } else {
final int pos = userInfo.indexOf(":"); path = fullPath.substring(0, pos + 1);
if (pos != -1) { file = fullPath.substring(pos + 1);
userName = userInfo.substring(0, pos);
userPwd = userInfo.substring(pos + 1);
} }
} }
assert path.endsWith("/") : "FTPLoader: path is not a path: '" + path + "'";
// get server name, port and file path // stream for ftp-client errors
final String host = entry.url().getHost(); final ByteArrayOutputStream berr = new ByteArrayOutputStream();
String fullPath = entry.url().getPath(); final ftpc ftpClient = createFTPClient(berr);
final int port = entry.url().getPort();
plasmaHTCache.Entry htCache = null; plasmaHTCache.Entry htCache = null;
try { try {
// open a connection to the ftp server openConnection(ftpClient, entryUrl);
if (port == -1) {
ftpClient.exec("open " + host, false);
} else {
ftpClient.exec("open " + host + " " + port, false);
}
// login to the server
ftpClient.exec("user " + userName + " " + userPwd, false);
// change transfer mode to binary
ftpClient.exec("binary", false);
// determine filename and path
String file, path;
if (fullPath.endsWith("/")) {
file = "";
path = fullPath;
} else {
final int pos = fullPath.lastIndexOf("/");
if (pos == -1) {
file = fullPath;
path = "/";
} else {
path = fullPath.substring(0, pos + 1);
file = fullPath.substring(pos + 1);
}
}
// testing if the specified file is a directory // testing if the specified file is a directory
if (file.length() > 0) { if (file.length() > 0) {
@ -144,86 +124,45 @@ public class plasmaFTPLoader {
// testing if the current name is a directoy // testing if the current name is a directoy
final boolean isFolder = ftpClient.isFolder(file); final boolean isFolder = ftpClient.isFolder(file);
if (isFolder) { if (isFolder) {
fullPath = fullPath + "/"; path = fullPath + "/";
file = ""; file = "";
} }
} }
// creating a cache file object // creating a cache file object
final File cacheFile = plasmaHTCache.getCachePath(entry.url()); final File cacheFile = plasmaHTCache.getCachePath(entryUrl);
// TODO: aborting download if content is to long ...
// TODO: invalid file path check // TODO: invalid file path check
// testing if the file already exists // testing if the file already exists
if (cacheFile.isFile()) { if (cacheFile.isFile()) {
// delete the file if it already exists // delete the file if it already exists
plasmaHTCache.deleteURLfromCache(entry.url()); plasmaHTCache.deleteURLfromCache(entryUrl);
} else { } else {
// create parent directories // create parent directories
cacheFile.getParentFile().mkdirs(); cacheFile.getParentFile().mkdirs();
} }
String mimeType;
Date fileDate;
if (file.length() == 0) { if (file.length() == 0) {
// getting the dirlist // directory -> get list of files
mimeType = "text/html";
fileDate = new Date();
// create a htcache entry // create a htcache entry
htCache = createCacheEntry(entry, mimeType, fileDate); htCache = createCacheEntry(entry, "text/html", new Date());
if (!generateDirlist(ftpClient, entry, path, cacheFile)) {
// generate the dirlist htCache = null;
final StringBuffer dirList = ftpClient.dirhtml(fullPath);
if (dirList != null && dirList.length() > 0) {
try {
// write it into a file
final PrintWriter writer = new PrintWriter(new FileOutputStream(cacheFile), false);
writer.write(dirList.toString());
writer.flush();
writer.close();
} catch (final Exception e) {
log.logInfo("Unable to write dirlist for URL " + entry.url().toString());
htCache = null;
}
} }
} else { } else {
// determine the mimetype of the resource // file -> download
final String extension = plasmaParser.getFileExt(entry.url()); try {
mimeType = plasmaParser.getMimeTypeByFileExt(extension); htCache = getFile(ftpClient, entry, cacheFile);
} catch (final Exception e) {
// if the mimetype and file extension is supported we start to
// download the file
if (plasmaParser.supportedContent(plasmaParser.PARSER_MODE_CRAWLER, entry.url(), mimeType)) {
// TODO: determine the real file date
fileDate = new Date();
// create a htcache entry
htCache = createCacheEntry(entry, mimeType, fileDate);
// change into working directory
// ftpClient.exec("cd \"" + path + "\"", false);
// download the remote file
ftpClient.exec("get \"" + fullPath + "\" \"" + cacheFile.getAbsolutePath() + "\"", false);
} else {
// if the response has not the right file type then reject
// file
log.logInfo("REJECTED WRONG MIME/EXT TYPE " + mimeType + " for URL " + entry.url().toString());
sb.crawlQueues.errorURL.newEntry(entry, null, new Date(), 1,
plasmaCrawlEURL.DENIED_WRONG_MIMETYPE_OR_EXT);
return null;
} }
} }
// pass the downloaded resource to the cache manager // pass the downloaded resource to the cache manager
if (berr.size() > 0 || htCache == null) { if (berr.size() > 0 || htCache == null) {
// if the response has not the right file type then reject file // some error logging
log.logWarning("Unable to download URL " + entry.url().toString() + "\nErrorlog: " + berr.toString()); final String detail = (berr.size() > 0) ? "\n Errorlog: " + berr.toString() : "";
log.logWarning("Unable to download URL " + entry.url().toString() + detail);
sb.crawlQueues.errorURL.newEntry(entry, null, new Date(), 1, sb.crawlQueues.errorURL.newEntry(entry, null, new Date(), 1,
plasmaCrawlEURL.DENIED_SERVER_DOWNLOAD_ERROR); plasmaCrawlEURL.DENIED_SERVER_DOWNLOAD_ERROR);
@ -238,10 +177,149 @@ public class plasmaFTPLoader {
return htCache; return htCache;
} finally { } finally {
// closing connection closeConnection(ftpClient);
ftpClient.exec("close", false); }
ftpClient.exec("exit", false); }
/**
* @param ftpClient
*/
private void closeConnection(final ftpc ftpClient) {
// closing connection
ftpClient.exec("close", false);
ftpClient.exec("exit", false);
}
/**
* establish a connection to the ftp server (open, login, set transfer mode)
*
* @param ftpClient
* @param host
* @param port
*/
private void openConnection(final ftpc ftpClient, final yacyURL entryUrl) {
// get username and password
final String userInfo = entryUrl.getUserInfo();
String userName = "anonymous", userPwd = "anonymous";
if (userInfo != null) {
final int pos = userInfo.indexOf(":");
if (pos != -1) {
userName = userInfo.substring(0, pos);
userPwd = userInfo.substring(pos + 1);
}
}
// get server name and port
final String host = entryUrl.getHost();
final int port = entryUrl.getPort();
// open a connection to the ftp server
if (port == -1) {
ftpClient.exec("open " + host, false);
} else {
ftpClient.exec("open " + host + " " + port, false);
} }
// login to the server
ftpClient.exec("user " + userName + " " + userPwd, false);
// change transfer mode to binary
ftpClient.exec("binary", false);
}
/**
* @param ftpClient
* @param entry
* @param htCache
* @param cacheFile
* @return
* @throws Exception
*/
private plasmaHTCache.Entry getFile(final ftpc ftpClient, final plasmaCrawlEntry entry, final File cacheFile)
throws Exception {
// determine the mimetype of the resource
final yacyURL entryUrl = entry.url();
final String extension = plasmaParser.getFileExt(entryUrl);
final String mimeType = plasmaParser.getMimeTypeByFileExt(extension);
final String path = entryUrl.getPath();
// if the mimetype and file extension is supported we start to download
// the file
plasmaHTCache.Entry htCache = null;
if (plasmaParser.supportedContent(plasmaParser.PARSER_MODE_CRAWLER, entryUrl, mimeType)) {
// aborting download if content is too long
final int size = ftpClient.fileSize(path);
if (size <= maxFileSize) {
// timeout for download
ftpClient.setDataTimeoutByMaxFilesize(size);
// determine the file date
final Date fileDate = ftpClient.entryDate(path);
// create a htcache entry
htCache = createCacheEntry(entry, mimeType, fileDate);
// download the remote file
ftpClient.exec("get \"" + path + "\" \"" + cacheFile.getAbsolutePath() + "\"", false);
} else {
log.logInfo("REJECTED TOO BIG FILE with size " + size + " Bytes for URL " + entry.url().toString());
sb.crawlQueues.errorURL.newEntry(entry, null, new Date(), 1,
plasmaCrawlEURL.DENIED_FILESIZE_LIMIT_EXCEEDED);
throw new Exception("filesize too big: " + size + " bytes");
}
} else {
// if the response has not the right file type then reject file
log.logInfo("REJECTED WRONG MIME/EXT TYPE " + mimeType + " for URL " + entry.url().toString());
sb.crawlQueues.errorURL.newEntry(entry, null, new Date(), 1, plasmaCrawlEURL.DENIED_WRONG_MIMETYPE_OR_EXT);
throw new Exception("response has not the right file type -> rejected");
}
return htCache;
}
/**
* @param ftpClient
* @param entry
* @param cacheFile
* @return
*/
private boolean generateDirlist(final ftpc ftpClient, final plasmaCrawlEntry entry, final String path,
final File cacheFile) {
// getting the dirlist
final yacyURL entryUrl = entry.url();
// generate the dirlist
final StringBuilder dirList = ftpClient.dirhtml(path);
if (dirList != null && dirList.length() > 0) {
try {
// write it into a file
final PrintWriter writer = new PrintWriter(new FileOutputStream(cacheFile), false);
writer.write(dirList.toString());
writer.flush();
writer.close();
return true;
} catch (final Exception e) {
log.logInfo("Unable to write dirlist for URL " + entryUrl.toString());
}
}
return false;
}
/**
* create a new ftp client
*
* @param berr
* @return
*/
private ftpc createFTPClient(final ByteArrayOutputStream berr) {
// error
final PrintStream err = new PrintStream(berr);
final ftpc ftpClient = new ftpc(System.in, null, err);
// set timeout
ftpClient.setDataTimeoutByMaxFilesize(maxFileSize);
return ftpClient;
} }
} }

Loading…
Cancel
Save