DocSpace-buildtools/products/ASC.Files/Server/Startup.cs

93 lines
3.1 KiB
C#
Raw Normal View History

2020-10-22 14:17:20 +00:00
using System.Linq;
2020-03-25 14:04:02 +00:00
using System.Text;
2020-07-15 12:33:44 +00:00
using System.Text.Json.Serialization;
2020-10-12 16:23:15 +00:00
2020-05-14 15:52:06 +00:00
using ASC.Api.Core;
2020-02-26 10:01:12 +00:00
using ASC.Api.Documents;
2020-02-17 08:58:14 +00:00
using ASC.Common;
2020-04-13 11:46:26 +00:00
using ASC.Web.Files;
2020-04-20 08:08:04 +00:00
using ASC.Web.Files.HttpHandlers;
2020-09-08 08:42:13 +00:00
using ASC.Web.Studio.Core.Notify;
2020-10-12 16:23:15 +00:00
2020-02-12 10:48:58 +00:00
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace ASC.Files
{
public class Startup : BaseStartup
2020-07-15 12:33:44 +00:00
{
public override string[] LogParams { get => new string[] { "ASC.Files" }; }
public override JsonConverter[] Converters { get => new JsonConverter[] { new FileEntryWrapperConverter() }; }
2020-02-12 10:48:58 +00:00
public Startup(IConfiguration configuration, IHostEnvironment hostEnvironment)
: base(configuration, hostEnvironment)
2020-07-15 12:33:44 +00:00
{
2020-02-12 10:48:58 +00:00
}
public override void ConfigureServices(IServiceCollection services)
2020-02-12 10:48:58 +00:00
{
2020-03-25 14:04:02 +00:00
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
2020-02-12 10:48:58 +00:00
services.AddMemoryCache();
2020-10-18 16:34:30 +00:00
base.ConfigureServices(services);
2020-02-12 10:48:58 +00:00
2020-10-18 16:34:30 +00:00
DIHelper
2020-07-16 09:08:20 +00:00
.AddApiProductEntryPointService()
2020-02-26 10:01:12 +00:00
.AddDocumentsControllerService()
2020-09-22 14:17:17 +00:00
.AddPrivacyRoomApiService()
2020-04-20 08:08:04 +00:00
.AddFileHandlerService()
2020-04-20 12:08:24 +00:00
.AddChunkedUploaderHandlerService()
2020-04-20 12:32:24 +00:00
.AddThirdPartyAppHandlerService()
2020-09-08 08:42:13 +00:00
.AddDocuSignHandlerService()
.AddNotifyConfiguration();
2020-02-12 13:50:38 +00:00
2020-10-22 14:17:20 +00:00
var a = $"{string.Join(",", DIHelper.Singleton.OrderBy(r => r).ToArray())},{string.Join(",", DIHelper.Scoped.OrderBy(r => r).ToArray())},{string.Join(",", DIHelper.Transient.OrderBy(r => r).ToArray())}";
var b = 0;
2020-02-12 10:48:58 +00:00
}
public override void Configure(IApplicationBuilder app, IWebHostEnvironment env)
2020-02-12 10:48:58 +00:00
{
2020-07-15 15:27:46 +00:00
app.UseCors(builder =>
builder
.AllowAnyOrigin()
.AllowAnyHeader()
.AllowAnyMethod());
base.Configure(app, env);
2020-10-12 16:23:15 +00:00
2020-04-13 11:46:26 +00:00
app.MapWhen(
context => context.Request.Path.ToString().EndsWith("httphandlers/filehandler.ashx"),
appBranch =>
{
appBranch.UseFileHandler();
});
2020-04-20 08:08:04 +00:00
app.MapWhen(
context => context.Request.Path.ToString().EndsWith("ChunkedUploader.ashx"),
appBranch =>
{
appBranch.UseChunkedUploaderHandler();
});
2020-04-20 12:08:24 +00:00
app.MapWhen(
context => context.Request.Path.ToString().EndsWith("ThirdPartyAppHandler.ashx"),
appBranch =>
{
appBranch.UseThirdPartyAppHandler();
});
2020-04-20 12:32:24 +00:00
app.MapWhen(
context => context.Request.Path.ToString().EndsWith("DocuSignHandler.ashx"),
appBranch =>
{
appBranch.UseDocuSignHandler();
});
2020-02-12 10:48:58 +00:00
}
}
}