|
|
|
@ -1,4 +1,6 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using MediaBrowser.Common.Configuration;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
|
|
|
|
@ -10,15 +12,20 @@ namespace Jellyfin.Server.Implementations
|
|
|
|
|
public class JellyfinDbProvider
|
|
|
|
|
{
|
|
|
|
|
private readonly IServiceProvider _serviceProvider;
|
|
|
|
|
private readonly IApplicationPaths _appPaths;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="JellyfinDbProvider"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="serviceProvider">The application's service provider.</param>
|
|
|
|
|
public JellyfinDbProvider(IServiceProvider serviceProvider)
|
|
|
|
|
/// <param name="appPaths">The application paths.</param>
|
|
|
|
|
public JellyfinDbProvider(IServiceProvider serviceProvider, IApplicationPaths appPaths)
|
|
|
|
|
{
|
|
|
|
|
_serviceProvider = serviceProvider;
|
|
|
|
|
serviceProvider.GetRequiredService<JellyfinDb>().Database.Migrate();
|
|
|
|
|
_appPaths = appPaths;
|
|
|
|
|
|
|
|
|
|
using var jellyfinDb = CreateContext();
|
|
|
|
|
jellyfinDb.Database.Migrate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
@ -27,7 +34,8 @@ namespace Jellyfin.Server.Implementations
|
|
|
|
|
/// <returns>The newly created context.</returns>
|
|
|
|
|
public JellyfinDb CreateContext()
|
|
|
|
|
{
|
|
|
|
|
return _serviceProvider.GetRequiredService<JellyfinDb>();
|
|
|
|
|
var contextOptions = new DbContextOptionsBuilder<JellyfinDb>().UseSqlite($"Filename={Path.Combine(_appPaths.DataPath, "jellyfin.db")}");
|
|
|
|
|
return ActivatorUtilities.CreateInstance<JellyfinDb>(_serviceProvider, contextOptions.Options);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|