2 * Sone - SearchPage.java - Copyright © 2010–2013 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.sone.web;
20 import static com.google.common.collect.FluentIterable.from;
22 import java.util.ArrayList;
23 import java.util.Collection;
24 import java.util.Collections;
25 import java.util.Comparator;
26 import java.util.HashSet;
27 import java.util.List;
29 import java.util.concurrent.TimeUnit;
30 import java.util.logging.Level;
31 import java.util.logging.Logger;
33 import net.pterodactylus.sone.data.Post;
34 import net.pterodactylus.sone.data.PostReply;
35 import net.pterodactylus.sone.data.Profile;
36 import net.pterodactylus.sone.data.Profile.Field;
37 import net.pterodactylus.sone.data.Reply;
38 import net.pterodactylus.sone.data.Sone;
39 import net.pterodactylus.sone.web.page.FreenetRequest;
40 import net.pterodactylus.util.collection.Pagination;
41 import net.pterodactylus.util.logging.Logging;
42 import net.pterodactylus.util.number.Numbers;
43 import net.pterodactylus.util.template.Template;
44 import net.pterodactylus.util.template.TemplateContext;
45 import net.pterodactylus.util.text.StringEscaper;
46 import net.pterodactylus.util.text.TextException;
48 import com.google.common.base.Function;
49 import com.google.common.base.Optional;
50 import com.google.common.base.Predicate;
51 import com.google.common.cache.CacheBuilder;
52 import com.google.common.cache.CacheLoader;
53 import com.google.common.cache.LoadingCache;
54 import com.google.common.collect.Collections2;
55 import com.google.common.collect.Ordering;
58 * This page lets the user search for posts and replies that contain certain
61 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
63 public class SearchPage extends SoneTemplatePage {
66 private static final Logger logger = Logging.getLogger(SearchPage.class);
68 /** Short-term cache. */
69 private final LoadingCache<List<Phrase>, Set<Hit<Post>>> hitCache = CacheBuilder.newBuilder().expireAfterWrite(5, TimeUnit.MINUTES).build(new CacheLoader<List<Phrase>, Set<Hit<Post>>>() {
72 @SuppressWarnings("synthetic-access")
73 public Set<Hit<Post>> load(List<Phrase> phrases) {
74 Set<Post> posts = new HashSet<Post>();
75 for (Sone sone : webInterface.getCore().getSones()) {
76 posts.addAll(sone.getPosts());
78 return getHits(Collections2.filter(posts, Post.FUTURE_POSTS_FILTER), phrases, new PostStringGenerator());
83 * Creates a new search page.
86 * The template to render
88 * The Sone web interface
90 public SearchPage(Template template, WebInterface webInterface) {
91 super("search.html", template, "Page.Search.Title", webInterface);
95 // SONETEMPLATEPAGE METHODS
99 @SuppressWarnings("synthetic-access")
100 protected void processTemplate(FreenetRequest request, TemplateContext templateContext) throws RedirectException {
101 super.processTemplate(request, templateContext);
102 String query = request.getHttpRequest().getParam("query").trim();
103 if (query.length() == 0) {
104 throw new RedirectException("index.html");
107 List<Phrase> phrases = parseSearchPhrases(query);
108 if (phrases.isEmpty()) {
109 throw new RedirectException("index.html");
112 /* check for a couple of shortcuts. */
113 if (phrases.size() == 1) {
114 String phrase = phrases.get(0).getPhrase();
116 /* is it a Sone ID? */
117 redirectIfNotNull(getSoneId(phrase), "viewSone.html?sone=");
119 /* is it a post ID? */
120 redirectIfNotNull(getPostId(phrase), "viewPost.html?post=");
122 /* is it a reply ID? show the post. */
123 redirectIfNotNull(getReplyPostId(phrase), "viewPost.html?post=");
125 /* is it an album ID? */
126 redirectIfNotNull(getAlbumId(phrase), "imageBrowser.html?album=");
128 /* is it an image ID? */
129 redirectIfNotNull(getImageId(phrase), "imageBrowser.html?image=");
132 Collection<Sone> sones = webInterface.getCore().getSones();
133 Collection<Hit<Sone>> soneHits = getHits(sones, phrases, SoneStringGenerator.COMPLETE_GENERATOR);
135 Collection<Hit<Post>> postHits = hitCache.getUnchecked(phrases);
138 soneHits = Collections2.filter(soneHits, Hit.POSITIVE_FILTER);
139 postHits = Collections2.filter(postHits, Hit.POSITIVE_FILTER);
142 List<Hit<Sone>> sortedSoneHits = Ordering.from(Hit.DESCENDING_COMPARATOR).sortedCopy(soneHits);
143 List<Hit<Post>> sortedPostHits = Ordering.from(Hit.DESCENDING_COMPARATOR).sortedCopy(postHits);
145 /* extract Sones and posts. */
146 List<Sone> resultSones = from(sortedSoneHits).transform(new HitMapper<Sone>()).toList();
147 List<Post> resultPosts = from(sortedPostHits).transform(new HitMapper<Post>()).toList();
150 Pagination<Sone> sonePagination = new Pagination<Sone>(resultSones, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(Numbers.safeParseInteger(request.getHttpRequest().getParam("sonePage"), 0));
151 Pagination<Post> postPagination = new Pagination<Post>(resultPosts, webInterface.getCore().getPreferences().getPostsPerPage()).setPage(Numbers.safeParseInteger(request.getHttpRequest().getParam("postPage"), 0));
153 templateContext.set("sonePagination", sonePagination);
154 templateContext.set("soneHits", sonePagination.getItems());
155 templateContext.set("postPagination", postPagination);
156 templateContext.set("postHits", postPagination.getItems());
164 * Collects hit information for the given objects. The objects are converted
165 * to a {@link String} using the given {@link StringGenerator}, and the
166 * {@link #calculateScore(List, String) calculated score} is stored together
167 * with the object in a {@link Hit}, and all resulting {@link Hit}s are then
171 * The type of the objects
173 * The objects to search over
175 * The phrases to search for
176 * @param stringGenerator
177 * The string generator for the objects
178 * @return The hits for the given phrases
180 private static <T> Set<Hit<T>> getHits(Collection<T> objects, List<Phrase> phrases, StringGenerator<T> stringGenerator) {
181 Set<Hit<T>> hits = new HashSet<Hit<T>>();
182 for (T object : objects) {
183 String objectString = stringGenerator.generateString(object);
184 double score = calculateScore(phrases, objectString);
185 hits.add(new Hit<T>(object, score));
191 * Parses the given query into search phrases. The query is split on
192 * whitespace while allowing to group words using single or double quotes.
193 * Isolated phrases starting with a “+” are
194 * {@link Phrase.Optionality#REQUIRED}, phrases with a “-” are
195 * {@link Phrase.Optionality#FORBIDDEN}.
199 * @return The parsed phrases
201 private static List<Phrase> parseSearchPhrases(String query) {
202 List<String> parsedPhrases = null;
204 parsedPhrases = StringEscaper.parseLine(query);
205 } catch (TextException te1) {
207 return Collections.emptyList();
210 List<Phrase> phrases = new ArrayList<Phrase>();
211 for (String phrase : parsedPhrases) {
212 if (phrase.startsWith("+")) {
213 if (phrase.length() > 1) {
214 phrases.add(new Phrase(phrase.substring(1), Phrase.Optionality.REQUIRED));
216 phrases.add(new Phrase("+", Phrase.Optionality.OPTIONAL));
218 } else if (phrase.startsWith("-")) {
219 if (phrase.length() > 1) {
220 phrases.add(new Phrase(phrase.substring(1), Phrase.Optionality.FORBIDDEN));
222 phrases.add(new Phrase("-", Phrase.Optionality.OPTIONAL));
225 phrases.add(new Phrase(phrase, Phrase.Optionality.OPTIONAL));
232 * Calculates the score for the given expression when using the given
236 * The phrases to search for
238 * The expression to search
239 * @return The score of the expression
241 private static double calculateScore(List<Phrase> phrases, String expression) {
242 logger.log(Level.FINEST, String.format("Calculating Score for “%s”…", expression));
243 double optionalHits = 0;
244 double requiredHits = 0;
245 int forbiddenHits = 0;
246 int requiredPhrases = 0;
247 for (Phrase phrase : phrases) {
248 String phraseString = phrase.getPhrase().toLowerCase();
249 if (phrase.getOptionality() == Phrase.Optionality.REQUIRED) {
255 while (index < expression.length()) {
256 int position = expression.toLowerCase().indexOf(phraseString, index);
257 if (position == -1) {
260 score += Math.pow(1 - position / (double) expression.length(), 2);
261 index = position + phraseString.length();
262 logger.log(Level.FINEST, String.format("Got hit at position %d.", position));
265 logger.log(Level.FINEST, String.format("Score: %f", score));
269 if (phrase.getOptionality() == Phrase.Optionality.REQUIRED) {
270 requiredHits += score;
272 if (phrase.getOptionality() == Phrase.Optionality.OPTIONAL) {
273 optionalHits += score;
275 if (phrase.getOptionality() == Phrase.Optionality.FORBIDDEN) {
276 forbiddenHits += matches;
279 return requiredHits * 3 + optionalHits + (requiredHits - requiredPhrases) * 5 - (forbiddenHits * 2);
284 * {@link net.pterodactylus.sone.web.page.FreenetTemplatePage.RedirectException}
285 * if the given object is not {@code null}, appending the object to the
289 * The object on which to redirect
291 * The target of the redirect
292 * @throws RedirectException
293 * if {@code object} is not {@code null}
295 private static void redirectIfNotNull(String object, String target) throws RedirectException {
296 if (object != null) {
297 throw new RedirectException(target + object);
302 * If the given phrase contains a Sone ID (optionally prefixed by
303 * “sone://”), returns said Sone ID, otherwise return {@code null}.
306 * The phrase that maybe is a Sone ID
307 * @return The Sone ID, or {@code null}
309 private String getSoneId(String phrase) {
310 String soneId = phrase.startsWith("sone://") ? phrase.substring(7) : phrase;
311 return (webInterface.getCore().getSone(soneId).isPresent()) ? soneId : null;
315 * If the given phrase contains a post ID (optionally prefixed by
316 * “post://”), returns said post ID, otherwise return {@code null}.
319 * The phrase that maybe is a post ID
320 * @return The post ID, or {@code null}
322 private String getPostId(String phrase) {
323 String postId = phrase.startsWith("post://") ? phrase.substring(7) : phrase;
324 return (webInterface.getCore().getDatabase().getPost(postId).isPresent()) ? postId : null;
328 * If the given phrase contains a reply ID (optionally prefixed by
329 * “reply://”), returns the ID of the post the reply belongs to, otherwise
330 * return {@code null}.
333 * The phrase that maybe is a reply ID
334 * @return The reply’s post ID, or {@code null}
336 private String getReplyPostId(String phrase) {
337 String replyId = phrase.startsWith("reply://") ? phrase.substring(8) : phrase;
338 Optional<PostReply> postReply = webInterface.getCore().getDatabase().getPostReply(replyId);
339 if (!postReply.isPresent()) {
342 return postReply.get().getPostId();
346 * If the given phrase contains an album ID (optionally prefixed by
347 * “album://”), returns said album ID, otherwise return {@code null}.
350 * The phrase that maybe is an album ID
351 * @return The album ID, or {@code null}
353 private String getAlbumId(String phrase) {
354 String albumId = phrase.startsWith("album://") ? phrase.substring(8) : phrase;
355 return webInterface.getCore().getAlbum(albumId).isPresent() ? albumId : null;
359 * If the given phrase contains an image ID (optionally prefixed by
360 * “image://”), returns said image ID, otherwise return {@code null}.
363 * The phrase that maybe is an image ID
364 * @return The image ID, or {@code null}
366 private String getImageId(String phrase) {
367 String imageId = phrase.startsWith("image://") ? phrase.substring(8) : phrase;
368 return webInterface.getCore().getImage(imageId).isPresent() ? imageId : null;
372 * Converts a given object into a {@link String}.
375 * The type of the objects
376 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
378 private static interface StringGenerator<T> {
381 * Generates a {@link String} for the given object.
384 * The object to generate the {@link String} for
385 * @return The generated {@link String}
387 public String generateString(T object);
392 * Generates a {@link String} from a {@link Sone}, concatenating the name of
393 * the Sone and all {@link Profile} {@link Field} values.
395 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
397 private static class SoneStringGenerator implements StringGenerator<Sone> {
399 /** A static instance of a complete Sone string generator. */
400 public static final SoneStringGenerator COMPLETE_GENERATOR = new SoneStringGenerator(true);
403 * A static instance of a Sone string generator that will only use the
406 public static final SoneStringGenerator NAME_GENERATOR = new SoneStringGenerator(false);
408 /** Whether to generate a string from all data of a Sone. */
409 private final boolean complete;
412 * Creates a new Sone string generator.
415 * {@code true} to use the profile’s fields, {@code false} to
416 * not to use the profile‘s fields
418 private SoneStringGenerator(boolean complete) {
419 this.complete = complete;
423 public String generateString(Sone sone) {
424 StringBuilder soneString = new StringBuilder();
425 soneString.append(sone.getName());
426 Profile soneProfile = sone.getProfile();
427 if (soneProfile.getFirstName() != null) {
428 soneString.append(' ').append(soneProfile.getFirstName());
430 if (soneProfile.getMiddleName() != null) {
431 soneString.append(' ').append(soneProfile.getMiddleName());
433 if (soneProfile.getLastName() != null) {
434 soneString.append(' ').append(soneProfile.getLastName());
437 for (Field field : soneProfile.getFields()) {
438 soneString.append(' ').append(field.getValue());
441 return soneString.toString();
447 * Generates a {@link String} from a {@link Post}, concatenating the text of
448 * the post, the text of all {@link Reply}s, and the name of all
449 * {@link Sone}s that have replied.
451 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
453 private class PostStringGenerator implements StringGenerator<Post> {
456 public String generateString(Post post) {
457 StringBuilder postString = new StringBuilder();
458 postString.append(post.getText());
459 if (post.getRecipient().isPresent()) {
460 postString.append(' ').append(SoneStringGenerator.NAME_GENERATOR.generateString(post.getRecipient().get()));
462 for (PostReply reply : from(post.getReplies()).filter(Reply.FUTURE_REPLY_FILTER)) {
463 postString.append(' ').append(SoneStringGenerator.NAME_GENERATOR.generateString(reply.getSone()));
464 postString.append(' ').append(reply.getText());
466 return postString.toString();
474 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
476 private static class Phrase {
479 * The optionality of a search phrase.
481 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’
484 public enum Optionality {
486 /** The phrase is optional. */
489 /** The phrase is required. */
492 /** The phrase is forbidden. */
497 /** The phrase to search for. */
498 private final String phrase;
500 /** The optionality of the phrase. */
501 private final Optionality optionality;
504 * Creates a new phrase.
507 * The phrase to search for
509 * The optionality of the phrase
511 public Phrase(String phrase, Optionality optionality) {
512 this.optionality = optionality;
513 this.phrase = phrase;
517 * Returns the phrase to search for.
519 * @return The phrase to search for
521 public String getPhrase() {
526 * Returns the optionality of the phrase.
528 * @return The optionality of the phrase
530 public Optionality getOptionality() {
539 public int hashCode() {
540 return phrase.hashCode() ^ ((optionality == Optionality.FORBIDDEN) ? (0xaaaaaaaa) : ((optionality == Optionality.REQUIRED) ? 0x55555555 : 0));
544 public boolean equals(Object object) {
545 if (!(object instanceof Phrase)) {
548 Phrase phrase = (Phrase) object;
549 return (this.optionality == phrase.optionality) && this.phrase.equals(phrase.phrase);
555 * A hit consists of a searched object and the score it got for the phrases
558 * @see SearchPage#calculateScore(List, String)
560 * The type of the searched object
561 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
563 private static class Hit<T> {
565 /** Filter for {@link Hit}s with a score of more than 0. */
566 public static final Predicate<Hit<?>> POSITIVE_FILTER = new Predicate<Hit<?>>() {
569 public boolean apply(Hit<?> hit) {
570 return (hit == null) ? false : hit.getScore() > 0;
575 /** Comparator that sorts {@link Hit}s descending by score. */
576 public static final Comparator<Hit<?>> DESCENDING_COMPARATOR = new Comparator<Hit<?>>() {
579 public int compare(Hit<?> leftHit, Hit<?> rightHit) {
580 return (rightHit.getScore() < leftHit.getScore()) ? -1 : ((rightHit.getScore() > leftHit.getScore()) ? 1 : 0);
585 /** The object that was searched. */
586 private final T object;
588 /** The score of the object. */
589 private final double score;
595 * The object that was searched
597 * The score of the object
599 public Hit(T object, double score) {
600 this.object = object;
605 * Returns the object that was searched.
607 * @return The object that was searched
609 public T getObject() {
614 * Returns the score of the object.
616 * @return The score of the object
618 public double getScore() {
625 * Extracts the object from a {@link Hit}.
628 * The type of the object to extract
629 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
631 private static class HitMapper<T> implements Function<Hit<T>, T> {
634 public T apply(Hit<T> input) {
635 return input.getObject();