jellyfin/MediaBrowser.Api/ScheduledTasks/ScheduledTaskService.cs

259 lines
9 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.ScheduledTasks;
2014-07-02 20:34:08 +02:00
using MediaBrowser.Controller.Net;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Tasks;
2013-12-07 16:52:38 +01:00
using ServiceStack;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
2016-02-28 22:31:45 +01:00
using MediaBrowser.Controller.Configuration;
2013-02-21 02:33:05 +01:00
2013-02-22 05:23:06 +01:00
namespace MediaBrowser.Api.ScheduledTasks
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class GetScheduledTask
/// </summary>
2014-03-25 22:13:55 +01:00
[Route("/ScheduledTasks/{Id}", "GET", Summary = "Gets a scheduled task, by Id")]
2013-02-21 02:33:05 +01:00
public class GetScheduledTask : IReturn<TaskInfo>
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
[ApiMember(Name = "Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
2014-05-09 21:43:06 +02:00
public string Id { get; set; }
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Class GetScheduledTasks
/// </summary>
2014-03-25 22:13:55 +01:00
[Route("/ScheduledTasks", "GET", Summary = "Gets scheduled tasks")]
2013-02-21 02:33:05 +01:00
public class GetScheduledTasks : IReturn<List<TaskInfo>>
{
[ApiMember(Name = "IsHidden", Description = "Optional filter tasks that are hidden, or not.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsHidden { get; set; }
2015-01-20 22:32:48 +01:00
[ApiMember(Name = "IsEnabled", Description = "Optional filter tasks that are enabled, or not.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "GET")]
public bool? IsEnabled { get; set; }
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Class StartScheduledTask
/// </summary>
2014-03-25 22:13:55 +01:00
[Route("/ScheduledTasks/Running/{Id}", "POST", Summary = "Starts a scheduled task")]
2013-02-21 02:33:05 +01:00
public class StartScheduledTask : IReturnVoid
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
[ApiMember(Name = "Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
2014-05-09 21:43:06 +02:00
public string Id { get; set; }
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Class StopScheduledTask
/// </summary>
2014-03-25 22:13:55 +01:00
[Route("/ScheduledTasks/Running/{Id}", "DELETE", Summary = "Stops a scheduled task")]
2013-02-21 02:33:05 +01:00
public class StopScheduledTask : IReturnVoid
{
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
[ApiMember(Name = "Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "DELETE")]
2014-05-09 21:43:06 +02:00
public string Id { get; set; }
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Class UpdateScheduledTaskTriggers
/// </summary>
2014-03-25 22:13:55 +01:00
[Route("/ScheduledTasks/{Id}/Triggers", "POST", Summary = "Updates the triggers for a scheduled task")]
2013-03-05 03:05:59 +01:00
public class UpdateScheduledTaskTriggers : List<TaskTriggerInfo>, IReturnVoid
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Gets or sets the task id.
/// </summary>
/// <value>The task id.</value>
[ApiMember(Name = "Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
2014-05-09 21:43:06 +02:00
public string Id { get; set; }
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Class ScheduledTasksService
/// </summary>
2014-11-15 03:31:03 +01:00
[Authenticated(Roles = "Admin")]
2013-03-16 06:52:33 +01:00
public class ScheduledTaskService : BaseApiService
2013-02-21 02:33:05 +01:00
{
2013-02-23 08:57:11 +01:00
/// <summary>
/// Gets or sets the task manager.
/// </summary>
/// <value>The task manager.</value>
private ITaskManager TaskManager { get; set; }
2016-02-28 22:31:45 +01:00
private readonly IServerConfigurationManager _config;
2013-02-24 22:53:54 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="ScheduledTaskService" /> class.
/// </summary>
/// <param name="taskManager">The task manager.</param>
2016-02-28 22:31:45 +01:00
/// <exception cref="ArgumentNullException">taskManager</exception>
public ScheduledTaskService(ITaskManager taskManager, IServerConfigurationManager config)
2013-02-23 08:57:11 +01:00
{
2013-02-24 22:53:54 +01:00
if (taskManager == null)
{
throw new ArgumentNullException("taskManager");
}
2013-02-23 08:57:11 +01:00
TaskManager = taskManager;
2016-02-28 22:31:45 +01:00
_config = config;
2013-02-23 08:57:11 +01:00
}
2013-02-24 22:53:54 +01:00
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>IEnumerable{TaskInfo}.</returns>
public object Get(GetScheduledTasks request)
{
IEnumerable<IScheduledTaskWorker> result = TaskManager.ScheduledTasks
.OrderBy(i => i.Name);
2013-02-21 02:33:05 +01:00
if (request.IsHidden.HasValue)
{
var val = request.IsHidden.Value;
result = result.Where(i =>
{
var isHidden = false;
var configurableTask = i.ScheduledTask as IConfigurableScheduledTask;
if (configurableTask != null)
{
isHidden = configurableTask.IsHidden;
}
return isHidden == val;
});
}
2015-01-20 22:32:48 +01:00
if (request.IsEnabled.HasValue)
{
var val = request.IsEnabled.Value;
result = result.Where(i =>
{
2015-01-21 04:54:45 +01:00
var isEnabled = true;
2015-01-20 22:32:48 +01:00
var configurableTask = i.ScheduledTask as IConfigurableScheduledTask;
if (configurableTask != null)
{
isEnabled = configurableTask.IsEnabled;
}
return isEnabled == val;
});
}
var infos = result
.Select(ScheduledTaskHelpers.GetTaskInfo)
.ToList();
return ToOptimizedResult(infos);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the specified request.
/// </summary>
/// <param name="request">The request.</param>
/// <returns>IEnumerable{TaskInfo}.</returns>
2013-02-24 22:53:54 +01:00
/// <exception cref="MediaBrowser.Common.Extensions.ResourceNotFoundException">Task not found</exception>
2013-02-21 02:33:05 +01:00
public object Get(GetScheduledTask request)
{
2014-05-09 21:43:06 +02:00
var task = TaskManager.ScheduledTasks.FirstOrDefault(i => string.Equals(i.Id, request.Id));
2013-02-21 02:33:05 +01:00
if (task == null)
{
throw new ResourceNotFoundException("Task not found");
}
var result = ScheduledTaskHelpers.GetTaskInfo(task);
return ToOptimizedResult(result);
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
2013-02-24 22:53:54 +01:00
/// <exception cref="MediaBrowser.Common.Extensions.ResourceNotFoundException">Task not found</exception>
2013-02-21 02:33:05 +01:00
public void Post(StartScheduledTask request)
{
2014-05-09 21:43:06 +02:00
var task = TaskManager.ScheduledTasks.FirstOrDefault(i => string.Equals(i.Id, request.Id));
2013-02-21 02:33:05 +01:00
if (task == null)
{
throw new ResourceNotFoundException("Task not found");
}
2016-02-28 22:31:45 +01:00
var hasKey = task.ScheduledTask as IHasKey;
if (hasKey != null)
{
if (string.Equals(hasKey.Key, "SystemUpdateTask", StringComparison.OrdinalIgnoreCase))
{
// This is a hack for now just to get the update application function to work when auto-update is disabled
if (!_config.Configuration.EnableAutoUpdate)
{
_config.Configuration.EnableAutoUpdate = true;
_config.SaveConfiguration();
}
}
}
2013-03-07 06:34:00 +01:00
TaskManager.Execute(task);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
2013-02-24 22:53:54 +01:00
/// <exception cref="MediaBrowser.Common.Extensions.ResourceNotFoundException">Task not found</exception>
2013-02-21 02:33:05 +01:00
public void Delete(StopScheduledTask request)
{
2014-05-09 21:43:06 +02:00
var task = TaskManager.ScheduledTasks.FirstOrDefault(i => string.Equals(i.Id, request.Id));
2013-02-21 02:33:05 +01:00
if (task == null)
{
throw new ResourceNotFoundException("Task not found");
}
2013-03-07 06:34:00 +01:00
TaskManager.Cancel(task);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
2013-02-24 22:53:54 +01:00
/// <exception cref="MediaBrowser.Common.Extensions.ResourceNotFoundException">Task not found</exception>
2013-02-21 02:33:05 +01:00
public void Post(UpdateScheduledTaskTriggers request)
{
// We need to parse this manually because we told service stack not to with IRequiresRequestStream
// https://code.google.com/p/servicestack/source/browse/trunk/Common/ServiceStack.Text/ServiceStack.Text/Controller/PathInfo.cs
2015-01-22 17:41:34 +01:00
var id = GetPathValue(1);
2013-02-23 08:57:11 +01:00
2014-05-09 21:43:06 +02:00
var task = TaskManager.ScheduledTasks.FirstOrDefault(i => string.Equals(i.Id, id));
2013-02-21 02:33:05 +01:00
if (task == null)
{
throw new ResourceNotFoundException("Task not found");
}
2013-03-05 03:05:59 +01:00
var triggerInfos = request;
2013-02-21 02:33:05 +01:00
2013-02-23 08:57:11 +01:00
task.Triggers = triggerInfos.Select(ScheduledTaskHelpers.GetTrigger);
2013-02-21 02:33:05 +01:00
}
}
}