mirror of
https://github.com/claunia/marechai.git
synced 2026-07-09 02:08:28 +00:00
- Introduced a new migration to change the `added_id` column type from `int` to `long` in the `news` table and added a new `name` column. - Updated the `News` model to include the `Name` property. - Modified the `MarechaiContext` to reflect the changes in the `News` model. - Enhanced multiple controllers (Books, Documents, Gpus, Machines, Magazines, News, People, Processors, Software, SoftwareReleases, SoftwareVersions, SoundSynths) to create news entries upon creation and updates of respective entities. - Implemented logic to generate appropriate news names based on entity details. - Updated the front-end to display new news types and their corresponding icons. - Added Spanish translations for new news types in the resource files.
368 lines
16 KiB
C#
368 lines
16 KiB
C#
/*******************************************************************************
|
|
// 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/>.
|
|
//
|
|
// ---------------------------------------------------------------------------
|
|
// Copyright © 2003-2026 Natalia Portillo
|
|
*******************************************************************************/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Claims;
|
|
using System.Threading.Tasks;
|
|
using Marechai.Data;
|
|
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;
|
|
|
|
[Route("/magazines")]
|
|
[ApiController]
|
|
public class MagazinesController(MarechaiContext context) : ControllerBase
|
|
{
|
|
[HttpGet("count")]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public Task<int> GetMagazinesCountAsync() => context.Magazines.CountAsync();
|
|
|
|
[HttpGet("minimum-year")]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public Task<int> GetMinimumYearAsync() => context.Magazines
|
|
.Where(m => m.FirstPublication.HasValue &&
|
|
m.FirstPublication.Value.Year > 1000)
|
|
.MinAsync(m => m.FirstPublication.Value.Year);
|
|
|
|
[HttpGet("maximum-year")]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public Task<int> GetMaximumYearAsync() => context.Magazines
|
|
.Where(m => m.FirstPublication.HasValue &&
|
|
m.FirstPublication.Value.Year > 1000)
|
|
.MaxAsync(m => m.FirstPublication.Value.Year);
|
|
|
|
[HttpGet("by-letter/{c}")]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public Task<List<MagazineDto>> GetMagazinesByLetterAsync(char c) => context.Magazines
|
|
.Where(m =>
|
|
(m.SortTitle != null && EF.Functions.Like(m.SortTitle, $"{c}%")) ||
|
|
(m.SortTitle == null && EF.Functions.Like(m.Title, $"{c}%")))
|
|
.OrderBy(m => m.SortTitle)
|
|
.ThenBy(m => m.Title)
|
|
.ThenBy(m => m.FirstPublication)
|
|
.Select(m => new MagazineDto
|
|
{
|
|
Id = m.Id,
|
|
Title = m.Title,
|
|
NativeTitle = m.NativeTitle,
|
|
SortTitle = m.SortTitle,
|
|
FirstPublication = m.FirstPublication,
|
|
Issn = m.Issn,
|
|
CountryId = m.CountryId,
|
|
Country = m.Country.Name
|
|
})
|
|
.ToListAsync();
|
|
|
|
[HttpGet("by-year/{year:int}")]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public Task<List<MagazineDto>> GetMagazinesByYearAsync(int year) => context.Magazines
|
|
.Where(m => m.FirstPublication != null && m.FirstPublication.Value.Year == year)
|
|
.OrderBy(m => m.SortTitle)
|
|
.ThenBy(m => m.Title)
|
|
.ThenBy(m => m.FirstPublication)
|
|
.Select(m => new MagazineDto
|
|
{
|
|
Id = m.Id,
|
|
Title = m.Title,
|
|
NativeTitle = m.NativeTitle,
|
|
SortTitle = m.SortTitle,
|
|
FirstPublication = m.FirstPublication,
|
|
Issn = m.Issn,
|
|
CountryId = m.CountryId,
|
|
Country = m.Country.Name
|
|
})
|
|
.ToListAsync();
|
|
|
|
[HttpGet]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public Task<List<MagazineDto>> GetAsync() => context.Magazines.OrderBy(b => b.SortTitle)
|
|
.ThenBy(b => b.FirstPublication)
|
|
.ThenBy(b => b.Title)
|
|
.Select(b => new MagazineDto
|
|
{
|
|
Id = b.Id,
|
|
Title = b.Title,
|
|
NativeTitle = b.NativeTitle,
|
|
SortTitle = b.SortTitle,
|
|
FirstPublication = b.FirstPublication,
|
|
Issn = b.Issn,
|
|
CountryId = b.CountryId,
|
|
Country = b.Country.Name
|
|
})
|
|
.ToListAsync();
|
|
|
|
[HttpGet("titles")]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public Task<List<MagazineDto>> GetTitlesAsync() => context.Magazines.OrderBy(b => b.Title)
|
|
.ThenBy(b => b.FirstPublication)
|
|
.Select(b => new MagazineDto
|
|
{
|
|
Id = b.Id,
|
|
Title = $"{b.Title} ({b.Country.Name}"
|
|
})
|
|
.ToListAsync();
|
|
|
|
[HttpGet("{id:long}")]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public Task<MagazineDto> GetAsync(long id) => context.Magazines.Where(b => b.Id == id)
|
|
.Select(b => new MagazineDto
|
|
{
|
|
Id = b.Id,
|
|
Title = b.Title,
|
|
NativeTitle = b.NativeTitle,
|
|
SortTitle = b.SortTitle,
|
|
FirstPublication = b.FirstPublication,
|
|
Issn = b.Issn,
|
|
CountryId = b.CountryId,
|
|
Country = b.Country.Name
|
|
})
|
|
.FirstOrDefaultAsync();
|
|
|
|
[HttpPut("{id:long}")]
|
|
[Authorize(Roles = "Admin,UberAdmin")]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
|
public async Task<ActionResult> UpdateAsync(long id, [FromBody] MagazineDto dto)
|
|
{
|
|
string userId = User.FindFirstValue(ClaimTypes.Sid);
|
|
|
|
if(userId is null) return Unauthorized();
|
|
Magazine model = await context.Magazines.FindAsync(id);
|
|
|
|
if(model is null) return NotFound();
|
|
|
|
model.Title = dto.Title;
|
|
model.NativeTitle = dto.NativeTitle;
|
|
model.SortTitle = dto.SortTitle;
|
|
model.FirstPublication = dto.FirstPublication;
|
|
model.CountryId = dto.CountryId;
|
|
model.Issn = dto.Issn;
|
|
|
|
await context.News.AddAsync(new News
|
|
{
|
|
AddedId = model.Id,
|
|
Date = DateTime.UtcNow,
|
|
Type = NewsType.UpdatedMagazineInDb,
|
|
Name = dto.Title
|
|
});
|
|
|
|
await context.SaveChangesWithUserAsync(userId);
|
|
|
|
return Ok();
|
|
}
|
|
|
|
[HttpPost]
|
|
[Authorize(Roles = "Admin,UberAdmin")]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
|
public async Task<ActionResult<long>> CreateAsync([FromBody] MagazineDto dto)
|
|
{
|
|
string userId = User.FindFirstValue(ClaimTypes.Sid);
|
|
|
|
if(userId is null) return Unauthorized();
|
|
|
|
var model = new Magazine
|
|
{
|
|
Title = dto.Title,
|
|
NativeTitle = dto.NativeTitle,
|
|
SortTitle = dto.SortTitle,
|
|
FirstPublication = dto.FirstPublication,
|
|
CountryId = dto.CountryId,
|
|
Issn = dto.Issn
|
|
};
|
|
|
|
await context.Magazines.AddAsync(model);
|
|
await context.SaveChangesWithUserAsync(userId);
|
|
|
|
await context.News.AddAsync(new News
|
|
{
|
|
AddedId = model.Id,
|
|
Date = DateTime.UtcNow,
|
|
Type = NewsType.NewMagazineInDb,
|
|
Name = dto.Title
|
|
});
|
|
|
|
await context.SaveChangesWithUserAsync(userId);
|
|
|
|
return model.Id;
|
|
}
|
|
|
|
[HttpGet("{id:long}/synopses")]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public Task<List<DocumentSynopsisDto>> GetSynopsesAsync(long id) => context.MagazineSynopses
|
|
.Where(s => s.MagazineId == id)
|
|
.Select(s => new DocumentSynopsisDto
|
|
{
|
|
Id = s.Id,
|
|
Text = s.Text,
|
|
LanguageCode = s.LanguageCode,
|
|
Language = s.Language.ReferenceName
|
|
})
|
|
.ToListAsync();
|
|
|
|
[HttpGet("{id:long}/synopsis")]
|
|
[AllowAnonymous]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
public async Task<DocumentSynopsisDto> GetSynopsisAsync(long id, [FromQuery] string lang = "eng")
|
|
{
|
|
DocumentSynopsisDto synopsis = await context.MagazineSynopses
|
|
.Where(s => s.MagazineId == id && s.LanguageCode == lang)
|
|
.Select(s => new DocumentSynopsisDto
|
|
{
|
|
Id = s.Id,
|
|
Text = s.Text,
|
|
LanguageCode = s.LanguageCode,
|
|
Language = s.Language.ReferenceName
|
|
})
|
|
.FirstOrDefaultAsync();
|
|
|
|
if(synopsis is null && lang != "eng")
|
|
synopsis = await context.MagazineSynopses
|
|
.Where(s => s.MagazineId == id && s.LanguageCode == "eng")
|
|
.Select(s => new DocumentSynopsisDto
|
|
{
|
|
Id = s.Id,
|
|
Text = s.Text,
|
|
LanguageCode = s.LanguageCode,
|
|
Language = s.Language.ReferenceName
|
|
})
|
|
.FirstOrDefaultAsync();
|
|
|
|
return synopsis;
|
|
}
|
|
|
|
[HttpPost("{id:long}/synopsis")]
|
|
[Authorize(Roles = "Admin,UberAdmin")]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
|
public async Task<ActionResult<long>> CreateOrUpdateSynopsisAsync(
|
|
long id, [FromBody] DocumentSynopsisDto synopsis)
|
|
{
|
|
string userId = User.FindFirstValue(ClaimTypes.Sid);
|
|
|
|
if(userId is null) return Unauthorized();
|
|
|
|
MagazineSynopsis current = await context.MagazineSynopses
|
|
.FirstOrDefaultAsync(s => s.MagazineId == id &&
|
|
s.LanguageCode == synopsis.LanguageCode);
|
|
|
|
if(current is null)
|
|
{
|
|
current = new MagazineSynopsis
|
|
{
|
|
MagazineId = id,
|
|
LanguageCode = synopsis.LanguageCode,
|
|
Text = synopsis.Text
|
|
};
|
|
|
|
await context.MagazineSynopses.AddAsync(current);
|
|
}
|
|
else
|
|
{
|
|
current.Text = synopsis.Text;
|
|
}
|
|
|
|
await context.SaveChangesWithUserAsync(userId);
|
|
|
|
return current.Id;
|
|
}
|
|
|
|
[HttpDelete("{id:long}/synopsis/{languageCode}")]
|
|
[Authorize(Roles = "Admin,UberAdmin")]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
|
public async Task<ActionResult> DeleteSynopsisAsync(long id, string languageCode)
|
|
{
|
|
string userId = User.FindFirstValue(ClaimTypes.Sid);
|
|
|
|
if(userId is null) return Unauthorized();
|
|
|
|
MagazineSynopsis synopsis = await context.MagazineSynopses
|
|
.FirstOrDefaultAsync(s => s.MagazineId == id &&
|
|
s.LanguageCode == languageCode);
|
|
|
|
if(synopsis is null) return NotFound();
|
|
|
|
context.MagazineSynopses.Remove(synopsis);
|
|
|
|
await context.SaveChangesWithUserAsync(userId);
|
|
|
|
return Ok();
|
|
}
|
|
|
|
[HttpDelete("{id:long}")]
|
|
[Authorize(Roles = "Admin,UberAdmin")]
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
|
public async Task<ActionResult> DeleteAsync(long id)
|
|
{
|
|
string userId = User.FindFirstValue(ClaimTypes.Sid);
|
|
|
|
if(userId is null) return Unauthorized();
|
|
Magazine item = await context.Magazines.FindAsync(id);
|
|
|
|
if(item is null) return NotFound();
|
|
|
|
context.Magazines.Remove(item);
|
|
|
|
await context.SaveChangesWithUserAsync(userId);
|
|
|
|
return Ok();
|
|
}
|
|
} |