2 feeder -- newsfeeds aggregator
3 Copyright (C) 2022 Sergey Matveev <stargrave@stargrave.org>
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, version 3 of the License.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
33 "github.com/mmcdole/gofeed"
37 maxEntries := flag.Uint("max-entries", 0, "Max entries to process (0=unlimited)")
40 fp := gofeed.NewParser()
41 feed, err := fp.Parse(os.Stdin)
46 guids := make(map[string]struct{}, len(feed.Items))
48 for _, item := range feed.Items {
49 if _, exists := guids[item.GUID]; exists {
53 guids[item.GUID] = struct{}{}
61 latest := &time.Time{}
62 for n, item := range feed.Items {
63 if *maxEntries > 0 && n == int(*maxEntries) {
67 if item.PublishedParsed != nil {
68 when = item.PublishedParsed
69 } else if item.UpdatedParsed != nil {
70 when = item.UpdatedParsed
74 if latest.Before(*when) {
78 if len(item.Content) == 0 {
79 what = item.Description
83 what = strings.TrimPrefix(what, "<![CDATA[")
84 what = strings.TrimSuffix(what, "]]>")
87 h.Write([]byte(item.GUID))
89 h.Write([]byte(item.Title))
93 fn := hex.EncodeToString(h.Sum(nil)[:sha512.Size/2])
95 for _, d := range []string{"cur", "new"} {
96 entries, err := os.ReadDir(path.Join(mdir, d))
100 for _, entry := range entries {
101 if strings.HasPrefix(entry.Name(), fn) {
110 fn = path.Join(mdir, "new", fn)
111 fd, err := os.OpenFile(fn, os.O_WRONLY|os.O_CREATE|os.O_EXCL, os.FileMode(0666))
115 fd.WriteString("From: \"" + feed.Title + "\" <feeder@localhost>\n")
116 fd.WriteString("Date: " + when.UTC().Format(time.RFC1123Z) + "\n")
117 fd.WriteString("Subject: " + mime.BEncoding.Encode("UTF-8", item.Title) + "\n")
118 fd.WriteString("MIME-Version: 1.0\n")
119 fd.WriteString("Content-Type: text/html; charset=utf-8\n")
120 fd.WriteString("Content-Transfer-Encoding: base64\n")
121 for _, author := range item.Authors {
122 if len(author.Name) > 0 {
123 fd.WriteString("X-Author: " + author.Name + "\n")
126 for _, link := range item.Links {
127 fd.WriteString("X-URL: " + link + "\n")
129 for _, enc := range item.Enclosures {
130 fd.WriteString("X-Enclosure: " + enc.URL + "\n")
132 if len(item.Categories) > 0 {
133 fd.WriteString("X-Categories: " + strings.Join(item.Categories, ", ") + "\n")
136 what = base64.StdEncoding.EncodeToString([]byte(what))
137 for i := 0; i < len(what); i += 72 {
142 fd.WriteString(what[i:b] + "\n")
145 if err = os.Chtimes(fn, *when, *when); err != nil {
150 for _, d := range []string{"cur", "new"} {
151 if err = os.Chtimes(path.Join(mdir, d), *latest, *latest); err != nil {
155 fmt.Println(feed.Title)