jellyfin-server/MediaBrowser.Api/WeatherService.cs

42 lines
1.3 KiB
C#
Raw Normal View History

2013-03-07 05:34:00 +00:00
using MediaBrowser.Controller;
2013-02-21 01:33:05 +00:00
using MediaBrowser.Model.Weather;
using ServiceStack.ServiceHost;
using System.Linq;
using System.Threading;
namespace MediaBrowser.Api
{
/// <summary>
/// Class Weather
/// </summary>
[Route("/Weather", "GET")]
[Api(Description = "Gets weather information for a given location")]
2013-02-21 01:33:05 +00:00
public class GetWeather : IReturn<WeatherInfo>
{
/// <summary>
/// Gets or sets the location.
/// </summary>
/// <value>The location.</value>
2013-03-05 05:08:27 +00:00
[ApiMember(Name = "Location", Description = "Us zip / City, State, Country / City, Country", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "GET")]
2013-02-21 01:33:05 +00:00
public string Location { get; set; }
}
/// <summary>
/// Class WeatherService
/// </summary>
2013-03-16 05:52:33 +00:00
public class WeatherService : BaseApiService
2013-02-21 01:33:05 +00:00
{
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>System.Object.</returns>
public object Get(GetWeather request)
{
2013-03-04 05:43:06 +00:00
var result = Kernel.Instance.WeatherProviders.First().GetWeatherInfoAsync(request.Location, CancellationToken.None).Result;
2013-02-21 01:33:05 +00:00
return ToOptimizedResult(result);
}
}
}