You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Common;
|
|
using RestSharp;
|
|
using NzbDrone.Core.Rest;
|
|
|
|
namespace NzbDrone.Core.Update
|
|
{
|
|
public interface IUpdatePackageProvider
|
|
{
|
|
UpdatePackage GetLatestUpdate(string branch, Version currentVersion);
|
|
List<UpdatePackage> GetRecentUpdates(string branch);
|
|
}
|
|
|
|
public class UpdatePackageProvider : IUpdatePackageProvider
|
|
{
|
|
public UpdatePackage GetLatestUpdate(string branch, Version currentVersion)
|
|
{
|
|
var restClient = new RestClient(Services.RootUrl);
|
|
|
|
var request = new RestRequest("/v1/update/{branch}");
|
|
|
|
request.AddParameter("version", currentVersion);
|
|
request.AddUrlSegment("branch", branch);
|
|
|
|
var update = restClient.ExecuteAndValidate<UpdatePackageAvailable>(request);
|
|
|
|
if (!update.Available) return null;
|
|
|
|
return update.UpdatePackage;
|
|
}
|
|
|
|
public List<UpdatePackage> GetRecentUpdates(string branch)
|
|
{
|
|
var restClient = new RestClient(Services.RootUrl);
|
|
|
|
var request = new RestRequest("/v1/update/{branch}/all");
|
|
|
|
request.AddUrlSegment("branch", branch);
|
|
request.AddParameter("limit", 5);
|
|
|
|
var updates = restClient.ExecuteAndValidate<List<UpdatePackage>>(request);
|
|
|
|
return updates;
|
|
}
|
|
}
|
|
} |