cleanup errors

This commit is contained in:
Peter Stuifzand 2021-06-05 21:51:33 +02:00
parent a8b6f6353f
commit 0078532d78
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG Key ID: 374322D56E5209E8

View File

@ -5,6 +5,7 @@ import (
"bytes" "bytes"
"encoding/hex" "encoding/hex"
"encoding/json" "encoding/json"
"fmt"
"io" "io"
"io/ioutil" "io/ioutil"
"log" "log"
@ -132,17 +133,13 @@ func FeedItems(fetcher FetcherFunc, fetchURL, contentType string, body io.Reader
items = append(items, r) items = append(items, r)
} }
} else if strings.HasPrefix(contentType, "application/json") { // json feed? } else if strings.HasPrefix(contentType, "application/json") && strings.HasPrefix(contentType, "application/feed+json") { // json feed?
var feed jsonfeed.Feed var feed jsonfeed.Feed
dec := json.NewDecoder(body) err := json.NewDecoder(body).Decode(&feed)
err := dec.Decode(&feed)
if err != nil { if err != nil {
log.Printf("Error while parsing json feed: %s\n", err) return items, fmt.Errorf("could not parse as jsonfeed: %v", err)
return items, err
} }
log.Printf("%#v\n", feed)
author := &microsub.Card{} author := &microsub.Card{}
author.Type = "card" author.Type = "card"
author.Name = feed.Author.Name author.Name = feed.Author.Name
@ -180,13 +177,11 @@ func FeedItems(fetcher FetcherFunc, fetchURL, contentType string, body io.Reader
} else if strings.HasPrefix(contentType, "text/xml") || strings.HasPrefix(contentType, "application/rss+xml") || strings.HasPrefix(contentType, "application/atom+xml") || strings.HasPrefix(contentType, "application/xml") { } else if strings.HasPrefix(contentType, "text/xml") || strings.HasPrefix(contentType, "application/rss+xml") || strings.HasPrefix(contentType, "application/atom+xml") || strings.HasPrefix(contentType, "application/xml") {
body, err := ioutil.ReadAll(body) body, err := ioutil.ReadAll(body)
if err != nil { if err != nil {
log.Printf("Error while parsing rss/atom feed: %s\n", err) return items, fmt.Errorf("could not read feed for rss/atom: %v", err)
return items, err
} }
feed, err := rss.Parse(body) feed, err := rss.Parse(body)
if err != nil { if err != nil {
log.Printf("Error while parsing rss/atom feed: %s\n", err) return items, fmt.Errorf("while parsing rss/atom feed: %v", err)
return items, err
} }
baseURL, _ := url.Parse(fetchURL) baseURL, _ := url.Parse(fetchURL)
@ -222,7 +217,7 @@ func FeedItems(fetcher FetcherFunc, fetchURL, contentType string, body io.Reader
items = append(items, item) items = append(items, item)
} }
} else { } else {
log.Printf("Unknown Content-Type: %s\n", contentType) return items, fmt.Errorf("unknown content-type %s for url %s", contentType, fetchURL)
} }
for i, v := range items { for i, v := range items {