2 go.stargrave.org/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", 100, "Max entries to process")
40 fp := gofeed.NewParser()
41 feed, err := fp.Parse(os.Stdin)
48 max := int(*maxEntries) - 1
49 for n, item := range feed.Items {
54 if item.PublishedParsed != nil {
55 when = item.PublishedParsed
56 } else if item.UpdatedParsed != nil {
57 when = item.UpdatedParsed
61 fn := hex.EncodeToString(h.Sum(nil)[:sha512.Size/2])
63 if len(item.Content) == 0 {
64 what = item.Description
68 what = strings.TrimPrefix(what, "<![CDATA[")
69 what = strings.TrimSuffix(what, "]]>")
71 for _, d := range []string{"cur", "new"} {
72 entries, err := os.ReadDir(path.Join(mdir, d))
76 for _, entry := range entries {
77 if strings.HasPrefix(entry.Name(), fn) {
86 fn = path.Join(mdir, "new", fn)
87 fd, err := os.OpenFile(fn, os.O_WRONLY|os.O_CREATE|os.O_EXCL, os.FileMode(0666))
91 fd.WriteString("From: \"" + feed.Title + "\" <feeder@go.stargrave.org>\n")
92 fd.WriteString("Date: " + when.UTC().Format(time.RFC1123Z) + "\n")
93 fd.WriteString("Subject: " + mime.BEncoding.Encode("UTF-8", item.Title) + "\n")
94 fd.WriteString("MIME-Version: 1.0\n")
95 fd.WriteString("Content-Type: text/html; charset=utf-8\n")
96 fd.WriteString("Content-Transfer-Encoding: base64\n")
97 for _, link := range item.Links {
98 fd.WriteString("X-URL: " + link + "\n")
100 for _, author := range item.Authors {
101 fd.WriteString("X-Author: " + author.Name + "\n")
103 for _, cat := range item.Categories {
104 fd.WriteString("X-Category: " + cat + "\n")
107 what = base64.StdEncoding.EncodeToString([]byte(what))
108 for i := 0; i < len(what); i += 72 {
113 fd.WriteString(what[i:b] + "\n")
116 if err = os.Chtimes(fn, *when, *when); err != nil {
122 if feed.PublishedParsed != nil {
123 when = feed.PublishedParsed
124 } else if feed.UpdatedParsed != nil {
125 when = feed.UpdatedParsed
128 for _, d := range []string{"cur", "new"} {
129 if err = os.Chtimes(path.Join(mdir, d), *when, *when); err != nil {
134 fmt.Println(feed.Title)