1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Update/UpdatePackageProvider.cs

46 lines
1.3 KiB
C#
Raw Normal View History

2013-04-14 02:57:10 +03:00
using System;
using System.Collections.Generic;
2013-04-14 02:57:10 +03:00
using NzbDrone.Common;
2013-09-11 09:33:47 +03:00
using RestSharp;
using NzbDrone.Core.Rest;
2013-04-14 02:57:10 +03:00
namespace NzbDrone.Core.Update
{
public interface IUpdatePackageProvider
2013-04-14 02:57:10 +03:00
{
2013-09-11 09:33:47 +03:00
UpdatePackage GetLatestUpdate(string branch, Version currentVersion);
List<UpdatePackage> GetRecentUpdates(string branch);
2013-04-14 02:57:10 +03:00
}
public class UpdatePackageProvider : IUpdatePackageProvider
2013-04-14 02:57:10 +03:00
{
2013-09-11 09:33:47 +03:00
public UpdatePackage GetLatestUpdate(string branch, Version currentVersion)
2013-04-14 02:57:10 +03:00
{
2013-09-11 09:33:47 +03:00
var restClient = new RestClient(Services.RootUrl);
2013-04-14 02:57:10 +03:00
2013-09-11 09:33:47 +03:00
var request = new RestRequest("/v1/update/{branch}");
request.AddParameter("version", currentVersion);
request.AddUrlSegment("branch", branch);
var update = restClient.ExecuteAndValidate<UpdatePackageAvailable>(request);
2013-04-14 02:57:10 +03:00
2013-08-24 05:21:12 +03:00
if (!update.Available) return null;
2013-04-14 02:57:10 +03:00
2013-08-24 05:21:12 +03:00
return update.UpdatePackage;
}
public List<UpdatePackage> GetRecentUpdates(string branch)
{
var restClient = new RestClient(Services.RootUrl);
var request = new RestRequest("/v1/update/{branch}/changes");
request.AddUrlSegment("branch", branch);
var updates = restClient.ExecuteAndValidate<List<UpdatePackage>>(request);
return updates;
}
2013-04-14 02:57:10 +03:00
}
}