127 lines
3.4 KiB
Go
127 lines
3.4 KiB
Go
// 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 subscription // import "miniflux.app/reader/subscription"
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"time"
|
|
|
|
"miniflux.app/errors"
|
|
"miniflux.app/http/client"
|
|
"miniflux.app/logger"
|
|
"miniflux.app/reader/feed"
|
|
"miniflux.app/timer"
|
|
"miniflux.app/url"
|
|
|
|
"github.com/PuerkitoBio/goquery"
|
|
)
|
|
|
|
var (
|
|
errConnectionFailure = "Unable to open this link: %v"
|
|
errUnreadableDoc = "Unable to analyze this page: %v"
|
|
errEmptyBody = "This web page is empty"
|
|
errNotAuthorized = "You are not authorized to access this resource (invalid username/password)"
|
|
errServerFailure = "Unable to fetch this resource (Status Code = %d)"
|
|
)
|
|
|
|
// FindSubscriptions downloads and try to find one or more subscriptions from an URL.
|
|
func FindSubscriptions(websiteURL, userAgent, username, password string) (Subscriptions, error) {
|
|
defer timer.ExecutionTime(time.Now(), fmt.Sprintf("[FindSubscriptions] url=%s", websiteURL))
|
|
|
|
clt := client.New(websiteURL)
|
|
clt.WithCredentials(username, password)
|
|
clt.WithUserAgent(userAgent)
|
|
response, err := clt.Get()
|
|
if err != nil {
|
|
if _, ok := err.(errors.LocalizedError); ok {
|
|
return nil, err
|
|
}
|
|
return nil, errors.NewLocalizedError(errConnectionFailure, err)
|
|
}
|
|
|
|
if response.IsNotAuthorized() {
|
|
return nil, errors.NewLocalizedError(errNotAuthorized)
|
|
}
|
|
|
|
if response.HasServerFailure() {
|
|
return nil, errors.NewLocalizedError(errServerFailure, response.StatusCode)
|
|
}
|
|
|
|
// Content-Length = -1 when no Content-Length header is sent
|
|
if response.ContentLength == 0 {
|
|
return nil, errors.NewLocalizedError(errEmptyBody)
|
|
}
|
|
|
|
body, err := response.NormalizeBodyEncoding()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var buffer bytes.Buffer
|
|
size, _ := io.Copy(&buffer, body)
|
|
if size == 0 {
|
|
return nil, errors.NewLocalizedError(errEmptyBody)
|
|
}
|
|
|
|
reader := bytes.NewReader(buffer.Bytes())
|
|
|
|
if format := feed.DetectFeedFormat(reader); format != feed.FormatUnknown {
|
|
var subscriptions Subscriptions
|
|
subscriptions = append(subscriptions, &Subscription{
|
|
Title: response.EffectiveURL,
|
|
URL: response.EffectiveURL,
|
|
Type: format,
|
|
})
|
|
|
|
return subscriptions, nil
|
|
}
|
|
|
|
reader.Seek(0, io.SeekStart)
|
|
return parseDocument(response.EffectiveURL, bytes.NewReader(buffer.Bytes()))
|
|
}
|
|
|
|
func parseDocument(websiteURL string, data io.Reader) (Subscriptions, error) {
|
|
var subscriptions Subscriptions
|
|
queries := map[string]string{
|
|
"link[type='application/rss+xml']": "rss",
|
|
"link[type='application/atom+xml']": "atom",
|
|
"link[type='application/json']": "json",
|
|
}
|
|
|
|
doc, err := goquery.NewDocumentFromReader(data)
|
|
if err != nil {
|
|
return nil, errors.NewLocalizedError(errUnreadableDoc, err)
|
|
}
|
|
|
|
for query, kind := range queries {
|
|
doc.Find(query).Each(func(i int, s *goquery.Selection) {
|
|
subscription := new(Subscription)
|
|
subscription.Type = kind
|
|
|
|
if title, exists := s.Attr("title"); exists {
|
|
subscription.Title = title
|
|
} else {
|
|
subscription.Title = "Feed"
|
|
}
|
|
|
|
if feedURL, exists := s.Attr("href"); exists {
|
|
subscription.URL, _ = url.AbsoluteURL(websiteURL, feedURL)
|
|
}
|
|
|
|
if subscription.Title == "" {
|
|
subscription.Title = subscription.URL
|
|
}
|
|
|
|
if subscription.URL != "" {
|
|
logger.Debug("[FindSubscriptions] %s", subscription)
|
|
subscriptions = append(subscriptions, subscription)
|
|
}
|
|
})
|
|
}
|
|
|
|
return subscriptions, nil
|
|
}
|