feat: 2e save character initial implementation WIP
2e is hidden behind url navigation hiding, so hoping that nobody found it yet. Note: DB migration make this commit a bit risky!
This commit is contained in:
@@ -1,85 +1,19 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Kemkas.Web.Db.Models;
|
||||
using Kemkas.Web.Services.Character;
|
||||
using Kemkas.Web.Services.FirstEdition.Character;
|
||||
using Kemkas.Web.Services.Shared;
|
||||
using Kemkas.Web.ViewModels;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Kemkas.Web.Controllers;
|
||||
|
||||
/// <summary>
|
||||
/// Shared first and second edition character endpoints
|
||||
/// </summary>
|
||||
/// <param name="persistenceService"></param>
|
||||
[ApiController]
|
||||
[Route("[controller]")]
|
||||
public class CharacterController(
|
||||
ICharacterValidationService validationService,
|
||||
ICharacterDtoToDbModelService dtoToDbModelService,
|
||||
ICharacterDbModelToDtoService dbModelToDtoService,
|
||||
ICharacterPersistenceService persistenceService)
|
||||
: ControllerBase
|
||||
public class CharacterController(ICharacterPersistenceService persistenceService) : ControllerBase
|
||||
{
|
||||
[HttpPost]
|
||||
public async Task<ActionResult<Guid>> StoreNewCharacter([FromBody] CharacterDto dto, [FromQuery]bool isPublic = true)
|
||||
{
|
||||
if (!ModelState.IsValid)
|
||||
{
|
||||
return BadRequest(ModelState);
|
||||
}
|
||||
var errors = validationService.Validate(dto);
|
||||
if (errors != null)
|
||||
{
|
||||
return BadRequest(errors);
|
||||
}
|
||||
|
||||
V1Karakter model;
|
||||
try
|
||||
{
|
||||
model = dtoToDbModelService.Convert(dto);
|
||||
}
|
||||
catch (ValidationException ex)
|
||||
{
|
||||
return BadRequest(ex.Message);
|
||||
}
|
||||
var id = await persistenceService.StoreNewCharacter(model, isPublic);
|
||||
return id;
|
||||
}
|
||||
|
||||
[HttpGet("{id:guid}")]
|
||||
public async Task<ActionResult<CharacterDto>> GetCharacterById([FromRoute] Guid id)
|
||||
{
|
||||
var entity = await persistenceService.GetCharacterById(id);
|
||||
if (entity is null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
return dbModelToDtoService.Convert(entity);
|
||||
}
|
||||
|
||||
[HttpPost("{id:guid}")]
|
||||
public async Task<ActionResult<Guid>> UpdateCharacter([FromRoute] Guid id, [FromBody] CharacterDto dto, [FromQuery]bool isPublic = true)
|
||||
{
|
||||
if (!ModelState.IsValid)
|
||||
{
|
||||
return BadRequest(ModelState);
|
||||
}
|
||||
var errors = validationService.Validate(dto);
|
||||
if (errors != null)
|
||||
{
|
||||
return BadRequest(errors);
|
||||
}
|
||||
|
||||
var original = await persistenceService.GetCharacterById(id, tracking: true);
|
||||
if (original is null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
dtoToDbModelService.Update(original, dto);
|
||||
|
||||
await persistenceService.UpdateCharacter(original, isPublic);
|
||||
|
||||
return id;
|
||||
}
|
||||
|
||||
[HttpGet]
|
||||
[Authorize]
|
||||
public async Task<List<CharacterListItemDto>> GetAllCharacters()
|
||||
|
||||
Reference in New Issue
Block a user