mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
83 lines
2.3 KiB
Java
83 lines
2.3 KiB
Java
package com.commafeed.backend.services;
|
|
|
|
import java.util.List;
|
|
|
|
import javax.ejb.Stateless;
|
|
import javax.inject.Inject;
|
|
|
|
import com.commafeed.backend.dao.FeedEntryDAO;
|
|
import com.commafeed.backend.dao.FeedEntryStatusDAO;
|
|
import com.commafeed.backend.dao.FeedSubscriptionDAO;
|
|
import com.commafeed.backend.feeds.FeedRefreshTaskGiver;
|
|
import com.commafeed.backend.model.Feed;
|
|
import com.commafeed.backend.model.FeedCategory;
|
|
import com.commafeed.backend.model.FeedEntry;
|
|
import com.commafeed.backend.model.FeedEntryStatus;
|
|
import com.commafeed.backend.model.FeedSubscription;
|
|
import com.commafeed.backend.model.User;
|
|
import com.google.api.client.util.Lists;
|
|
|
|
@Stateless
|
|
public class FeedSubscriptionService {
|
|
|
|
@Inject
|
|
FeedService feedService;
|
|
|
|
@Inject
|
|
FeedEntryDAO feedEntryDAO;
|
|
|
|
@Inject
|
|
FeedEntryStatusDAO feedEntryStatusDAO;
|
|
|
|
@Inject
|
|
FeedSubscriptionDAO feedSubscriptionDAO;
|
|
|
|
@Inject
|
|
ApplicationSettingsService applicationSettingsService;
|
|
|
|
@Inject
|
|
FeedRefreshTaskGiver taskGiver;
|
|
|
|
public Feed subscribe(User user, String url, String title,
|
|
FeedCategory category) {
|
|
|
|
final String pubUrl = applicationSettingsService.get().getPublicUrl();
|
|
if (pubUrl == null) {
|
|
throw new RuntimeException("Public URL of this CommaFeed is unset");
|
|
}
|
|
if (url.startsWith(pubUrl)) {
|
|
throw new RuntimeException(
|
|
"Could not subscribe to a feed from this CommaFeed instance");
|
|
}
|
|
|
|
Feed feed = feedService.findOrCreate(url);
|
|
|
|
FeedSubscription sub = feedSubscriptionDAO.findByFeed(user, feed);
|
|
boolean newSubscription = false;
|
|
if (sub == null) {
|
|
sub = new FeedSubscription();
|
|
sub.setFeed(feed);
|
|
sub.setUser(user);
|
|
newSubscription = true;
|
|
}
|
|
sub.setCategory(category);
|
|
sub.setTitle(title.substring(0, Math.min(128, title.length())));
|
|
feedSubscriptionDAO.saveOrUpdate(sub);
|
|
|
|
if (newSubscription) {
|
|
List<FeedEntryStatus> statuses = Lists.newArrayList();
|
|
List<FeedEntry> allEntries = feedEntryDAO.findByFeed(feed, 0, 10);
|
|
for (FeedEntry entry : allEntries) {
|
|
FeedEntryStatus status = new FeedEntryStatus();
|
|
status.setEntry(entry);
|
|
status.setRead(false);
|
|
status.setSubscription(sub);
|
|
statuses.add(status);
|
|
}
|
|
feedEntryStatusDAO.save(statuses);
|
|
}
|
|
taskGiver.add(feed);
|
|
return feed;
|
|
}
|
|
}
|