This repository has been archived on 2024-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
FreeSR/FreeSR.Dispatch/Handlers/TokenLoginRequestHandler.cs

32 lines
1.4 KiB
C#
Raw Normal View History

2024-01-27 13:06:07 +00:00
namespace FreeSR.Dispatch.Handlers
{
using Ceen;
using FreeSR.Dispatch.Util;
using FreeSR.Proto;
using Newtonsoft.Json.Linq;
using System.Threading.Tasks;
internal class TokenLoginRequestHandler : IHttpModule
{
public async Task<bool> HandleAsync(IHttpContext context)
{
var accountData = DispatchHelper.ToLoginResponseData();
2024-01-27 13:06:07 +00:00
await context.Response.WriteAllJsonAsync(DispatchResponseBuilder.Create()
2024-01-27 13:08:24 +00:00
.Retcode((int)RetcodeStatus.RetSucc)
2024-01-27 13:06:07 +00:00
.Message("OK")
.Object("data", new JObject
{
{"account", accountData},
2024-01-27 13:06:07 +00:00
{"device_grant_required", false},
{"safe_moblie_required", false},
{"realperson_required", false},
{"reactivate_required", false},
{"realname_operation", "None"}
})
.Build());
return true;
}
}
}