84 lines
2.8 KiB
C#
Raw Normal View History

2022-05-01 00:33:22 -05:00
using System;
2022-06-13 01:52:41 -05:00
using System.Collections.Generic;
2022-05-01 00:33:22 -05:00
using System.Net.Mime;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
namespace ConfusedPolarBear.Plugin.IntroSkipper.Controllers;
/// <summary>
/// Skip intro controller.
/// </summary>
[Authorize]
[ApiController]
[Produces(MediaTypeNames.Application.Json)]
public class SkipIntroController : ControllerBase
{
/// <summary>
/// Initializes a new instance of the <see cref="SkipIntroController"/> class.
2022-05-01 00:33:22 -05:00
/// </summary>
public SkipIntroController()
{
}
/// <summary>
/// Returns the timestamps of the introduction in a television episode. Responses are in API version 1 format.
2022-05-01 00:33:22 -05:00
/// </summary>
2022-05-01 01:24:57 -05:00
/// <param name="id">ID of the episode. Required.</param>
2022-05-01 00:33:22 -05:00
/// <response code="200">Episode contains an intro.</response>
/// <response code="404">Failed to find an intro in the provided episode.</response>
/// <returns>Detected intro.</returns>
2022-05-01 00:33:22 -05:00
[HttpGet("Episode/{id}/IntroTimestamps")]
[HttpGet("Episode/{id}/IntroTimestamps/v1")]
2022-05-01 01:24:57 -05:00
public ActionResult<Intro> GetIntroTimestamps([FromRoute] Guid id)
2022-05-01 00:33:22 -05:00
{
var intro = GetIntro(id);
2022-05-01 00:33:22 -05:00
if (intro is null || !intro.Valid)
2022-05-01 00:33:22 -05:00
{
return NotFound();
}
// Populate the prompt show/hide times.
var config = Plugin.Instance!.Configuration;
intro.ShowSkipPromptAt = Math.Max(0, intro.IntroStart - config.ShowPromptAdjustment);
intro.HideSkipPromptAt = intro.IntroStart + config.HidePromptAdjustment;
2022-05-01 00:33:22 -05:00
return intro;
}
/// <summary>Lookup and return the intro timestamps for the provided item.</summary>
/// <param name="id">Unique identifier of this episode.</param>
/// <returns>Intro object if the provided item has an intro, null otherwise.</returns>
private Intro? GetIntro(Guid id)
{
2022-07-03 02:47:48 -05:00
return Plugin.Instance!.Intros.TryGetValue(id, out var intro) ? intro : null;
}
/// <summary>
/// Erases all previously discovered introduction timestamps.
/// </summary>
/// <response code="204">Operation successful.</response>
/// <returns>No content.</returns>
[Authorize(Policy = "RequiresElevation")]
[HttpPost("Intros/EraseTimestamps")]
public ActionResult ResetIntroTimestamps()
{
Plugin.Instance!.Intros.Clear();
Plugin.Instance!.SaveTimestamps();
return NoContent();
}
2022-06-13 01:52:41 -05:00
/// <summary>
/// Get all introductions. Only used by the end to end testing script.
/// </summary>
/// <response code="200">All introductions have been returned.</response>
/// <returns>Dictionary of Intro objects.</returns>
[Authorize(Policy = "RequiresElevation")]
[HttpGet("Intros/All")]
public ActionResult<Dictionary<Guid, Intro>> GetAllIntros()
{
return Plugin.Instance!.Intros;
}
2022-05-01 00:33:22 -05:00
}