jellyfin/MediaBrowser.Api/NewsService.cs

48 lines
1.6 KiB
C#
Raw Normal View History

2014-01-18 22:52:01 +01:00
using MediaBrowser.Controller.News;
using MediaBrowser.Model.News;
using MediaBrowser.Model.Querying;
using ServiceStack;
namespace MediaBrowser.Api
{
2014-03-23 21:07:02 +01:00
[Route("/News/Product", "GET", Summary = "Gets the latest product news.")]
2014-01-18 22:52:01 +01:00
public class GetProductNews : IReturn<QueryResult<NewsItem>>
{
/// <summary>
/// Skips over a given number of items within the results. Use for paging.
/// </summary>
/// <value>The start index.</value>
[ApiMember(Name = "StartIndex", Description = "Optional. The record index to start at. All items with a lower index will be dropped from the results.", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? StartIndex { get; set; }
/// <summary>
/// The maximum number of items to return
/// </summary>
/// <value>The limit.</value>
[ApiMember(Name = "Limit", Description = "Optional. The maximum number of records to return", IsRequired = false, DataType = "int", ParameterType = "query", Verb = "GET")]
public int? Limit { get; set; }
}
2014-03-23 21:07:02 +01:00
2014-01-18 22:52:01 +01:00
public class NewsService : BaseApiService
{
private readonly INewsService _newsService;
public NewsService(INewsService newsService)
{
_newsService = newsService;
}
public object Get(GetProductNews request)
{
var result = _newsService.GetProductNews(new NewsQuery
{
2014-03-23 21:07:02 +01:00
StartIndex = request.StartIndex,
Limit = request.Limit
2014-01-18 22:52:01 +01:00
2014-01-19 05:25:01 +01:00
});
2014-01-18 22:52:01 +01:00
return ToOptimizedSerializedResultUsingCache(result);
2014-01-18 22:52:01 +01:00
}
}
}