149 lines
6.5 KiB
C#
149 lines
6.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Jellyfin.Plugin.TubeArchivistMetadata.Configuration;
|
|
using Jellyfin.Plugin.TubeArchivistMetadata.Tasks;
|
|
using Jellyfin.Plugin.TubeArchivistMetadata.TubeArchivist;
|
|
using Jellyfin.Plugin.TubeArchivistMetadata.Utilities;
|
|
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Common.Plugins;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Controller.Session;
|
|
using MediaBrowser.Model.Plugins;
|
|
using MediaBrowser.Model.Serialization;
|
|
using MediaBrowser.Model.Tasks;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Jellyfin.Plugin.TubeArchivistMetadata
|
|
{
|
|
/// <summary>
|
|
/// The main plugin.
|
|
/// </summary>
|
|
public class Plugin : BasePlugin<PluginConfiguration>, IHasWebPages
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Plugin"/> class.
|
|
/// </summary>
|
|
/// <param name="applicationPaths">Instance of the <see cref="IApplicationPaths"/> interface.</param>
|
|
/// <param name="xmlSerializer">Instance of the <see cref="IXmlSerializer"/> interface.</param>
|
|
/// <param name="logger">Instance of the <see cref="ILogger"/> interface.</param>
|
|
/// <param name="sessionManager">Instance of the <see cref="ISessionManager"/> interface.</param>
|
|
/// <param name="libraryManager">Instance of the <see cref="ILibraryManager"/> interface.</param>
|
|
/// <param name="taskManager">Instance of the <see cref="ITaskManager"/> interface.</param>
|
|
/// <param name="userManager">Instance of the <see cref="IUserManager"/> interface.</param>
|
|
/// <param name="userDataManager">Instance of the <see cref="IUserDataManager"/> interface.</param>
|
|
public Plugin(
|
|
IApplicationPaths applicationPaths,
|
|
IXmlSerializer xmlSerializer,
|
|
ILogger<Plugin> logger,
|
|
ISessionManager sessionManager,
|
|
ILibraryManager libraryManager,
|
|
ITaskManager taskManager,
|
|
IUserManager userManager,
|
|
IUserDataManager userDataManager)
|
|
: base(applicationPaths, xmlSerializer)
|
|
{
|
|
Instance = this;
|
|
Logger = logger;
|
|
HttpClientHandler handler = new HttpClientHandler();
|
|
handler.AllowAutoRedirect = false;
|
|
handler.CheckCertificateRevocationList = true;
|
|
HttpClient = new HttpClient(handler);
|
|
HttpClient.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Token", Instance?.Configuration.TubeArchivistApiKey);
|
|
SessionManager = sessionManager;
|
|
sessionManager.PlaybackProgress += OnPlaybackProgress;
|
|
LibraryManager = libraryManager;
|
|
taskManager.AddTasks([new TAToJellyfinProgressSyncTask(logger, libraryManager, userManager, userDataManager)]);
|
|
taskManager.Execute<TAToJellyfinProgressSyncTask>();
|
|
logger.LogInformation("Enabled tasks: {Tasks}", string.Join(", ", taskManager.ScheduledTasks.ToList().Select(t => t.Name)));
|
|
|
|
logger.LogInformation("{Message}", "Collection display name: " + Instance?.Configuration.CollectionTitle);
|
|
logger.LogInformation("{Message}", "TubeArchivist API URL: " + Instance?.Configuration.TubeArchivistUrl);
|
|
logger.LogInformation("{Message}", "Pinging TubeArchivist API...");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override string Name => Constants.PluginName;
|
|
|
|
/// <inheritdoc />
|
|
public override Guid Id => Guid.Parse(Constants.PluginGuid);
|
|
|
|
/// <summary>
|
|
/// Gets the current plugin instance.
|
|
/// </summary>
|
|
public static Plugin? Instance { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Gets the logger instance used globally by the plugin.
|
|
/// </summary>
|
|
public ILogger<Plugin> Logger { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the HTTP client used globally by the plugin.
|
|
/// </summary>
|
|
public HttpClient HttpClient { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the SessionManager used globally by the plugin.
|
|
/// </summary>
|
|
public ISessionManager SessionManager { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the LibraryManager used globally by the plugin.
|
|
/// </summary>
|
|
public ILibraryManager LibraryManager { get; }
|
|
|
|
/// <inheritdoc />
|
|
public IEnumerable<PluginPageInfo> GetPages() => new[]
|
|
{
|
|
new PluginPageInfo
|
|
{
|
|
Name = this.Name,
|
|
EmbeddedResourcePath = string.Format(CultureInfo.InvariantCulture, "{0}.Configuration.configPage.html", GetType().Namespace)
|
|
}
|
|
};
|
|
|
|
/// <summary>
|
|
/// Logs the TubeArchivist API connection status.
|
|
/// </summary>
|
|
public void LogTAApiConnectionStatus()
|
|
{
|
|
Logger.LogInformation("{Message}", "Ping...");
|
|
|
|
var api = TubeArchivistApi.GetInstance();
|
|
Task.Run(() => api.Ping()).ContinueWith(
|
|
task =>
|
|
{
|
|
if (task.Result != null)
|
|
{
|
|
Logger.LogInformation("{Message}", "TubeArchivist API said: " + task.Result.Response + "!");
|
|
}
|
|
else
|
|
{
|
|
Logger.LogCritical("{Message}", "TubeArchivist API was unreachable!");
|
|
}
|
|
},
|
|
TaskScheduler.Default);
|
|
}
|
|
|
|
private async void OnPlaybackProgress(object? sender, PlaybackProgressEventArgs eventArgs)
|
|
{
|
|
BaseItem? channel = LibraryManager.GetItemById(eventArgs.Item.ParentId);
|
|
BaseItem? collection = LibraryManager.GetItemById(channel!.ParentId);
|
|
if (collection?.Name.ToLower(CultureInfo.CurrentCulture) == Instance?.Configuration.CollectionTitle.ToLower(CultureInfo.CurrentCulture) && eventArgs.PlaybackPositionTicks != null)
|
|
{
|
|
long progress = (long)eventArgs.PlaybackPositionTicks / TimeSpan.TicksPerSecond;
|
|
var statusCode = await TubeArchivistApi.GetInstance().SetProgress(Utils.GetVideoNameFromPath(eventArgs.Item.Path), progress).ConfigureAwait(true);
|
|
if (statusCode != System.Net.HttpStatusCode.OK)
|
|
{
|
|
Logger.LogInformation("{Message}", $"POST /progress returned {statusCode} for video {eventArgs.Item.Name} with progress {progress} seconds");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|