-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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!
- Loading branch information
Showing
39 changed files
with
1,987 additions
and
365 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
using System.ComponentModel.DataAnnotations; | ||
using Kemkas.Web.Db.Models; | ||
using Kemkas.Web.Services.FirstEdition.Character; | ||
using Kemkas.Web.Services.Shared; | ||
using Kemkas.Web.ViewModels; | ||
using Microsoft.AspNetCore.Mvc; | ||
|
||
namespace Kemkas.Web.Controllers; | ||
|
||
/// <summary> | ||
/// First edition character endpoints | ||
/// </summary> | ||
/// <param name="validationService"></param> | ||
/// <param name="dtoToDbModelService"></param> | ||
/// <param name="dbModelToDtoService"></param> | ||
/// <param name="persistenceService"></param> | ||
[ApiController] | ||
[Route("[controller]")] | ||
public class Character1EController( | ||
ICharacterValidationService validationService, | ||
ICharacter1EDtoToDbModelService dtoToDbModelService, | ||
ICharacterDbModelToDtoService dbModelToDtoService, | ||
ICharacterPersistenceService persistenceService) | ||
: ControllerBase | ||
{ | ||
[HttpPost] | ||
public async Task<ActionResult<Guid>> StoreNewCharacter([FromBody] Character1eDto 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.StoreNewCharacter1E(model, isPublic); | ||
return id; | ||
} | ||
|
||
[HttpGet("{id:guid}")] | ||
public async Task<ActionResult<Character1eDto>> GetCharacterById([FromRoute] Guid id) | ||
{ | ||
var entity = await persistenceService.GetCharacter1EById(id); | ||
if (entity is null) | ||
{ | ||
return NotFound(); | ||
} | ||
|
||
return dbModelToDtoService.Convert(entity); | ||
} | ||
|
||
[HttpPost("{id:guid}")] | ||
public async Task<ActionResult<Guid>> UpdateCharacter([FromRoute] Guid id, [FromBody] Character1eDto 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.GetCharacter1EById(id, tracking: true); | ||
if (original is null) | ||
{ | ||
return NotFound(); | ||
} | ||
|
||
dtoToDbModelService.Update(original, dto); | ||
|
||
await persistenceService.UpdateCharacter1E(original, isPublic); | ||
|
||
return id; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
using System.ComponentModel.DataAnnotations; | ||
using Kemkas.Web.Db.Models; | ||
using Kemkas.Web.Services.SecondEdition.Character; | ||
using Kemkas.Web.Services.Shared; | ||
using Kemkas.Web.ViewModels; | ||
using Microsoft.AspNetCore.Mvc; | ||
|
||
namespace Kemkas.Web.Controllers; | ||
|
||
[ApiController] | ||
[Route("[controller]")] | ||
public class Character2EController( | ||
ICharacter2EDtoToDbModelService dtoToDbModelService, | ||
ICharacterPersistenceService persistenceService | ||
) : ControllerBase | ||
{ | ||
[HttpPost] | ||
public async Task<ActionResult<Guid>> StoreNewCharacter([FromBody] Character2eDto dto, [FromQuery]bool isPublic = true) | ||
{ | ||
if (!ModelState.IsValid) | ||
{ | ||
return BadRequest(ModelState); | ||
} | ||
// var errors = validationService.Validate(dto); | ||
// if (errors != null) | ||
// { | ||
// return BadRequest(errors); | ||
// } | ||
|
||
V2Karakter model; | ||
try | ||
{ | ||
model = dtoToDbModelService.Convert(dto); | ||
} | ||
catch (ValidationException ex) | ||
{ | ||
return BadRequest(ex.Message); | ||
} | ||
var id = await persistenceService.StoreNewCharacter2E(model, isPublic); | ||
return id; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.