@@ -19,7 +19,7 @@ public class OsuDataDistributeRestfulPlugin : Plugin
19
19
{
20
20
public const string PLUGIN_NAME = "OsuDataDistributeRestful" ;
21
21
public const string PLUGIN_AUTHOR = "KedamavOvO" ;
22
- public const string VERSION = "0.0.5 " ;
22
+ public const string VERSION = "0.0.6 " ;
23
23
24
24
private bool m_http_quit = false ;
25
25
private HttpListener m_httpd = new HttpListener ( ) { IgnoreWriteExceptions = true } ;
@@ -92,7 +92,7 @@ private void Initialize()
92
92
if ( Setting . EnableFileHttpServer )
93
93
{
94
94
songsHttpServer = new FileHttpServer ( ) ;
95
- songsHttpServer . Start ( ) ;
95
+ Task . Run ( ( ) => songsHttpServer . Start ( ) ) ;
96
96
}
97
97
}
98
98
@@ -106,17 +106,8 @@ public void RemappingResource(string uri,string target_uri)
106
106
m_url_dict [ target_uri ] = m_url_dict [ uri ] ;
107
107
}
108
108
109
- public override async void OnEnable ( )
109
+ private async void StartApiHttpServer ( )
110
110
{
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
-
120
111
m_httpd . Start ( ) ;
121
112
while ( ! m_http_quit )
122
113
{
@@ -130,14 +121,14 @@ public override async void OnEnable()
130
121
response . ContentEncoding = Encoding . UTF8 ;
131
122
response . ContentType = "text/json; charset=UTF-8" ;
132
123
133
- if ( request . HttpMethod == "GET" )
124
+ if ( request . HttpMethod == "GET" )
134
125
{
135
126
if ( m_url_dict . TryGetValue ( request . Url . AbsolutePath , out var func ) )
136
127
{
137
128
var @params = ParseUriParams ( request . Url ) ;
138
129
139
130
var result = func ( @params ) ;
140
- if ( result is StreamResult sr )
131
+ if ( result is StreamResult sr )
141
132
{
142
133
if ( sr . Data != null )
143
134
{
@@ -174,6 +165,17 @@ public override async void OnEnable()
174
165
}
175
166
}
176
167
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
+
177
179
public void Return404 ( HttpListenerResponse response )
178
180
{
179
181
response . StatusCode = 404 ;
0 commit comments