You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.0 KiB
78 lines
3.0 KiB
|
|
|
|
import java.text.ParseException;
|
|
import java.util.ArrayList;
|
|
import java.util.Date;
|
|
import java.util.Iterator;
|
|
|
|
import net.yacy.kelondro.order.Digest;
|
|
import net.yacy.kelondro.util.DateFormatter;
|
|
|
|
import de.anomic.data.bookmarksDB;
|
|
import de.anomic.http.server.RequestHeader;
|
|
import de.anomic.search.Switchboard;
|
|
import de.anomic.server.serverObjects;
|
|
import de.anomic.server.serverSwitch;
|
|
|
|
public class get {
|
|
public static serverObjects respond(final RequestHeader header, final serverObjects post, final serverSwitch env) {
|
|
// return variable that accumulates replacements
|
|
final Switchboard switchboard = (Switchboard) env;
|
|
final boolean isAdmin=switchboard.verifyAuthentication(header, true);
|
|
final serverObjects prop = new serverObjects();
|
|
String tag=null;
|
|
String date;
|
|
//String url=""; //urlfilter not yet implemented
|
|
|
|
if(post != null && post.containsKey("tag")){
|
|
tag=post.get("tag");
|
|
}
|
|
if(post != null && post.containsKey("date")){
|
|
date=post.get("date");
|
|
}else{
|
|
date=DateFormatter.formatISO8601(new Date(System.currentTimeMillis()));
|
|
}
|
|
|
|
// if an extended xml should be used
|
|
final boolean extendedXML = (post != null && post.containsKey("extendedXML"));
|
|
|
|
int count=0;
|
|
|
|
Date parsedDate = null;
|
|
try {
|
|
parsedDate = DateFormatter.parseISO8601(date);
|
|
} catch (final ParseException e) {
|
|
parsedDate = new Date();
|
|
}
|
|
|
|
final ArrayList<String> bookmark_hashes=switchboard.bookmarksDB.getDate(Long.toString(parsedDate.getTime())).getBookmarkList();
|
|
final Iterator<String> it=bookmark_hashes.iterator();
|
|
bookmarksDB.Bookmark bookmark=null;
|
|
while(it.hasNext()){
|
|
bookmark=switchboard.bookmarksDB.getBookmark(it.next());
|
|
if(DateFormatter.formatISO8601(new Date(bookmark.getTimeStamp())).equals(date) &&
|
|
tag==null || bookmark.getTags().contains(tag) &&
|
|
isAdmin || bookmark.getPublic()){
|
|
prop.putHTML("posts_"+count+"_url", bookmark.getUrl());
|
|
prop.putHTML("posts_"+count+"_title", bookmark.getTitle());
|
|
prop.putHTML("posts_"+count+"_description", bookmark.getDescription());
|
|
prop.put("posts_"+count+"_md5", Digest.encodeMD5Hex(bookmark.getUrl()));
|
|
prop.put("posts_"+count+"_time", date);
|
|
prop.putHTML("posts_"+count+"_tags", bookmark.getTagsString().replaceAll(","," "));
|
|
|
|
// additional XML tags
|
|
prop.put("posts_"+count+"_isExtended",extendedXML ? "1" : "0");
|
|
if (extendedXML) {
|
|
prop.put("posts_"+count+"_isExtended_private", Boolean.toString(!bookmark.getPublic()));
|
|
}
|
|
count++;
|
|
}
|
|
}
|
|
prop.put("posts", count);
|
|
|
|
// return rewrite properties
|
|
return prop;
|
|
}
|
|
|
|
}
|