Foxnouns.NET/Foxnouns.Backend/Controllers/MetaController.cs

29 lines
981 B
C#
Raw Normal View History

2024-06-08 21:02:12 +02:00
using Foxnouns.Backend.Database;
using Microsoft.EntityFrameworkCore;
using Microsoft.AspNetCore.Mvc;
namespace Foxnouns.Backend.Controllers;
[Route("/api/v2/meta")]
public class MetaController(DatabaseContext db) : ApiControllerBase
{
[HttpGet]
[ProducesResponseType(StatusCodes.Status200OK, Type = typeof(MetaResponse))]
public async Task<IActionResult> GetMeta()
{
var userCount = await db.Users.CountAsync();
var memberCount = await db.Members.CountAsync();
2024-06-09 15:48:26 +02:00
return Ok(new MetaResponse(
BuildInfo.Version, BuildInfo.Hash, memberCount,
new UserInfo(userCount, 0, 0, 0))
);
2024-06-08 21:02:12 +02:00
}
[HttpGet("coffee")]
public IActionResult BrewCoffee() => Problem("Sorry, I'm a teapot!", statusCode: StatusCodes.Status418ImATeapot);
2024-06-09 15:48:26 +02:00
private record MetaResponse(string Version, string Hash, int Members, UserInfo Users);
private record UserInfo(int Total, int ActiveMonth, int ActiveWeek, int ActiveDay);
2024-06-08 21:02:12 +02:00
}