mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
340 lines
6.8 KiB
Java
340 lines
6.8 KiB
Java
package com.commafeed.backend.model;
|
|
|
|
import java.util.Date;
|
|
import java.util.Set;
|
|
|
|
import javax.persistence.Cacheable;
|
|
import javax.persistence.Column;
|
|
import javax.persistence.Entity;
|
|
import javax.persistence.ManyToMany;
|
|
import javax.persistence.OneToMany;
|
|
import javax.persistence.Table;
|
|
import javax.persistence.Temporal;
|
|
import javax.persistence.TemporalType;
|
|
import javax.persistence.Transient;
|
|
|
|
import org.hibernate.annotations.Cache;
|
|
import org.hibernate.annotations.CacheConcurrencyStrategy;
|
|
|
|
import com.google.common.collect.Sets;
|
|
|
|
@Entity
|
|
@Table(name = "FEEDS")
|
|
@SuppressWarnings("serial")
|
|
@Cacheable
|
|
@Cache(usage = CacheConcurrencyStrategy.TRANSACTIONAL)
|
|
public class Feed extends AbstractModel {
|
|
|
|
/**
|
|
* The url of the feed
|
|
*/
|
|
@Column(length = 2048, nullable = false)
|
|
private String url;
|
|
|
|
@Column(length = 40, nullable = false)
|
|
private String urlHash;
|
|
|
|
@Column(length = 2048, nullable = false)
|
|
private String normalizedUrl;
|
|
|
|
@Column(length = 40, nullable = false)
|
|
private String normalizedUrlHash;
|
|
|
|
/**
|
|
* The url of the website, extracted from the feed
|
|
*/
|
|
@Column(length = 2048)
|
|
private String link;
|
|
|
|
/**
|
|
* Last time we tried to fetch the feed
|
|
*/
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
private Date lastUpdated;
|
|
|
|
/**
|
|
* Last publishedDate value in the feed
|
|
*/
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
private Date lastPublishedDate;
|
|
|
|
/**
|
|
* date of the last entry of the feed
|
|
*/
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
private Date lastEntryDate;
|
|
|
|
/**
|
|
* Last time we successfully refreshed the feed
|
|
*/
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
private Date lastUpdateSuccess;
|
|
|
|
/**
|
|
* error message while retrieving the feed
|
|
*/
|
|
@Column(length = 1024)
|
|
private String message;
|
|
|
|
/**
|
|
* times we failed to retrieve the feed
|
|
*/
|
|
private int errorCount;
|
|
|
|
/**
|
|
* feed refresh is disabled until this date
|
|
*/
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
private Date disabledUntil;
|
|
|
|
/**
|
|
* http header returned by the feed
|
|
*/
|
|
@Column(length = 64)
|
|
private String lastModifiedHeader;
|
|
|
|
/**
|
|
* http header returned by the feed
|
|
*/
|
|
@Column(length = 255)
|
|
private String etagHeader;
|
|
|
|
/**
|
|
* average time between entries in the feed
|
|
*/
|
|
private Long averageEntryInterval;
|
|
|
|
/**
|
|
* last hash of the content of the feed xml
|
|
*/
|
|
@Column(length = 40)
|
|
private String lastContentHash;
|
|
|
|
@ManyToMany(mappedBy = "feeds")
|
|
private Set<FeedEntry> entries = Sets.newHashSet();
|
|
|
|
@OneToMany(mappedBy = "feed")
|
|
private Set<FeedSubscription> subscriptions;
|
|
|
|
/**
|
|
* detected hub for pubsubhubbub
|
|
*/
|
|
@Column(length = 2048)
|
|
private String pushHub;
|
|
|
|
/**
|
|
* detected topic for pubsubhubbub
|
|
*/
|
|
@Column(length = 2048)
|
|
private String pushTopic;
|
|
|
|
@Column(name = "push_topic_hash", length = 2048)
|
|
private String pushTopicHash;
|
|
|
|
/**
|
|
* last time we subscribed for that topic on that hub
|
|
*/
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
private Date pushLastPing;
|
|
|
|
/**
|
|
* Denotes a feed that needs to be refreshed before others. Currently used
|
|
* when a feed is queued manually for refresh. Not persisted.
|
|
*/
|
|
@Transient
|
|
private boolean urgent;
|
|
|
|
public Feed() {
|
|
|
|
}
|
|
|
|
public Feed(String url) {
|
|
this.url = url;
|
|
}
|
|
|
|
public String getUrl() {
|
|
return url;
|
|
}
|
|
|
|
public void setUrl(String url) {
|
|
this.url = url;
|
|
}
|
|
|
|
public Date getLastUpdated() {
|
|
return lastUpdated;
|
|
}
|
|
|
|
public void setLastUpdated(Date lastUpdated) {
|
|
this.lastUpdated = lastUpdated;
|
|
}
|
|
|
|
public Set<FeedEntry> getEntries() {
|
|
return entries;
|
|
}
|
|
|
|
public void setEntries(Set<FeedEntry> entries) {
|
|
this.entries = entries;
|
|
}
|
|
|
|
public String getMessage() {
|
|
return message;
|
|
}
|
|
|
|
public void setMessage(String message) {
|
|
this.message = message;
|
|
}
|
|
|
|
public Set<FeedSubscription> getSubscriptions() {
|
|
return subscriptions;
|
|
}
|
|
|
|
public void setSubscriptions(Set<FeedSubscription> subscriptions) {
|
|
this.subscriptions = subscriptions;
|
|
}
|
|
|
|
public String getLink() {
|
|
return link;
|
|
}
|
|
|
|
public void setLink(String link) {
|
|
this.link = link;
|
|
}
|
|
|
|
public int getErrorCount() {
|
|
return errorCount;
|
|
}
|
|
|
|
public void setErrorCount(int errorCount) {
|
|
this.errorCount = errorCount;
|
|
}
|
|
|
|
public Date getDisabledUntil() {
|
|
return disabledUntil;
|
|
}
|
|
|
|
public void setDisabledUntil(Date disabledUntil) {
|
|
this.disabledUntil = disabledUntil;
|
|
}
|
|
|
|
public String getUrlHash() {
|
|
return urlHash;
|
|
}
|
|
|
|
public void setUrlHash(String urlHash) {
|
|
this.urlHash = urlHash;
|
|
}
|
|
|
|
public String getLastModifiedHeader() {
|
|
return lastModifiedHeader;
|
|
}
|
|
|
|
public void setLastModifiedHeader(String lastModifiedHeader) {
|
|
this.lastModifiedHeader = lastModifiedHeader;
|
|
}
|
|
|
|
public String getEtagHeader() {
|
|
return etagHeader;
|
|
}
|
|
|
|
public void setEtagHeader(String etagHeader) {
|
|
this.etagHeader = etagHeader;
|
|
}
|
|
|
|
public Date getLastUpdateSuccess() {
|
|
return lastUpdateSuccess;
|
|
}
|
|
|
|
public void setLastUpdateSuccess(Date lastUpdateSuccess) {
|
|
this.lastUpdateSuccess = lastUpdateSuccess;
|
|
}
|
|
|
|
public String getPushHub() {
|
|
return pushHub;
|
|
}
|
|
|
|
public void setPushHub(String pushHub) {
|
|
this.pushHub = pushHub;
|
|
}
|
|
|
|
public String getPushTopic() {
|
|
return pushTopic;
|
|
}
|
|
|
|
public void setPushTopic(String pushTopic) {
|
|
this.pushTopic = pushTopic;
|
|
}
|
|
|
|
public Date getPushLastPing() {
|
|
return pushLastPing;
|
|
}
|
|
|
|
public void setPushLastPing(Date pushLastPing) {
|
|
this.pushLastPing = pushLastPing;
|
|
}
|
|
|
|
public Date getLastPublishedDate() {
|
|
return lastPublishedDate;
|
|
}
|
|
|
|
public void setLastPublishedDate(Date lastPublishedDate) {
|
|
this.lastPublishedDate = lastPublishedDate;
|
|
}
|
|
|
|
public String getLastContentHash() {
|
|
return lastContentHash;
|
|
}
|
|
|
|
public void setLastContentHash(String lastContentHash) {
|
|
this.lastContentHash = lastContentHash;
|
|
}
|
|
|
|
public Long getAverageEntryInterval() {
|
|
return averageEntryInterval;
|
|
}
|
|
|
|
public void setAverageEntryInterval(Long averageEntryInterval) {
|
|
this.averageEntryInterval = averageEntryInterval;
|
|
}
|
|
|
|
public Date getLastEntryDate() {
|
|
return lastEntryDate;
|
|
}
|
|
|
|
public void setLastEntryDate(Date lastEntryDate) {
|
|
this.lastEntryDate = lastEntryDate;
|
|
}
|
|
|
|
public String getPushTopicHash() {
|
|
return pushTopicHash;
|
|
}
|
|
|
|
public void setPushTopicHash(String pushTopicHash) {
|
|
this.pushTopicHash = pushTopicHash;
|
|
}
|
|
|
|
public boolean isUrgent() {
|
|
return urgent;
|
|
}
|
|
|
|
public void setUrgent(boolean urgent) {
|
|
this.urgent = urgent;
|
|
}
|
|
|
|
public String getNormalizedUrl() {
|
|
return normalizedUrl;
|
|
}
|
|
|
|
public void setNormalizedUrl(String normalizedUrl) {
|
|
this.normalizedUrl = normalizedUrl;
|
|
}
|
|
|
|
public String getNormalizedUrlHash() {
|
|
return normalizedUrlHash;
|
|
}
|
|
|
|
public void setNormalizedUrlHash(String normalizedUrlHash) {
|
|
this.normalizedUrlHash = normalizedUrlHash;
|
|
}
|
|
|
|
}
|