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.
44 lines
1.5 KiB
44 lines
1.5 KiB
using MediaBrowser.Controller.Configuration;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Server.Startup.Common.Migrations
|
|
{
|
|
class OmdbEpisodeProviderMigration : IVersionMigration
|
|
{
|
|
private readonly IServerConfigurationManager _config;
|
|
private const string _providerName = "The Open Movie Database";
|
|
|
|
public OmdbEpisodeProviderMigration(IServerConfigurationManager config)
|
|
{
|
|
_config = config;
|
|
}
|
|
|
|
public void Run()
|
|
{
|
|
var migrationKey = this.GetType().FullName;
|
|
var migrationKeyList = _config.Configuration.Migrations.ToList();
|
|
|
|
if (!migrationKeyList.Contains(migrationKey))
|
|
{
|
|
foreach (var metaDataOption in _config.Configuration.MetadataOptions)
|
|
{
|
|
if (metaDataOption.ItemType == "Episode")
|
|
{
|
|
var disabledFetchers = metaDataOption.DisabledMetadataFetchers.ToList();
|
|
if (!disabledFetchers.Contains(_providerName))
|
|
{
|
|
disabledFetchers.Add(_providerName);
|
|
metaDataOption.DisabledMetadataFetchers = disabledFetchers.ToArray();
|
|
}
|
|
}
|
|
}
|
|
|
|
migrationKeyList.Add(migrationKey);
|
|
_config.Configuration.Migrations = migrationKeyList.ToArray();
|
|
_config.SaveConfiguration();
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|