mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
* Fixed up a localization lookup test case * Refactored some webp to a unified method * Cleaned up some code * Expanded webp conversion for covers to all entities * Code cleanup * Prompt the user when they are about to delete multiple series via bulk actions * Aligned Kavita to OPDS-PS 1.2. * Fixed a bug where clearing metadata filter of series name didn't clear the actual field. * Added some documentation * Refactored how covert covers to webp works. Now we will handle all custom covers for all entities. Volumes and Series will not be touched but instead be updated via a RefreshCovers call. This will fix up the references much faster. * Fixed up the OPDS-PS 1.2 attributes to only show on PS links
62 lines
1.5 KiB
C#
62 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace API.DTOs.OPDS;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[XmlRoot("feed", Namespace = "http://www.w3.org/2005/Atom")]
|
|
public class Feed
|
|
{
|
|
[XmlElement("updated")]
|
|
public string Updated { get; init; } = DateTime.UtcNow.ToString("s");
|
|
|
|
[XmlElement("id")]
|
|
public string Id { get; set; }
|
|
|
|
[XmlElement("title")]
|
|
public string Title { get; set; }
|
|
|
|
[XmlElement("icon")]
|
|
public string Icon { get; set; } = "/favicon.ico";
|
|
|
|
[XmlElement("author")]
|
|
public FeedAuthor Author { get; set; } = new FeedAuthor()
|
|
{
|
|
Name = "Kavita",
|
|
Uri = "https://www.kavitareader.com"
|
|
};
|
|
|
|
[XmlElement("totalResults", Namespace = "http://a9.com/-/spec/opensearch/1.1/")]
|
|
public int? Total { get; set; } = null;
|
|
|
|
[XmlElement("itemsPerPage", Namespace = "http://a9.com/-/spec/opensearch/1.1/")]
|
|
public int? ItemsPerPage { get; set; } = null;
|
|
|
|
[XmlElement("startIndex", Namespace = "http://a9.com/-/spec/opensearch/1.1/")]
|
|
public int? StartIndex { get; set; } = null;
|
|
|
|
[XmlElement("link")]
|
|
public List<FeedLink> Links { get; set; } = new List<FeedLink>() ;
|
|
|
|
[XmlElement("entry")]
|
|
public List<FeedEntry> Entries { get; set; } = new List<FeedEntry>();
|
|
|
|
public bool ShouldSerializeTotal()
|
|
{
|
|
return Total.HasValue;
|
|
}
|
|
|
|
public bool ShouldSerializeItemsPerPage()
|
|
{
|
|
return ItemsPerPage.HasValue;
|
|
}
|
|
|
|
public bool ShouldSerializeStartIndex()
|
|
{
|
|
return StartIndex.HasValue;
|
|
}
|
|
}
|