2017-11-20 06:10:04 +01:00
|
|
|
// 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.
|
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
package model // import "miniflux.app/model"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2021-01-05 00:32:32 +01:00
|
|
|
// Entry statuses and default sorting order.
|
2017-11-20 06:10:04 +01:00
|
|
|
const (
|
|
|
|
EntryStatusUnread = "unread"
|
|
|
|
EntryStatusRead = "read"
|
|
|
|
EntryStatusRemoved = "removed"
|
|
|
|
DefaultSortingOrder = "published_at"
|
2017-12-03 02:04:01 +01:00
|
|
|
DefaultSortingDirection = "asc"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2017-11-22 00:46:59 +01:00
|
|
|
// Entry represents a feed item in the system.
|
2017-11-20 06:10:04 +01:00
|
|
|
type Entry struct {
|
2018-04-07 22:50:45 +02:00
|
|
|
ID int64 `json:"id"`
|
|
|
|
UserID int64 `json:"user_id"`
|
|
|
|
FeedID int64 `json:"feed_id"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
Hash string `json:"hash"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
URL string `json:"url"`
|
2018-04-07 22:56:11 +02:00
|
|
|
CommentsURL string `json:"comments_url"`
|
2018-04-07 22:50:45 +02:00
|
|
|
Date time.Time `json:"published_at"`
|
2020-11-30 02:04:18 +01:00
|
|
|
CreatedAt time.Time `json:"created_at"`
|
2021-05-26 07:13:38 +02:00
|
|
|
ChangedAt time.Time `json:"changed_at"`
|
2018-04-07 22:50:45 +02:00
|
|
|
Content string `json:"content"`
|
|
|
|
Author string `json:"author"`
|
2019-10-05 13:30:25 +02:00
|
|
|
ShareCode string `json:"share_code"`
|
2018-04-07 22:50:45 +02:00
|
|
|
Starred bool `json:"starred"`
|
2020-11-19 02:29:40 +01:00
|
|
|
ReadingTime int `json:"reading_time"`
|
2021-01-05 00:32:32 +01:00
|
|
|
Enclosures EnclosureList `json:"enclosures"`
|
2018-04-07 22:50:45 +02:00
|
|
|
Feed *Feed `json:"feed,omitempty"`
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2017-11-22 00:46:59 +01:00
|
|
|
// Entries represents a list of entries.
|
2017-11-20 06:10:04 +01:00
|
|
|
type Entries []*Entry
|
|
|
|
|
2021-01-05 00:32:32 +01:00
|
|
|
// EntriesStatusUpdateRequest represents a request to change entries status.
|
|
|
|
type EntriesStatusUpdateRequest struct {
|
|
|
|
EntryIDs []int64 `json:"entry_ids"`
|
|
|
|
Status string `json:"status"`
|
2017-11-27 00:07:59 +01:00
|
|
|
}
|