| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- // Copyright 2017 Frédéric Guillot. All rights reserved.
- // Use of this source code is governed by the Apache 2.0
- // license that can be found in the LICENSE file.
- package icon // import "miniflux.app/reader/icon"
- import (
- "encoding/base64"
- "fmt"
- "io"
- "strings"
- stdlib_url "net/url"
- "miniflux.app/config"
- "miniflux.app/crypto"
- "miniflux.app/http/client"
- "miniflux.app/logger"
- "miniflux.app/model"
- "miniflux.app/url"
- "github.com/PuerkitoBio/goquery"
- )
- // FindIcon try to find the website's icon.
- func FindIcon(websiteURL, userAgent string, fetchViaProxy, allowSelfSignedCertificates bool) (*model.Icon, error) {
- rootURL := url.RootURL(websiteURL)
- logger.Debug("[FindIcon] Trying to find an icon: rootURL=%q websiteURL=%q userAgent=%q", rootURL, websiteURL, userAgent)
- clt := client.NewClientWithConfig(rootURL, config.Opts)
- clt.WithUserAgent(userAgent)
- clt.AllowSelfSignedCertificates = allowSelfSignedCertificates
- if fetchViaProxy {
- clt.WithProxy()
- }
- response, err := clt.Get()
- if err != nil {
- return nil, fmt.Errorf("icon: unable to download website index page: %v", err)
- }
- if response.HasServerFailure() {
- return nil, fmt.Errorf("icon: unable to download website index page: status=%d", response.StatusCode)
- }
- iconURL, err := parseDocument(rootURL, response.Body)
- if err != nil {
- return nil, err
- }
- if strings.HasPrefix(iconURL, "data:") {
- return parseImageDataURL(iconURL)
- }
- logger.Debug("[FindIcon] Fetching icon => %s", iconURL)
- icon, err := downloadIcon(iconURL, userAgent, fetchViaProxy, allowSelfSignedCertificates)
- if err != nil {
- return nil, err
- }
- return icon, nil
- }
- func parseDocument(websiteURL string, data io.Reader) (string, error) {
- queries := []string{
- "link[rel='shortcut icon']",
- "link[rel='Shortcut Icon']",
- "link[rel='icon shortcut']",
- "link[rel='icon']",
- }
- doc, err := goquery.NewDocumentFromReader(data)
- if err != nil {
- return "", fmt.Errorf("icon: unable to read document: %v", err)
- }
- var iconURL string
- for _, query := range queries {
- doc.Find(query).Each(func(i int, s *goquery.Selection) {
- if href, exists := s.Attr("href"); exists {
- iconURL = strings.TrimSpace(href)
- }
- })
- if iconURL != "" {
- break
- }
- }
- if iconURL == "" {
- iconURL = url.RootURL(websiteURL) + "favicon.ico"
- } else {
- iconURL, _ = url.AbsoluteURL(websiteURL, iconURL)
- }
- return iconURL, nil
- }
- func downloadIcon(iconURL, userAgent string, fetchViaProxy, allowSelfSignedCertificates bool) (*model.Icon, error) {
- clt := client.NewClientWithConfig(iconURL, config.Opts)
- clt.WithUserAgent(userAgent)
- clt.AllowSelfSignedCertificates = allowSelfSignedCertificates
- if fetchViaProxy {
- clt.WithProxy()
- }
- response, err := clt.Get()
- if err != nil {
- return nil, fmt.Errorf("icon: unable to download iconURL: %v", err)
- }
- if response.HasServerFailure() {
- return nil, fmt.Errorf("icon: unable to download icon: status=%d", response.StatusCode)
- }
- body, err := io.ReadAll(response.Body)
- if err != nil {
- return nil, fmt.Errorf("icon: unable to read downloaded icon: %v", err)
- }
- if len(body) == 0 {
- return nil, fmt.Errorf("icon: downloaded icon is empty, iconURL=%s", iconURL)
- }
- icon := &model.Icon{
- Hash: crypto.HashFromBytes(body),
- MimeType: response.ContentType,
- Content: body,
- }
- return icon, nil
- }
- // https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs#syntax
- // data:[<mediatype>][;base64],<data>
- func parseImageDataURL(value string) (*model.Icon, error) {
- var mediaType string
- var encoding string
- if !strings.HasPrefix(value, "data:") {
- return nil, fmt.Errorf(`icon: invalid data URL (missing data:) %q`, value)
- }
- value = value[5:]
- comma := strings.Index(value, ",")
- 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
- 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 := stdlib_url.QueryUnescape(data)
- if err != nil {
- return nil, fmt.Errorf(`icon: unable to decode data URL %q`, value)
- }
- blob = []byte(decodedData)
- default:
- return nil, fmt.Errorf(`icon: unsupported data URL encoding %q`, value)
- }
- if len(blob) == 0 {
- return nil, fmt.Errorf(`icon: empty data URL %q`, value)
- }
- icon := &model.Icon{
- Hash: crypto.HashFromBytes(blob),
- Content: blob,
- MimeType: mediaType,
- }
- return icon, nil
- }
|