| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
package net.sourceforge.pebble.decorator; |
| 34 | |
|
| 35 | |
import com.sun.syndication.feed.synd.SyndEntry; |
| 36 | |
import com.sun.syndication.feed.synd.SyndFeed; |
| 37 | |
import com.sun.syndication.feed.synd.SyndLink; |
| 38 | |
import com.sun.syndication.feed.synd.SyndLinkImpl; |
| 39 | |
import net.sourceforge.pebble.api.decorator.FeedDecorator; |
| 40 | |
import net.sourceforge.pebble.domain.Blog; |
| 41 | |
import net.sourceforge.pebble.domain.BlogEntry; |
| 42 | |
import net.sourceforge.pebble.domain.Response; |
| 43 | |
import net.sourceforge.pebble.event.blogentry.PubSubHubBubBlogEntryListener; |
| 44 | |
import org.apache.commons.logging.Log; |
| 45 | |
import org.apache.commons.logging.LogFactory; |
| 46 | |
|
| 47 | |
import java.util.*; |
| 48 | |
|
| 49 | |
|
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
|
| 54 | 0 | public class PubSubHubBubFeedDecorator implements FeedDecorator { |
| 55 | 0 | private static final Log log = LogFactory.getLog(PubSubHubBubFeedDecorator.class); |
| 56 | |
|
| 57 | |
public static final String HUBS_PROPERTY = "pubsubhubbub.hubs"; |
| 58 | |
private volatile Boolean listenerEnabled; |
| 59 | |
|
| 60 | |
public void decorate(SyndFeed feed, Blog blog) { |
| 61 | 0 | if (checkListenerEnabled(blog)) { |
| 62 | 0 | List<SyndLink> links = new ArrayList<SyndLink>(feed.getLinks()); |
| 63 | 0 | for (String hub : getHubs(blog)) { |
| 64 | 0 | SyndLink link = new SyndLinkImpl(); |
| 65 | 0 | link.setRel("hub"); |
| 66 | 0 | link.setHref(hub.trim()); |
| 67 | 0 | links.add(link); |
| 68 | 0 | } |
| 69 | 0 | feed.setLinks(links); |
| 70 | 0 | } else { |
| 71 | 0 | log.warn("PubSubHubBub Feed Decorator plugin is enabled, however the PubSubHubBub " + |
| 72 | |
"blog entry listener does not appeared to be enabled. Not adding hub to feed, " + |
| 73 | |
"otherwise aggregators will never get updates."); |
| 74 | |
} |
| 75 | 0 | } |
| 76 | |
|
| 77 | |
public void decorate(SyndFeed feed, Blog blog, BlogEntry blogEntry) { |
| 78 | |
|
| 79 | 0 | } |
| 80 | |
|
| 81 | |
public void decorate(SyndEntry entry, Blog blog, BlogEntry blogEntry) { |
| 82 | 0 | } |
| 83 | |
|
| 84 | |
public void decorate(SyndEntry entry, Blog blog, Response response) { |
| 85 | |
|
| 86 | 0 | } |
| 87 | |
|
| 88 | |
private boolean checkListenerEnabled(Blog blog) { |
| 89 | 0 | return blog.getBlogEntryListeners().contains(PubSubHubBubBlogEntryListener.class.getName()); |
| 90 | |
} |
| 91 | |
|
| 92 | |
private Collection<String> getHubs(Blog blog) { |
| 93 | 0 | String hubs = blog.getPluginProperties().getProperty(HUBS_PROPERTY); |
| 94 | 0 | if (hubs == null || hubs.length() == 0) { |
| 95 | 0 | return Collections.emptyList(); |
| 96 | |
} |
| 97 | 0 | return Arrays.asList(hubs.split(",")); |
| 98 | |
} |
| 99 | |
} |