2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2013-11-24 13:51:45 -07:00
|
|
|
using System.Collections.Generic;
|
2021-05-28 05:33:54 -07:00
|
|
|
using System.Threading;
|
2013-11-24 13:51:45 -07:00
|
|
|
using System.Threading.Tasks;
|
2019-01-13 12:22:00 -07:00
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
using MediaBrowser.Controller.LiveTv;
|
|
|
|
using MediaBrowser.Model.LiveTv;
|
2016-10-23 12:14:57 -07:00
|
|
|
using MediaBrowser.Model.Tasks;
|
2013-11-24 13:51:45 -07:00
|
|
|
|
2016-11-03 16:35:19 -07:00
|
|
|
namespace Emby.Server.Implementations.LiveTv
|
2013-11-24 13:51:45 -07:00
|
|
|
{
|
2021-05-28 05:33:54 -07:00
|
|
|
/// <summary>
|
|
|
|
/// The "Refresh Guide" scheduled task.
|
|
|
|
/// </summary>
|
|
|
|
public class RefreshGuideScheduledTask : IScheduledTask, IConfigurableScheduledTask
|
2013-11-24 13:51:45 -07:00
|
|
|
{
|
|
|
|
private readonly ILiveTvManager _liveTvManager;
|
2015-07-23 10:58:20 -07:00
|
|
|
private readonly IConfigurationManager _config;
|
2013-11-24 13:51:45 -07:00
|
|
|
|
2021-05-28 05:33:54 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="RefreshGuideScheduledTask"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="liveTvManager">The live tv manager.</param>
|
|
|
|
/// <param name="config">The configuration manager.</param>
|
|
|
|
public RefreshGuideScheduledTask(ILiveTvManager liveTvManager, IConfigurationManager config)
|
2013-11-24 13:51:45 -07:00
|
|
|
{
|
|
|
|
_liveTvManager = liveTvManager;
|
2015-07-23 10:58:20 -07:00
|
|
|
_config = config;
|
2013-11-24 13:51:45 -07:00
|
|
|
}
|
|
|
|
|
2021-05-28 05:33:54 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-06 13:50:43 -07:00
|
|
|
public string Name => "Refresh Guide";
|
2013-11-24 13:51:45 -07:00
|
|
|
|
2021-05-28 05:33:54 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-06 13:50:43 -07:00
|
|
|
public string Description => "Downloads channel information from live tv services.";
|
2013-11-24 13:51:45 -07:00
|
|
|
|
2021-05-28 05:33:54 -07:00
|
|
|
/// <inheritdoc />
|
2019-01-06 13:50:43 -07:00
|
|
|
public string Category => "Live TV";
|
2013-11-24 13:51:45 -07:00
|
|
|
|
2021-05-28 05:33:54 -07:00
|
|
|
/// <inheritdoc />
|
|
|
|
public bool IsHidden => _liveTvManager.Services.Count == 1 && GetConfiguration().TunerHosts.Length == 0;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool IsEnabled => true;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public bool IsLogged => true;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public string Key => "RefreshGuide";
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public Task Execute(CancellationToken cancellationToken, IProgress<double> progress)
|
2013-11-24 13:51:45 -07:00
|
|
|
{
|
2013-11-29 09:58:24 -07:00
|
|
|
var manager = (LiveTvManager)_liveTvManager;
|
2013-11-24 13:51:45 -07:00
|
|
|
|
|
|
|
return manager.RefreshChannels(progress, cancellationToken);
|
|
|
|
}
|
|
|
|
|
2021-05-28 05:33:54 -07:00
|
|
|
/// <inheritdoc />
|
2016-10-23 12:14:57 -07:00
|
|
|
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
|
2013-11-24 13:51:45 -07:00
|
|
|
{
|
2019-10-25 03:47:20 -07:00
|
|
|
return new[]
|
|
|
|
{
|
2016-10-23 12:14:57 -07:00
|
|
|
// Every so often
|
2020-10-12 10:22:33 -07:00
|
|
|
new TaskTriggerInfo { Type = TaskTriggerInfo.TriggerInterval, IntervalTicks = TimeSpan.FromHours(24).Ticks }
|
2013-11-24 13:51:45 -07:00
|
|
|
};
|
|
|
|
}
|
2013-11-29 09:58:24 -07:00
|
|
|
|
2015-07-23 10:58:20 -07:00
|
|
|
private LiveTvOptions GetConfiguration()
|
|
|
|
{
|
|
|
|
return _config.GetConfiguration<LiveTvOptions>("livetv");
|
|
|
|
}
|
2013-11-24 13:51:45 -07:00
|
|
|
}
|
|
|
|
}
|