2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package icon // import "miniflux.app/v2/internal/reader/icon"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
2017-12-23 04:01:39 +01:00
|
|
|
"encoding/base64"
|
2017-11-20 06:10:04 +01:00
|
|
|
"fmt"
|
2017-11-21 02:12:37 +01:00
|
|
|
"io"
|
2023-10-19 06:42:34 +02:00
|
|
|
"log/slog"
|
2023-08-14 04:09:01 +02:00
|
|
|
"net/url"
|
2024-02-27 01:40:34 +01:00
|
|
|
"regexp"
|
2017-12-23 04:01:39 +01:00
|
|
|
"strings"
|
2017-11-21 02:12:37 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/config"
|
|
|
|
"miniflux.app/v2/internal/crypto"
|
|
|
|
"miniflux.app/v2/internal/model"
|
2023-10-22 04:50:29 +02:00
|
|
|
"miniflux.app/v2/internal/reader/fetcher"
|
2023-08-14 04:09:01 +02:00
|
|
|
"miniflux.app/v2/internal/urllib"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
"github.com/PuerkitoBio/goquery"
|
2024-03-20 20:44:41 +01:00
|
|
|
"golang.org/x/net/html/charset"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
type IconFinder struct {
|
2023-10-22 04:50:29 +02:00
|
|
|
requestBuilder *fetcher.RequestBuilder
|
|
|
|
websiteURL string
|
|
|
|
feedIconURL string
|
2023-10-19 06:42:34 +02:00
|
|
|
}
|
|
|
|
|
2023-10-22 04:50:29 +02:00
|
|
|
func NewIconFinder(requestBuilder *fetcher.RequestBuilder, websiteURL, feedIconURL string) *IconFinder {
|
2023-10-19 06:42:34 +02:00
|
|
|
return &IconFinder{
|
2023-10-22 04:50:29 +02:00
|
|
|
requestBuilder: requestBuilder,
|
|
|
|
websiteURL: websiteURL,
|
|
|
|
feedIconURL: feedIconURL,
|
2023-10-19 06:42:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *IconFinder) FindIcon() (*model.Icon, error) {
|
|
|
|
slog.Debug("Begin icon discovery process",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
slog.String("feed_icon_url", f.feedIconURL),
|
|
|
|
)
|
|
|
|
|
|
|
|
if f.feedIconURL != "" {
|
|
|
|
if icon, err := f.FetchFeedIcon(); err != nil {
|
|
|
|
slog.Debug("Unable to download icon from feed",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
slog.String("feed_icon_url", f.feedIconURL),
|
|
|
|
slog.Any("error", err),
|
|
|
|
)
|
|
|
|
} else if icon != nil {
|
|
|
|
return icon, nil
|
2023-09-09 23:18:39 +02:00
|
|
|
}
|
|
|
|
}
|
2022-01-09 00:09:12 +01:00
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
if icon, err := f.FetchIconsFromHTMLDocument(); err != nil {
|
|
|
|
slog.Debug("Unable to fetch icons from HTML document",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
slog.Any("error", err),
|
|
|
|
)
|
|
|
|
} else if icon != nil {
|
|
|
|
return icon, nil
|
2023-09-09 23:18:39 +02:00
|
|
|
}
|
2022-01-09 00:09:12 +01:00
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
return f.FetchDefaultIcon()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *IconFinder) FetchDefaultIcon() (*model.Icon, error) {
|
|
|
|
slog.Debug("Fetching default icon",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
)
|
|
|
|
|
|
|
|
iconURL, err := urllib.JoinBaseURLAndPath(urllib.RootURL(f.websiteURL), "favicon.ico")
|
2023-09-09 23:18:39 +02:00
|
|
|
if err != nil {
|
2023-10-19 06:42:34 +02:00
|
|
|
return nil, fmt.Errorf(`icon: unable to join root URL and path: %w`, err)
|
2023-09-09 23:18:39 +02:00
|
|
|
}
|
2021-02-21 22:42:49 +01:00
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
icon, err := f.DownloadIcon(iconURL)
|
|
|
|
if err != nil {
|
2023-09-09 23:18:39 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-09-09 23:18:39 +02:00
|
|
|
return icon, nil
|
|
|
|
}
|
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
func (f *IconFinder) FetchFeedIcon() (*model.Icon, error) {
|
|
|
|
slog.Debug("Fetching feed icon",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
slog.String("feed_icon_url", f.feedIconURL),
|
|
|
|
)
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
iconURL, err := urllib.AbsoluteURL(f.websiteURL, f.feedIconURL)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(`icon: unable to convert icon URL to absolute URL: %w`, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
return f.DownloadIcon(iconURL)
|
2023-09-09 23:18:39 +02:00
|
|
|
}
|
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
func (f *IconFinder) FetchIconsFromHTMLDocument() (*model.Icon, error) {
|
|
|
|
slog.Debug("Searching icons from HTML document",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
)
|
2023-09-09 23:18:39 +02:00
|
|
|
|
2023-10-22 04:50:29 +02:00
|
|
|
rootURL := urllib.RootURL(f.websiteURL)
|
|
|
|
|
|
|
|
responseHandler := fetcher.NewResponseHandler(f.requestBuilder.ExecuteRequest(rootURL))
|
|
|
|
defer responseHandler.Close()
|
|
|
|
|
|
|
|
if localizedError := responseHandler.LocalizedError(); localizedError != nil {
|
|
|
|
return nil, fmt.Errorf("icon: unable to download website index page: %w", localizedError.Error())
|
2017-12-23 04:01:39 +01:00
|
|
|
}
|
|
|
|
|
2023-12-02 01:27:18 +01:00
|
|
|
iconURLs, err := findIconURLsFromHTMLDocument(
|
|
|
|
responseHandler.Body(config.Opts.HTTPClientMaxBodySize()),
|
|
|
|
responseHandler.ContentType(),
|
|
|
|
)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2023-10-19 06:42:34 +02:00
|
|
|
return nil, err
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
slog.Debug("Searched icon from HTML document",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
slog.String("icon_urls", strings.Join(iconURLs, ",")),
|
|
|
|
)
|
|
|
|
|
|
|
|
for _, iconURL := range iconURLs {
|
|
|
|
if strings.HasPrefix(iconURL, "data:") {
|
|
|
|
slog.Debug("Found icon with data URL",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
)
|
|
|
|
return parseImageDataURL(iconURL)
|
|
|
|
}
|
|
|
|
|
|
|
|
iconURL, err = urllib.AbsoluteURL(f.websiteURL, iconURL)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(`icon: unable to convert icon URL to absolute URL: %w`, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if icon, err := f.DownloadIcon(iconURL); err != nil {
|
|
|
|
slog.Debug("Unable to download icon from HTML document",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
slog.String("icon_url", iconURL),
|
|
|
|
slog.Any("error", err),
|
|
|
|
)
|
|
|
|
} else if icon != nil {
|
|
|
|
slog.Debug("Found icon from HTML document",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
slog.String("icon_url", iconURL),
|
|
|
|
)
|
|
|
|
return icon, nil
|
|
|
|
}
|
2023-09-09 23:18:39 +02:00
|
|
|
}
|
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
return nil, nil
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2023-10-19 06:42:34 +02:00
|
|
|
func (f *IconFinder) DownloadIcon(iconURL string) (*model.Icon, error) {
|
|
|
|
slog.Debug("Downloading icon",
|
|
|
|
slog.String("website_url", f.websiteURL),
|
|
|
|
slog.String("icon_url", iconURL),
|
|
|
|
)
|
|
|
|
|
2023-10-22 04:50:29 +02:00
|
|
|
responseHandler := fetcher.NewResponseHandler(f.requestBuilder.ExecuteRequest(iconURL))
|
|
|
|
defer responseHandler.Close()
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-10-22 04:50:29 +02:00
|
|
|
if localizedError := responseHandler.LocalizedError(); localizedError != nil {
|
|
|
|
return nil, fmt.Errorf("icon: unable to download website icon: %w", localizedError.Error())
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2023-10-22 04:50:29 +02:00
|
|
|
responseBody, localizedError := responseHandler.ReadBody(config.Opts.HTTPClientMaxBodySize())
|
|
|
|
if localizedError != nil {
|
|
|
|
return nil, fmt.Errorf("icon: unable to read response body: %w", localizedError.Error())
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
icon := &model.Icon{
|
2023-10-22 04:50:29 +02:00
|
|
|
Hash: crypto.HashFromBytes(responseBody),
|
|
|
|
MimeType: responseHandler.ContentType(),
|
|
|
|
Content: responseBody,
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return icon, nil
|
|
|
|
}
|
2017-12-23 04:01:39 +01:00
|
|
|
|
2023-12-02 01:27:18 +01:00
|
|
|
func findIconURLsFromHTMLDocument(body io.Reader, contentType string) ([]string, error) {
|
2023-10-19 06:42:34 +02:00
|
|
|
queries := []string{
|
2024-02-27 01:40:34 +01:00
|
|
|
"link[rel='icon' i]",
|
|
|
|
"link[rel='shortcut icon' i]",
|
|
|
|
"link[rel='icon shortcut' i]",
|
|
|
|
"link[rel='apple-touch-icon-precomposed.png']",
|
2023-10-19 06:42:34 +02:00
|
|
|
}
|
|
|
|
|
2024-03-20 20:44:41 +01:00
|
|
|
htmlDocumentReader, err := charset.NewReader(body, contentType)
|
2023-12-02 01:27:18 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("icon: unable to create charset reader: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
doc, err := goquery.NewDocumentFromReader(htmlDocumentReader)
|
2023-10-19 06:42:34 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("icon: unable to read document: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var iconURLs []string
|
|
|
|
for _, query := range queries {
|
|
|
|
slog.Debug("Searching icon URL in HTML document", slog.String("query", query))
|
|
|
|
|
|
|
|
doc.Find(query).Each(func(i int, s *goquery.Selection) {
|
|
|
|
if href, exists := s.Attr("href"); exists {
|
2024-02-27 01:40:34 +01:00
|
|
|
if iconURL := strings.TrimSpace(href); iconURL != "" {
|
|
|
|
iconURLs = append(iconURLs, iconURL)
|
|
|
|
slog.Debug("Found icon URL in HTML document",
|
|
|
|
slog.String("query", query),
|
|
|
|
slog.String("icon_url", iconURL))
|
|
|
|
}
|
2023-10-19 06:42:34 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return iconURLs, nil
|
|
|
|
}
|
|
|
|
|
2022-03-26 06:05:19 +01:00
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs#syntax
|
2024-02-27 01:40:34 +01:00
|
|
|
// data:[<mediatype>][;encoding],<data>
|
|
|
|
// we consider <mediatype> to be mandatory, and it has to start with `image/`.
|
|
|
|
// we consider `base64`, `utf8` and the empty string to be the only valid encodings
|
2017-12-23 04:01:39 +01:00
|
|
|
func parseImageDataURL(value string) (*model.Icon, error) {
|
2024-02-27 01:40:34 +01:00
|
|
|
re := regexp.MustCompile(`^data:` +
|
|
|
|
`(?P<mediatype>image/[^;,]+)` +
|
|
|
|
`(?:;(?P<encoding>base64|utf8))?` +
|
|
|
|
`,(?P<data>.+)$`)
|
|
|
|
|
|
|
|
matches := re.FindStringSubmatch(value)
|
|
|
|
if matches == nil {
|
|
|
|
return nil, fmt.Errorf(`icon: invalid data URL %q`, value)
|
2017-12-23 04:01:39 +01:00
|
|
|
}
|
|
|
|
|
2024-02-27 01:40:34 +01:00
|
|
|
mediaType := matches[re.SubexpIndex("mediatype")]
|
|
|
|
encoding := matches[re.SubexpIndex("encoding")]
|
|
|
|
data := matches[re.SubexpIndex("data")]
|
2017-12-23 04:01:39 +01:00
|
|
|
|
2022-03-26 06:05:19 +01:00
|
|
|
var blob []byte
|
|
|
|
switch encoding {
|
|
|
|
case "base64":
|
|
|
|
var err error
|
|
|
|
blob, err = base64.StdEncoding.DecodeString(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(`icon: invalid data %q (%v)`, value, err)
|
|
|
|
}
|
|
|
|
case "":
|
2023-08-14 04:09:01 +02:00
|
|
|
decodedData, err := url.QueryUnescape(data)
|
2022-03-26 06:05:19 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf(`icon: unable to decode data URL %q`, value)
|
|
|
|
}
|
|
|
|
blob = []byte(decodedData)
|
2023-10-19 05:11:24 +02:00
|
|
|
case "utf8":
|
|
|
|
blob = []byte(data)
|
2017-12-23 04:01:39 +01:00
|
|
|
}
|
|
|
|
|
2024-02-27 01:40:34 +01:00
|
|
|
return &model.Icon{
|
2018-01-03 04:15:08 +01:00
|
|
|
Hash: crypto.HashFromBytes(blob),
|
2017-12-23 04:01:39 +01:00
|
|
|
Content: blob,
|
2022-03-26 06:05:19 +01:00
|
|
|
MimeType: mediaType,
|
2024-02-27 01:40:34 +01:00
|
|
|
}, nil
|
2017-12-23 04:01:39 +01:00
|
|
|
}
|