1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-06-19 19:25:24 +00:00
amfora/subscriptions/structs.go

109 lines
2.2 KiB
Go
Raw Normal View History

2020-11-27 22:01:29 +00:00
package subscriptions
2020-08-16 21:42:45 +00:00
import (
"sync"
"time"
"github.com/mmcdole/gofeed"
)
/*
Example stored JSON.
2020-11-17 16:26:49 +00:00
2020-08-16 21:42:45 +00:00
{
"feeds": {
"url1": <gofeed.Feed>,
"url2": <gofeed.Feed>,
},
"pages": {
"url1": {
"hash": <hash>,
2020-08-17 17:31:45 +00:00
"changed": <time>
2020-08-16 21:42:45 +00:00
},
"url2": {
"hash": <hash>,
2020-08-17 17:31:45 +00:00
"changed": <time>
2020-08-16 21:42:45 +00: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
2020-08-16 21:42:45 +00:00
Feeds map[string]*gofeed.Feed `json:"feeds,omitempty"`
2020-08-28 16:18:30 +00:00
Pages map[string]*pageJSON `json:"pages,omitempty"`
2020-08-16 21:42:45 +00:00
}
2020-08-17 17:31:45 +00: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 16:18:30 +00:00
type pageJSON struct {
2020-08-16 21:42:45 +00:00
Hash string `json:"hash"`
2020-08-17 17:31:45 +00:00
Changed time.Time `json:"changed"` // When the latest change happened
2020-08-16 21:42:45 +00:00
}
// Global instance of jsonData - loaded from JSON and used
var data = jsonData{
feedMu: &sync.RWMutex{},
pageMu: &sync.RWMutex{},
// Maps are created in Init()
}
2020-08-16 21:42:45 +00:00
2020-11-27 22:01:29 +00:00
// PageEntry is a single item on a subscriptions page.
// It is used for both feeds and pages.
2020-08-16 21:42:45 +00:00
type PageEntry struct {
Prefix string // Feed/log title, author, etc - something before the post title
2020-08-16 21:42:45 +00:00
Title string
URL string
Published time.Time
}
2020-11-27 22:01:29 +00:00
// PageEntries is new-to-old list of Entry structs, used to create a
// subscriptions page.
// It should always be assumed to be sorted when used in other packages,
// by post time, from newest to oldest.
2020-08-16 21:42:45 +00:00
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)
2020-08-16 21:42:45 +00:00
}
func (e *PageEntries) Swap(i, j int) {
e.Entries[i], e.Entries[j] = e.Entries[j], e.Entries[i]
}