maint(elimination_handler.cpp): remove links from server names
This commit is contained in:
parent
596d9f05f8
commit
cf0c557a25
@ -1,10 +1,21 @@
|
|||||||
#include <std_include.hpp>
|
#include <std_include.hpp>
|
||||||
#include "elimination_handler.hpp"
|
#include "elimination_handler.hpp"
|
||||||
|
|
||||||
|
#include <utils/string.hpp>
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
constexpr auto T7_PROTOCOL = 7;
|
constexpr auto T7_PROTOCOL = 7;
|
||||||
|
|
||||||
constexpr size_t MAX_SERVERS_PER_GAME = 10;
|
constexpr size_t MAX_SERVERS_PER_GAME = 10;
|
||||||
|
|
||||||
|
std::array bad_names =
|
||||||
|
{
|
||||||
|
"http",
|
||||||
|
"discord.gg",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
void elimination_handler::run_frame()
|
void elimination_handler::run_frame()
|
||||||
{
|
{
|
||||||
std::unordered_map<game_type, std::unordered_map<std::string, size_t>> server_count;
|
std::unordered_map<game_type, std::unordered_map<std::string, size_t>> server_count;
|
||||||
@ -40,6 +51,16 @@ void elimination_handler::run_frame()
|
|||||||
console::log("Removing server '%s' because it exceeds MAX_SERVERS_PER_GAME", context.get_address().to_string().data());
|
console::log("Removing server '%s' because it exceeds MAX_SERVERS_PER_GAME", context.get_address().to_string().data());
|
||||||
context.remove();
|
context.remove();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const auto name = utils::string::to_lower(server.name);
|
||||||
|
for (const auto& entry : bad_names)
|
||||||
|
{
|
||||||
|
if (const auto pos = name.find(entry); pos != std::string::npos)
|
||||||
|
{
|
||||||
|
console::log("Removing server '%s' (%s) because it contains a bad name", server.name.data(), context.get_address().to_string().data());
|
||||||
|
context.remove();
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
now = std::chrono::high_resolution_clock::now();
|
now = std::chrono::high_resolution_clock::now();
|
||||||
|
Loading…
Reference in New Issue
Block a user