mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
110 lines
2.9 KiB
Java
110 lines
2.9 KiB
Java
package com.commafeed.backend;
|
|
|
|
import java.util.Calendar;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
import javax.inject.Inject;
|
|
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import com.commafeed.backend.dao.FeedDAO;
|
|
import com.commafeed.backend.dao.FeedEntryContentDAO;
|
|
import com.commafeed.backend.dao.FeedEntryDAO;
|
|
import com.commafeed.backend.dao.FeedEntryStatusDAO;
|
|
import com.commafeed.backend.dao.FeedSubscriptionDAO;
|
|
import com.commafeed.backend.model.Feed;
|
|
import com.commafeed.backend.model.FeedSubscription;
|
|
import com.commafeed.backend.services.ApplicationSettingsService;
|
|
|
|
/**
|
|
* Contains utility methods for cleaning the database
|
|
*
|
|
*/
|
|
public class DatabaseCleaner {
|
|
|
|
private static Logger log = LoggerFactory.getLogger(DatabaseCleaner.class);
|
|
|
|
@Inject
|
|
FeedDAO feedDAO;
|
|
|
|
@Inject
|
|
FeedEntryDAO feedEntryDAO;
|
|
|
|
@Inject
|
|
FeedSubscriptionDAO feedSubscriptionDAO;
|
|
|
|
@Inject
|
|
FeedEntryContentDAO feedEntryContentDAO;
|
|
|
|
@Inject
|
|
FeedEntryStatusDAO feedEntryStatusDAO;
|
|
|
|
@Inject
|
|
ApplicationSettingsService applicationSettingsService;
|
|
|
|
public long cleanFeedsWithoutSubscriptions() {
|
|
|
|
long total = 0;
|
|
int deleted = -1;
|
|
do {
|
|
deleted = feedDAO.deleteWithoutSubscriptions(10);
|
|
total += deleted;
|
|
log.info("removed {} feeds without subscriptions", total);
|
|
} while (deleted != 0);
|
|
log.info("cleanup done: {} feeds without subscriptions deleted", total);
|
|
return total;
|
|
}
|
|
|
|
public long cleanContentsWithoutEntries() {
|
|
|
|
long total = 0;
|
|
int deleted = -1;
|
|
do {
|
|
deleted = feedEntryContentDAO.deleteWithoutEntries(10);
|
|
total += deleted;
|
|
log.info("removed {} feeds without subscriptions", total);
|
|
} while (deleted != 0);
|
|
log.info("cleanup done: {} feeds without subscriptions deleted", total);
|
|
return total;
|
|
}
|
|
|
|
public long cleanEntriesOlderThan(long value, TimeUnit unit) {
|
|
Calendar cal = Calendar.getInstance();
|
|
cal.add(Calendar.MINUTE, -1 * (int) unit.toMinutes(value));
|
|
|
|
long total = 0;
|
|
int deleted = -1;
|
|
do {
|
|
deleted = feedEntryDAO.delete(cal.getTime(), 100);
|
|
total += deleted;
|
|
log.info("removed {} entries", total);
|
|
} while (deleted != 0);
|
|
log.info("cleanup done: {} entries deleted", total);
|
|
return total;
|
|
}
|
|
|
|
public void mergeFeeds(Feed into, List<Feed> feeds) {
|
|
for (Feed feed : feeds) {
|
|
if (into.getId().equals(feed.getId())) {
|
|
continue;
|
|
}
|
|
List<FeedSubscription> subs = feedSubscriptionDAO.findByFeed(feed);
|
|
for (FeedSubscription sub : subs) {
|
|
sub.setFeed(into);
|
|
}
|
|
feedSubscriptionDAO.saveOrUpdate(subs);
|
|
feedDAO.delete(feed);
|
|
}
|
|
feedDAO.saveOrUpdate(into);
|
|
}
|
|
|
|
public void cleanStatusesOlderThan(Date olderThan) {
|
|
log.info("cleaning old read statuses");
|
|
int deleted = feedEntryStatusDAO.deleteOldStatuses(olderThan);
|
|
log.info("cleaned {} read statuses", deleted);
|
|
}
|
|
}
|