mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
using EggLink.DanhengServer.Database;
|
|
using EggLink.DanhengServer.Database.Account;
|
|
using EggLink.DanhengServer.Util;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace EggLink.DanhengServer.WebServer.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("/")]
|
|
public class ServerExchangeRoutes
|
|
{
|
|
[HttpGet("/get_account_info")]
|
|
public async ValueTask<ContentResult> GetAccountInfo([FromQuery] string accountUid)
|
|
{
|
|
if (!ConfigManager.Config.ServerOption.ServerConfig.RunDispatch)
|
|
return new ContentResult
|
|
{
|
|
StatusCode = 404
|
|
};
|
|
|
|
if (string.IsNullOrEmpty(accountUid) || !int.TryParse(accountUid, out var uid))
|
|
return new ContentResult
|
|
{
|
|
StatusCode = 400
|
|
};
|
|
|
|
var account = DatabaseHelper.Instance?.GetInstance<AccountData>(uid);
|
|
if (account == null)
|
|
return new ContentResult
|
|
{
|
|
StatusCode = 404,
|
|
Content = "Account not found"
|
|
};
|
|
|
|
await ValueTask.CompletedTask;
|
|
|
|
return new ContentResult
|
|
{
|
|
Content = account.Uid.ToString(),
|
|
StatusCode = 200,
|
|
ContentType = "plain/text; charset=utf-8"
|
|
};
|
|
}
|
|
} |