mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
114 lines
3.0 KiB
C#
114 lines
3.0 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using API.DTOs.Theme;
|
|
using API.Entities;
|
|
using AutoMapper;
|
|
using AutoMapper.QueryableExtensions;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Data.Repositories;
|
|
|
|
public interface ISiteThemeRepository
|
|
{
|
|
void Add(SiteTheme theme);
|
|
void Remove(SiteTheme theme);
|
|
void Update(SiteTheme siteTheme);
|
|
Task<IEnumerable<SiteThemeDto>> GetThemeDtos();
|
|
Task<SiteThemeDto?> GetThemeDto(int themeId);
|
|
Task<SiteThemeDto?> GetThemeDtoByName(string themeName);
|
|
Task<SiteTheme> GetDefaultTheme();
|
|
Task<IEnumerable<SiteTheme>> GetThemes();
|
|
Task<SiteTheme?> GetTheme(int themeId);
|
|
Task<bool> IsThemeInUse(int themeId);
|
|
}
|
|
|
|
public class SiteThemeRepository : ISiteThemeRepository
|
|
{
|
|
private readonly DataContext _context;
|
|
private readonly IMapper _mapper;
|
|
|
|
public SiteThemeRepository(DataContext context, IMapper mapper)
|
|
{
|
|
_context = context;
|
|
_mapper = mapper;
|
|
}
|
|
|
|
public void Add(SiteTheme theme)
|
|
{
|
|
_context.Add(theme);
|
|
}
|
|
|
|
public void Remove(SiteTheme theme)
|
|
{
|
|
_context.Remove(theme);
|
|
}
|
|
|
|
public void Update(SiteTheme siteTheme)
|
|
{
|
|
_context.Entry(siteTheme).State = EntityState.Modified;
|
|
}
|
|
|
|
public async Task<IEnumerable<SiteThemeDto>> GetThemeDtos()
|
|
{
|
|
return await _context.SiteTheme
|
|
.ProjectTo<SiteThemeDto>(_mapper.ConfigurationProvider)
|
|
.ToListAsync();
|
|
}
|
|
|
|
public async Task<SiteThemeDto?> GetThemeDtoByName(string themeName)
|
|
{
|
|
return await _context.SiteTheme
|
|
.Where(t => t.Name.Equals(themeName))
|
|
.ProjectTo<SiteThemeDto>(_mapper.ConfigurationProvider)
|
|
.SingleOrDefaultAsync();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns default theme, if the default theme is not available, returns the dark theme
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task<SiteTheme> GetDefaultTheme()
|
|
{
|
|
var result = await _context.SiteTheme
|
|
.Where(t => t.IsDefault)
|
|
.FirstOrDefaultAsync();
|
|
|
|
if (result == null)
|
|
{
|
|
return await _context.SiteTheme
|
|
.Where(t => t.NormalizedName == Seed.DefaultThemes[0].NormalizedName)
|
|
.SingleAsync();
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
public async Task<IEnumerable<SiteTheme>> GetThemes()
|
|
{
|
|
return await _context.SiteTheme
|
|
.ToListAsync();
|
|
}
|
|
|
|
public async Task<SiteTheme> GetTheme(int themeId)
|
|
{
|
|
return await _context.SiteTheme
|
|
.Where(t => t.Id == themeId)
|
|
.FirstOrDefaultAsync();
|
|
}
|
|
|
|
public async Task<bool> IsThemeInUse(int themeId)
|
|
{
|
|
return await _context.AppUserPreferences
|
|
.AnyAsync(p => p.Theme.Id == themeId);
|
|
}
|
|
|
|
public async Task<SiteThemeDto?> GetThemeDto(int themeId)
|
|
{
|
|
return await _context.SiteTheme
|
|
.Where(t => t.Id == themeId)
|
|
.ProjectTo<SiteThemeDto>(_mapper.ConfigurationProvider)
|
|
.SingleOrDefaultAsync();
|
|
}
|
|
}
|