| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- // 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 json // import "miniflux.app/reader/json"
- import (
- "strings"
- "time"
- "miniflux.app/crypto"
- "miniflux.app/logger"
- "miniflux.app/model"
- "miniflux.app/reader/date"
- "miniflux.app/reader/sanitizer"
- "miniflux.app/url"
- )
- type jsonFeed struct {
- Version string `json:"version"`
- Title string `json:"title"`
- SiteURL string `json:"home_page_url"`
- FeedURL string `json:"feed_url"`
- Authors []jsonAuthor `json:"authors"`
- Author jsonAuthor `json:"author"`
- Items []jsonItem `json:"items"`
- }
- type jsonAuthor struct {
- Name string `json:"name"`
- URL string `json:"url"`
- }
- type jsonItem struct {
- ID string `json:"id"`
- URL string `json:"url"`
- Title string `json:"title"`
- Summary string `json:"summary"`
- Text string `json:"content_text"`
- HTML string `json:"content_html"`
- DatePublished string `json:"date_published"`
- DateModified string `json:"date_modified"`
- Authors []jsonAuthor `json:"authors"`
- Author jsonAuthor `json:"author"`
- Attachments []jsonAttachment `json:"attachments"`
- }
- type jsonAttachment struct {
- URL string `json:"url"`
- MimeType string `json:"mime_type"`
- Title string `json:"title"`
- Size int64 `json:"size_in_bytes"`
- Duration int `json:"duration_in_seconds"`
- }
- func (j *jsonFeed) GetAuthor() string {
- if len(j.Authors) > 0 {
- return (getAuthor(j.Authors[0]))
- }
- return getAuthor(j.Author)
- }
- func (j *jsonFeed) Transform(baseURL string) *model.Feed {
- var err error
- feed := new(model.Feed)
- feed.FeedURL, err = url.AbsoluteURL(baseURL, j.FeedURL)
- if err != nil {
- feed.FeedURL = j.FeedURL
- }
- feed.SiteURL, err = url.AbsoluteURL(baseURL, j.SiteURL)
- if err != nil {
- feed.SiteURL = j.SiteURL
- }
- feed.Title = strings.TrimSpace(j.Title)
- if feed.Title == "" {
- feed.Title = feed.SiteURL
- }
- for _, item := range j.Items {
- entry := item.Transform()
- entryURL, err := url.AbsoluteURL(feed.SiteURL, entry.URL)
- if err == nil {
- entry.URL = entryURL
- }
- if entry.Author == "" {
- entry.Author = j.GetAuthor()
- }
- feed.Entries = append(feed.Entries, entry)
- }
- return feed
- }
- func (j *jsonItem) GetDate() time.Time {
- for _, value := range []string{j.DatePublished, j.DateModified} {
- if value != "" {
- d, err := date.Parse(value)
- if err != nil {
- logger.Error("json: %v", err)
- return time.Now()
- }
- return d
- }
- }
- return time.Now()
- }
- func (j *jsonItem) GetAuthor() string {
- if len(j.Authors) > 0 {
- return getAuthor(j.Authors[0])
- }
- return getAuthor(j.Author)
- }
- func (j *jsonItem) GetHash() string {
- for _, value := range []string{j.ID, j.URL, j.Text + j.HTML + j.Summary} {
- if value != "" {
- return crypto.Hash(value)
- }
- }
- return ""
- }
- func (j *jsonItem) GetTitle() string {
- if j.Title != "" {
- return j.Title
- }
- for _, value := range []string{j.Summary, j.Text, j.HTML} {
- if value != "" {
- return sanitizer.TruncateHTML(value, 100)
- }
- }
- return j.URL
- }
- func (j *jsonItem) GetContent() string {
- for _, value := range []string{j.HTML, j.Text, j.Summary} {
- if value != "" {
- return value
- }
- }
- return ""
- }
- func (j *jsonItem) GetEnclosures() model.EnclosureList {
- enclosures := make(model.EnclosureList, 0)
- for _, attachment := range j.Attachments {
- if attachment.URL == "" {
- continue
- }
- enclosures = append(enclosures, &model.Enclosure{
- URL: attachment.URL,
- MimeType: attachment.MimeType,
- Size: attachment.Size,
- })
- }
- return enclosures
- }
- func (j *jsonItem) Transform() *model.Entry {
- entry := new(model.Entry)
- entry.URL = j.URL
- entry.Date = j.GetDate()
- entry.Author = j.GetAuthor()
- entry.Hash = j.GetHash()
- entry.Content = j.GetContent()
- entry.Title = strings.TrimSpace(j.GetTitle())
- entry.Enclosures = j.GetEnclosures()
- return entry
- }
- func getAuthor(author jsonAuthor) string {
- if author.Name != "" {
- return strings.TrimSpace(author.Name)
- }
- return ""
- }
|