mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-03 02:37:23 -05:00
cf5e65f75a
See NOTES.md for things still left
109 lines
2.1 KiB
Go
109 lines
2.1 KiB
Go
package feeds
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/mmcdole/gofeed"
|
|
)
|
|
|
|
/*
|
|
Example JSON
|
|
|
|
{
|
|
"feeds": {
|
|
"url1": <gofeed.Feed>,
|
|
"url2": <gofeed.Feed>,
|
|
},
|
|
"pages": {
|
|
"url1": {
|
|
"hash": <hash>,
|
|
"changed": <time>
|
|
},
|
|
"url2": {
|
|
"hash": <hash>,
|
|
"changed": <time>
|
|
}
|
|
}
|
|
}
|
|
|
|
"pages" are the pages tracked for changes that aren't feeds.
|
|
The hash used is SHA-256.
|
|
The time is in RFC 3339 format, preferably in the UTC timezone.
|
|
*/
|
|
|
|
// Decoded JSON
|
|
type jsonData struct {
|
|
feedMu *sync.RWMutex
|
|
pageMu *sync.RWMutex
|
|
Feeds map[string]*gofeed.Feed `json:"feeds,omitempty"`
|
|
Pages map[string]*pageJSON `json:"pages,omitempty"`
|
|
}
|
|
|
|
// Lock locks both feed and page mutexes.
|
|
func (j *jsonData) Lock() {
|
|
j.feedMu.Lock()
|
|
j.pageMu.Lock()
|
|
}
|
|
|
|
// Unlock unlocks both feed and page mutexes.
|
|
func (j *jsonData) Unlock() {
|
|
j.feedMu.Unlock()
|
|
j.pageMu.Unlock()
|
|
}
|
|
|
|
// RLock read-locks both feed and page mutexes.
|
|
func (j *jsonData) RLock() {
|
|
j.feedMu.RLock()
|
|
j.pageMu.RLock()
|
|
}
|
|
|
|
// RUnlock read-unlocks both feed and page mutexes.
|
|
func (j *jsonData) RUnlock() {
|
|
j.feedMu.RUnlock()
|
|
j.pageMu.RUnlock()
|
|
}
|
|
|
|
type pageJSON struct {
|
|
Hash string `json:"hash"`
|
|
Changed time.Time `json:"changed"` // When the latest change happened
|
|
}
|
|
|
|
// Global instance of jsonData - loaded from JSON and used
|
|
var data = jsonData{
|
|
feedMu: &sync.RWMutex{},
|
|
pageMu: &sync.RWMutex{},
|
|
Feeds: make(map[string]*gofeed.Feed),
|
|
Pages: make(map[string]*pageJSON),
|
|
}
|
|
|
|
// PageEntry is a single item on a feed page.
|
|
// It is used both for tracked feeds and pages.
|
|
type PageEntry struct {
|
|
Author string
|
|
Title string
|
|
URL string
|
|
Published time.Time
|
|
}
|
|
|
|
// PageEntries is new-to-old list of Entry structs, used to create a feed page.
|
|
// It should always be assumed to be sorted when used in other packages.
|
|
// Sorted by post time, from newest to oldest.
|
|
type PageEntries struct {
|
|
Entries []*PageEntry
|
|
}
|
|
|
|
// Implement sort.Interface
|
|
|
|
func (e *PageEntries) Len() int {
|
|
return len(e.Entries)
|
|
}
|
|
|
|
func (e *PageEntries) Less(i, j int) bool {
|
|
return e.Entries[i].Published.After(e.Entries[j].Published)
|
|
}
|
|
|
|
func (e *PageEntries) Swap(i, j int) {
|
|
e.Entries[i], e.Entries[j] = e.Entries[j], e.Entries[i]
|
|
}
|