iw4x-client/src/Components/Modules/ScriptExtension.cpp

163 lines
3.9 KiB
C++
Raw Normal View History

#include "STDInclude.hpp"
namespace Components
{
static const char* queryStrings[] = { R"(..)", R"(../)", R"(..\)" };
2022-01-23 14:32:20 -05:00
void ScriptExtension::AddFunctions()
{
//File functions
2022-01-23 14:32:20 -05:00
Script::AddFunction("FileWrite", [](Game::scr_entref_t) // gsc: FileWrite(<filepath>, <string>, <mode>)
{
const auto* path = Game::Scr_GetString(0);
2022-01-23 14:32:20 -05:00
auto* text = Game::Scr_GetString(1);
auto* mode = Game::Scr_GetString(2);
if (path == nullptr)
{
Game::Scr_ParamError(0, "^1FileWrite: filepath is not defined!\n");
2022-01-23 14:32:20 -05:00
return;
}
if (text == nullptr || mode == nullptr)
{
Game::Scr_Error("^1FileWrite: Illegal parameters!\n");
return;
}
for (auto i = 0u; i < ARRAYSIZE(queryStrings); ++i)
{
if (std::strstr(path, queryStrings[i]) != nullptr)
{
2022-01-23 14:32:20 -05:00
Logger::Print("^1FileWrite: directory traversal is not allowed!\n");
return;
}
}
if (mode != "append"s && mode != "write"s)
{
2022-01-23 14:32:20 -05:00
Logger::Print("^3FileWrite: mode not defined or was wrong, defaulting to 'write'\n");
2022-01-07 16:00:44 -05:00
mode = "write";
}
if (mode == "write"s)
{
FileSystem::FileWriter(path).write(text);
}
else if (mode == "append"s)
{
FileSystem::FileWriter(path, true).write(text);
}
});
2022-01-23 14:32:20 -05:00
Script::AddFunction("FileRead", [](Game::scr_entref_t) // gsc: FileRead(<filepath>)
{
const auto* path = Game::Scr_GetString(0);
if (path == nullptr)
{
Game::Scr_ParamError(0, "^1FileRead: filepath is not defined!\n");
return;
}
for (auto i = 0u; i < ARRAYSIZE(queryStrings); ++i)
{
if (std::strstr(path, queryStrings[i]) != nullptr)
{
2022-01-23 14:32:20 -05:00
Logger::Print("^1FileRead: directory traversal is not allowed!\n");
return;
}
}
if (!FileSystem::FileReader(path).exists())
{
2022-01-23 14:32:20 -05:00
Logger::Print("^1FileRead: file not found!\n");
return;
}
Game::Scr_AddString(FileSystem::FileReader(path).getBuffer().data());
});
2022-01-23 14:32:20 -05:00
Script::AddFunction("FileExists", [](Game::scr_entref_t) // gsc: FileExists(<filepath>)
{
const auto* path = Game::Scr_GetString(0);
if (path == nullptr)
{
Game::Scr_ParamError(0, "^1FileExists: filepath is not defined!\n");
return;
}
for (auto i = 0u; i < ARRAYSIZE(queryStrings); ++i)
{
if (std::strstr(path, queryStrings[i]) != nullptr)
{
2022-01-23 14:32:20 -05:00
Logger::Print("^1FileExists: directory traversal is not allowed!\n");
return;
}
}
Game::Scr_AddInt(FileSystem::FileReader(path).exists());
});
2022-01-23 14:32:20 -05:00
Script::AddFunction("FileRemove", [](Game::scr_entref_t) // gsc: FileRemove(<filepath>)
{
const auto* path = Game::Scr_GetString(0);
if (path == nullptr)
{
Game::Scr_ParamError(0, "^1FileRemove: filepath is not defined!\n");
return;
}
for (auto i = 0u; i < ARRAYSIZE(queryStrings); ++i)
{
if (std::strstr(path, queryStrings[i]) != nullptr)
{
2022-01-23 14:32:20 -05:00
Logger::Print("^1fileRemove: directory traversal is not allowed!\n");
return;
}
}
2022-02-22 12:33:18 -05:00
const auto p = std::filesystem::path(path);
const auto& folder = p.parent_path().string();
const auto& file = p.filename().string();
Game::Scr_AddInt(FileSystem::DeleteFile(folder, file));
});
}
2022-01-23 14:32:20 -05:00
void ScriptExtension::AddMethods()
{
2022-01-23 14:32:20 -05:00
// ScriptExtension methods
Script::AddFunction("GetIp", [](Game::scr_entref_t entref) // gsc: self GetIp()
{
2022-02-01 07:52:53 -05:00
const auto* gentity = Script::GetEntity(entref);
const auto* client = Script::GetClient(gentity);
2022-01-07 16:00:44 -05:00
std::string ip = Game::NET_AdrToString(client->netchan.remoteAddress);
2022-01-23 14:32:20 -05:00
const auto pos = ip.find_first_of(":");
if (pos != std::string::npos)
ip.erase(ip.begin() + pos, ip.end()); // Erase port
2022-01-07 16:00:44 -05:00
Game::Scr_AddString(ip.data());
});
Script::AddFunction("GetPing", [](Game::scr_entref_t entref) // gsc: self GetPing()
{
2022-02-01 07:52:53 -05:00
const auto* gentity = Script::GetEntity(entref);
const auto* client = Script::GetClient(gentity);
2022-01-07 16:00:44 -05:00
Game::Scr_AddInt(client->ping);
});
}
2022-01-23 14:32:20 -05:00
ScriptExtension::ScriptExtension()
{
2022-01-23 14:32:20 -05:00
ScriptExtension::AddFunctions();
ScriptExtension::AddMethods();
}
2022-01-07 16:00:44 -05:00
}