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.
46 lines
1.3 KiB
46 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.Update;
|
|
using NzbDrone.Api.Mapping;
|
|
|
|
namespace NzbDrone.Api.Update
|
|
{
|
|
public class UpdateModule : NzbDroneRestModule<UpdateResource>
|
|
{
|
|
private readonly ICheckUpdateService _checkUpdateService;
|
|
|
|
public UpdateModule(ICheckUpdateService checkUpdateService)
|
|
{
|
|
_checkUpdateService = checkUpdateService;
|
|
GetResourceAll = GetAvailableUpdate;
|
|
}
|
|
|
|
private List<UpdateResource> GetAvailableUpdate()
|
|
{
|
|
var update = _checkUpdateService.AvailableUpdate();
|
|
var response = new List<UpdateResource>();
|
|
|
|
if (update != null)
|
|
{
|
|
response.Add(update.InjectTo<UpdateResource>());
|
|
}
|
|
|
|
return response;
|
|
}
|
|
}
|
|
|
|
public class UpdateResource : RestResource
|
|
{
|
|
public String Id { get; set; }
|
|
|
|
[JsonConverter(typeof(Newtonsoft.Json.Converters.VersionConverter))]
|
|
public Version Version { get; set; }
|
|
|
|
public String Branch { get; set; }
|
|
public DateTime ReleaseDate { get; set; }
|
|
public String FileName { get; set; }
|
|
public String Url { get; set; }
|
|
}
|
|
} |