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;
|
2019-07-09 18:39:29 +00:00
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
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
|
|
|
|
2020-06-15 23:15:59 +00:00
|
|
|
using PluralKit.API;
|
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);
|
|
|
|
|
|
|
|
services.AddAuthorization(options =>
|
|
|
|
{
|
|
|
|
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>();
|
|
|
|
|
2019-12-21 23:40:57 +00:00
|
|
|
services.AddControllers()
|
|
|
|
.SetCompatibilityVersion(CompatibilityVersion.Latest)
|
2019-12-28 14:52:59 +00:00
|
|
|
.AddNewtonsoftJson(); // sorry MS, this just does *more*
|
2020-05-07 02:39:49 +00:00
|
|
|
|
|
|
|
services.AddApiVersioning(c =>
|
|
|
|
{
|
|
|
|
c.AssumeDefaultVersionWhenUnspecified = true;
|
|
|
|
c.DefaultApiVersion = ApiVersion.Parse("1.0");
|
|
|
|
});
|
2020-05-07 03:14:31 +00:00
|
|
|
|
|
|
|
services.AddVersionedApiExplorer(c =>
|
|
|
|
{
|
|
|
|
c.GroupNameFormat = "'v'VV";
|
|
|
|
c.DefaultApiVersion = ApiVersion.Parse("1.0");
|
|
|
|
c.ApiVersionParameterSource = new UrlSegmentApiVersionReader();
|
|
|
|
c.SubstituteApiVersionInUrl = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
services.AddSwaggerGen(c =>
|
|
|
|
{
|
|
|
|
c.SwaggerDoc("v1.0", new OpenApiInfo {Title = "PluralKit", Version = "1.0"});
|
|
|
|
|
|
|
|
c.EnableAnnotations();
|
|
|
|
c.AddSecurityDefinition("TokenAuth",
|
|
|
|
new OpenApiSecurityScheme {Name = "Authorization", Type = SecuritySchemeType.ApiKey});
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
});
|
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-01-26 00:27:45 +00:00
|
|
|
builder.RegisterModule(new ConfigModule<object>());
|
|
|
|
builder.RegisterModule(new LoggingModule("api"));
|
|
|
|
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();
|
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();
|
|
|
|
}
|
|
|
|
|
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"));
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|