2020-05-07 04:09:55 +00:00
|
|
|
using System.Reflection;
|
2020-04-16 20:03:23 +00:00
|
|
|
|
|
|
|
using Autofac;
|
2020-01-26 00:27:45 +00:00
|
|
|
|
2020-06-15 23:15:59 +00:00
|
|
|
using Microsoft.AspNetCore.Authentication;
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2021-10-12 07:01:02 +00:00
|
|
|
using Microsoft.AspNetCore.Diagnostics;
|
2020-05-07 03:14:31 +00:00
|
|
|
using Microsoft.OpenApi.Models;
|
2019-07-09 18:39:29 +00:00
|
|
|
|
2021-10-12 07:01:02 +00:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
using PluralKit.Core;
|
|
|
|
|
2021-10-12 07:01:02 +00:00
|
|
|
using Serilog;
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
namespace PluralKit.API;
|
2020-01-26 00:27:45 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
public class Startup
|
2019-07-09 18:39:29 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
public Startup(IConfiguration configuration)
|
|
|
|
{
|
|
|
|
Configuration = configuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
public IConfiguration Configuration { get; }
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
|
|
public void ConfigureServices(IServiceCollection services)
|
2019-07-09 18:39:29 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
services.AddCors();
|
|
|
|
services.AddAuthentication("SystemToken")
|
|
|
|
.AddScheme<SystemTokenAuthenticationHandler.Opts,
|
|
|
|
SystemTokenAuthenticationHandler>("SystemToken", null);
|
|
|
|
|
|
|
|
services.AddAuthorization(options =>
|
2019-07-09 18:39:29 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
options.AddPolicy("EditSystem",
|
|
|
|
p => p.RequireAuthenticatedUser().AddRequirements(new OwnSystemRequirement()));
|
|
|
|
options.AddPolicy("EditMember",
|
|
|
|
p => p.RequireAuthenticatedUser().AddRequirements(new OwnSystemRequirement()));
|
|
|
|
|
|
|
|
options.AddPolicy("ViewMembers",
|
|
|
|
p => p.AddRequirements(new PrivacyRequirement<PKSystem>(s => s.MemberListPrivacy)));
|
|
|
|
options.AddPolicy("ViewFront",
|
|
|
|
p => p.AddRequirements(new PrivacyRequirement<PKSystem>(s => s.FrontPrivacy)));
|
|
|
|
options.AddPolicy("ViewFrontHistory",
|
|
|
|
p => p.AddRequirements(new PrivacyRequirement<PKSystem>(s => s.FrontHistoryPrivacy)));
|
|
|
|
});
|
|
|
|
services.AddSingleton<IAuthenticationHandler, SystemTokenAuthenticationHandler>();
|
|
|
|
services.AddSingleton<IAuthorizationHandler, MemberOwnerHandler>();
|
|
|
|
services.AddSingleton<IAuthorizationHandler, SystemOwnerHandler>();
|
|
|
|
services.AddSingleton<IAuthorizationHandler, SystemPrivacyHandler>();
|
|
|
|
|
|
|
|
services.AddControllers()
|
|
|
|
// sorry MS, this just does *more*
|
|
|
|
.AddNewtonsoftJson(opts =>
|
|
|
|
{
|
|
|
|
// ... though by default it messes up timestamps in JSON
|
|
|
|
opts.SerializerSettings.DateParseHandling = DateParseHandling.None;
|
|
|
|
})
|
|
|
|
.ConfigureApiBehaviorOptions(options =>
|
|
|
|
options.InvalidModelStateResponseFactory = context =>
|
|
|
|
throw Errors.GenericBadRequest
|
|
|
|
);
|
2019-07-09 18:39:29 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
services.AddSwaggerGen(c =>
|
|
|
|
{
|
|
|
|
c.SwaggerDoc("v1.0", new OpenApiInfo { Title = "PluralKit", Version = "1.0" });
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
c.EnableAnnotations();
|
|
|
|
c.AddSecurityDefinition("TokenAuth",
|
|
|
|
new OpenApiSecurityScheme { Name = "Authorization", Type = SecuritySchemeType.ApiKey });
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
// Exclude routes without a version, then fall back to group name matching (default behavior)
|
|
|
|
c.DocInclusionPredicate((docName, apiDesc) =>
|
2020-05-07 03:14:31 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
if (!apiDesc.RelativePath.StartsWith("v1/")) return false;
|
|
|
|
return apiDesc.GroupName == docName;
|
2020-05-07 03:14:31 +00:00
|
|
|
});
|
2019-07-11 19:25:23 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
// Set the comments path for the Swagger JSON and UI.
|
|
|
|
// https://docs.microsoft.com/en-us/aspnet/core/tutorials/getting-started-with-swashbuckle?view=aspnetcore-3.1&tabs=visual-studio#customize-and-extend
|
|
|
|
var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
|
|
|
|
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);
|
|
|
|
c.IncludeXmlComments(xmlPath);
|
|
|
|
});
|
|
|
|
services.AddSwaggerGenNewtonsoftSupport();
|
2022-03-24 00:09:25 +00:00
|
|
|
|
|
|
|
// metrics
|
|
|
|
services.AddMetricsTrackingMiddleware();
|
|
|
|
services.AddAppMetricsCollectors();
|
2021-11-27 02:10:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void ConfigureContainer(ContainerBuilder builder)
|
|
|
|
{
|
|
|
|
builder.RegisterInstance(InitUtils.BuildConfiguration(Environment.GetCommandLineArgs()).Build())
|
|
|
|
.As<IConfiguration>();
|
|
|
|
builder.RegisterModule(new ConfigModule<ApiConfig>("API"));
|
|
|
|
builder.RegisterModule(new LoggingModule("api",
|
2022-03-30 08:36:22 +00:00
|
|
|
cfg: new LoggerConfiguration().Filter.ByExcluding(
|
|
|
|
exc => exc.Exception is PKError || exc.Exception.IsUserError()
|
|
|
|
)));
|
2022-03-24 00:09:25 +00:00
|
|
|
// builder.RegisterModule(new MetricsModule("API"));
|
2021-11-27 02:10:56 +00:00
|
|
|
builder.RegisterModule<DataStoreModule>();
|
|
|
|
builder.RegisterModule<APIModule>();
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
|
|
{
|
|
|
|
if (env.IsDevelopment())
|
2020-01-26 00:27:45 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
app.UseDeveloperExceptionPage();
|
|
|
|
|
|
|
|
// Only enable Swagger stuff when ASPNETCORE_ENVIRONMENT=Development (for now)
|
|
|
|
app.UseSwagger();
|
|
|
|
app.UseSwaggerUI(c => { c.SwaggerEndpoint("/swagger/v1.0/swagger.json", "PluralKit (v1)"); });
|
2019-07-09 18:39:29 +00:00
|
|
|
}
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
// add X-PluralKit-Version header
|
|
|
|
app.Use((ctx, next) =>
|
|
|
|
{
|
2022-01-24 13:13:59 +00:00
|
|
|
ctx.Response.Headers.Add("X-PluralKit-Version", BuildInfoService.FullVersion);
|
2021-11-27 02:10:56 +00:00
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
|
|
|
app.UseExceptionHandler(handler => handler.Run(async ctx =>
|
2019-07-09 18:39:29 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
var exc = ctx.Features.Get<IExceptionHandlerPathFeature>();
|
|
|
|
|
|
|
|
// handle common ISEs that are generated by invalid user input
|
|
|
|
if (exc.Error.IsUserError())
|
2019-07-09 18:39:29 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
ctx.Response.StatusCode = 400;
|
|
|
|
await ctx.Response.WriteAsync("{\"message\":\"400: Bad Request\",\"code\":0}");
|
2019-07-09 18:39:29 +00:00
|
|
|
}
|
2021-11-27 02:10:56 +00:00
|
|
|
|
|
|
|
else if (exc.Error is not PKError)
|
2019-07-09 18:39:29 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
ctx.Response.StatusCode = 500;
|
|
|
|
await ctx.Response.WriteAsync("{\"message\":\"500: Internal Server Error\",\"code\":0}");
|
2019-07-09 18:39:29 +00:00
|
|
|
}
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
// for some reason, if we don't specifically cast to ModelParseError, it uses the base's ToJson method
|
|
|
|
else if (exc.Error is ModelParseError fe)
|
2021-09-30 02:30:20 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
ctx.Response.StatusCode = fe.ResponseCode;
|
|
|
|
await ctx.Response.WriteAsync(JsonConvert.SerializeObject(fe.ToJson()));
|
|
|
|
}
|
2021-09-30 02:30:20 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
else
|
2021-10-12 07:01:02 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
var err = (PKError)exc.Error;
|
|
|
|
ctx.Response.StatusCode = err.ResponseCode;
|
|
|
|
|
|
|
|
var json = JsonConvert.SerializeObject(err.ToJson());
|
|
|
|
await ctx.Response.WriteAsync(json);
|
|
|
|
}
|
|
|
|
|
|
|
|
await ctx.Response.CompleteAsync();
|
|
|
|
}));
|
|
|
|
|
|
|
|
app.UseMiddleware<AuthorizationTokenHandlerMiddleware>();
|
|
|
|
|
|
|
|
//app.UseHttpsRedirection();
|
|
|
|
app.UseCors(opts => opts.AllowAnyMethod().AllowAnyOrigin().WithHeaders("Content-Type", "Authorization"));
|
|
|
|
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthentication();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.UseEndpoints(endpoints => endpoints.MapControllers());
|
2022-03-24 00:09:25 +00:00
|
|
|
|
|
|
|
// metrics
|
|
|
|
app.UseMetricsAllMiddleware();
|
2019-07-09 18:39:29 +00:00
|
|
|
}
|
|
|
|
}
|