2020-05-07 04:09:55 +00:00
|
|
|
using System;
|
|
|
|
using System.IO;
|
|
|
|
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;
|
2020-01-26 00:27:45 +00:00
|
|
|
using Microsoft.AspNetCore.Builder;
|
2021-10-12 07:01:02 +00:00
|
|
|
using Microsoft.AspNetCore.Diagnostics;
|
2019-07-09 18:39:29 +00:00
|
|
|
using Microsoft.AspNetCore.Hosting;
|
2021-10-12 07:01:02 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2019-07-09 18:39:29 +00:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2020-05-07 03:14:31 +00:00
|
|
|
using Microsoft.AspNetCore.Mvc.Versioning;
|
2019-07-09 18:39:29 +00:00
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
2019-12-21 23:40:57 +00:00
|
|
|
using Microsoft.Extensions.Hosting;
|
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;
|
|
|
|
|
|
|
|
using Serilog;
|
|
|
|
|
2020-01-26 00:27:45 +00:00
|
|
|
using PluralKit.Core;
|
|
|
|
|
2019-07-09 18:39:29 +00:00
|
|
|
namespace PluralKit.API
|
|
|
|
{
|
|
|
|
public class Startup
|
|
|
|
{
|
|
|
|
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-16 12:20:25 +00:00
|
|
|
services.AddCors();
|
2020-06-15 23:15:59 +00:00
|
|
|
services.AddAuthentication("SystemToken")
|
|
|
|
.AddScheme<SystemTokenAuthenticationHandler.Opts, SystemTokenAuthenticationHandler>("SystemToken", null);
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-06-15 23:15:59 +00:00
|
|
|
services.AddAuthorization(options =>
|
|
|
|
{
|
|
|
|
options.AddPolicy("EditSystem", p => p.RequireAuthenticatedUser().AddRequirements(new OwnSystemRequirement()));
|
|
|
|
options.AddPolicy("EditMember", p => p.RequireAuthenticatedUser().AddRequirements(new OwnSystemRequirement()));
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-06-15 23:15:59 +00:00
|
|
|
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>();
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2019-12-21 23:40:57 +00:00
|
|
|
services.AddControllers()
|
|
|
|
.SetCompatibilityVersion(CompatibilityVersion.Latest)
|
2021-10-13 09:29:33 +00:00
|
|
|
// sorry MS, this just does *more*
|
|
|
|
.AddNewtonsoftJson((opts) =>
|
|
|
|
{
|
|
|
|
// ... though by default it messes up timestamps in JSON
|
|
|
|
opts.SerializerSettings.DateParseHandling = DateParseHandling.None;
|
2021-10-14 14:24:44 +00:00
|
|
|
})
|
|
|
|
.ConfigureApiBehaviorOptions(options =>
|
|
|
|
options.InvalidModelStateResponseFactory = (context) =>
|
|
|
|
throw Errors.GenericBadRequest
|
|
|
|
);
|
2020-05-07 02:39:49 +00:00
|
|
|
|
2020-07-28 17:59:28 +00:00
|
|
|
services.AddApiVersioning();
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-05-07 03:14:31 +00:00
|
|
|
services.AddVersionedApiExplorer(c =>
|
|
|
|
{
|
|
|
|
c.GroupNameFormat = "'v'VV";
|
|
|
|
c.ApiVersionParameterSource = new UrlSegmentApiVersionReader();
|
|
|
|
c.SubstituteApiVersionInUrl = true;
|
|
|
|
});
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-05-07 03:14:31 +00:00
|
|
|
services.AddSwaggerGen(c =>
|
|
|
|
{
|
2021-08-27 15:03:47 +00:00
|
|
|
c.SwaggerDoc("v1.0", new OpenApiInfo { Title = "PluralKit", Version = "1.0" });
|
|
|
|
|
2020-05-07 03:14:31 +00:00
|
|
|
c.EnableAnnotations();
|
|
|
|
c.AddSecurityDefinition("TokenAuth",
|
2021-08-27 15:03:47 +00:00
|
|
|
new OpenApiSecurityScheme { Name = "Authorization", Type = SecuritySchemeType.ApiKey });
|
|
|
|
|
2020-05-07 03:14:31 +00:00
|
|
|
// Exclude routes without a version, then fall back to group name matching (default behavior)
|
|
|
|
c.DocInclusionPredicate((docName, apiDesc) =>
|
|
|
|
{
|
|
|
|
if (!apiDesc.RelativePath.StartsWith("v1/")) return false;
|
|
|
|
return apiDesc.GroupName == docName;
|
|
|
|
});
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-05-07 04:09:55 +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);
|
2020-05-07 03:14:31 +00:00
|
|
|
});
|
|
|
|
services.AddSwaggerGenNewtonsoftSupport();
|
2020-01-26 00:27:45 +00:00
|
|
|
}
|
2019-07-11 19:25:23 +00:00
|
|
|
|
2020-01-26 00:27:45 +00:00
|
|
|
public void ConfigureContainer(ContainerBuilder builder)
|
|
|
|
{
|
2020-05-07 03:14:31 +00:00
|
|
|
builder.RegisterInstance(InitUtils.BuildConfiguration(Environment.GetCommandLineArgs()).Build())
|
|
|
|
.As<IConfiguration>();
|
2020-08-27 21:35:47 +00:00
|
|
|
builder.RegisterModule(new ConfigModule<ApiConfig>("API"));
|
2021-10-12 07:01:02 +00:00
|
|
|
builder.RegisterModule(new LoggingModule("api", cfg: new LoggerConfiguration().Filter.ByExcluding(exc => exc.Exception is PKError)));
|
2020-01-26 00:27:45 +00:00
|
|
|
builder.RegisterModule(new MetricsModule("API"));
|
|
|
|
builder.RegisterModule<DataStoreModule>();
|
|
|
|
builder.RegisterModule<APIModule>();
|
2019-07-09 18:39:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
2019-12-21 23:40:57 +00:00
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
2019-07-09 18:39:29 +00:00
|
|
|
{
|
|
|
|
if (env.IsDevelopment())
|
|
|
|
{
|
|
|
|
app.UseDeveloperExceptionPage();
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2020-05-07 03:14:31 +00:00
|
|
|
// 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
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
|
|
|
//app.UseHsts();
|
|
|
|
}
|
|
|
|
|
2021-09-30 02:30:20 +00:00
|
|
|
// add X-PluralKit-Version header
|
|
|
|
app.Use((ctx, next) =>
|
|
|
|
{
|
|
|
|
ctx.Response.Headers.Add("X-PluralKit-Version", BuildInfoService.Version);
|
|
|
|
return next();
|
|
|
|
});
|
|
|
|
|
2021-10-12 07:01:02 +00:00
|
|
|
app.UseExceptionHandler(handler => handler.Run(async ctx =>
|
|
|
|
{
|
|
|
|
var exc = ctx.Features.Get<IExceptionHandlerPathFeature>();
|
2021-10-12 12:34:28 +00:00
|
|
|
|
|
|
|
// handle common ISEs that are generated by invalid user input
|
2021-10-13 13:08:17 +00:00
|
|
|
if (exc.Error.IsUserError())
|
2021-10-12 12:34:28 +00:00
|
|
|
{
|
|
|
|
ctx.Response.StatusCode = 400;
|
|
|
|
await ctx.Response.WriteAsync("{\"message\":\"400: Bad Request\",\"code\":0}");
|
|
|
|
}
|
|
|
|
|
2021-11-04 03:27:44 +00:00
|
|
|
else if (exc.Error is not PKError)
|
2021-10-12 07:01:02 +00:00
|
|
|
{
|
|
|
|
ctx.Response.StatusCode = 500;
|
|
|
|
await ctx.Response.WriteAsync("{\"message\":\"500: Internal Server Error\",\"code\":0}");
|
|
|
|
}
|
|
|
|
|
2021-10-13 12:37:34 +00:00
|
|
|
// for some reason, if we don't specifically cast to ModelParseError, it uses the base's ToJson method
|
2021-11-04 03:27:44 +00:00
|
|
|
else if (exc.Error is ModelParseError fe)
|
2021-10-13 12:37:34 +00:00
|
|
|
{
|
|
|
|
ctx.Response.StatusCode = fe.ResponseCode;
|
|
|
|
await ctx.Response.WriteAsync(JsonConvert.SerializeObject(fe.ToJson()));
|
|
|
|
}
|
|
|
|
|
2021-11-04 03:27:44 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
var err = (PKError)exc.Error;
|
|
|
|
ctx.Response.StatusCode = err.ResponseCode;
|
|
|
|
|
|
|
|
var json = JsonConvert.SerializeObject(err.ToJson());
|
|
|
|
await ctx.Response.WriteAsync(json);
|
|
|
|
}
|
2021-10-12 07:01:02 +00:00
|
|
|
|
2021-11-04 03:27:44 +00:00
|
|
|
await ctx.Response.CompleteAsync();
|
2021-10-12 07:01:02 +00:00
|
|
|
}));
|
|
|
|
|
2021-10-02 01:50:01 +00:00
|
|
|
app.UseMiddleware<AuthorizationTokenHandlerMiddleware>();
|
|
|
|
|
2019-07-15 15:58:05 +00:00
|
|
|
//app.UseHttpsRedirection();
|
2019-07-17 11:39:07 +00:00
|
|
|
app.UseCors(opts => opts.AllowAnyMethod().AllowAnyOrigin().WithHeaders("Content-Type", "Authorization"));
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2019-12-21 23:40:57 +00:00
|
|
|
app.UseRouting();
|
2020-06-15 23:15:59 +00:00
|
|
|
app.UseAuthentication();
|
|
|
|
app.UseAuthorization();
|
2019-12-21 23:40:57 +00:00
|
|
|
app.UseEndpoints(endpoints => endpoints.MapControllers());
|
2019-07-09 18:39:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|