1
0
mirror of synced 2025-02-17 11:08:31 +01:00

Include music db files, update link for event files, fix .evt and .cmp static file extension unknown

This commit is contained in:
asesidaa 2023-02-11 00:46:44 +08:00
parent 6eb71437cf
commit aefc9ca326
11 changed files with 78 additions and 32 deletions

View File

@ -4,7 +4,7 @@ using MediatR;
namespace Application.Game.Server;
public record GetDataQuery(string Host) : IRequest<string>;
public record GetDataQuery(string Host, string Scheme) : IRequest<string>;
public class GetDataQueryHandler : IRequestHandler<GetDataQuery, string>
{
@ -24,8 +24,7 @@ public class GetDataQueryHandler : IRequestHandler<GetDataQuery, string>
return Task.FromResult(response);
}
var host = request.Host;
var urlBase = $"http://{host}/events/";
var urlBase = $"{request.Scheme}://{request.Host}/events/";
var dataString = new StringBuilder();
var events = eventManagerService.GetEvents();
var count = 0;

View File

@ -289,7 +289,14 @@ public class CertificateService
{
logger.LogInformation("Certificate CN={CommonName} found!", commonName);
return result.First();
var cert = result.First();
var extensions = cert.Extensions;
if (extensions.Select(extension => extension.Oid).Any(oid => oid?.Value == OidLookup.ServerAuthentication.Value))
{
return cert;
}
logger.LogInformation("Certificate CN={CommonName} does not include server authentication!", commonName);
return null;
}
store.Close();

View File

@ -439,4 +439,4 @@ FodyWeavers.xsd
/db/card.db3
Certificates
wwwroot/events/
Database/*
Database/card*.db3

View File

@ -35,7 +35,7 @@ public class ServerController : BaseController<ServerController>
[HttpGet("data.php")]
public async Task<ActionResult<string>> GetData()
{
var query = new GetDataQuery(Request.Host.Value);
var query = new GetDataQuery(Request.Host.Value, Request.Scheme);
return Ok(await Mediator.Send(query));
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -25,16 +25,46 @@
</ItemGroup>
<ItemGroup>
<Content Remove="Configurations\database.json" />
<None Include="Configurations\database.json" />
<Content Remove="Configurations\events.json" />
<None Include="Configurations\events.json" />
<Content Remove="Configurations\game.json" />
<None Include="Configurations\game.json" />
<Content Remove="Configurations\logging.json" />
<None Include="Configurations\logging.json" />
<Content Remove="Configurations\matching.json" />
<None Include="Configurations\matching.json" />
<Content Update="Configurations\database.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Update="Configurations\events.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Update="Configurations\game.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Update="Configurations\logging.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Update="Configurations\matching.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="Database\music.db3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="Database\music4MAX.db3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="Database\music4MAX465.db3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="Database\music471.db3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
<Content Include="Database\music471omni.db3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
</Content>
</ItemGroup>
<ItemGroup>
@ -44,6 +74,7 @@
<ItemGroup>
<Folder Include="Controllers\API"/>
<Folder Include="Logs"/>
<Folder Include="wwwroot"/>
</ItemGroup>
</Project>

View File

@ -6,6 +6,7 @@ using Infrastructure;
using Infrastructure.Common;
using Infrastructure.Persistence;
using MainServer.Filters;
using Microsoft.AspNetCore.StaticFiles;
using Microsoft.EntityFrameworkCore;
using Serilog;
using Serilog.Extensions.Logging;
@ -92,8 +93,16 @@ try
app.UseSwaggerUI();
}
// app.UseExceptionHandler();
app.UseStaticFiles();
// Add content type for .cmp and .evt files as static files with unknown file extensions return 404 by default
// See https://learn.microsoft.com/en-us/aspnet/core/fundamentals/static-files?view=aspnetcore-7.0#fileextensioncontenttypeprovider
// ReSharper disable once UseObjectOrCollectionInitializer
var provider = new FileExtensionContentTypeProvider();
provider.Mappings[".cmp"] = "text/plain";
provider.Mappings[".evt"] = "text/plain";
app.UseStaticFiles(new StaticFileOptions
{
ContentTypeProvider = provider
});
app.MapControllers();