jellyfin/MediaBrowser.Api/ScheduledTasks/ScheduledTaskService.cs

200 lines
6.7 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.ScheduledTasks;
using MediaBrowser.Model.Tasks;
using ServiceStack.ServiceHost;
using ServiceStack.Text.Controller;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
2013-02-22 05:23:06 +01:00
namespace MediaBrowser.Api.ScheduledTasks
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class GetScheduledTask
/// </summary>
[Route("/ScheduledTasks/{Id}", "GET")]
2013-04-10 17:32:09 +02:00
[Api(Description = "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")]
2013-02-21 02:33:05 +01:00
public Guid Id { get; set; }
}
/// <summary>
/// Class GetScheduledTasks
/// </summary>
[Route("/ScheduledTasks", "GET")]
2013-04-10 17:32:09 +02:00
[Api(Description = "Gets scheduled tasks")]
2013-02-21 02:33:05 +01:00
public class GetScheduledTasks : IReturn<List<TaskInfo>>
{
}
/// <summary>
/// Class StartScheduledTask
/// </summary>
[Route("/ScheduledTasks/Running/{Id}", "POST")]
2013-04-10 17:32:09 +02:00
[Api(Description = "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")]
2013-02-21 02:33:05 +01:00
public Guid Id { get; set; }
}
/// <summary>
/// Class StopScheduledTask
/// </summary>
[Route("/ScheduledTasks/Running/{Id}", "DELETE")]
2013-04-10 17:32:09 +02:00
[Api(Description = "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")]
2013-02-21 02:33:05 +01:00
public Guid Id { get; set; }
}
/// <summary>
/// Class UpdateScheduledTaskTriggers
/// </summary>
[Route("/ScheduledTasks/{Id}/Triggers", "POST")]
2013-04-10 17:32:09 +02:00
[Api(Description = "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")]
2013-02-21 02:33:05 +01:00
public Guid Id { get; set; }
}
/// <summary>
/// Class ScheduledTasksService
/// </summary>
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; }
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>
/// <exception cref="System.ArgumentNullException">taskManager</exception>
2013-03-07 06:34:00 +01:00
public ScheduledTaskService(ITaskManager taskManager)
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;
}
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)
{
2013-02-23 08:57:11 +01:00
var result = TaskManager.ScheduledTasks.OrderBy(i => i.Name)
2013-02-21 02:33:05 +01:00
.Select(ScheduledTaskHelpers.GetTaskInfo).ToList();
return ToOptimizedResult(result);
}
/// <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)
{
2013-02-23 08:57:11 +01:00
var task = TaskManager.ScheduledTasks.FirstOrDefault(i => 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)
{
2013-02-23 08:57:11 +01:00
var task = TaskManager.ScheduledTasks.FirstOrDefault(i => 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.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)
{
2013-02-23 08:57:11 +01:00
var task = TaskManager.ScheduledTasks.FirstOrDefault(i => 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
var pathInfo = PathInfo.Parse(RequestContext.PathInfo);
2013-02-21 02:33:05 +01:00
var id = new Guid(pathInfo.GetArgumentValue<string>(1));
2013-02-23 08:57:11 +01:00
var task = TaskManager.ScheduledTasks.FirstOrDefault(i => 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
}
}
}