mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
* Strip just isbn: from epub isbns and log when it's back (books) * Tweaked to allow invalid GTINs but only valid ISBN 10/13s will be saved to Kavita. * Fixed a bug with parsing series from a filename that is just a chapter range and no chapter/volume keywords. * Show the media issue count before you open accordion * Added a inpage filter for Media issues * Cleanup styles * Fixed up some code in epub isbn parsing when it's null * Encode filenames when downloading so that non english characters can be passed properly to UI. * Added support to parse ComicInfo's with Empty Tags. * Reset development settings. * Tweaked the code in generating reading lists to avoid extra work when not needed. * Fix comicvine's favicon * Fixed up a unit test * Tweaked the favicon code to ignore icons that have query parameters * More favicon work. Expanded ability to grab icons a bit. Added in ability to not keep requesting favicons when we failed to parse already. * Added a note for later * Fixed stats server url * Added more debugging * Fixed unit tests
86 lines
3.5 KiB
C#
86 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.Services.Tasks.Scanner;
|
|
using API.SignalR;
|
|
using API.SignalR.Presence;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
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<ITokenService, TokenService>();
|
|
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<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<IProcessSeries, ProcessSeries>();
|
|
services.AddScoped<IReadingListService, ReadingListService>();
|
|
services.AddScoped<IDeviceService, DeviceService>();
|
|
services.AddScoped<IStatisticService, StatisticService>();
|
|
services.AddScoped<IMediaErrorService, MediaErrorService>();
|
|
services.AddScoped<IMediaConversionService, MediaConversionService>();
|
|
|
|
services.AddScoped<IScannerService, ScannerService>();
|
|
services.AddScoped<IMetadataService, MetadataService>();
|
|
services.AddScoped<IWordCountAnalyzerService, WordCountAnalyzerService>();
|
|
services.AddScoped<ILibraryWatcher, LibraryWatcher>();
|
|
services.AddScoped<ITachiyomiService, TachiyomiService>();
|
|
services.AddScoped<ICollectionTagService, CollectionTagService>();
|
|
|
|
services.AddScoped<IFileSystem, FileSystem>();
|
|
services.AddScoped<IDirectoryService, DirectoryService>();
|
|
services.AddScoped<IEventHub, EventHub>();
|
|
services.AddScoped<IPresenceTracker, PresenceTracker>();
|
|
|
|
services.AddScoped<IImageService, ImageService>();
|
|
|
|
services.AddSqLite(env);
|
|
services.AddSignalR(opt => opt.EnableDetailedErrors = true);
|
|
|
|
services.AddEasyCaching(options =>
|
|
{
|
|
options.UseInMemory("favicon");
|
|
});
|
|
}
|
|
|
|
private static void AddSqLite(this IServiceCollection services, IHostEnvironment env)
|
|
{
|
|
services.AddDbContext<DataContext>(options =>
|
|
{
|
|
options.UseSqlite("Data source=config/kavita.db");
|
|
options.EnableDetailedErrors();
|
|
|
|
options.EnableSensitiveDataLogging();
|
|
});
|
|
}
|
|
}
|