Files
jellyfin-jellyfin-1/Jellyfin.Api/Controllers/ScheduledTasksController.cs

176 lines
6.1 KiB
C#
Raw Normal View History

2020-04-19 16:26:20 -06:00
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
2020-04-19 16:31:09 -06:00
using MediaBrowser.Controller.Net;
2020-04-19 16:26:20 -06:00
using MediaBrowser.Model.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.ModelBinding;
namespace Jellyfin.Api.Controllers
{
/// <summary>
/// Scheduled Tasks Controller.
/// </summary>
2020-04-19 16:31:09 -06:00
[Authenticated]
2020-04-19 16:26:20 -06:00
public class ScheduledTasksController : BaseJellyfinApiController
{
private readonly ITaskManager _taskManager;
/// <summary>
/// Initializes a new instance of the <see cref="ScheduledTasksController"/> class.
/// </summary>
/// <param name="taskManager">Instance of the <see cref="ITaskManager"/> interface.</param>
public ScheduledTasksController(ITaskManager taskManager)
{
_taskManager = taskManager;
}
/// <summary>
/// Get tasks.
/// </summary>
/// <param name="isHidden">Optional filter tasks that are hidden, or not.</param>
/// <param name="isEnabled">Optional filter tasks that are enabled, or not.</param>
/// <returns>Task list.</returns>
[HttpGet]
[ProducesResponseType(typeof(TaskInfo[]), StatusCodes.Status200OK)]
[ProducesResponseType(typeof(string), StatusCodes.Status500InternalServerError)]
public IActionResult GetTasks(
[FromQuery] bool? isHidden = false,
[FromQuery] bool? isEnabled = false)
{
2020-04-21 08:02:07 -06:00
IEnumerable<IScheduledTaskWorker> tasks = _taskManager.ScheduledTasks.OrderBy(o => o.Name);
2020-04-19 16:26:20 -06:00
2020-04-21 08:02:07 -06:00
if (isHidden.HasValue)
{
var hiddenValue = isHidden.Value;
tasks = tasks.Where(o =>
2020-04-19 16:26:20 -06:00
{
2020-04-21 08:02:07 -06:00
var itemIsHidden = false;
if (o.ScheduledTask is IConfigurableScheduledTask configurableScheduledTask)
2020-04-19 16:26:20 -06:00
{
2020-04-21 08:02:07 -06:00
itemIsHidden = configurableScheduledTask.IsHidden;
}
2020-04-19 16:26:20 -06:00
2020-04-21 08:02:07 -06:00
return itemIsHidden == hiddenValue;
});
}
2020-04-19 16:26:20 -06:00
2020-04-21 08:02:07 -06:00
if (isEnabled.HasValue)
{
var enabledValue = isEnabled.Value;
tasks = tasks.Where(o =>
2020-04-19 16:26:20 -06:00
{
2020-04-21 08:02:07 -06:00
var itemIsEnabled = false;
if (o.ScheduledTask is IConfigurableScheduledTask configurableScheduledTask)
2020-04-19 16:26:20 -06:00
{
2020-04-21 08:02:07 -06:00
itemIsEnabled = configurableScheduledTask.IsEnabled;
}
2020-04-19 16:26:20 -06:00
2020-04-21 08:02:07 -06:00
return itemIsEnabled == enabledValue;
});
}
2020-04-19 16:26:20 -06:00
2020-04-21 08:02:07 -06:00
var taskInfos = tasks.Select(ScheduledTaskHelpers.GetTaskInfo);
2020-04-19 16:26:20 -06:00
2020-04-21 08:02:07 -06:00
return Ok(taskInfos);
2020-04-19 16:26:20 -06:00
}
/// <summary>
/// Get task by id.
/// </summary>
/// <param name="taskId">Task Id.</param>
/// <returns>Task Info.</returns>
[HttpGet("{TaskID}")]
[ProducesResponseType(typeof(TaskInfo), StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(string), StatusCodes.Status500InternalServerError)]
public IActionResult GetTask([FromRoute] string taskId)
{
2020-04-21 08:02:07 -06:00
var task = _taskManager.ScheduledTasks.FirstOrDefault(i =>
string.Equals(i.Id, taskId, StringComparison.OrdinalIgnoreCase));
2020-04-19 16:26:20 -06:00
2020-04-21 08:02:07 -06:00
if (task == null)
2020-04-19 16:26:20 -06:00
{
2020-04-21 08:02:07 -06:00
return NotFound();
2020-04-19 16:26:20 -06:00
}
2020-04-21 08:02:07 -06:00
var result = ScheduledTaskHelpers.GetTaskInfo(task);
return Ok(result);
2020-04-19 16:26:20 -06:00
}
/// <summary>
/// Start specified task.
/// </summary>
/// <param name="taskId">Task Id.</param>
/// <returns>Status.</returns>
[HttpPost("Running/{TaskID}")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(string), StatusCodes.Status500InternalServerError)]
public IActionResult StartTask([FromRoute] string taskId)
{
2020-04-21 08:02:07 -06:00
var task = _taskManager.ScheduledTasks.FirstOrDefault(o =>
o.Id.Equals(taskId, StringComparison.OrdinalIgnoreCase));
2020-04-19 16:26:20 -06:00
2020-04-21 08:02:07 -06:00
if (task == null)
2020-04-19 16:26:20 -06:00
{
2020-04-21 08:02:07 -06:00
return NotFound();
2020-04-19 16:26:20 -06:00
}
2020-04-21 08:02:07 -06:00
_taskManager.Execute(task, new TaskOptions());
return Ok();
2020-04-19 16:26:20 -06:00
}
/// <summary>
/// Stop specified task.
/// </summary>
/// <param name="taskId">Task Id.</param>
/// <returns>Status.</returns>
[HttpDelete("Running/{TaskID}")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(string), StatusCodes.Status500InternalServerError)]
public IActionResult StopTask([FromRoute] string taskId)
{
2020-04-21 08:02:07 -06:00
var task = _taskManager.ScheduledTasks.FirstOrDefault(o =>
o.Id.Equals(taskId, StringComparison.OrdinalIgnoreCase));
2020-04-19 16:26:20 -06:00
2020-04-21 08:02:07 -06:00
if (task == null)
2020-04-19 16:26:20 -06:00
{
2020-04-21 08:02:07 -06:00
return NotFound();
2020-04-19 16:26:20 -06:00
}
2020-04-21 08:02:07 -06:00
_taskManager.Cancel(task);
return Ok();
2020-04-19 16:26:20 -06:00
}
/// <summary>
/// Update specified task triggers.
/// </summary>
/// <param name="taskId">Task Id.</param>
/// <param name="triggerInfos">Triggers.</param>
/// <returns>Status.</returns>
[HttpPost("{TaskID}/Triggers")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
[ProducesResponseType(typeof(string), StatusCodes.Status500InternalServerError)]
2020-04-21 08:02:07 -06:00
public IActionResult UpdateTask(
[FromRoute] string taskId,
[FromBody, BindRequired] TaskTriggerInfo[] triggerInfos)
2020-04-19 16:26:20 -06:00
{
2020-04-21 08:02:07 -06:00
var task = _taskManager.ScheduledTasks.FirstOrDefault(o =>
o.Id.Equals(taskId, StringComparison.OrdinalIgnoreCase));
if (task == null)
2020-04-19 16:26:20 -06:00
{
2020-04-21 08:02:07 -06:00
return NotFound();
2020-04-19 16:26:20 -06:00
}
2020-04-21 08:02:07 -06:00
task.Triggers = triggerInfos;
return Ok();
2020-04-19 16:26:20 -06:00
}
}
}