ascnet/AscNet.SDKServer/Controllers/ConfigController.cs

137 lines
6.4 KiB
C#
Raw Normal View History

2023-10-07 00:44:06 +00:00
using AscNet.Common.Util;
using AscNet.SDKServer.Models;
2023-10-07 10:18:43 +00:00
using Microsoft.AspNetCore.Mvc;
2023-10-07 00:44:06 +00:00
using Newtonsoft.Json;
namespace AscNet.SDKServer.Controllers
2023-10-06 13:29:27 +00:00
{
internal class ConfigController : IRegisterable
{
2023-10-07 00:44:06 +00:00
private static readonly Dictionary<string, ServerVersionConfig> versions = new();
static ConfigController()
{
versions = JsonConvert.DeserializeObject<Dictionary<string, ServerVersionConfig>>(File.ReadAllText("./Configs/version_config.json"))!;
}
2023-10-06 13:29:27 +00:00
public static void Register(WebApplication app)
{
2023-10-07 00:44:06 +00:00
app.MapGet("/prod/client/config/com.kurogame.punishing.grayraven.en.pc/{version}/standalone/config.tab", (HttpContext ctx) =>
{
List<RemoteConfig> remoteConfigs = new();
ServerVersionConfig versionConfig = versions.GetValueOrDefault((string)ctx.Request.RouteValues["version"]!) ?? versions.First().Value;
foreach (var property in typeof(ServerVersionConfig).GetProperties())
remoteConfigs.AddConfig(property.Name, (string)property.GetValue(versionConfig)!);
remoteConfigs.AddConfig("ApplicationVersion", (string)ctx.Request.RouteValues["version"]!);
remoteConfigs.AddConfig("Debug", true);
remoteConfigs.AddConfig("External", true);
remoteConfigs.AddConfig("Channel", 1);
remoteConfigs.AddConfig("PayCallbackUrl", "empty");
remoteConfigs.AddConfig("PrimaryCdns", "http://prod-encdn-akamai.kurogame.net/prod|http://prod-encdn-aliyun.kurogame.net/prod");
remoteConfigs.AddConfig("SecondaryCdns", "http://prod-encdn-aliyun.kurogame.net/prod");
remoteConfigs.AddConfig("CdnInvalidTime", 600);
remoteConfigs.AddConfig("MtpEnabled", false);
remoteConfigs.AddConfig("MemoryLimit", 2048);
remoteConfigs.AddConfig("CloseMsgEncrypt", false);
remoteConfigs.AddConfig("ServerListStr", $"{Common.Common.config.GameServer.RegionName}#{Common.Common.config.GameServer.Host}/api/Login/Login");
2023-10-07 10:18:43 +00:00
remoteConfigs.AddConfig("AndroidPayCallbackUrl", $"{Common.Common.config.GameServer.Host}/api/XPay/HeroHgAndroidPayResult");
remoteConfigs.AddConfig("IosPayCallbackUrl", $"{Common.Common.config.GameServer.Host}/api/XPay/HeroHgIosPayResult");
remoteConfigs.AddConfig("WatermarkEnabled", false); // i just wanna know what this is
remoteConfigs.AddConfig("PicComposition", "empty");
2023-10-07 00:44:06 +00:00
remoteConfigs.AddConfig("DeepLinkEnabled", true);
remoteConfigs.AddConfig("DownloadMethod", 1);
remoteConfigs.AddConfig("PcPayCallbackList", $"{Common.Common.config.GameServer.Host}/api/XPay/KuroPayResult");
2023-10-11 17:39:04 +00:00
string serializedObject = TsvTool.SerializeObject(remoteConfigs);
SDKServer.log.Info(serializedObject);
2023-10-11 17:39:04 +00:00
return serializedObject;
2023-10-07 00:44:06 +00:00
});
2023-10-06 13:29:27 +00:00
2023-10-07 10:18:43 +00:00
app.MapGet("/prod/client/notice/config/com.kurogame.punishing.grayraven.en.pc/{version}/LoginNotice.json", (HttpContext ctx) =>
{
2023-10-11 17:39:04 +00:00
LoginNotice notice = new()
2023-10-07 10:18:43 +00:00
{
BeginTime = 0,
EndTime = 0,
HtmlUrl = "/",
Id = "1",
ModifyTime = DateTimeOffset.Now.ToUnixTimeSeconds(),
2023-10-07 10:18:43 +00:00
Title = "NOTICE"
2023-10-11 17:39:04 +00:00
};
string serializedObject = JsonConvert.SerializeObject(notice);
SDKServer.log.Info(serializedObject);
return serializedObject;
});
app.MapGet("/prod/client/notice/config/com.kurogame.punishing.grayraven.en.pc/{version}/ScrollTextNotice.json", (HttpContext ctx) =>
{
ScrollTextNotice notice = new()
{
Id = "1",
ModifyTime = DateTimeOffset.Now.ToUnixTimeSeconds(),
BeginTime = 0,
EndTime = 0,
Content = "[ANNOUNCEMENT] There is no announcement.",
ScrollInterval = 300,
ScrollTimes = 15,
ShowInFight = 1,
ShowInPhotograph = 1
};
string serializedObject = JsonConvert.SerializeObject(notice);
SDKServer.log.Info(serializedObject);
return serializedObject;
});
app.MapGet("/prod/client/notice/config/com.kurogame.punishing.grayraven.en.pc/{version}/ScrollPicNotice.json", (HttpContext ctx) =>
{
ScrollPicNotice notice = new()
{
Id = "1",
ModifyTime = DateTimeOffset.Now.ToUnixTimeSeconds(),
Content = new ScrollPicNotice.NoticeContent[]
{
new ScrollPicNotice.NoticeContent()
{
Id = 0,
PicAddr = "0",
JumpType = "0",
JumpAddr = "0",
PicType = "0",
Interval = 5,
BeginTime = DateTimeOffset.Now.ToUnixTimeSeconds(),
EndTime = DateTimeOffset.Now.ToUnixTimeSeconds() + 3600 * 24,
AppearanceCondition = Array.Empty<dynamic>(),
AppearanceDay = Array.Empty<dynamic>(),
AppearanceTime = Array.Empty<dynamic>(),
DisappearanceCondition = Array.Empty<dynamic>(),
}
}
};
2023-10-11 17:39:04 +00:00
string serializedObject = JsonConvert.SerializeObject(notice);
SDKServer.log.Info(serializedObject);
2023-10-11 17:39:04 +00:00
return serializedObject;
2023-10-07 10:18:43 +00:00
});
app.MapGet("/prod/client/notice/config/com.kurogame.punishing.grayraven.en.pc/{version}/GameNotice.json", (HttpContext ctx) =>
{
List<GameNotice> notices = new();
string serializedObject = JsonConvert.SerializeObject(notices);
SDKServer.log.Info(serializedObject);
return serializedObject;
});
2023-10-07 00:44:06 +00:00
app.MapPost("/feedback", (HttpContext ctx) =>
{
SDKServer.log.Info("1");
2023-10-07 10:18:43 +00:00
return "1";
});
2023-10-06 13:29:27 +00:00
}
}
}