Skip to content

Commit 166f069

Browse files
committed
fix DefaultGUI conflict
1 parent f0af382 commit 166f069

File tree

2 files changed

+16
-65
lines changed

2 files changed

+16
-65
lines changed

OsuDataDistributeRestfulPlugin.cs

+16-14
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class OsuDataDistributeRestfulPlugin : Plugin
1919
{
2020
public const string PLUGIN_NAME = "OsuDataDistributeRestful";
2121
public const string PLUGIN_AUTHOR = "KedamavOvO";
22-
public const string VERSION = "0.0.5";
22+
public const string VERSION = "0.0.6";
2323

2424
private bool m_http_quit = false;
2525
private HttpListener m_httpd=new HttpListener() { IgnoreWriteExceptions=true};
@@ -92,7 +92,7 @@ private void Initialize()
9292
if (Setting.EnableFileHttpServer)
9393
{
9494
songsHttpServer = new FileHttpServer();
95-
songsHttpServer.Start();
95+
Task.Run(()=>songsHttpServer.Start());
9696
}
9797
}
9898

@@ -106,17 +106,8 @@ public void RemappingResource(string uri,string target_uri)
106106
m_url_dict[target_uri] = m_url_dict[uri];
107107
}
108108

109-
public override async void OnEnable()
109+
private async void StartApiHttpServer()
110110
{
111-
Sync.Tools.IO.CurrentIO.WriteColor(PLUGIN_NAME + " By " + PLUGIN_AUTHOR, ConsoleColor.DarkCyan);
112-
113-
Initialize();
114-
115-
if (Setting.AllowLAN)
116-
m_httpd.Prefixes.Add(@"http://+:10800/");
117-
else
118-
m_httpd.Prefixes.Add(@"http://localhost:10800/");
119-
120111
m_httpd.Start();
121112
while (!m_http_quit)
122113
{
@@ -130,14 +121,14 @@ public override async void OnEnable()
130121
response.ContentEncoding = Encoding.UTF8;
131122
response.ContentType = "text/json; charset=UTF-8";
132123

133-
if(request.HttpMethod=="GET")
124+
if (request.HttpMethod == "GET")
134125
{
135126
if (m_url_dict.TryGetValue(request.Url.AbsolutePath, out var func))
136127
{
137128
var @params = ParseUriParams(request.Url);
138129

139130
var result = func(@params);
140-
if(result is StreamResult sr)
131+
if (result is StreamResult sr)
141132
{
142133
if (sr.Data != null)
143134
{
@@ -174,6 +165,17 @@ public override async void OnEnable()
174165
}
175166
}
176167

168+
public override void OnEnable()
169+
{
170+
Sync.Tools.IO.CurrentIO.WriteColor(PLUGIN_NAME + " By " + PLUGIN_AUTHOR, ConsoleColor.DarkCyan);
171+
Initialize();
172+
if (Setting.AllowLAN)
173+
m_httpd.Prefixes.Add(@"http://+:10800/");
174+
else
175+
m_httpd.Prefixes.Add(@"http://localhost:10800/");
176+
Task.Run(()=>StartApiHttpServer());
177+
}
178+
177179
public void Return404(HttpListenerResponse response)
178180
{
179181
response.StatusCode = 404;

html/rtpp_old.html

-51
This file was deleted.

0 commit comments

Comments
 (0)