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.
41 lines
1.3 KiB
41 lines
1.3 KiB
using System.Linq;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
namespace MediaBrowser.Server.Startup.Common.Migrations
|
|
{
|
|
public class FolderViewSettingMigration : IVersionMigration
|
|
{
|
|
private readonly IServerConfigurationManager _config;
|
|
private readonly IUserManager _userManager;
|
|
|
|
public FolderViewSettingMigration(IServerConfigurationManager config, IUserManager userManager)
|
|
{
|
|
_config = config;
|
|
_userManager = userManager;
|
|
}
|
|
|
|
public void Run()
|
|
{
|
|
var migrationKey = this.GetType().Name;
|
|
var migrationKeyList = _config.Configuration.Migrations.ToList();
|
|
|
|
if (!migrationKeyList.Contains(migrationKey))
|
|
{
|
|
if (_config.Configuration.IsStartupWizardCompleted)
|
|
{
|
|
if (_userManager.Users.Any(i => i.Configuration.DisplayFoldersView))
|
|
{
|
|
_config.Configuration.EnableFolderView = true;
|
|
}
|
|
}
|
|
|
|
migrationKeyList.Add(migrationKey);
|
|
_config.Configuration.Migrations = migrationKeyList.ToArray();
|
|
_config.SaveConfiguration();
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|