mirror of https://github.com/Sonarr/Sonarr
66 lines
2.1 KiB
C#
66 lines
2.1 KiB
C#
using NzbDrone.Services.Service.Datastore;
|
|
using NzbDrone.Services.Service.Migrations;
|
|
using Services.PetaPoco;
|
|
|
|
[assembly: WebActivator.PreApplicationStartMethod(typeof(NzbDrone.Services.Service.App_Start.NinjectWebCommon), "Start")]
|
|
[assembly: WebActivator.ApplicationShutdownMethodAttribute(typeof(NzbDrone.Services.Service.App_Start.NinjectWebCommon), "Stop")]
|
|
|
|
namespace NzbDrone.Services.Service.App_Start
|
|
{
|
|
using System;
|
|
using System.Web;
|
|
|
|
using Microsoft.Web.Infrastructure.DynamicModuleHelper;
|
|
|
|
using Ninject;
|
|
using Ninject.Web.Common;
|
|
|
|
public static class NinjectWebCommon
|
|
{
|
|
private static readonly Bootstrapper bootstrapper = new Bootstrapper();
|
|
|
|
/// <summary>
|
|
/// Starts the application
|
|
/// </summary>
|
|
public static void Start()
|
|
{
|
|
DynamicModuleUtility.RegisterModule(typeof(OnePerRequestHttpModule));
|
|
DynamicModuleUtility.RegisterModule(typeof(NinjectHttpModule));
|
|
bootstrapper.Initialize(CreateKernel);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Stops the application.
|
|
/// </summary>
|
|
public static void Stop()
|
|
{
|
|
bootstrapper.ShutDown();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates the kernel that will manage your application.
|
|
/// </summary>
|
|
/// <returns>The created kernel.</returns>
|
|
private static IKernel CreateKernel()
|
|
{
|
|
var kernel = new StandardKernel();
|
|
kernel.Bind<Func<IKernel>>().ToMethod(ctx => () => new Bootstrapper().Kernel);
|
|
kernel.Bind<IHttpModule>().To<HttpApplicationInitializationHttpModule>();
|
|
|
|
MigrationsHelper.Run(Connection.GetConnectionString);
|
|
kernel.Bind<IDatabase>().ToMethod(c => Connection.GetPetaPocoDb());
|
|
|
|
RegisterServices(kernel);
|
|
return kernel;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Load your modules or register your services here!
|
|
/// </summary>
|
|
/// <param name="kernel">The kernel.</param>
|
|
private static void RegisterServices(IKernel kernel)
|
|
{
|
|
}
|
|
}
|
|
}
|