// CacheAdmin_p.java
// -----------------------
// part of the AnomicHTTPD caching proxy
// (C) by Michael Peter Christen; mc@anomic.de
// first published on http://www.anomic.de
// Frankfurt, Germany, 2004
//
// $LastChangedDate$
// $LastChangedRevision$
// $LastChangedBy$
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// Using this software in any meaning (reading, learning, copying, compiling,
// running) means that you agree that the Author(s) is (are) not responsible
// for cost, loss of data or any harm that may be caused directly or indirectly
// by usage of this softare or this documentation. The usage of this software
// is on your own risk. The installation and usage (starting/running) of this
// software may allow other people or application to access your computer and
// any attached devices and is highly dependent on the configuration of the
// software which must be done by the user of the software; the author(s) is
// (are) also not responsible for proper configuration and usage of the
// software, even if provoked by documentation provided together with
// the software.
//
// Any changes to this file according to the GPL as documented in the file
// gpl.txt aside this file in the shipment you received can be done to the
// lines that follows this copyright notice here, but changes must not be
// done inside the copyright notive above. A re-distribution must contain
// the intact and unchanged copyright notice.
// Contributions and changes to the program code must be marked as such.
// You must compile this file with
// javac -classpath .:../classes CacheAdmin_p.java
// if the shell's current path is HTROOT
import java.io.File;
import java.io.OutputStream;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Iterator;
import java.util.Map;
import java.util.ArrayList;
import java.util.List;
import java.util.Collections;
import de.anomic.htmlFilter.htmlFilterContentScraper;
import de.anomic.htmlFilter.htmlFilterOutputStream;
import de.anomic.http.httpHeader;
import de.anomic.plasma.plasmaHTCache;
import de.anomic.plasma.plasmaParserDocument;
import de.anomic.plasma.plasmaSwitchboard;
import de.anomic.plasma.plasmaURL;
import de.anomic.server.serverCore;
import de.anomic.server.serverFileUtils;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;
public class CacheAdmin_p {
private final static String HTML_BR = "
";
private static SimpleDateFormat SimpleFormatter = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
public static String dateString(final Date date) {
return SimpleFormatter.format(date);
}
public static serverObjects respond(final httpHeader header, final serverObjects post, final serverSwitch env) {
final plasmaSwitchboard switchboard = (plasmaSwitchboard) env;
final serverObjects prop = new serverObjects();
final String action = ((post == null) ? "info" : post.get("action", "info"));
String pathString = ((post == null) ? "" : post.get("path", "/"));
final String fileString = pathString;
final File cache = new File(switchboard.getConfig("proxyCache", "DATA/HTCACHE"));
File dir;
final File file = new File(cache, pathString);
final URL url = plasmaHTCache.getURL(cache, file);
if (file.isDirectory()) {
dir = file;
} else {
dir = file.getParentFile();
pathString = (new File(pathString)).getParent().replace('\\','/');
}
// generate sorted dir/file listing
final StringBuffer tree = new StringBuffer("Directory of
").append((pathString.length() == 0) ? "domain list" : linkPathString(pathString)).append("
");
final List dList = new ArrayList(500);
final List fList = new ArrayList(200);
final String[] list = dir.list();
File object;
if (list == null) {
tree.append("[empty]");
} else {
for (int i = list.length - 1; i >= 0 ; i--) { // Rückwärts ist schneller
object = new File(dir, list[i]);
if (!object.getName().equalsIgnoreCase("responseHeader.db")) {
if (object.isDirectory()) {
dList.add(list[i]);
} else {
fList.add(list[i]);
}
}
}
Iterator iter = dList.iterator();
String str;
tree.ensureCapacity((dList.size() + fList.size() + 2) * 255);
if (dList.size() > 1) {
Collections.sort(dList);
try {
while (true) {
str = iter.next().toString();
tree.append(" ").append(str).append("
").append(serverCore.crlfString);
}
} catch (java.util.NoSuchElementException e) {} // intention
}
if (fList.size() > 1) {
Collections.sort(fList);
iter = fList.iterator();
try {
while (true) {
str = iter.next().toString();
tree.append(" ").append(str).append("
").append(serverCore.crlfString);
}
} catch (java.util.NoSuchElementException e) {} // intention
}
}
final StringBuffer info = new StringBuffer(8192);
if ((action.equals("info")) && (!file.isDirectory())) {
final String urls = htmlFilterContentScraper.urlNormalform(url);
info.append("Info for URL ").append(urls).append(":
");
try {
final httpHeader fileheader = switchboard.cacheManager.getCachedResponse(plasmaURL.urlHash(url));
info.append("HTTP Header:
").append(formatHeader(fileheader)).append(HTML_BR);
final String ff = file.toString();
final int dotpos = ff.lastIndexOf('.');
final String ext = (dotpos >= 0) ? ff.substring(dotpos + 1).toLowerCase() : "";
if ((ext.equals("gif")) || (ext.equals("jpg")) || (ext.equals("jpeg")) || (ext.equals("png"))) {
info.append("");
} else {
final htmlFilterContentScraper scraper = new htmlFilterContentScraper(url);
final OutputStream os = new htmlFilterOutputStream(null, scraper, null, false);
serverFileUtils.copy(file, os);
os.flush();
final plasmaParserDocument document = switchboard.parser.transformScraper(url, "text/html", scraper);
info.append("HEADLINE:
").append(scraper.getHeadline()).append(HTML_BR).append(HTML_BR);
info.append("HREF:
").append(formatAnchor(document.getHyperlinks())).append(HTML_BR);
info.append("MEDIA:
").append(formatAnchor(document.getMedialinks())).append(HTML_BR);
info.append("EMAIL:
").append(formatAnchor(document.getEmaillinks())).append(HTML_BR);
info.append("TEXT:
").append(new String(scraper.getText())).append("
");
info.append("LINES:
");
final String[] sentences = document.getSentences();
for (int i = 0; i < sentences.length; i++) {
info.append(sentences[i]).append(HTML_BR);
}
info.append("
");
}
} catch (Exception e) {
info.append("- This file is not in the cache -");
info.append(e.toString());
// e.printStackTrace();
}
}
prop.put("cachesize", Long.toString(switchboard.cacheManager.currCacheSize/1024));
prop.put("cachemax", Long.toString(switchboard.cacheManager.maxCacheSize/1024));
prop.put("tree", tree.toString());
prop.put("info", info.toString());
// return rewrite properties
return prop;
}
private static String formatHeader(final httpHeader header) {
final StringBuffer result = new StringBuffer();
if (header == null) {
result.append("- no header in header cache -");
} else {
result.append("
");
final Iterator iter = header.entrySet().iterator();
Map.Entry entry;
while (iter.hasNext()) {
entry = (Map.Entry) iter.next();
result.append("").append(entry.getKey()).append(" | = | ").append(entry.getValue()).append(" |
");
}
result.append("
");
}
return result.toString();
}
private static String formatAnchor(final Map anchor) {
final StringBuffer result = new StringBuffer("");
final Iterator iter = anchor.entrySet().iterator();
String url, descr;
Map.Entry entry;
while (iter.hasNext()) {
entry = (Map.Entry) iter.next();
url = (String) entry.getKey();
descr = ((String) entry.getValue()).trim();
if (descr.length() == 0) { descr = "-"; }
result.append("").append(descr).append(" | ").append(url).append(" |
");
}
return result.append("
").toString();
}
private static String linkPathString(final String Path){ // contributed by Alexander Schier
final String[] Elements = Path.split("/");
final StringBuffer result = new StringBuffer();
final StringBuffer tmpPath = new StringBuffer();
for(int i=0;i<(Elements.length-1);i++){
tmpPath.append(Elements[i]).append("/");
result.append("").append(Elements[i]).append("/");
}
if (Elements.length > 0) {
tmpPath.append(Elements[Elements.length - 1]).append("/");
result.append("").append(Elements[Elements.length - 1]).append("/");
}
return result.toString();
}
}