38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
|
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)
|
|||
|
{
|
|||
|
_config.Configuration.EnableFolderView = _userManager.Users.Any(i => i.Configuration.DisplayFoldersView);
|
|||
|
}
|
|||
|
|
|||
|
migrationKeyList.Add(migrationKey);
|
|||
|
_config.Configuration.Migrations = migrationKeyList.ToArray();
|
|||
|
_config.SaveConfiguration();
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|