45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
namespace MediaBrowser.Server.Startup.Common.Migrations
|
|
{
|
|
public class CollectionGroupingMigration : IVersionMigration
|
|
{
|
|
private readonly IServerConfigurationManager _config;
|
|
private readonly IUserManager _userManager;
|
|
|
|
public CollectionGroupingMigration(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.GroupMoviesIntoBoxSets))
|
|
{
|
|
_config.Configuration.EnableGroupingIntoCollections = true;
|
|
}
|
|
}
|
|
|
|
migrationKeyList.Add(migrationKey);
|
|
_config.Configuration.Migrations = migrationKeyList.ToArray();
|
|
_config.SaveConfiguration();
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|