mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-09-07 00:27:44 +08:00
refactor(picture): streamline picture response mapping and improve thumbnail generation logic
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
using Foxel.Models;
|
using Foxel.Models;
|
||||||
using Foxel.Models.Response.Picture;
|
using Foxel.Models.Response.Picture;
|
||||||
|
using Foxel.Services.Mapping;
|
||||||
using Foxel.Services.Storage;
|
using Foxel.Services.Storage;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
@@ -8,6 +9,7 @@ namespace Foxel.Services.Management;
|
|||||||
public class PictureManagementService(
|
public class PictureManagementService(
|
||||||
IDbContextFactory<MyDbContext> contextFactory,
|
IDbContextFactory<MyDbContext> contextFactory,
|
||||||
IStorageService storageService,
|
IStorageService storageService,
|
||||||
|
IMappingService mappingService,
|
||||||
ILogger<PictureManagementService> logger) : IPictureManagementService
|
ILogger<PictureManagementService> logger) : IPictureManagementService
|
||||||
{
|
{
|
||||||
public async Task<PaginatedResult<PictureResponse>> GetPicturesAsync(int page = 1, int pageSize = 10, string? searchQuery = null, int? userId = null)
|
public async Task<PaginatedResult<PictureResponse>> GetPicturesAsync(int page = 1, int pageSize = 10, string? searchQuery = null, int? userId = null)
|
||||||
@@ -44,26 +46,7 @@ public class PictureManagementService(
|
|||||||
.ToListAsync();
|
.ToListAsync();
|
||||||
|
|
||||||
// 转换为响应模型
|
// 转换为响应模型
|
||||||
var pictureResponses = pictures.Select(picture => new PictureResponse
|
var pictureResponses = pictures.Select(mappingService.MapPictureToResponse).ToList();
|
||||||
{
|
|
||||||
Id = picture.Id,
|
|
||||||
Name = picture.Name,
|
|
||||||
Path = storageService.ExecuteAsync(picture.StorageModeId, provider =>
|
|
||||||
Task.FromResult(provider.GetUrl(picture.Id,picture.Path))).Result,
|
|
||||||
ThumbnailPath = storageService.ExecuteAsync(picture.StorageModeId, provider =>
|
|
||||||
Task.FromResult(provider.GetUrl(picture.Id,picture.ThumbnailPath ?? string.Empty))).Result,
|
|
||||||
Description = picture.Description,
|
|
||||||
CreatedAt = picture.CreatedAt,
|
|
||||||
TakenAt = picture.TakenAt,
|
|
||||||
ExifInfo = picture.ExifInfo,
|
|
||||||
UserId = picture.UserId,
|
|
||||||
Username = picture.User?.UserName,
|
|
||||||
Tags = picture.Tags?.Select(t => t.Name).ToList(),
|
|
||||||
AlbumId = picture.AlbumId,
|
|
||||||
AlbumName = picture.Album?.Name,
|
|
||||||
Permission = picture.Permission,
|
|
||||||
FavoriteCount = picture.Favorites?.Count ?? 0,
|
|
||||||
}).ToList();
|
|
||||||
|
|
||||||
return new PaginatedResult<PictureResponse>
|
return new PaginatedResult<PictureResponse>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -17,12 +17,12 @@ namespace Foxel.Services.Mapping
|
|||||||
{
|
{
|
||||||
coverPath = storageService.ExecuteAsync(album.CoverPicture.StorageModeId,
|
coverPath = storageService.ExecuteAsync(album.CoverPicture.StorageModeId,
|
||||||
provider => Task.FromResult(provider.GetUrl(album.CoverPicture.Id, album.CoverPicture.Path)))
|
provider => Task.FromResult(provider.GetUrl(album.CoverPicture.Id, album.CoverPicture.Path)))
|
||||||
.Result; // Consider making this async if possible in the future
|
.Result;
|
||||||
if (!string.IsNullOrEmpty(album.CoverPicture.ThumbnailPath))
|
if (!string.IsNullOrEmpty(album.CoverPicture.ThumbnailPath))
|
||||||
{
|
{
|
||||||
coverThumbnailPath = storageService.ExecuteAsync(album.CoverPicture.StorageModeId,
|
coverThumbnailPath = storageService.ExecuteAsync(album.CoverPicture.StorageModeId,
|
||||||
provider => Task.FromResult(provider.GetUrl(album.CoverPicture.Id,
|
provider => Task.FromResult(provider.GetUrl(album.CoverPicture.Id,
|
||||||
album.CoverPicture.ThumbnailPath))).Result; // Consider async
|
album.CoverPicture.ThumbnailPath))).Result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -50,7 +50,7 @@ namespace Foxel.Services.Mapping
|
|||||||
Path = storageService.ExecuteAsync(picture.StorageModeId, provider =>
|
Path = storageService.ExecuteAsync(picture.StorageModeId, provider =>
|
||||||
Task.FromResult(provider.GetUrl(picture.Id, picture.Path))).Result,
|
Task.FromResult(provider.GetUrl(picture.Id, picture.Path))).Result,
|
||||||
ThumbnailPath = storageService.ExecuteAsync(picture.StorageModeId, provider =>
|
ThumbnailPath = storageService.ExecuteAsync(picture.StorageModeId, provider =>
|
||||||
Task.FromResult(provider.GetUrl(picture.Id, picture.ThumbnailPath ?? string.Empty)))
|
Task.FromResult(provider.GetUrl(picture.Id, picture.ThumbnailPath ?? picture.Path)))
|
||||||
.Result,
|
.Result,
|
||||||
Description = picture.Description,
|
Description = picture.Description,
|
||||||
CreatedAt = picture.CreatedAt,
|
CreatedAt = picture.CreatedAt,
|
||||||
|
|||||||
@@ -520,9 +520,6 @@ public class PictureService(
|
|||||||
var storedHdPath = await storageService.ExecuteAsync(storageModeId.Value,
|
var storedHdPath = await storageService.ExecuteAsync(storageModeId.Value,
|
||||||
provider => provider.SaveAsync(convertedHdStream, hdStorageFileName!, hdContentType!));
|
provider => provider.SaveAsync(convertedHdStream, hdStorageFileName!, hdContentType!));
|
||||||
|
|
||||||
bool shouldGenerateThumbnailNow = userId.HasValue;
|
|
||||||
if (shouldGenerateThumbnailNow)
|
|
||||||
{
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
// 缩略图最大宽度
|
// 缩略图最大宽度
|
||||||
@@ -565,7 +562,6 @@ public class PictureService(
|
|||||||
{
|
{
|
||||||
logger.LogError(ex, "生成和上传缩略图失败 during initial upload");
|
logger.LogError(ex, "生成和上传缩略图失败 during initial upload");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
string initialTitle = Path.GetFileNameWithoutExtension(fileName);
|
string initialTitle = Path.GetFileNameWithoutExtension(fileName);
|
||||||
string initialDescription = $"Uploaded on {DateTime.UtcNow}";
|
string initialDescription = $"Uploaded on {DateTime.UtcNow}";
|
||||||
|
|||||||
Reference in New Issue
Block a user