You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.4 KiB
76 lines
2.4 KiB
6 years ago
|
using System;
|
||
11 years ago
|
using System.Collections.Generic;
|
||
3 years ago
|
using System.Threading;
|
||
11 years ago
|
using System.Threading.Tasks;
|
||
6 years ago
|
using MediaBrowser.Common.Configuration;
|
||
|
using MediaBrowser.Controller.LiveTv;
|
||
|
using MediaBrowser.Model.LiveTv;
|
||
8 years ago
|
using MediaBrowser.Model.Tasks;
|
||
11 years ago
|
|
||
8 years ago
|
namespace Emby.Server.Implementations.LiveTv
|
||
11 years ago
|
{
|
||
3 years ago
|
/// <summary>
|
||
|
/// The "Refresh Guide" scheduled task.
|
||
|
/// </summary>
|
||
|
public class RefreshGuideScheduledTask : IScheduledTask, IConfigurableScheduledTask
|
||
11 years ago
|
{
|
||
|
private readonly ILiveTvManager _liveTvManager;
|
||
9 years ago
|
private readonly IConfigurationManager _config;
|
||
11 years ago
|
|
||
3 years ago
|
/// <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)
|
||
11 years ago
|
{
|
||
|
_liveTvManager = liveTvManager;
|
||
9 years ago
|
_config = config;
|
||
11 years ago
|
}
|
||
|
|
||
3 years ago
|
/// <inheritdoc />
|
||
6 years ago
|
public string Name => "Refresh Guide";
|
||
11 years ago
|
|
||
3 years ago
|
/// <inheritdoc />
|
||
6 years ago
|
public string Description => "Downloads channel information from live tv services.";
|
||
11 years ago
|
|
||
3 years ago
|
/// <inheritdoc />
|
||
6 years ago
|
public string Category => "Live TV";
|
||
11 years ago
|
|
||
3 years ago
|
/// <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)
|
||
11 years ago
|
{
|
||
11 years ago
|
var manager = (LiveTvManager)_liveTvManager;
|
||
11 years ago
|
|
||
|
return manager.RefreshChannels(progress, cancellationToken);
|
||
|
}
|
||
|
|
||
3 years ago
|
/// <inheritdoc />
|
||
8 years ago
|
public IEnumerable<TaskTriggerInfo> GetDefaultTriggers()
|
||
11 years ago
|
{
|
||
5 years ago
|
return new[]
|
||
|
{
|
||
8 years ago
|
// Every so often
|
||
4 years ago
|
new TaskTriggerInfo { Type = TaskTriggerInfo.TriggerInterval, IntervalTicks = TimeSpan.FromHours(24).Ticks }
|
||
11 years ago
|
};
|
||
|
}
|
||
11 years ago
|
|
||
9 years ago
|
private LiveTvOptions GetConfiguration()
|
||
|
{
|
||
|
return _config.GetConfiguration<LiveTvOptions>("livetv");
|
||
|
}
|
||
11 years ago
|
}
|
||
|
}
|