[13860] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using Microsoft.AspNetCore.Builder;
|
---|
| 23 | using Microsoft.AspNetCore.Hosting;
|
---|
[13656] | 24 | using Microsoft.Extensions.DependencyInjection;
|
---|
| 25 | using HeuristicLab.Clients.Hive.WebJobManager.Services;
|
---|
| 26 | using Microsoft.Extensions.Configuration;
|
---|
| 27 | using HeuristicLab.Common;
|
---|
| 28 | using HeuristicLab.Core;
|
---|
[13689] | 29 | using HeuristicLab.PluginInfrastructure;
|
---|
[13739] | 30 | using System;
|
---|
[13860] | 31 | using Microsoft.AspNetCore.Mvc.Razor;
|
---|
| 32 | using System.Linq;
|
---|
| 33 | using Microsoft.CodeAnalysis;
|
---|
[13862] | 34 | using HeuristicLab.Clients.Hive.WebJobManager.Services.Imports;
|
---|
[13656] | 35 |
|
---|
| 36 | namespace HeuristicLab.Clients.Hive.WebJobManager
|
---|
| 37 | {
|
---|
| 38 | public class Startup
|
---|
| 39 | {
|
---|
[13689] | 40 | public IHostingEnvironment hostingEnvironment {
|
---|
| 41 | get; set; }
|
---|
[13656] | 42 | public Startup(IHostingEnvironment hostingEnvironment)
|
---|
| 43 | {
|
---|
| 44 | var builder = new ConfigurationBuilder()
|
---|
[13860] | 45 | .SetBasePath(hostingEnvironment.ContentRootPath);
|
---|
[13656] | 46 | var config = builder.Build();
|
---|
[13689] | 47 |
|
---|
| 48 | ApplicationManager.InitializeForWeb();
|
---|
| 49 |
|
---|
| 50 |
|
---|
[13656] | 51 | ContentManager.Initialize(new PersistenceContentManager());
|
---|
| 52 | //Console.WriteLine(""+ config.Get("configuration"));
|
---|
| 53 | this.hostingEnvironment = hostingEnvironment;
|
---|
| 54 | }
|
---|
[13733] | 55 | public void ConfigureServices(IServiceCollection services)
|
---|
[13656] | 56 | {
|
---|
| 57 |
|
---|
| 58 | services.AddMvc();
|
---|
[13739] | 59 | services.AddSession(options => {
|
---|
| 60 | options.IdleTimeout = TimeSpan.FromMinutes(30);
|
---|
| 61 | options.CookieName = ".HiveWJM";
|
---|
| 62 | });
|
---|
[13733] | 63 | services.AddSingleton<IHiveServiceLocator, HiveServiceLocatorWeb>();
|
---|
[13689] | 64 | services.AddSignalR();
|
---|
[13860] | 65 | var myAssemblies = AppDomain.CurrentDomain.GetAssemblies().Select(x => MetadataReference.CreateFromFile(x.Location)).ToList();
|
---|
| 66 |
|
---|
| 67 | services.Configure((RazorViewEngineOptions options) =>
|
---|
| 68 | {
|
---|
| 69 | var previous = options.CompilationCallback;
|
---|
| 70 | options.CompilationCallback = (context) =>
|
---|
| 71 | {
|
---|
| 72 | previous?.Invoke(context);
|
---|
| 73 |
|
---|
| 74 | context.Compilation = context.Compilation.AddReferences(myAssemblies);
|
---|
| 75 | };
|
---|
| 76 | });
|
---|
[13656] | 77 | }
|
---|
| 78 |
|
---|
[13860] | 79 | public void Configure(IApplicationBuilder app)
|
---|
[13656] | 80 | {
|
---|
| 81 | if (hostingEnvironment.IsDevelopment())
|
---|
| 82 | app.UseDeveloperExceptionPage();
|
---|
[13860] | 83 |
|
---|
[13739] | 84 | app.UseSession();
|
---|
[13656] | 85 | app.UseStaticFiles();
|
---|
| 86 | app.UseStatusCodePages();
|
---|
[13689] | 87 | app.UseMvcWithDefaultRoute();
|
---|
[13860] | 88 | app.UseSignalR();
|
---|
[13656] | 89 | }
|
---|
| 90 |
|
---|
[13689] | 91 |
|
---|
| 92 |
|
---|
[13656] | 93 | // Entry point for the application.
|
---|
[13860] | 94 | //public static void Main(string[] args) => WebApplication.Run<Startup>(args);
|
---|
[13656] | 95 | }
|
---|
| 96 | }
|
---|