2020-06-05 19:23:38 +00:00
|
|
|
|
using System;
|
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
|
using MediaBrowser.Model.Updates;
|
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Server.Migrations.Routines
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Migration to initialize system configuration with the default plugin repository.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class AddDefaultPluginRepository : IMigrationRoutine
|
|
|
|
|
{
|
|
|
|
|
private readonly IServerConfigurationManager _serverConfigurationManager;
|
|
|
|
|
|
|
|
|
|
private readonly RepositoryInfo _defaultRepositoryInfo = new RepositoryInfo
|
|
|
|
|
{
|
|
|
|
|
Name = "Jellyfin Stable",
|
2020-06-06 13:02:30 +00:00
|
|
|
|
Url = "https://repo.jellyfin.org/releases/plugin/manifest-stable.json"
|
2020-06-05 19:23:38 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="AddDefaultPluginRepository"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="serverConfigurationManager">Instance of the <see cref="IServerConfigurationManager"/> interface.</param>
|
|
|
|
|
public AddDefaultPluginRepository(IServerConfigurationManager serverConfigurationManager)
|
|
|
|
|
{
|
|
|
|
|
_serverConfigurationManager = serverConfigurationManager;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public Guid Id => Guid.Parse("EB58EBEE-9514-4B9B-8225-12E1A40020DF");
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
2020-06-22 12:59:56 +00:00
|
|
|
|
public string Name => "AddDefaultPluginRepository";
|
2020-06-05 19:23:38 +00:00
|
|
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public void Perform()
|
|
|
|
|
{
|
|
|
|
|
_serverConfigurationManager.Configuration.PluginRepositories.Add(_defaultRepositoryInfo);
|
|
|
|
|
_serverConfigurationManager.SaveConfiguration();
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-06 09:57:00 +00:00
|
|
|
|
}
|