mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
264 lines
10 KiB
C#
264 lines
10 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Kavita.API.Attributes;
|
|
using Kavita.API.Database;
|
|
using Kavita.API.Services;
|
|
using Kavita.API.Services.Metadata;
|
|
using Kavita.API.Services.Reading;
|
|
using Kavita.Models.Constants;
|
|
using Kavita.Models.Entities.Enums;
|
|
using Kavita.Models.Extensions;
|
|
using Kavita.Server.Attributes;
|
|
using Kavita.Services;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Kavita.Server.Controllers;
|
|
|
|
/// <summary>
|
|
/// Responsible for servicing up images stored in Kavita for entities
|
|
/// </summary>
|
|
/// <inheritdoc />
|
|
[SkipDeviceTracking]
|
|
public class ImageController(IUnitOfWork unitOfWork, IDirectoryService directoryService,
|
|
ILocalizationService localizationService, IReadingListService readingListService,
|
|
ICoverDbService coverDbService, ICollectionTagService collectionTagService) : BaseApiController
|
|
{
|
|
|
|
/// <summary>
|
|
/// Returns cover image for Chapter
|
|
/// </summary>
|
|
/// <param name="chapterId"></param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[ChapterAccess]
|
|
[HttpGet("chapter-cover")]
|
|
public async Task<ActionResult> GetChapterCoverImage(int chapterId, string apiKey)
|
|
{
|
|
var path = Path.Join(directoryService.CoverImageDirectory, await unitOfWork.ChapterRepository.GetChapterCoverImageAsync(chapterId));
|
|
return PhysicalFile(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns cover image for Library
|
|
/// </summary>
|
|
/// <param name="libraryId"></param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[LibraryAccess]
|
|
[HttpGet("library-cover")]
|
|
public async Task<ActionResult> GetLibraryCoverImage(int libraryId, string apiKey)
|
|
{
|
|
var path = Path.Join(directoryService.CoverImageDirectory, await unitOfWork.LibraryRepository.GetLibraryCoverImageAsync(libraryId));
|
|
return PhysicalFile(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns cover image for Volume
|
|
/// </summary>
|
|
/// <param name="volumeId"></param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[VolumeAccess]
|
|
[HttpGet("volume-cover")]
|
|
public async Task<ActionResult> GetVolumeCoverImage(int volumeId, string apiKey)
|
|
{
|
|
var path = Path.Join(directoryService.CoverImageDirectory, await unitOfWork.VolumeRepository.GetVolumeCoverImageAsync(volumeId));
|
|
return PhysicalFile(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns cover image for Series
|
|
/// </summary>
|
|
/// <param name="seriesId">Id of Series</param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[SeriesAccess]
|
|
[HttpGet("series-cover")]
|
|
public async Task<ActionResult> GetSeriesCoverImage(int seriesId, string apiKey)
|
|
{
|
|
var path = Path.Join(directoryService.CoverImageDirectory, await unitOfWork.SeriesRepository.GetSeriesCoverImageAsync(seriesId));
|
|
return PhysicalFile(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns cover image for Collection
|
|
/// </summary>
|
|
/// <param name="collectionTagId"></param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("collection-cover")]
|
|
public async Task<ActionResult> GetCollectionCoverImage(int collectionTagId, string apiKey)
|
|
{
|
|
var collectionTag = await unitOfWork.CollectionTagRepository.GetCollectionAsync(collectionTagId, ct: HttpContext.RequestAborted);
|
|
if (collectionTag == null || (collectionTag.AppUserId != UserId && !collectionTag.Promoted)) return NotFound();
|
|
|
|
var path = Path.Join(directoryService.CoverImageDirectory, collectionTag.CoverImage);
|
|
if (string.IsNullOrEmpty(path) || !directoryService.FileSystem.File.Exists(path))
|
|
{
|
|
path = await collectionTagService.GenerateCollectionCoverImage(collectionTagId);
|
|
}
|
|
|
|
return PhysicalFile(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns cover image for a Reading List
|
|
/// </summary>
|
|
/// <param name="readingListId"></param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("readinglist-cover")]
|
|
public async Task<ActionResult> GetReadingListCoverImage(int readingListId, string apiKey)
|
|
{
|
|
var readingList = await unitOfWork.ReadingListRepository.GetReadingListByIdAsync(readingListId, ct: HttpContext.RequestAborted);
|
|
if (readingList == null || (readingList.AppUserId != UserId && !readingList.Promoted)) return NotFound();
|
|
|
|
var path = Path.Join(directoryService.CoverImageDirectory, readingList.CoverImage);
|
|
if (string.IsNullOrEmpty(path) || !directoryService.FileSystem.File.Exists(path))
|
|
{
|
|
path = await readingListService.GenerateReadingListCoverImage(readingListId);
|
|
}
|
|
|
|
return PhysicalFile(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns image for a given bookmark page
|
|
/// </summary>
|
|
/// <remarks>This request is served unauthenticated, but user must be passed via api key to validate</remarks>
|
|
/// <param name="chapterId"></param>
|
|
/// <param name="pageNum">Starts at 0</param>
|
|
/// <param name="apiKey">API Key for user. Needed to authenticate request</param>
|
|
/// <param name="imageOffset">Only applicable for Epubs - handles multiple images on one page</param>
|
|
/// <returns></returns>
|
|
[ChapterAccess]
|
|
[HttpGet("bookmark")]
|
|
public async Task<ActionResult> GetBookmarkImage(int chapterId, int pageNum, string apiKey, int imageOffset = 0)
|
|
{
|
|
var bookmark = await unitOfWork.UserRepository.GetBookmarkForPage(pageNum, chapterId, imageOffset, UserId);
|
|
if (bookmark == null) return BadRequest(await localizationService.Translate(UserId, "bookmark-doesnt-exist"));
|
|
|
|
var bookmarkDirectory =
|
|
(await unitOfWork.SettingsRepository.GetSettingAsync(ServerSettingKey.BookmarkDirectory)).Value;
|
|
var path = Path.Join(bookmarkDirectory, bookmark.FileName);
|
|
|
|
return PhysicalFile(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the image associated with a web-link
|
|
/// </summary>
|
|
/// <param name="url"></param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("web-link")]
|
|
public async Task<ActionResult> GetWebLinkImage(string url, string apiKey)
|
|
{
|
|
if (string.IsNullOrEmpty(url)) return BadRequest(await localizationService.Translate(UserId, "must-be-defined", "Url"));
|
|
|
|
var encodeFormat = (await unitOfWork.SettingsRepository.GetSettingsDtoAsync()).EncodeMediaAs;
|
|
|
|
// Check if the domain exists
|
|
var domainFilePath = directoryService.FileSystem.Path.Join(directoryService.FaviconDirectory, ImageService.GetWebLinkFormat(url, encodeFormat));
|
|
if (!directoryService.FileSystem.File.Exists(domainFilePath))
|
|
{
|
|
// We need to request the favicon and save it
|
|
try
|
|
{
|
|
domainFilePath = directoryService.FileSystem.Path.Join(directoryService.FaviconDirectory,
|
|
await coverDbService.DownloadFaviconAsync(url, encodeFormat));
|
|
}
|
|
catch (Exception)
|
|
{
|
|
return BadRequest(await localizationService.Translate(UserId, "generic-favicon"));
|
|
}
|
|
}
|
|
|
|
return PhysicalFile(domainFilePath);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Returns the image associated with a publisher
|
|
/// </summary>
|
|
/// <param name="publisherName"></param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("publisher")]
|
|
public async Task<ActionResult> GetPublisherImage(string publisherName, string apiKey)
|
|
{
|
|
if (string.IsNullOrEmpty(publisherName)) return BadRequest(await localizationService.Translate(UserId, "must-be-defined", "publisherName"));
|
|
if (publisherName.Contains("..")) return BadRequest();
|
|
|
|
var encodeFormat = (await unitOfWork.SettingsRepository.GetSettingsDtoAsync()).EncodeMediaAs;
|
|
|
|
// Check if the domain exists
|
|
var domainFilePath = directoryService.FileSystem.Path.Join(directoryService.PublisherDirectory, ImageService.GetPublisherFormat(publisherName, encodeFormat));
|
|
if (!directoryService.FileSystem.File.Exists(domainFilePath))
|
|
{
|
|
// We need to request the favicon and save it
|
|
try
|
|
{
|
|
domainFilePath = directoryService.FileSystem.Path.Join(directoryService.PublisherDirectory,
|
|
await coverDbService.DownloadPublisherImageAsync(publisherName, encodeFormat));
|
|
}
|
|
catch (Exception)
|
|
{
|
|
return BadRequest(await localizationService.Translate(UserId, "generic-favicon"));
|
|
}
|
|
}
|
|
|
|
return CachedFile(domainFilePath);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns cover image for Person
|
|
/// </summary>
|
|
/// <param name="personId"></param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[PersonAccess]
|
|
[HttpGet("person-cover")]
|
|
public async Task<ActionResult> GetPersonCoverImage(int personId, string apiKey)
|
|
{
|
|
var path = Path.Join(directoryService.CoverImageDirectory, await unitOfWork.UserRepository.GetPersonCoverImageAsync(personId));
|
|
return PhysicalFile(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns cover image for User
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("user-cover")]
|
|
public async Task<ActionResult> GetUserCoverImage(int userId, string apiKey)
|
|
{
|
|
var filename = await unitOfWork.UserRepository.GetCoverImageAsync(userId);
|
|
if (filename == null) return NotFound();
|
|
|
|
var path = Path.Join(directoryService.CoverImageDirectory, filename);
|
|
return CachedFile(path);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a temp coverupload image
|
|
/// </summary>
|
|
/// <remarks>Requires Admin Role to perform upload</remarks>
|
|
/// <param name="filename">Filename of file. This is used with upload/upload-by-url</param>
|
|
/// <param name="apiKey"></param>
|
|
/// <returns></returns>
|
|
[HttpGet("cover-upload")]
|
|
[Authorize(PolicyConstants.AdminRole)]
|
|
public async Task<ActionResult> GetCoverUploadImage(string filename, string apiKey)
|
|
{
|
|
if (filename.Contains("..")) return BadRequest(await localizationService.Translate(UserId, "invalid-filename"));
|
|
|
|
var path = Path.Join(directoryService.TempDirectory, filename);
|
|
return PhysicalFile(path);
|
|
}
|
|
}
|