scoreboard-api/Server/Controllers/AuthenticationController.cs

47 lines
1.4 KiB
C#

using DatabaseModels.Requests;
using DatabaseModels.Responses;
using Server.Services;
using Microsoft.AspNetCore.Mvc;
namespace Server.Controllers;
[Route("auth")]
[ApiController]
public class AuthenticationController : ControllerBase
{
private readonly AuthenticationService _authenticationService;
public AuthenticationController(AuthenticationService authenticationService)
{
_authenticationService = authenticationService;
}
// POST: /authentication/register
[HttpPost("register")]
public async Task<ActionResult<AuthenticationResponse>> Register([FromBody] AuthenticationRequest request)
{
var (success, content) = await _authenticationService.Register(request);
if (!success)
{
return BadRequest(content);
}
return await Login(request);
}
// POST: /authentication/login
[HttpPost("login")]
public async Task<ActionResult<AuthenticationResponse>> Login([FromBody] AuthenticationRequest request)
{
var (success, content) = await _authenticationService.Login(request);
if (!success)
{
return BadRequest("Username or password is incorrect.");
}
var userId = await _authenticationService.GetIdByUsername(request.Username);
return Ok(new AuthenticationResponse { UserId = userId, Token = content } );
}
}