123 lines
3.9 KiB
C#
123 lines
3.9 KiB
C#
using CharacterApi.Models;
|
|
using CharacterApi.Services;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Security.Claims;
|
|
|
|
namespace CharacterApi.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("api/[controller]")]
|
|
public class CharactersController : ControllerBase
|
|
{
|
|
private readonly CharacterStore _characters;
|
|
private readonly ILogger<CharactersController> _logger;
|
|
|
|
public CharactersController(CharacterStore characters, ILogger<CharactersController> logger)
|
|
{
|
|
_characters = characters;
|
|
_logger = logger;
|
|
}
|
|
|
|
[HttpPost]
|
|
[Authorize(Roles = "USER,SUPER")]
|
|
public async Task<IActionResult> Create([FromBody] CreateCharacterRequest req)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(req.Name))
|
|
return BadRequest("Name required");
|
|
|
|
var userId = User.FindFirstValue(ClaimTypes.NameIdentifier);
|
|
if (string.IsNullOrWhiteSpace(userId))
|
|
return Unauthorized();
|
|
|
|
var character = new Character
|
|
{
|
|
OwnerUserId = userId,
|
|
Name = req.Name.Trim(),
|
|
Coord = new Coord { X = 0, Y = 0 },
|
|
VisionRadius = 3,
|
|
CreatedUtc = DateTime.UtcNow
|
|
};
|
|
|
|
await _characters.CreateAsync(character);
|
|
return Ok(character);
|
|
}
|
|
|
|
[HttpGet]
|
|
[Authorize(Roles = "USER,SUPER")]
|
|
public async Task<IActionResult> ListMine()
|
|
{
|
|
var userId = User.FindFirstValue(ClaimTypes.NameIdentifier);
|
|
if (string.IsNullOrWhiteSpace(userId))
|
|
return Unauthorized();
|
|
|
|
var characters = await _characters.GetForOwnerAsync(userId);
|
|
return Ok(characters);
|
|
}
|
|
|
|
[HttpGet("{id}/visible-locations")]
|
|
[Authorize(Roles = "USER,SUPER")]
|
|
public async Task<IActionResult> VisibleLocations(string id)
|
|
{
|
|
var userId = User.FindFirstValue(ClaimTypes.NameIdentifier);
|
|
if (string.IsNullOrWhiteSpace(userId))
|
|
return Unauthorized();
|
|
|
|
var allowAnyOwner = User.IsInRole("SUPER");
|
|
var character = await _characters.GetByIdAsync(id);
|
|
if (character is null)
|
|
{
|
|
_logger.LogWarning("Visible locations request failed: character {CharacterId} was not found.", id);
|
|
return NotFound();
|
|
}
|
|
|
|
if (!allowAnyOwner && character.OwnerUserId != userId)
|
|
{
|
|
_logger.LogWarning(
|
|
"Visible locations request denied: character {CharacterId} belongs to owner {OwnerUserId}, request user was {UserId}",
|
|
id,
|
|
character.OwnerUserId,
|
|
userId
|
|
);
|
|
return Forbid();
|
|
}
|
|
|
|
_logger.LogInformation(
|
|
"Visible locations requested for character {CharacterId} at ({X},{Y}) radius {VisionRadius} by user {UserId}",
|
|
character.Id,
|
|
character.Coord.X,
|
|
character.Coord.Y,
|
|
character.VisionRadius,
|
|
userId
|
|
);
|
|
|
|
var generation = await _characters.GetOrCreateVisibleLocationsAsync(character);
|
|
var locations = generation.Locations;
|
|
|
|
_logger.LogInformation(
|
|
"Visible locations resolved for character {CharacterId}: generated {GeneratedCount}, returned {ReturnedCount}",
|
|
character.Id,
|
|
generation.GeneratedCount,
|
|
locations.Count
|
|
);
|
|
|
|
return Ok(locations);
|
|
}
|
|
|
|
[HttpDelete("{id}")]
|
|
[Authorize(Roles = "USER,SUPER")]
|
|
public async Task<IActionResult> Delete(string id)
|
|
{
|
|
var userId = User.FindFirstValue(ClaimTypes.NameIdentifier);
|
|
if (string.IsNullOrWhiteSpace(userId))
|
|
return Unauthorized();
|
|
|
|
var allowAnyOwner = User.IsInRole("SUPER");
|
|
var deleted = await _characters.DeleteForOwnerAsync(id, userId, allowAnyOwner);
|
|
if (!deleted)
|
|
return NotFound();
|
|
|
|
return Ok("Deleted");
|
|
}
|
|
}
|