mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-20 21:55:03 -04:00
67 lines
2.1 KiB
C#
67 lines
2.1 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Datastore.Events;
|
|
using NzbDrone.Core.Jobs;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
using NzbDrone.SignalR;
|
|
using Radarr.Http;
|
|
|
|
namespace Radarr.Api.V3.System.Tasks
|
|
{
|
|
public class TaskModule : RadarrRestModuleWithSignalR<TaskResource, ScheduledTask>, IHandle<CommandExecutedEvent>
|
|
{
|
|
private readonly ITaskManager _taskManager;
|
|
|
|
public TaskModule(ITaskManager taskManager, IBroadcastSignalRMessage broadcastSignalRMessage)
|
|
: base(broadcastSignalRMessage, "system/task")
|
|
{
|
|
_taskManager = taskManager;
|
|
GetResourceAll = GetAll;
|
|
GetResourceById = GetTask;
|
|
}
|
|
|
|
private List<TaskResource> GetAll()
|
|
{
|
|
return _taskManager.GetAll()
|
|
.Select(ConvertToResource)
|
|
.OrderBy(t => t.Name)
|
|
.ToList();
|
|
}
|
|
|
|
private TaskResource GetTask(int id)
|
|
{
|
|
var task = _taskManager.GetAll()
|
|
.SingleOrDefault(t => t.Id == id);
|
|
|
|
if (task == null)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return ConvertToResource(task);
|
|
}
|
|
|
|
private static TaskResource ConvertToResource(ScheduledTask scheduledTask)
|
|
{
|
|
var taskName = scheduledTask.TypeName.Split('.').Last().Replace("Command", "");
|
|
|
|
return new TaskResource
|
|
{
|
|
Id = scheduledTask.Id,
|
|
Name = taskName.SplitCamelCase(),
|
|
TaskName = taskName,
|
|
Interval = scheduledTask.Interval,
|
|
LastExecution = scheduledTask.LastExecution,
|
|
LastStartTime = scheduledTask.LastStartTime,
|
|
NextExecution = scheduledTask.LastExecution.AddMinutes(scheduledTask.Interval)
|
|
};
|
|
}
|
|
|
|
public void Handle(CommandExecutedEvent message)
|
|
{
|
|
BroadcastResourceChange(ModelAction.Sync);
|
|
}
|
|
}
|
|
}
|