mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
313 lines
No EOL
14 KiB
C#
313 lines
No EOL
14 KiB
C#
#region Usings
|
|
using Mapster;
|
|
using Microsoft.AspNetCore.Authentication.JwtBearer;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.UI.Services;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.Infrastructure;
|
|
using Microsoft.AspNetCore.Mvc.Routing;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.IdentityModel.Tokens;
|
|
using Newtonsoft.Json;
|
|
using Pomelo.EntityFrameworkCore.MySql.Infrastructure;
|
|
using Roadie.Api.Hubs;
|
|
using Roadie.Api.ModelBinding;
|
|
using Roadie.Api.Services;
|
|
using Roadie.Library.Caching;
|
|
using Roadie.Library.Configuration;
|
|
using Roadie.Library.Data;
|
|
using Roadie.Library.Encoding;
|
|
using Roadie.Library.Engines;
|
|
using Roadie.Library.Identity;
|
|
using Roadie.Library.Imaging;
|
|
using Roadie.Library.MetaData.Audio;
|
|
using Roadie.Library.MetaData.FileName;
|
|
using Roadie.Library.MetaData.ID3Tags;
|
|
using Roadie.Library.MetaData.LastFm;
|
|
using Roadie.Library.MetaData.MusicBrainz;
|
|
using Roadie.Library.Processors;
|
|
using Roadie.Library.Scrobble;
|
|
using Roadie.Library.SearchEngines.Imaging;
|
|
using Roadie.Library.SearchEngines.MetaData.Discogs;
|
|
using Roadie.Library.SearchEngines.MetaData.Spotify;
|
|
using Roadie.Library.SearchEngines.MetaData.Wikipedia;
|
|
using Roadie.Library.Utility;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
#endregion
|
|
|
|
namespace Roadie.Api
|
|
{
|
|
public class Startup
|
|
{
|
|
private readonly IConfiguration _configuration;
|
|
private readonly ILoggerFactory _loggerFactory;
|
|
|
|
private ILogger Logger { get; }
|
|
|
|
public Startup(IConfiguration configuration, ILoggerFactory loggerFactory)
|
|
{
|
|
_configuration = configuration;
|
|
_loggerFactory = loggerFactory;
|
|
|
|
Logger = _loggerFactory.CreateLogger<Startup>();
|
|
|
|
TypeAdapterConfig<Library.Data.Image, Library.Models.Image>
|
|
.NewConfig()
|
|
.Map(i => i.ArtistId,
|
|
src => src.Artist == null ? null : (Guid?)src.Artist.RoadieId)
|
|
.Map(i => i.ReleaseId,
|
|
src => src.Release == null ? null : (Guid?)src.Release.RoadieId)
|
|
.Compile();
|
|
|
|
TypeAdapterConfig.GlobalSettings.Default.PreserveReference(true);
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory, IHostingEnvironment env)
|
|
{
|
|
if (env.IsDevelopment()) app.UseDeveloperExceptionPage();
|
|
|
|
app.UseCors("CORSPolicy");
|
|
|
|
app.UseAuthentication();
|
|
//app.UseSwagger();
|
|
//app.UseSwaggerUI(c =>
|
|
//{
|
|
// c.SwaggerEndpoint("/swagger/swagger.json", "Roadie API");
|
|
// c.RoutePrefix = string.Empty;
|
|
//});
|
|
|
|
app.UseStaticFiles();
|
|
|
|
app.UseSignalR(routes =>
|
|
{
|
|
routes.MapHub<PlayActivityHub>("/playActivityHub");
|
|
routes.MapHub<ScanActivityHub>("/scanActivityHub");
|
|
});
|
|
app.UseMvc();
|
|
}
|
|
|
|
// This method gets called by the runtime. Use this method to add services to the container.
|
|
public void ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddSingleton<ITokenService, TokenService>();
|
|
services.AddSingleton<IHttpEncoder, HttpEncoder>();
|
|
services.AddSingleton<IEmailSender, EmailSenderService>();
|
|
|
|
var cacheManager = new MemoryCacheManager(_loggerFactory.CreateLogger<DictionaryCacheManager>(), new CachePolicy(TimeSpan.FromHours(4)));
|
|
services.AddSingleton<ICacheManager>(cacheManager);
|
|
|
|
services.AddDbContextPool<ApplicationUserDbContext>(
|
|
options => options.UseMySql(_configuration.GetConnectionString("RoadieDatabaseConnection"),
|
|
mySqlOptions =>
|
|
{
|
|
mySqlOptions.ServerVersion(new Version(5, 5), ServerType.MariaDb);
|
|
mySqlOptions.EnableRetryOnFailure(
|
|
10,
|
|
TimeSpan.FromSeconds(30),
|
|
null);
|
|
}
|
|
));
|
|
|
|
services.AddDbContextPool<IRoadieDbContext, RoadieDbContext>(
|
|
options => options.UseMySql(_configuration.GetConnectionString("RoadieDatabaseConnection"),
|
|
mySqlOptions =>
|
|
{
|
|
mySqlOptions.ServerVersion(new Version(5, 5), ServerType.MariaDb);
|
|
mySqlOptions.EnableRetryOnFailure(
|
|
10,
|
|
TimeSpan.FromSeconds(30),
|
|
null);
|
|
}
|
|
));
|
|
|
|
services.AddIdentity<ApplicationUser, ApplicationRole>()
|
|
.AddRoles<ApplicationRole>()
|
|
.AddEntityFrameworkStores<ApplicationUserDbContext>()
|
|
.AddDefaultTokenProviders();
|
|
|
|
services.AddAuthorization(options =>
|
|
{
|
|
options.AddPolicy("Admin", policy => policy.RequireRole("Admin"));
|
|
options.AddPolicy("Editor", policy => policy.RequireRole("Admin", "Editor"));
|
|
});
|
|
|
|
services.Configure<IConfiguration>(_configuration);
|
|
var corsOrigins = (_configuration["CORSOrigins"] ?? "http://localhost:8080").Split('|');
|
|
Logger.LogDebug("Setting Up CORS Policy [{0}]", string.Join(", ", corsOrigins));
|
|
|
|
services.AddCors(options => options.AddPolicy("CORSPolicy", builder =>
|
|
{
|
|
builder
|
|
.WithOrigins(corsOrigins)
|
|
.AllowAnyHeader()
|
|
.AllowAnyMethod()
|
|
.AllowCredentials();
|
|
}));
|
|
|
|
services.AddSingleton<IRoadieSettings, RoadieSettings>(ctx =>
|
|
{
|
|
var settings = new RoadieSettings();
|
|
var configuration = ctx.GetService<IConfiguration>();
|
|
configuration.GetSection("RoadieSettings").Bind(settings);
|
|
var hostingEnvironment = ctx.GetService<IHostingEnvironment>();
|
|
settings.ContentPath = hostingEnvironment.WebRootPath;
|
|
settings.ConnectionString = _configuration.GetConnectionString("RoadieDatabaseConnection");
|
|
|
|
// This is so 'User Secrets' can be used in Debugging
|
|
var integrationKeys = _configuration.GetSection("IntegrationKeys")
|
|
.Get<IntegrationKey>();
|
|
if (integrationKeys != null)
|
|
settings.Integrations.ApiKeys = new List<ApiKey>
|
|
{
|
|
new ApiKey
|
|
{
|
|
ApiName = "LastFMApiKey",
|
|
Key = integrationKeys.LastFMApiKey,
|
|
KeySecret = integrationKeys.LastFMSecret
|
|
},
|
|
new ApiKey
|
|
{
|
|
ApiName = "DiscogsConsumerKey",
|
|
Key = integrationKeys.DiscogsConsumerKey,
|
|
KeySecret = integrationKeys.DiscogsConsumerSecret
|
|
},
|
|
new ApiKey
|
|
{
|
|
ApiName = "BingImageSearch",
|
|
Key = integrationKeys.BingImageSearch
|
|
}
|
|
};
|
|
return settings;
|
|
});
|
|
|
|
services.AddSingleton<IActionContextAccessor, ActionContextAccessor>();
|
|
services.AddSingleton<IDefaultNotFoundImages, DefaultNotFoundImages>();
|
|
services.AddSingleton<IImageSearchManager, ImageSearchManager>();
|
|
services.AddSingleton<IITunesSearchEngine, ITunesSearchEngine>();
|
|
services.AddSingleton<IBingImageSearchEngine, BingImageSearchEngine>();
|
|
services.AddSingleton<IMusicBrainzProvider, MusicBrainzProvider>();
|
|
services.AddSingleton<ISpotifyHelper, SpotifyHelper>();
|
|
services.AddSingleton<IDiscogsHelper, DiscogsHelper>();
|
|
services.AddSingleton<IWikipediaHelper, WikipediaHelper>();
|
|
services.AddSingleton<IFileNameHelper, FileNameHelper>();
|
|
services.AddSingleton<IID3TagsHelper, ID3TagsHelper>();
|
|
|
|
services.AddScoped<ILastFmHelper, LastFmHelper>();
|
|
services.AddScoped<IRoadieScrobbler, RoadieScrobbler>();
|
|
services.AddScoped<ILastFMScrobbler, LastFMScrobbler>();
|
|
services.AddScoped<IStatisticsService, StatisticsService>();
|
|
services.AddScoped<ICollectionService, CollectionService>();
|
|
services.AddScoped<IPlaylistService, PlaylistService>();
|
|
services.AddScoped<IBookmarkService, BookmarkService>();
|
|
services.AddScoped<IArtistLookupEngine, ArtistLookupEngine>();
|
|
services.AddScoped<IReleaseLookupEngine, ReleaseLookupEngine>();
|
|
services.AddScoped<ILabelLookupEngine, LabelLookupEngine>();
|
|
services.AddScoped<IAudioMetaDataHelper, AudioMetaDataHelper>();
|
|
services.AddScoped<IFileProcessor, FileProcessor>();
|
|
services.AddScoped<IFileDirectoryProcessorService, FileDirectoryProcessorService>();
|
|
services.AddScoped<IArtistService, ArtistService>();
|
|
services.AddScoped<IImageService, ImageService>();
|
|
services.AddScoped<IReleaseService, ReleaseService>();
|
|
services.AddScoped<ITrackService, TrackService>();
|
|
services.AddScoped<ILabelService, LabelService>();
|
|
services.AddScoped<IPlaylistService, PlaylistService>();
|
|
services.AddScoped<IPlayActivityService, PlayActivityService>();
|
|
services.AddScoped<IScrobbleHandler, ScrobbleHandler>();
|
|
services.AddScoped<IGenreService, GenreService>();
|
|
services.AddScoped<ISubsonicService, SubsonicService>();
|
|
services.AddScoped<IUserService, UserService>();
|
|
services.AddScoped<IAdminService, AdminService>();
|
|
services.AddScoped<ILookupService, LookupService>();
|
|
services.AddScoped<ICommentService, CommentService>();
|
|
|
|
var securityKey = new SymmetricSecurityKey(Encoding.Default.GetBytes(_configuration["Tokens:PrivateKey"]));
|
|
|
|
services.AddAuthentication(options =>
|
|
{
|
|
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
|
|
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
|
|
}).AddJwtBearer(config =>
|
|
{
|
|
config.RequireHttpsMetadata = false;
|
|
config.SaveToken = true;
|
|
config.TokenValidationParameters = new TokenValidationParameters
|
|
{
|
|
IssuerSigningKey = securityKey,
|
|
|
|
ValidateAudience = true,
|
|
ValidAudience = _configuration["Tokens:Audience"],
|
|
ValidateIssuer = true,
|
|
ValidIssuer = _configuration["Tokens:Issuer"],
|
|
ValidateLifetime = true,
|
|
ValidateIssuerSigningKey = true
|
|
};
|
|
});
|
|
|
|
//services.AddSwaggerGen(c =>
|
|
//{
|
|
// c.SwaggerDoc("v1", new Info
|
|
// {
|
|
// Title = "Roadie API",
|
|
// Version = "v1"
|
|
// });
|
|
//});
|
|
|
|
services.AddSignalR();
|
|
|
|
services.AddMvc(options =>
|
|
{
|
|
options.RespectBrowserAcceptHeader = true; // false by default
|
|
options.ModelBinderProviders.Insert(0, new SubsonicRequestBinderProvider());
|
|
})
|
|
.AddJsonOptions(options =>
|
|
{
|
|
options.SerializerSettings.NullValueHandling = NullValueHandling.Ignore;
|
|
options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
|
|
})
|
|
.AddXmlSerializerFormatters()
|
|
.SetCompatibilityVersion(CompatibilityVersion.Latest);
|
|
|
|
services.Configure<IdentityOptions>(options =>
|
|
{
|
|
options.Password.RequireDigit = true;
|
|
options.Password.RequireLowercase = true;
|
|
options.Password.RequireNonAlphanumeric = true;
|
|
options.Password.RequireUppercase = true;
|
|
options.Password.RequiredLength = 6;
|
|
options.Password.RequiredUniqueChars = 1;
|
|
});
|
|
|
|
services.AddHttpContextAccessor();
|
|
services.AddScoped<IHttpContext>(factory =>
|
|
{
|
|
var actionContext = factory.GetService<IActionContextAccessor>().ActionContext;
|
|
if(actionContext == null)
|
|
{
|
|
return null;
|
|
}
|
|
return new HttpContext(factory.GetService<IRoadieSettings>(), new UrlHelper(actionContext));
|
|
});
|
|
|
|
var sp = services.BuildServiceProvider();
|
|
var adminService = sp.GetService<IAdminService>();
|
|
adminService.PerformStartUpTasks();
|
|
}
|
|
|
|
private class IntegrationKey
|
|
{
|
|
public string BingImageSearch { get; set; }
|
|
public string DiscogsConsumerKey { get; set; }
|
|
public string DiscogsConsumerSecret { get; set; }
|
|
public string LastFMApiKey { get; set; }
|
|
public string LastFMSecret { get; set; }
|
|
}
|
|
}
|
|
} |