2023-04-04 19:24:13 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Jint.Native;
|
|
|
|
|
using SharedLibraryCore.Interfaces;
|
|
|
|
|
|
|
|
|
|
namespace IW4MAdmin.Application.Plugin.Script;
|
|
|
|
|
|
|
|
|
|
public class ScriptPluginHelper
|
|
|
|
|
{
|
|
|
|
|
private readonly IManager _manager;
|
|
|
|
|
private readonly ScriptPluginV2 _scriptPlugin;
|
2023-05-30 16:01:01 -04:00
|
|
|
|
private readonly SemaphoreSlim _onRequestRunning = new(1, 1);
|
|
|
|
|
private const int RequestTimeout = 5000;
|
2023-04-04 19:24:13 -04:00
|
|
|
|
|
|
|
|
|
public ScriptPluginHelper(IManager manager, ScriptPluginV2 scriptPlugin)
|
|
|
|
|
{
|
|
|
|
|
_manager = manager;
|
|
|
|
|
_scriptPlugin = scriptPlugin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void GetUrl(string url, Delegate callback)
|
|
|
|
|
{
|
|
|
|
|
RequestUrl(new ScriptPluginWebRequest(url), callback);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-13 22:36:21 -04:00
|
|
|
|
public void GetUrl(string url, string bearerToken, Delegate callback)
|
|
|
|
|
{
|
|
|
|
|
var headers = new Dictionary<string, string> { { "Authorization", $"Bearer {bearerToken}" } };
|
|
|
|
|
RequestUrl(new ScriptPluginWebRequest(url, Headers: headers), callback);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void PostUrl(string url, string body, string bearerToken, Delegate callback)
|
2023-04-04 19:24:13 -04:00
|
|
|
|
{
|
2023-04-13 22:36:21 -04:00
|
|
|
|
var headers = new Dictionary<string, string> { { "Authorization", $"Bearer {bearerToken}" } };
|
|
|
|
|
RequestUrl(
|
|
|
|
|
new ScriptPluginWebRequest(url, body, "POST", Headers: headers), callback);
|
2023-04-04 19:24:13 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void RequestUrl(ScriptPluginWebRequest request, Delegate callback)
|
|
|
|
|
{
|
|
|
|
|
Task.Run(() =>
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var response = RequestInternal(request);
|
|
|
|
|
_scriptPlugin.ExecuteWithErrorHandling(scriptEngine =>
|
|
|
|
|
{
|
|
|
|
|
callback.DynamicInvoke(JsValue.Undefined, new[] { JsValue.FromObject(scriptEngine, response) });
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
// ignored
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-05 23:27:48 -04:00
|
|
|
|
public void RequestNotifyAfterDelay(int delayMs, Delegate callback)
|
2023-04-04 19:24:13 -04:00
|
|
|
|
{
|
|
|
|
|
Task.Run(async () =>
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
await Task.Delay(delayMs, _manager.CancellationToken);
|
|
|
|
|
_scriptPlugin.ExecuteWithErrorHandling(_ => callback.DynamicInvoke(JsValue.Undefined));
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
// ignored
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private object RequestInternal(ScriptPluginWebRequest request)
|
|
|
|
|
{
|
|
|
|
|
var entered = false;
|
|
|
|
|
using var tokenSource = new CancellationTokenSource(RequestTimeout);
|
|
|
|
|
using var client = new HttpClient();
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_onRequestRunning.Wait(tokenSource.Token);
|
|
|
|
|
|
|
|
|
|
entered = true;
|
|
|
|
|
var requestMessage = new HttpRequestMessage(new HttpMethod(request.Method), request.Url);
|
|
|
|
|
|
|
|
|
|
if (request.Body is not null)
|
|
|
|
|
{
|
|
|
|
|
requestMessage.Content = new StringContent(request.Body.ToString() ?? string.Empty, Encoding.Default,
|
|
|
|
|
request.ContentType ?? "text/plain");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (request.Headers is not null)
|
|
|
|
|
{
|
|
|
|
|
foreach (var (key, value) in request.Headers)
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(key))
|
|
|
|
|
{
|
|
|
|
|
requestMessage.Headers.Add(key, value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var response = client.Send(requestMessage, tokenSource.Token);
|
|
|
|
|
using var reader = new StreamReader(response.Content.ReadAsStream());
|
|
|
|
|
return reader.ReadToEnd();
|
|
|
|
|
}
|
|
|
|
|
catch (HttpRequestException ex)
|
|
|
|
|
{
|
|
|
|
|
return new
|
|
|
|
|
{
|
|
|
|
|
ex.StatusCode,
|
|
|
|
|
ex.Message,
|
|
|
|
|
IsError = true
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
return new
|
|
|
|
|
{
|
|
|
|
|
ex.Message,
|
|
|
|
|
IsError = true
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
if (entered)
|
|
|
|
|
{
|
|
|
|
|
_onRequestRunning.Release(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|