-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
90 lines (69 loc) · 2.57 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.FileProviders;
using PrepTeach;
using PrepTeach.Extensions;
using PrepTeach.Services;
using System.Diagnostics;
using System.IO.Compression;
using ZNetCS.AspNetCore.Compression;
using ZNetCS.AspNetCore.Compression.Compressors;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddControllers().AddNewtonsoftJson();
builder.Services.AddRouting(options => options.LowercaseUrls = true);
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddDbContext<MyDbContext>(options => options.UseSqlite("Filename=Database.db"));
builder.Services.AddMyAuthentication(builder.Configuration);
builder.Services.AddSingleton<IFilesStorePath, FilesStorePath>();
builder.Services.AddScoped<IUserService, UserService>();
builder.Services.AddCompression(options => { options.Compressors = new List<ICompressor> { new GZipCompressor(CompressionLevel.Fastest), new DeflateCompressor(CompressionLevel.Fastest), new BrotliCompressor(CompressionLevel.Fastest) }; });
builder.Services.AddCors(options =>
{
options.AddPolicy("AllowAllHeaders",
bd =>
{
bd.AllowAnyOrigin()
.AllowAnyHeader()
.AllowAnyMethod();
});
});
//if (app.Environment.IsDevelopment())
//{
builder.Services.AddMySwagger();
//}
var app = builder.Build();
app.UseMySwagger();
if (!app.Environment.IsDevelopment())
{
try
{
var processes = Process.GetProcessesByName("Chrome");
var path = processes.FirstOrDefault()?.MainModule?.FileName;
if (path != null)
Process.Start(path, "http://localhost:5000/swagger");
}
catch { }
}
using (var serviceScope = app.Services.CreateScope())
{
serviceScope.ServiceProvider.GetService<MyDbContext>()?.Database.Migrate();
}
app.UseCompression();
var options = new DefaultFilesOptions();
options.DefaultFileNames.Clear();
options.DefaultFileNames.Add("index.html");
app.UseDefaultFiles(options);
app.UseStaticFiles();
var FileStorePath = AppDomain.CurrentDomain.BaseDirectory + $"wwwroot{Path.DirectorySeparatorChar}media";
if (!Directory.Exists(FileStorePath)) Directory.CreateDirectory(FileStorePath);
app.UseStaticFiles(new StaticFileOptions
{
OnPrepareResponse = ctx => { ctx.Context.Response.Headers.Append("Cache-Control", $"public, max-age=604800"); },
FileProvider = new PhysicalFileProvider(FileStorePath),
RequestPath = "/media"
});
app.UseCors("AllowAllHeaders");
app.UseHttpsRedirection();
app.UseAuthentication();
app.UseAuthorization();
app.MapControllers();
app.Run();