177 lines
5.6 KiB
C#
177 lines
5.6 KiB
C#
using System.Reflection;
|
|
using System.Text.Json.Serialization;
|
|
using gaseous_server;
|
|
using gaseous_server.Models;
|
|
using gaseous_server.SignatureIngestors.XML;
|
|
using gaseous_tools;
|
|
using Microsoft.AspNetCore.Http.Features;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Server.Kestrel.Core;
|
|
using Microsoft.OpenApi.Models;
|
|
|
|
Logging.Log(Logging.LogType.Information, "Startup", "Starting Gaseous Server " + Assembly.GetExecutingAssembly().GetName().Version);
|
|
|
|
// set up db
|
|
Database db = new gaseous_tools.Database(Database.databaseType.MySql, Config.DatabaseConfiguration.ConnectionString);
|
|
db.InitDB();
|
|
|
|
// load app settings
|
|
Config.InitSettings();
|
|
// write updated settings back to the config file
|
|
Config.UpdateConfig();
|
|
|
|
// set initial values
|
|
Guid APIKey = Guid.NewGuid();
|
|
if (Config.ReadSetting("API Key", "Test API Key") == "Test API Key")
|
|
{
|
|
// it's a new api key save it
|
|
Logging.Log(Logging.LogType.Information, "Startup", "Setting initial API key");
|
|
Config.SetSetting("API Key", APIKey.ToString());
|
|
}
|
|
|
|
// set up server
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddControllers().AddJsonOptions(x =>
|
|
{
|
|
// serialize enums as strings in api responses (e.g. Role)
|
|
x.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter());
|
|
|
|
// suppress nulls
|
|
x.JsonSerializerOptions.DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull;
|
|
|
|
// set max depth
|
|
x.JsonSerializerOptions.MaxDepth = 64;
|
|
});
|
|
builder.Services.AddResponseCaching();
|
|
builder.Services.AddControllers(options =>
|
|
{
|
|
options.CacheProfiles.Add("Default30",
|
|
new CacheProfile()
|
|
{
|
|
Duration = 30
|
|
});
|
|
options.CacheProfiles.Add("5Minute",
|
|
new CacheProfile()
|
|
{
|
|
Duration = 300,
|
|
Location = ResponseCacheLocation.Any
|
|
});
|
|
options.CacheProfiles.Add("7Days",
|
|
new CacheProfile()
|
|
{
|
|
Duration = 604800,
|
|
Location = ResponseCacheLocation.Any
|
|
});
|
|
});
|
|
|
|
// set max upload size
|
|
builder.Services.Configure<IISServerOptions>(options =>
|
|
{
|
|
options.MaxRequestBodySize = int.MaxValue;
|
|
});
|
|
builder.Services.Configure<KestrelServerOptions>(options =>
|
|
{
|
|
options.Limits.MaxRequestBodySize = int.MaxValue;
|
|
});
|
|
builder.Services.Configure<FormOptions>(options =>
|
|
{
|
|
options.ValueLengthLimit = int.MaxValue;
|
|
options.MultipartBodyLengthLimit = int.MaxValue;
|
|
options.MultipartHeadersLengthLimit = int.MaxValue;
|
|
});
|
|
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
builder.Services.AddSwaggerGen(options =>
|
|
{
|
|
options.SwaggerDoc("v1", new OpenApiInfo
|
|
{
|
|
Version = "v1",
|
|
Title = "Gaseous Server API",
|
|
Description = "An API for managing the Gaseous Server",
|
|
TermsOfService = new Uri("https://github.com/gaseous-project/gaseous-server"),
|
|
Contact = new OpenApiContact
|
|
{
|
|
Name = "GitHub Repository",
|
|
Url = new Uri("https://github.com/gaseous-project/gaseous-server")
|
|
},
|
|
License = new OpenApiLicense
|
|
{
|
|
Name = "Gaseous Server License",
|
|
Url = new Uri("https://github.com/gaseous-project/gaseous-server/blob/main/LICENSE")
|
|
}
|
|
});
|
|
|
|
// using System.Reflection;
|
|
var xmlFilename = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
|
options.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, xmlFilename));
|
|
}
|
|
);
|
|
builder.Services.AddHostedService<TimedHostedService>();
|
|
|
|
var app = builder.Build();
|
|
|
|
// Configure the HTTP request pipeline.
|
|
//if (app.Environment.IsDevelopment())
|
|
//{
|
|
app.UseSwagger();
|
|
app.UseSwaggerUI();
|
|
//}
|
|
|
|
//app.UseHttpsRedirection();
|
|
|
|
app.UseResponseCaching();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.UseDefaultFiles();
|
|
app.UseStaticFiles(new StaticFileOptions
|
|
{
|
|
ServeUnknownFileTypes = true, //allow unkown file types also to be served
|
|
DefaultContentType = "plain/text" //content type to returned if fileType is not known.
|
|
});
|
|
|
|
app.MapControllers();
|
|
|
|
// setup library directories
|
|
Config.LibraryConfiguration.InitLibrary();
|
|
|
|
// insert unknown platform and game if not present
|
|
gaseous_server.Classes.Metadata.Games.GetGame(0, false, false, false);
|
|
gaseous_server.Classes.Metadata.Platforms.GetPlatform(0);
|
|
|
|
// extract platform map if not present
|
|
PlatformMapping.ExtractPlatformMap();
|
|
|
|
// add background tasks
|
|
ProcessQueue.QueueItems.Add(new ProcessQueue.QueueItem(ProcessQueue.QueueItemType.SignatureIngestor, 60));
|
|
ProcessQueue.QueueItems.Add(new ProcessQueue.QueueItem(
|
|
ProcessQueue.QueueItemType.TitleIngestor, 1,
|
|
new List<ProcessQueue.QueueItemType>
|
|
{
|
|
ProcessQueue.QueueItemType.OrganiseLibrary,
|
|
ProcessQueue.QueueItemType.LibraryScan
|
|
})
|
|
);
|
|
ProcessQueue.QueueItems.Add(new ProcessQueue.QueueItem(ProcessQueue.QueueItemType.MetadataRefresh, 360));
|
|
ProcessQueue.QueueItems.Add(new ProcessQueue.QueueItem(
|
|
ProcessQueue.QueueItemType.OrganiseLibrary, 1440, new List<ProcessQueue.QueueItemType>
|
|
{
|
|
ProcessQueue.QueueItemType.LibraryScan,
|
|
ProcessQueue.QueueItemType.TitleIngestor
|
|
})
|
|
);
|
|
ProcessQueue.QueueItems.Add(new ProcessQueue.QueueItem(
|
|
ProcessQueue.QueueItemType.LibraryScan, 30, new List<ProcessQueue.QueueItemType>
|
|
{
|
|
ProcessQueue.QueueItemType.TitleIngestor,
|
|
ProcessQueue.QueueItemType.OrganiseLibrary
|
|
})
|
|
);
|
|
ProcessQueue.QueueItems.Add(new ProcessQueue.QueueItem(ProcessQueue.QueueItemType.CollectionCompiler, 5, false));
|
|
|
|
// start the app
|
|
app.Run();
|