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
69 for _, d := range []string{"cur", "new"} {
70 entries, err := os.ReadDir(path.Join(mdir, d))
74 for _, entry := range entries {
75 if strings.HasPrefix(entry.Name(), fn) {
84 fn = path.Join(mdir, "new", fn)
85 fd, err := os.OpenFile(fn, os.O_WRONLY|os.O_CREATE|os.O_EXCL, os.FileMode(0666))
89 fd.WriteString("From: \"" + feed.Title + "\" <feeder@go.stargrave.org>\n")
90 fd.WriteString("Date: " + when.Format(time.RFC1123Z) + "\n")
91 fd.WriteString("Subject: " + mime.BEncoding.Encode("UTF-8", item.Title) + "\n")
92 fd.WriteString("MIME-Version: 1.0\n")
93 fd.WriteString("Content-Type: text/html; charset=utf-8\n")
94 fd.WriteString("Content-Transfer-Encoding: base64\n")
95 for _, link := range item.Links {
96 fd.WriteString("X-URL: " + link + "\n")
98 for _, author := range item.Authors {
99 fd.WriteString("X-Author: " + author.Name + "\n")
101 for _, cat := range item.Categories {
102 fd.WriteString("X-Category: " + cat + "\n")
105 what = base64.StdEncoding.EncodeToString([]byte(what))
106 for i := 0; i < len(what); i += 72 {
111 fd.WriteString(what[i:b] + "\n")
114 if err = os.Chtimes(fn, *when, *when); err != nil {
120 if feed.PublishedParsed != nil {
121 when = feed.PublishedParsed
122 } else if feed.UpdatedParsed != nil {
123 when = feed.UpdatedParsed
126 for _, d := range []string{"cur", "new"} {
127 if err = os.Chtimes(path.Join(mdir, d), *when, *when); err != nil {
132 fmt.Println(feed.Title)