Simplify internal/reader/icon/finder.go
- Use a simple regex to parse data uri instead of a hand-rolled parser, and document what fields are considered mandatory. - Use case-insensitive matching to find (fav)icons, instead of doing the same query twice with different letter cases - Add 'apple-touch-icon-precomposed.png' as a fallback favicon - Reorder the queries to have i`con` first, since it seems to be the most popular one. It used to be last, meaning that pages had to be parsed completely 4 times, instead of one now. - Minor factorisation in findIconURLsFromHTMLDocument
This commit is contained in:
parent
040938ff6d
commit
06e256e5ef
1 changed files with 26 additions and 50 deletions
|
@ -9,6 +9,7 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"log/slog"
|
"log/slog"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
"regexp"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"miniflux.app/v2/internal/config"
|
"miniflux.app/v2/internal/config"
|
||||||
|
@ -184,10 +185,10 @@ func (f *IconFinder) DownloadIcon(iconURL string) (*model.Icon, error) {
|
||||||
|
|
||||||
func findIconURLsFromHTMLDocument(body io.Reader, contentType string) ([]string, error) {
|
func findIconURLsFromHTMLDocument(body io.Reader, contentType string) ([]string, error) {
|
||||||
queries := []string{
|
queries := []string{
|
||||||
"link[rel='shortcut icon']",
|
"link[rel='icon' i]",
|
||||||
"link[rel='Shortcut Icon']",
|
"link[rel='shortcut icon' i]",
|
||||||
"link[rel='icon shortcut']",
|
"link[rel='icon shortcut' i]",
|
||||||
"link[rel='icon']",
|
"link[rel='apple-touch-icon-precomposed.png']",
|
||||||
}
|
}
|
||||||
|
|
||||||
htmlDocumentReader, err := encoding.CharsetReaderFromContentType(contentType, body)
|
htmlDocumentReader, err := encoding.CharsetReaderFromContentType(contentType, body)
|
||||||
|
@ -205,19 +206,14 @@ func findIconURLsFromHTMLDocument(body io.Reader, contentType string) ([]string,
|
||||||
slog.Debug("Searching icon URL in HTML document", slog.String("query", query))
|
slog.Debug("Searching icon URL in HTML document", slog.String("query", query))
|
||||||
|
|
||||||
doc.Find(query).Each(func(i int, s *goquery.Selection) {
|
doc.Find(query).Each(func(i int, s *goquery.Selection) {
|
||||||
var iconURL string
|
|
||||||
|
|
||||||
if href, exists := s.Attr("href"); exists {
|
if href, exists := s.Attr("href"); exists {
|
||||||
iconURL = strings.TrimSpace(href)
|
if iconURL := strings.TrimSpace(href); iconURL != "" {
|
||||||
}
|
|
||||||
|
|
||||||
if iconURL != "" {
|
|
||||||
iconURLs = append(iconURLs, iconURL)
|
iconURLs = append(iconURLs, iconURL)
|
||||||
|
|
||||||
slog.Debug("Found icon URL in HTML document",
|
slog.Debug("Found icon URL in HTML document",
|
||||||
slog.String("query", query),
|
slog.String("query", query),
|
||||||
slog.String("icon_url", iconURL))
|
slog.String("icon_url", iconURL))
|
||||||
}
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -225,35 +221,23 @@ func findIconURLsFromHTMLDocument(body io.Reader, contentType string) ([]string,
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs#syntax
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs#syntax
|
||||||
// data:[<mediatype>][;base64],<data>
|
// 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) {
|
func parseImageDataURL(value string) (*model.Icon, error) {
|
||||||
var mediaType string
|
re := regexp.MustCompile(`^data:` +
|
||||||
var encoding string
|
`(?P<mediatype>image/[^;,]+)` +
|
||||||
|
`(?:;(?P<encoding>base64|utf8))?` +
|
||||||
|
`,(?P<data>.+)$`)
|
||||||
|
|
||||||
if !strings.HasPrefix(value, "data:") {
|
matches := re.FindStringSubmatch(value)
|
||||||
return nil, fmt.Errorf(`icon: invalid data URL (missing data:) %q`, value)
|
if matches == nil {
|
||||||
|
return nil, fmt.Errorf(`icon: invalid data URL %q`, value)
|
||||||
}
|
}
|
||||||
|
|
||||||
value = value[5:]
|
mediaType := matches[re.SubexpIndex("mediatype")]
|
||||||
|
encoding := matches[re.SubexpIndex("encoding")]
|
||||||
comma := strings.Index(value, ",")
|
data := matches[re.SubexpIndex("data")]
|
||||||
if comma < 0 {
|
|
||||||
return nil, fmt.Errorf(`icon: invalid data URL (no comma) %q`, value)
|
|
||||||
}
|
|
||||||
|
|
||||||
data := value[comma+1:]
|
|
||||||
semicolon := strings.Index(value[0:comma], ";")
|
|
||||||
|
|
||||||
if semicolon > 0 {
|
|
||||||
mediaType = value[0:semicolon]
|
|
||||||
encoding = value[semicolon+1 : comma]
|
|
||||||
} else {
|
|
||||||
mediaType = value[0:comma]
|
|
||||||
}
|
|
||||||
|
|
||||||
if !strings.HasPrefix(mediaType, "image/") {
|
|
||||||
return nil, fmt.Errorf(`icon: invalid media type %q`, mediaType)
|
|
||||||
}
|
|
||||||
|
|
||||||
var blob []byte
|
var blob []byte
|
||||||
switch encoding {
|
switch encoding {
|
||||||
|
@ -271,19 +255,11 @@ func parseImageDataURL(value string) (*model.Icon, error) {
|
||||||
blob = []byte(decodedData)
|
blob = []byte(decodedData)
|
||||||
case "utf8":
|
case "utf8":
|
||||||
blob = []byte(data)
|
blob = []byte(data)
|
||||||
default:
|
|
||||||
return nil, fmt.Errorf(`icon: unsupported data URL encoding %q`, value)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(blob) == 0 {
|
return &model.Icon{
|
||||||
return nil, fmt.Errorf(`icon: empty data URL %q`, value)
|
|
||||||
}
|
|
||||||
|
|
||||||
icon := &model.Icon{
|
|
||||||
Hash: crypto.HashFromBytes(blob),
|
Hash: crypto.HashFromBytes(blob),
|
||||||
Content: blob,
|
Content: blob,
|
||||||
MimeType: mediaType,
|
MimeType: mediaType,
|
||||||
}
|
}, nil
|
||||||
|
|
||||||
return icon, nil
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue