1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-09-25 22:55:55 -04:00
amfora/feeds/structs.go

101 lines
2.0 KiB
Go
Raw Normal View History

2020-08-16 17:42:45 -04:00
package feeds
import (
"sync"
"time"
"github.com/mmcdole/gofeed"
)
/*
Example JSON.
{
"feeds": {
"url1": <gofeed.Feed>,
"url2": <gofeed.Feed>,
},
"pages": {
"url1": {
"hash": <hash>,
2020-08-17 13:31:45 -04:00
"changed": <time>
2020-08-16 17:42:45 -04:00
},
"url2": {
"hash": <hash>,
2020-08-17 13:31:45 -04:00
"changed": <time>
2020-08-16 17:42:45 -04:00
}
}
}
"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"`
2020-08-28 12:18:30 -04:00
Pages map[string]*pageJSON `json:"pages,omitempty"`
2020-08-16 17:42:45 -04:00
}
2020-08-17 13:31:45 -04:00
// 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()
}
2020-08-28 12:18:30 -04:00
type pageJSON struct {
2020-08-16 17:42:45 -04:00
Hash string `json:"hash"`
2020-08-17 13:31:45 -04:00
Changed time.Time `json:"changed"` // When the latest change happened
2020-08-16 17:42:45 -04:00
}
var data jsonData // Global instance of jsonData - loaded from JSON and used
// 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.
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.Before(e.Entries[j].Published)
}
func (e *PageEntries) Swap(i, j int) {
e.Entries[i], e.Entries[j] = e.Entries[j], e.Entries[i]
}