
* feat(protections): add per-player sync block options * feat(player_database): improve player tracker * fix(rapid_fire): remove unnecessary log statement * fix(player_database): default state should be UNKNOWN, not INVALID
87 lines
2.4 KiB
C++
87 lines
2.4 KiB
C++
#pragma once
|
|
#include "file_manager/file.hpp"
|
|
#include "services/players/player_service.hpp"
|
|
|
|
namespace
|
|
{
|
|
static const char* spam_texts[] = {
|
|
"qq", //a chinese chat app
|
|
"QQ",
|
|
"WWW.",
|
|
"www.",
|
|
".cn",
|
|
".CN",
|
|
".cc",
|
|
".CC",
|
|
".TOP",
|
|
".COM",
|
|
".top",
|
|
"\xE3\x80\x90", //left bracket in Chinese input method
|
|
"/Menu",
|
|
"Money/",
|
|
"Money\\\\",
|
|
"Money\\",
|
|
".gg",
|
|
"--->",
|
|
"shopgta5",
|
|
"doit#",
|
|
"krutka#",
|
|
"<b>",
|
|
"P888",
|
|
"gtacash",
|
|
"\xE6\x89\xA3\xE6\x89\xA3", // no clue what this is
|
|
"\xE5\xBE\xAE\xE4\xBF\xA1", // "wechat" in Chinese
|
|
".cc",
|
|
"<font s",
|
|
"sellix.io",
|
|
"ezcars",
|
|
"PLANO INICIAL", // "initial plan"
|
|
"REP +",
|
|
"20R$", // Brazil currency?
|
|
"l55.me",
|
|
"\xE5\xBA\x97", //"shop" in Chinese
|
|
"\xE9\x92\xB1", //"money" in Chinese
|
|
"\xE5\x88\xB7", //"make(money)" in Chinese
|
|
"\xE8\x90\x9D\xE8\x8E\x89", // "cute girl" in Chinese
|
|
"\xE5\xA6\x88", // "mother" in Chinese
|
|
"\xE7\xBE\x8E\xE5\xA5\xB3", // "sexy girl" in Chinese
|
|
"\xE5\xBC\xBA\xE5\xA5\xB8", // "rape" in Chinese
|
|
"\xE8\x90\x9D", // "loli" in Chinese
|
|
"\xE6\x8C\x82", // "hack" in Chinese
|
|
"\xE5\x85\x83", // chinese dollar
|
|
"\xE9\x98\xB4\xE4\xBC\xA0\xE5\xAA\x92", // "Yin Media" in Chinese
|
|
"\xE7\xBD\x91\xE7\xBA\xA2", // "internet celebrities" in Chinese
|
|
"TRUSTPILOT",
|
|
"cashlounge",
|
|
"Fast Delivery",
|
|
"yosativa",
|
|
};
|
|
}
|
|
|
|
namespace big::spam
|
|
{
|
|
inline bool is_text_spam(const char* text)
|
|
{
|
|
for (auto e : spam_texts)
|
|
if (strstr(text, e) != 0)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
inline void log_chat(char* msg, player_ptr player, bool is_spam)
|
|
{
|
|
std::ofstream spam_log(g_file_manager.get_project_file(is_spam ? "./spam.log" : "./chat.log").get_path(), std::ios::app);
|
|
|
|
auto& plData = *player->get_net_data();
|
|
auto ip = player->get_ip_address();
|
|
|
|
spam_log << player->get_name() << " (" << plData.m_gamer_handle.m_rockstar_id << ") <" << (int)ip.m_field1 << "."
|
|
<< (int)ip.m_field2 << "." << (int)ip.m_field3 << "." << (int)ip.m_field4 << ">: " << msg << std::endl;
|
|
|
|
spam_log.close();
|
|
}
|
|
|
|
|
|
}
|