2020-02-18 08:32:06 +01:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
2020-03-16 14:02:08 +01:00
|
|
|
using Microsoft.Extensions.Configuration;
|
2020-02-18 08:32:06 +01:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
|
using Umbraco.Web.BackOffice.AspNetCore;
|
2020-03-24 18:18:25 +01:00
|
|
|
using Umbraco.Web.Common.Extensions;
|
2020-02-24 10:51:48 +01:00
|
|
|
using Umbraco.Web.Website.AspNetCore;
|
2020-02-18 08:32:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.UI.BackOffice
|
|
|
|
|
{
|
|
|
|
|
public class Startup
|
|
|
|
|
{
|
2020-03-25 18:21:44 +11:00
|
|
|
private readonly IWebHostEnvironment _webHostEnvironment;
|
|
|
|
|
private readonly IConfiguration _config;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructor
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="webHostEnvironment"></param>
|
|
|
|
|
/// <param name="config"></param>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Only a few services are possible to be injected here https://github.com/dotnet/aspnetcore/issues/9337
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public Startup(IWebHostEnvironment webHostEnvironment, IConfiguration config)
|
|
|
|
|
{
|
|
|
|
|
_webHostEnvironment = webHostEnvironment ?? throw new ArgumentNullException(nameof(webHostEnvironment));
|
|
|
|
|
_config = config ?? throw new ArgumentNullException(nameof(config));
|
|
|
|
|
}
|
2020-03-16 14:02:08 +01:00
|
|
|
|
2020-02-18 08:32:06 +01:00
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
|
|
|
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
|
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
2020-03-25 18:21:44 +11:00
|
|
|
services.AddUmbracoConfiguration(_config);
|
|
|
|
|
services.AddUmbracoCore(_webHostEnvironment);
|
2020-02-24 10:51:48 +01:00
|
|
|
services.AddUmbracoWebsite();
|
2020-02-18 08:32:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
|
|
|
{
|
2020-03-24 18:18:25 +01:00
|
|
|
app.UseUmbracoRequest();
|
2020-02-18 08:32:06 +01:00
|
|
|
if (env.IsDevelopment())
|
|
|
|
|
{
|
|
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 10:51:48 +01:00
|
|
|
app.UseUmbracoWebsite();
|
2020-02-18 08:32:06 +01:00
|
|
|
app.UseUmbracoBackOffice();
|
2020-02-24 10:51:48 +01:00
|
|
|
|
2020-02-18 08:32:06 +01:00
|
|
|
app.UseRouting();
|
|
|
|
|
|
|
|
|
|
app.UseEndpoints(endpoints =>
|
|
|
|
|
{
|
|
|
|
|
endpoints.MapGet("/", async context => { await context.Response.WriteAsync("Hello World!"); });
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|