| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package icon // import "miniflux.app/v2/internal/reader/icon"
- import (
- "bytes"
- "encoding/base64"
- "fmt"
- "image"
- "image/gif"
- "image/jpeg"
- "image/png"
- "io"
- "log/slog"
- "net/url"
- "regexp"
- "slices"
- "strings"
- "miniflux.app/v2/internal/config"
- "miniflux.app/v2/internal/crypto"
- "miniflux.app/v2/internal/model"
- "miniflux.app/v2/internal/reader/encoding"
- "miniflux.app/v2/internal/reader/fetcher"
- "miniflux.app/v2/internal/urllib"
- "github.com/PuerkitoBio/goquery"
- "golang.org/x/image/draw"
- )
- type IconFinder struct {
- requestBuilder *fetcher.RequestBuilder
- websiteURL string
- feedIconURL string
- }
- func NewIconFinder(requestBuilder *fetcher.RequestBuilder, websiteURL, feedIconURL string) *IconFinder {
- return &IconFinder{
- requestBuilder: requestBuilder,
- websiteURL: websiteURL,
- feedIconURL: feedIconURL,
- }
- }
- 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
- }
- }
- 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
- }
- 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")
- if err != nil {
- return nil, fmt.Errorf(`icon: unable to join root URL and path: %w`, err)
- }
- icon, err := f.DownloadIcon(iconURL)
- if err != nil {
- return nil, err
- }
- return icon, nil
- }
- 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),
- )
- 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)
- }
- return f.DownloadIcon(iconURL)
- }
- func (f *IconFinder) FetchIconsFromHTMLDocument() (*model.Icon, error) {
- slog.Debug("Searching icons from HTML document",
- slog.String("website_url", f.websiteURL),
- )
- 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())
- }
- iconURLs, err := findIconURLsFromHTMLDocument(
- responseHandler.Body(config.Opts.HTTPClientMaxBodySize()),
- responseHandler.ContentType(),
- )
- if err != nil {
- return nil, err
- }
- 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
- }
- }
- return nil, nil
- }
- func (f *IconFinder) DownloadIcon(iconURL string) (*model.Icon, error) {
- slog.Debug("Downloading icon",
- slog.String("website_url", f.websiteURL),
- slog.String("icon_url", iconURL),
- )
- responseHandler := fetcher.NewResponseHandler(f.requestBuilder.ExecuteRequest(iconURL))
- defer responseHandler.Close()
- if localizedError := responseHandler.LocalizedError(); localizedError != nil {
- return nil, fmt.Errorf("icon: unable to download website icon: %w", localizedError.Error())
- }
- responseBody, localizedError := responseHandler.ReadBody(config.Opts.HTTPClientMaxBodySize())
- if localizedError != nil {
- return nil, fmt.Errorf("icon: unable to read response body: %w", localizedError.Error())
- }
- icon := &model.Icon{
- Hash: crypto.HashFromBytes(responseBody),
- MimeType: responseHandler.ContentType(),
- Content: responseBody,
- }
- icon = resizeIcon(icon)
- return icon, nil
- }
- func resizeIcon(icon *model.Icon) *model.Icon {
- r := bytes.NewReader(icon.Content)
- if !slices.Contains([]string{"image/jpeg", "image/png", "image/gif"}, icon.MimeType) {
- slog.Info("icon isn't a png/gif/jpeg/ico, can't resize", slog.String("mimetype", icon.MimeType))
- return icon
- }
- // Don't resize icons that we can't decode, or that already have the right size.
- config, _, err := image.DecodeConfig(r)
- if err != nil {
- slog.Warn("unable to decode the metadata of the icon", slog.Any("error", err))
- return icon
- }
- if config.Height <= 32 && config.Width <= 32 {
- slog.Debug("icon don't need to be rescaled", slog.Int("height", config.Height), slog.Int("width", config.Width))
- return icon
- }
- r.Seek(0, io.SeekStart)
- var src image.Image
- switch icon.MimeType {
- case "image/jpeg":
- src, err = jpeg.Decode(r)
- case "image/png":
- src, err = png.Decode(r)
- case "image/gif":
- src, err = gif.Decode(r)
- }
- if err != nil || src == nil {
- slog.Warn("unable to decode the icon", slog.Any("error", err))
- return icon
- }
- dst := image.NewRGBA(image.Rect(0, 0, 32, 32))
- draw.BiLinear.Scale(dst, dst.Rect, src, src.Bounds(), draw.Over, nil)
- var b bytes.Buffer
- if err = png.Encode(io.Writer(&b), dst); err != nil {
- slog.Warn("unable to encode the new icon", slog.Any("error", err))
- }
- icon.Content = b.Bytes()
- icon.MimeType = "image/png"
- return icon
- }
- func findIconURLsFromHTMLDocument(body io.Reader, contentType string) ([]string, error) {
- queries := []string{
- "link[rel='icon' i]",
- "link[rel='shortcut icon' i]",
- "link[rel='icon shortcut' i]",
- "link[rel='apple-touch-icon-precomposed.png']",
- }
- htmlDocumentReader, err := encoding.NewCharsetReader(body, contentType)
- if err != nil {
- return nil, fmt.Errorf("icon: unable to create charset reader: %w", err)
- }
- doc, err := goquery.NewDocumentFromReader(htmlDocumentReader)
- 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 {
- 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))
- }
- }
- })
- }
- return iconURLs, nil
- }
- // https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs#syntax
- // 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
- func parseImageDataURL(value string) (*model.Icon, error) {
- 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)
- }
- mediaType := matches[re.SubexpIndex("mediatype")]
- encoding := matches[re.SubexpIndex("encoding")]
- data := matches[re.SubexpIndex("data")]
- 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 "":
- decodedData, err := url.QueryUnescape(data)
- if err != nil {
- return nil, fmt.Errorf(`icon: unable to decode data URL %q`, value)
- }
- blob = []byte(decodedData)
- case "utf8":
- blob = []byte(data)
- }
- return &model.Icon{
- Hash: crypto.HashFromBytes(blob),
- Content: blob,
- MimeType: mediaType,
- }, nil
- }
|