mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
* Adding some code for Robbie * See more on series detail metadata area is now at the bottom on the section * Cleaned up subtitle headings to use a single class for offset with actionables * Added some markup for the new design, waiting for Robbie to finish it off * styling age-rating badge * Started hooking up basic analyze file service and hooks in the UI. Basic code to implement the count is implemented and in benchmarks. * Hooked up analyze ui to backend * Refactored Series Detail metadata area to use a new icon/title design * Cleaned up the new design * Pushing for robbie to do css * Massive performance improvement to scan series where we only need to scan folders reported that have series in them, rather than the whole library. * Removed theme page as we no longer need it. Added WordCount to DTOs so the UI can show them. Added new pipe to format numbers in compact mode. * Hooked up actual reading time based on user's words per hour * Refactor some magic numbers to consts * Hooked in progress reporting for series word count * Hooked up analyze files * Re-implemented time to read on comics * Removed the word Last Read * Show proper language name instead of iso tag on series detail page. Added some error handling on word count code. * Reworked error handling * Fixed some security vulnerabilities in npm. * Handle a case where there are no text nodes and instead of returning an empty list, htmlagilitypack returns null. * Tweaked the styles a bit on the icon-and-title * Code cleanup Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
85 lines
3.5 KiB
C#
85 lines
3.5 KiB
C#
using System.IO.Abstractions;
|
|
using API.Data;
|
|
using API.Helpers;
|
|
using API.Services;
|
|
using API.Services.Tasks;
|
|
using API.Services.Tasks.Metadata;
|
|
using API.SignalR;
|
|
using API.SignalR.Presence;
|
|
using Kavita.Common;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace API.Extensions
|
|
{
|
|
public static class ApplicationServiceExtensions
|
|
{
|
|
public static void AddApplicationServices(this IServiceCollection services, IConfiguration config, IWebHostEnvironment env)
|
|
{
|
|
services.AddAutoMapper(typeof(AutoMapperProfiles).Assembly);
|
|
|
|
services.AddScoped<IUnitOfWork, UnitOfWork>();
|
|
services.AddScoped<IDirectoryService, DirectoryService>();
|
|
services.AddScoped<ITokenService, TokenService>();
|
|
services.AddScoped<IFileSystem, FileSystem>();
|
|
services.AddScoped<IFileService, FileService>();
|
|
services.AddScoped<ICacheHelper, CacheHelper>();
|
|
|
|
services.AddScoped<IStatsService, StatsService>();
|
|
services.AddScoped<ITaskScheduler, TaskScheduler>();
|
|
services.AddScoped<ICacheService, CacheService>();
|
|
services.AddScoped<IArchiveService, ArchiveService>();
|
|
services.AddScoped<IBackupService, BackupService>();
|
|
services.AddScoped<ICleanupService, CleanupService>();
|
|
services.AddScoped<IBookService, BookService>();
|
|
services.AddScoped<IImageService, ImageService>();
|
|
services.AddScoped<IVersionUpdaterService, VersionUpdaterService>();
|
|
services.AddScoped<IDownloadService, DownloadService>();
|
|
services.AddScoped<IReaderService, ReaderService>();
|
|
services.AddScoped<IReadingItemService, ReadingItemService>();
|
|
services.AddScoped<IAccountService, AccountService>();
|
|
services.AddScoped<IEmailService, EmailService>();
|
|
services.AddScoped<IBookmarkService, BookmarkService>();
|
|
services.AddScoped<IThemeService, ThemeService>();
|
|
services.AddScoped<ISeriesService, SeriesService>();
|
|
|
|
services.AddScoped<IScannerService, ScannerService>();
|
|
services.AddScoped<IMetadataService, MetadataService>();
|
|
services.AddScoped<IWordCountAnalyzerService, WordCountAnalyzerService>();
|
|
|
|
|
|
|
|
services.AddScoped<IPresenceTracker, PresenceTracker>();
|
|
services.AddScoped<IEventHub, EventHub>();
|
|
|
|
services.AddSqLite(config, env);
|
|
services.AddLogging(config);
|
|
services.AddSignalR(opt => opt.EnableDetailedErrors = true);
|
|
}
|
|
|
|
private static void AddSqLite(this IServiceCollection services, IConfiguration config,
|
|
IWebHostEnvironment env)
|
|
{
|
|
services.AddDbContext<DataContext>(options =>
|
|
{
|
|
options.UseSqlite(config.GetConnectionString("DefaultConnection"));
|
|
options.EnableDetailedErrors();
|
|
options.EnableSensitiveDataLogging(env.IsDevelopment() || Configuration.LogLevel.Equals("Debug"));
|
|
});
|
|
}
|
|
|
|
private static void AddLogging(this IServiceCollection services, IConfiguration config)
|
|
{
|
|
services.AddLogging(loggingBuilder =>
|
|
{
|
|
var loggingSection = config.GetSection("Logging");
|
|
loggingBuilder.AddFile(loggingSection);
|
|
});
|
|
}
|
|
}
|
|
}
|