mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
57 lines
No EOL
1.9 KiB
C#
57 lines
No EOL
1.9 KiB
C#
#nullable enable
|
|
using LBPUnion.ProjectLighthouse.PlayerData.Profiles;
|
|
using LBPUnion.ProjectLighthouse.Types;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
// ReSharper disable RouteTemplates.ActionRoutePrefixCanBeExtractedToControllerRoute
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.API.Controllers;
|
|
|
|
/// <summary>
|
|
/// A collection of endpoints relating to users.
|
|
/// </summary>
|
|
public class UserEndpoints : ApiEndpointController
|
|
{
|
|
private readonly Database database;
|
|
|
|
public UserEndpoints(Database database)
|
|
{
|
|
this.database = database;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a user and their information from the database.
|
|
/// </summary>
|
|
/// <param name="id">The ID of the user</param>
|
|
/// <returns>The user</returns>
|
|
/// <response code="200">The user, if successful.</response>
|
|
/// <response code="404">The user could not be found.</response>
|
|
[HttpGet("user/{id:int}")]
|
|
[ProducesResponseType(typeof(User), StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
public async Task<IActionResult> GetUser(int id)
|
|
{
|
|
User? user = await this.database.Users.FirstOrDefaultAsync(u => u.UserId == id);
|
|
if (user == null) return this.NotFound();
|
|
|
|
return this.Ok(user);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a user and their information from the database.
|
|
/// </summary>
|
|
/// <param name="id">The ID of the user</param>
|
|
/// <returns>The user's status</returns>
|
|
/// <response code="200">The user's status, if successful.</response>
|
|
/// <response code="404">The user could not be found.</response>
|
|
[HttpGet("user/{id:int}/status")]
|
|
[ProducesResponseType(typeof(UserStatus), StatusCodes.Status200OK)]
|
|
[ProducesResponseType(StatusCodes.Status404NotFound)]
|
|
public IActionResult GetUserStatus(int id)
|
|
{
|
|
UserStatus userStatus = new(this.database, id);
|
|
|
|
return this.Ok(userStatus);
|
|
}
|
|
} |