Files
itgmania212121/src/NetworkManager.cpp
T

525 lines
13 KiB
C++
Raw Normal View History

2021-09-11 23:21:34 +02:00
#include "global.h"
#include "NetworkManager.h"
#include "LuaManager.h"
#include "RageLog.h"
#include "RageUtil.h"
#include "StdString.h"
#include <ixwebsocket/IXHttpClient.h>
#include <ixwebsocket/IXNetSystem.h>
#include <ixwebsocket/IXUrlParser.h>
#include <algorithm>
2021-12-08 14:10:43 +01:00
#include <memory>
2021-09-23 22:54:47 +02:00
#include <unordered_map>
2021-09-11 23:21:34 +02:00
#include <vector>
NetworkManager* NETWORK = nullptr; // global and accessible from anywhere in our program
Preference<bool> NetworkManager::httpEnabled("HttpEnabled", false);
Preference<RString> NetworkManager::httpAllowHosts("HttpAllowHosts", "");
static const char *HttpErrorCodeNames[] = {
"Blocked",
"UnknownError",
"CannotConnect",
"Timeout",
"Gzip",
"UrlMalformed",
"CannotCreateSocket",
"SendError",
"ReadError",
"CannotReadStatusLine",
"MissingStatus",
"HeaderParsingError",
"MissingLocation",
"TooManyRedirects",
"ChunkReadError",
"CannotReadBody",
"Cancelled",
};
XToString(HttpErrorCode);
StringToX(HttpErrorCode);
LuaXType(HttpErrorCode);
NetworkManager::NetworkManager() : httpClient(true)
{
ix::initNetSystem();
// Register with Lua.
{
Lua *L = LUA->Get();
this->PushSelf(L);
lua_setglobal(L, "NETWORK");
LUA->Release(L);
}
}
NetworkManager::~NetworkManager()
{
// Unregister with Lua.
LUA->UnsetGlobal("NETWORK");
ix::uninitNetSystem();
}
bool NetworkManager::IsUrlAllowed(const std::string& url)
{
if (!this->httpEnabled.Get())
{
return false;
}
std::string protocol;
std::string host;
std::string path;
std::string query;
int port;
bool valid = ix::UrlParser::parse(url, protocol, host, path, query, port);
if (!valid)
{
return false;
}
if (protocol != "http" && protocol != "https")
{
return false;
}
vector<RString> allowedHosts;
split(this->httpAllowHosts.Get(), ",", allowedHosts);
return std::find(allowedHosts.begin(), allowedHosts.end(), host) != allowedHosts.end();
}
2021-12-08 14:10:43 +01:00
HttpRequestFuturePtr NetworkManager::HttpRequest(const HttpRequestArgs& args)
2021-09-11 23:21:34 +02:00
{
ix::HttpRequestArgsPtr req = this->httpClient.createRequest(args.url, args.method);
req->body = args.body;
req->multipartBoundary = args.multipartBoundary;
for (const auto& entry : args.headers)
{
req->extraHeaders[entry.first] = entry.second;
}
if (args.connectTimeout > 0) {
req->connectTimeout = args.connectTimeout;
}
if (args.transferTimeout > 0) {
req->transferTimeout = args.transferTimeout;
}
this->httpClient.performRequest(req, args.onResponse);
2021-12-08 14:10:43 +01:00
return std::make_shared<HttpRequestFuture>(req);
2021-09-11 23:21:34 +02:00
}
2021-09-23 22:54:47 +02:00
std::string NetworkManager::UrlEncode(const std::string& value)
{
return this->httpClient.urlEncode(value);
}
std::string NetworkManager::EncodeQueryParameters(const std::unordered_map<std::string, std::string>& query)
{
return this->httpClient.serializeHttpParameters(query);
}
2022-01-15 22:55:35 +01:00
int HttpRequestFuture::collect(lua_State *L)
2021-12-08 14:10:43 +01:00
{
void *udata = luaL_checkudata(L, 1, "HttpRequestFuture");
auto futptr = static_cast<HttpRequestFuturePtr*>(udata);
futptr->~shared_ptr();
return 0;
}
int HttpRequestFuture::Cancel(lua_State *L)
{
void *udata = luaL_checkudata(L, 1, "HttpRequestFuture");
auto fut = *static_cast<HttpRequestFuturePtr*>(udata);
fut->args->cancel = true;
return 0;
}
2021-09-11 23:21:34 +02:00
// lua start
#include "LuaBinding.h"
2021-12-08 14:10:43 +01:00
static void registerHttpRequestMetatable(lua_State *L)
{
const luaL_Reg HttpRequest_meta[] = {
2022-01-15 22:55:35 +01:00
{"__gc", HttpRequestFuture::collect},
2021-12-08 14:10:43 +01:00
{"Cancel", HttpRequestFuture::Cancel},
{NULL, NULL},
};
luaL_newmetatable(L, "HttpRequestFuture");
luaL_register(L, NULL, HttpRequest_meta);
lua_pushvalue(L, -1);
lua_setfield(L, -2, "__index");
lua_pop(L, 1);
}
REGISTER_WITH_LUA_FUNCTION(registerHttpRequestMetatable)
2021-09-11 23:21:34 +02:00
/** @brief Allow Lua to have access to the NetworkManager. */
class LunaNetworkManager: public Luna<NetworkManager>
{
public:
static int IsUrlAllowed(T* p, lua_State *L)
{
std::string url = SArg(1);
lua_pushboolean(L, p->IsUrlAllowed(url));
return 1;
}
static int HttpRequest(T* p, lua_State *L)
{
luaL_checktype(L, 1, LUA_TTABLE);
HttpRequestArgs args;
lua_getfield(L, 1, "url");
if (lua_isnil(L, -1))
{
luaL_error(L, "url is required");
}
else if (lua_isstring(L, -1))
{
args.url = lua_tostring(L, -1);
}
else
{
luaL_error(L, "url must be a string");
}
lua_pop(L, 1);
lua_getfield(L, 1, "method");
if (!lua_isnil(L, -1))
{
if (lua_isstring(L, -1))
{
std::string method = lua_tostring(L, -1);
std::vector<std::string> supported_methods{"GET", "POST", "PUT", "PATCH", "DELETE", "HEAD"};
if (std::find(supported_methods.begin(), supported_methods.end(), method) == supported_methods.end())
{
luaL_error(L, "unknown method: '%s'", method.c_str());
}
args.method = method;
}
else {
luaL_error(L, "method must be a string");
}
}
lua_pop(L, 1);
lua_getfield(L, 1, "body");
if (!lua_isnil(L, -1))
{
if (lua_isstring(L, -1))
{
size_t len;
const char *s = lua_tolstring(L, -1, &len);
args.body = std::string(s, len);
}
else
{
luaL_error(L, "body must be a string");
}
}
lua_pop(L, 1);
lua_getfield(L, 1, "multipartBoundary");
if (!lua_isnil(L, -1))
{
if (lua_isstring(L, -1))
{
size_t len;
const char *s = lua_tolstring(L, -1, &len);
args.multipartBoundary = std::string(s, len);
}
else
{
luaL_error(L, "multipartBoundary must be a string");
}
}
lua_pop(L, 1);
lua_getfield(L, 1, "headers");
if (!lua_isnil(L, -1)) {
if (lua_istable(L, -1))
{
lua_pushnil(L);
while(lua_next(L, -2) != 0)
{
if (!lua_isstring(L, -2))
{
luaL_error(L, "header keys must be strings");
}
if (!lua_isstring(L, -1))
{
luaL_error(L, "header values must be strings");
}
std::string key = lua_tostring(L, -2);
std::string value = lua_tostring(L, -1);
args.headers[key] = value;
lua_pop(L, 1);
}
}
else
{
luaL_error(L, "headers must be a table");
}
}
lua_pop(L, 1);
lua_getfield(L, 1, "connectTimeout");
if (!lua_isnil(L, -1)) {
if (lua_isnumber(L, -1))
{
args.connectTimeout = lua_tointeger(L, -1);
}
else
{
luaL_error(L, "connectTimeout must be an integer");
}
}
lua_pop(L, 1);
lua_getfield(L, 1, "transferTimeout");
if (!lua_isnil(L, -1))
{
if (lua_isnumber(L, -1))
{
args.transferTimeout = lua_tointeger(L, -1);
}
else
{
luaL_error(L, "transferTimeout must be an integer");
}
}
lua_pop(L, 1);
int onResponseRef = LUA_NOREF;
// do this as the last check, so we don't leak lua references on error
lua_getfield(L, 1, "onResponse");
if (!lua_isnil(L, -1))
{
if (lua_isfunction(L, -1))
{
lua_pushvalue(L, -1);
onResponseRef = luaL_ref(L, LUA_REGISTRYINDEX);
args.onResponse = [onResponseRef](const ix::HttpResponsePtr& response)
{
Lua *L = LUA->Get();
handleHttpResponse(L, response, onResponseRef);
LUA->Release(L);
};
}
else
{
luaL_error(L, "onResponse must be a function");
}
}
lua_pop(L, 1);
if (p->IsUrlAllowed(args.url))
{
2021-12-08 14:10:43 +01:00
auto fut = p->HttpRequest(args);
void *vp = lua_newuserdata(L, sizeof(std::shared_ptr<HttpRequestFuture>));
new(vp) std::shared_ptr<::HttpRequestFuture>(fut);
luaL_getmetatable(L, "HttpRequestFuture");
lua_setmetatable(L, -2);
return 1;
2021-09-11 23:21:34 +02:00
}
else
{
LOG->Warn("blocked access to %s", args.url.c_str());
if (onResponseRef != LUA_NOREF)
{
handleUrlForbidden(L, args.url, onResponseRef);
}
2021-12-08 14:10:43 +01:00
return 0;
2021-09-11 23:21:34 +02:00
}
}
2021-09-23 22:54:47 +02:00
static int UrlEncode(T* p, lua_State *L)
{
std::string url = SArg(1);
std::string encoded = p->UrlEncode(url);
lua_pushstring(L, encoded.c_str());
return 1;
}
static int EncodeQueryParameters(T* p, lua_State *L)
{
std::unordered_map<std::string, std::string> query;
if (lua_istable(L, 1))
{
lua_pushnil(L);
while(lua_next(L, -2) != 0)
{
if (!lua_isstring(L, -2))
{
luaL_error(L, "parameter keys must be strings");
}
if (!lua_isstring(L, -1))
{
luaL_error(L, "parameter values must be strings");
}
std::string key = lua_tostring(L, -2);
std::string value = lua_tostring(L, -1);
query[key] = value;
lua_pop(L, 1);
}
}
else
{
luaL_error(L, "query must be a table");
}
std::string encoded = p->EncodeQueryParameters(query);
lua_pushstring(L, encoded.c_str());
return 1;
}
2021-09-11 23:21:34 +02:00
LunaNetworkManager()
{
ADD_METHOD(IsUrlAllowed);
ADD_METHOD(HttpRequest);
2021-09-23 22:54:47 +02:00
ADD_METHOD(UrlEncode);
ADD_METHOD(EncodeQueryParameters);
2021-09-11 23:21:34 +02:00
}
private:
static void handleUrlForbidden(Lua *L, std::string& url, int onResponseRef)
{
lua_rawgeti(L, LUA_REGISTRYINDEX, onResponseRef);
luaL_unref(L, LUA_REGISTRYINDEX, onResponseRef);
lua_newtable(L);
LuaHelpers::Push(L, HttpErrorCode_Blocked);
lua_setfield(L, -2, "error");
lua_pushfstring(L, "access to %s is not allowed", url.c_str());
lua_setfield(L, -2, "errorMessage");
RString error = "Lua error in HTTP response handler: ";
LuaHelpers::RunScriptOnStack(L, error, 1, 0, true);
}
static void handleHttpResponse(Lua *L, const ix::HttpResponsePtr& response, int onResponseRef)
{
lua_rawgeti(L, LUA_REGISTRYINDEX, onResponseRef);
luaL_unref(L, LUA_REGISTRYINDEX, onResponseRef);
lua_newtable(L);
switch (response->errorCode)
{
case ix::HttpErrorCode::Ok: lua_pushnil(L); break;
case ix::HttpErrorCode::CannotConnect: LuaHelpers::Push(L, HttpErrorCode_CannotConnect); break;
case ix::HttpErrorCode::Timeout: LuaHelpers::Push(L, HttpErrorCode_Timeout); break;
case ix::HttpErrorCode::Gzip: LuaHelpers::Push(L, HttpErrorCode_Gzip); break;
case ix::HttpErrorCode::UrlMalformed: LuaHelpers::Push(L, HttpErrorCode_UrlMalformed); break;
case ix::HttpErrorCode::CannotCreateSocket: LuaHelpers::Push(L, HttpErrorCode_CannotCreateSocket); break;
case ix::HttpErrorCode::SendError: LuaHelpers::Push(L, HttpErrorCode_SendError); break;
case ix::HttpErrorCode::ReadError: LuaHelpers::Push(L, HttpErrorCode_ReadError); break;
case ix::HttpErrorCode::CannotReadStatusLine: LuaHelpers::Push(L, HttpErrorCode_CannotReadStatusLine); break;
case ix::HttpErrorCode::MissingStatus: LuaHelpers::Push(L, HttpErrorCode_MissingStatus); break;
case ix::HttpErrorCode::HeaderParsingError: LuaHelpers::Push(L, HttpErrorCode_HeaderParsingError); break;
case ix::HttpErrorCode::MissingLocation: LuaHelpers::Push(L, HttpErrorCode_MissingLocation); break;
case ix::HttpErrorCode::TooManyRedirects: LuaHelpers::Push(L, HttpErrorCode_TooManyRedirects); break;
case ix::HttpErrorCode::ChunkReadError: LuaHelpers::Push(L, HttpErrorCode_ChunkReadError); break;
case ix::HttpErrorCode::CannotReadBody: LuaHelpers::Push(L, HttpErrorCode_CannotReadBody); break;
2021-12-08 14:10:43 +01:00
case ix::HttpErrorCode::Cancelled: LuaHelpers::Push(L, HttpErrorCode_Cancelled); break;
2021-09-11 23:21:34 +02:00
default: LuaHelpers::Push(L, HttpErrorCode_UnknownError); break;
}
lua_setfield(L, -2, "error");
if (response->errorMsg == "")
{
lua_pushnil(L);
}
else
{
lua_pushstring(L, response->errorMsg.c_str());
}
lua_setfield(L, -2, "errorMessage");
lua_pushinteger(L, response->statusCode);
lua_setfield(L, -2, "statusCode");
lua_newtable(L);
for (const auto& entry : response->headers)
{
lua_pushstring(L, entry.second.c_str());
lua_setfield(L, -2, entry.first.c_str());
}
lua_setfield(L, -2, "headers");
lua_pushlstring(L, response->body.c_str(), response->body.length());
lua_setfield(L, -2, "body");
lua_pushnumber(L, response->uploadSize);
lua_setfield(L, -2, "uploadSize");
lua_pushnumber(L, response->downloadSize);
lua_setfield(L, -2, "downloadSize");
RString error = "Lua error in HTTP response handler: ";
LuaHelpers::RunScriptOnStack(L, error, 1, 0, true);
}
};
LUA_REGISTER_CLASS(NetworkManager)
// lua end
/*
* (c) 2021 Martin Natano
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/