jellyfin/MediaBrowser.Api/ScheduledTasks/ScheduledTaskService.cs

235 lines
8.1 KiB
C#
Raw Normal View History

using System;
2013-02-21 02:33:05 +01:00
using System.Collections.Generic;
using System.Linq;
using MediaBrowser.Common.Extensions;
2016-02-28 22:31:45 +01:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Net;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.Services;
using MediaBrowser.Model.Tasks;
using Microsoft.Extensions.Logging;
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")]
2017-08-19 21:43:35 +02:00
public class GetScheduledTasks : IReturn<TaskInfo[]>
2013-02-21 02:33:05 +01:00
{
[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>
/// The task manager.
2013-02-23 08:57:11 +01:00
/// </summary>
private readonly ITaskManager _taskManager;
2016-02-28 22:31:45 +01:00
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(
ILogger<ScheduledTaskService> logger,
IServerConfigurationManager serverConfigurationManager,
IHttpResultFactory httpResultFactory,
ITaskManager taskManager)
: base(logger, serverConfigurationManager, httpResultFactory)
2013-02-23 08:57:11 +01:00
{
_taskManager = taskManager;
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;
if (i.ScheduledTask is IConfigurableScheduledTask configurableTask)
{
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
if (i.ScheduledTask is IConfigurableScheduledTask configurableTask)
2015-01-20 22:32:48 +01:00
{
isEnabled = configurableTask.IsEnabled;
}
return isEnabled == val;
});
}
2019-01-08 00:27:46 +01:00
var infos = result
.Select(ScheduledTaskHelpers.GetTaskInfo)
2017-08-19 21:43:35 +02:00
.ToArray();
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>
2019-01-13 21:37:13 +01:00
/// <exception cref="ResourceNotFoundException">Task not found</exception>
2013-02-21 02:33:05 +01:00
public object Get(GetScheduledTask request)
{
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>
2019-01-13 21:37:13 +01:00
/// <exception cref="ResourceNotFoundException">Task not found</exception>
2013-02-21 02:33:05 +01:00
public void Post(StartScheduledTask request)
{
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");
}
_taskManager.Execute(task, new TaskOptions());
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
2019-01-13 21:37:13 +01:00
/// <exception cref="ResourceNotFoundException">Task not found</exception>
2013-02-21 02:33:05 +01:00
public void Delete(StopScheduledTask request)
{
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");
}
_taskManager.Cancel(task);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Posts the specified request.
/// </summary>
/// <param name="request">The request.</param>
2019-01-13 21:37:13 +01:00
/// <exception cref="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
var id = GetPathValue(1).ToString();
2013-02-23 08:57:11 +01:00
var task = _taskManager.ScheduledTasks.FirstOrDefault(i => string.Equals(i.Id, id, StringComparison.Ordinal));
2013-02-21 02:33:05 +01:00
if (task == null)
{
throw new ResourceNotFoundException("Task not found");
}
2019-02-09 15:55:23 +01:00
task.Triggers = request.ToArray();
2013-02-21 02:33:05 +01:00
}
}
}