2025-11-13 18:22:44 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
|
// MARECHAI: Master repository of computing history artifacts information
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
|
|
|
//
|
|
|
|
|
// --[ License ] -----------------------------------------------------------
|
|
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as
|
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
//
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2025-11-14 05:08:14 +00:00
|
|
|
// Copyright © 2003-2026 Natalia Portillo
|
2025-11-13 18:22:44 +00:00
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Security.Claims;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Marechai.Data.Dtos;
|
|
|
|
|
using Marechai.Database.Models;
|
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
namespace Marechai.Server.Controllers;
|
|
|
|
|
|
2025-11-13 20:19:02 +00:00
|
|
|
[Route("/books/scans")]
|
2025-11-13 18:22:44 +00:00
|
|
|
[ApiController]
|
|
|
|
|
public class BookScansController(MarechaiContext context) : ControllerBase
|
|
|
|
|
{
|
2025-11-13 20:19:02 +00:00
|
|
|
[HttpGet("/books/{bookId:long}/scans")]
|
2025-11-13 18:22:44 +00:00
|
|
|
[AllowAnonymous]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
2025-11-13 19:00:38 +00:00
|
|
|
public Task<List<Guid>> GetGuidsByBookAsync(long bookId) =>
|
2025-11-13 19:10:08 +00:00
|
|
|
context.BookScans.Where(p => p.BookId == bookId).Select(p => p.Id).ToListAsync();
|
2025-11-13 18:22:44 +00:00
|
|
|
|
2025-11-13 20:19:02 +00:00
|
|
|
[HttpGet("{id:Guid}")]
|
2025-11-13 18:22:44 +00:00
|
|
|
[AllowAnonymous]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
2025-11-13 18:27:00 +00:00
|
|
|
public Task<BookScanDto> GetAsync(Guid id) => context.BookScans.Where(p => p.Id == id)
|
|
|
|
|
.Select(p => new BookScanDto
|
|
|
|
|
{
|
|
|
|
|
Author = p.Author,
|
|
|
|
|
BookId = p.Book.Id,
|
|
|
|
|
ColorSpace = p.ColorSpace,
|
|
|
|
|
Comments = p.Comments,
|
|
|
|
|
CreationDate = p.CreationDate,
|
|
|
|
|
ExifVersion = p.ExifVersion,
|
|
|
|
|
HorizontalResolution = p.HorizontalResolution,
|
|
|
|
|
Id = p.Id,
|
|
|
|
|
ResolutionUnit = p.ResolutionUnit,
|
|
|
|
|
Page = p.Page,
|
|
|
|
|
ScannerManufacturer = p.ScannerManufacturer,
|
|
|
|
|
ScannerModel = p.ScannerModel,
|
|
|
|
|
SoftwareUsed = p.SoftwareUsed,
|
|
|
|
|
Type = p.Type,
|
|
|
|
|
UploadDate = p.UploadDate,
|
|
|
|
|
UserId = p.UserId,
|
|
|
|
|
VerticalResolution = p.VerticalResolution,
|
|
|
|
|
OriginalExtension = p.OriginalExtension
|
|
|
|
|
})
|
|
|
|
|
.FirstOrDefaultAsync();
|
2025-11-13 18:22:44 +00:00
|
|
|
|
2025-11-13 20:19:02 +00:00
|
|
|
[HttpPut("{id:Guid}")]
|
2025-11-13 18:22:44 +00:00
|
|
|
[Authorize(Roles = "Admin,UberAdmin")]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
2025-11-13 19:10:08 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
2025-11-13 19:28:21 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
2025-11-13 20:19:02 +00:00
|
|
|
public async Task<ActionResult> UpdateAsync(Guid id, [FromBody] BookScanDto dto)
|
2025-11-13 18:22:44 +00:00
|
|
|
{
|
|
|
|
|
string userId = User.FindFirstValue(ClaimTypes.Sid);
|
2025-11-13 18:27:00 +00:00
|
|
|
|
2025-11-13 18:52:45 +00:00
|
|
|
if(userId is null) return Unauthorized();
|
2025-11-13 20:19:02 +00:00
|
|
|
|
|
|
|
|
BookScan model = await context.BookScans.FindAsync(id);
|
2025-11-13 18:22:44 +00:00
|
|
|
|
2025-11-13 18:52:45 +00:00
|
|
|
if(model is null) return NotFound();
|
2025-11-13 18:22:44 +00:00
|
|
|
|
|
|
|
|
model.Author = dto.Author;
|
|
|
|
|
model.ColorSpace = dto.ColorSpace;
|
|
|
|
|
model.Comments = dto.Comments;
|
|
|
|
|
model.CreationDate = dto.CreationDate;
|
|
|
|
|
model.ExifVersion = dto.ExifVersion;
|
|
|
|
|
model.HorizontalResolution = dto.HorizontalResolution;
|
|
|
|
|
model.ResolutionUnit = dto.ResolutionUnit;
|
|
|
|
|
model.Page = dto.Page;
|
|
|
|
|
model.ScannerManufacturer = dto.ScannerManufacturer;
|
|
|
|
|
model.ScannerModel = dto.ScannerModel;
|
|
|
|
|
model.Type = dto.Type;
|
|
|
|
|
model.SoftwareUsed = dto.SoftwareUsed;
|
|
|
|
|
model.VerticalResolution = dto.VerticalResolution;
|
|
|
|
|
|
|
|
|
|
await context.SaveChangesWithUserAsync(userId);
|
2025-11-13 18:52:45 +00:00
|
|
|
|
|
|
|
|
return Ok();
|
2025-11-13 18:22:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpPost]
|
|
|
|
|
[Authorize(Roles = "Admin,UberAdmin")]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
2025-11-13 19:28:21 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
2025-11-13 20:19:02 +00:00
|
|
|
public async Task<ActionResult<Guid>> CreateAsync([FromBody] BookScanDto dto)
|
2025-11-13 18:22:44 +00:00
|
|
|
{
|
|
|
|
|
string userId = User.FindFirstValue(ClaimTypes.Sid);
|
2025-11-13 18:27:00 +00:00
|
|
|
|
2025-11-13 18:52:45 +00:00
|
|
|
if(userId is null) return Unauthorized();
|
2025-11-13 18:27:00 +00:00
|
|
|
|
2025-11-13 18:22:44 +00:00
|
|
|
var model = new BookScan
|
|
|
|
|
{
|
|
|
|
|
Author = dto.Author,
|
|
|
|
|
BookId = dto.BookId,
|
|
|
|
|
ColorSpace = dto.ColorSpace,
|
|
|
|
|
Comments = dto.Comments,
|
|
|
|
|
CreationDate = dto.CreationDate,
|
|
|
|
|
ExifVersion = dto.ExifVersion,
|
|
|
|
|
HorizontalResolution = dto.HorizontalResolution,
|
|
|
|
|
Id = dto.Id,
|
|
|
|
|
ResolutionUnit = dto.ResolutionUnit,
|
|
|
|
|
Page = dto.Page,
|
|
|
|
|
ScannerManufacturer = dto.ScannerManufacturer,
|
|
|
|
|
ScannerModel = dto.ScannerModel,
|
|
|
|
|
Type = dto.Type,
|
|
|
|
|
SoftwareUsed = dto.SoftwareUsed,
|
|
|
|
|
UploadDate = dto.UploadDate,
|
|
|
|
|
UserId = dto.UserId,
|
|
|
|
|
VerticalResolution = dto.VerticalResolution,
|
|
|
|
|
OriginalExtension = dto.OriginalExtension
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
await context.BookScans.AddAsync(model);
|
|
|
|
|
await context.SaveChangesWithUserAsync(userId);
|
|
|
|
|
|
|
|
|
|
return model.Id;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-13 20:19:02 +00:00
|
|
|
[HttpDelete("{id:Guid}")]
|
2025-11-13 18:22:44 +00:00
|
|
|
[Authorize(Roles = "Admin,UberAdmin")]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
2025-11-13 19:10:08 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
2025-11-13 19:28:21 +00:00
|
|
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
2025-11-13 18:52:45 +00:00
|
|
|
public async Task<ActionResult> DeleteAsync(Guid id)
|
2025-11-13 18:22:44 +00:00
|
|
|
{
|
|
|
|
|
string userId = User.FindFirstValue(ClaimTypes.Sid);
|
2025-11-13 18:27:00 +00:00
|
|
|
|
2025-11-13 18:52:45 +00:00
|
|
|
if(userId is null) return Unauthorized();
|
2025-11-13 20:19:02 +00:00
|
|
|
|
2025-11-13 18:22:44 +00:00
|
|
|
BookScan item = await context.BookScans.FindAsync(id);
|
|
|
|
|
|
2025-11-13 18:52:45 +00:00
|
|
|
if(item is null) return NotFound();
|
2025-11-13 18:22:44 +00:00
|
|
|
|
|
|
|
|
context.BookScans.Remove(item);
|
|
|
|
|
|
|
|
|
|
await context.SaveChangesWithUserAsync(userId);
|
2025-11-13 18:52:45 +00:00
|
|
|
|
|
|
|
|
return Ok();
|
2025-11-13 18:22:44 +00:00
|
|
|
}
|
2025-11-13 18:27:00 +00:00
|
|
|
}
|