using Foxchat.Core.Models; using Foxchat.Identity.Database; using Foxchat.Identity.Services; using Microsoft.AspNetCore.Mvc; namespace Foxchat.Identity.Controllers; [ApiController] [Route("/_fox/ident/node")] public class NodeController(IdentityContext context, ChatInstanceResolverService chatInstanceResolverService) : ControllerBase { public const string SOFTWARE_NAME = "Foxchat.NET.Identity"; [HttpGet] public async Task GetNode() { var instance = await context.GetInstanceAsync(); return Ok(new NodeInfo(SOFTWARE_NAME, instance.PublicKey)); } [HttpGet("{domain}")] public async Task GetChatNode(string domain) { var instance = await chatInstanceResolverService.ResolveChatInstanceAsync(domain); return Ok(instance); } }