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

90 lines
2.9 KiB
C#
Raw Normal View History

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;
2022-02-09 14:34:09 +00:00
using ASC.Files.Core.Security;
2022-04-20 07:34:33 +00:00
using ASC.Files.Core.Services.OFormService;
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-10-22 17:57:18 +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;
2020-02-12 10:48:58 +00:00
namespace ASC.Files
{
public class Startup : BaseStartup
2022-02-09 14:34:09 +00:00
{
public override JsonConverter[] Converters { get => new JsonConverter[] { new FileEntryWrapperConverter(), new FileShareConverter() }; }
2020-07-15 12:33:44 +00:00
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-10-19 19:04:07 +00:00
DIHelper.TryAdd<FilesController>();
DIHelper.TryAdd<PrivacyRoomController>();
2020-10-22 17:57:18 +00:00
DIHelper.TryAdd<FileHandlerService>();
DIHelper.TryAdd<ChunkedUploaderHandlerService>();
DIHelper.TryAdd<DocuSignHandlerService>();
DIHelper.TryAdd<ThirdPartyAppHandlerService>();
2022-04-20 07:34:33 +00:00
DIHelper.TryAdd<OFormService>();
2020-10-22 17:57:18 +00:00
2022-04-20 07:34:33 +00:00
services.AddHostedService<OFormService>();
2020-10-22 17:57:18 +00:00
NotifyConfigurationExtension.Register(DIHelper);
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
}
}
}