/* Minetest Copyright (C) 2013 celeron55, Perttu Ahola Copyright (C) 2018 nerzhul, Loic BLOT This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "ban.h" #include #include "threading/mutex_auto_lock.h" #include #include #include "util/strfnd.h" #include "util/string.h" #include "log.h" #include "filesys.h" BanManager::BanManager(const std::string &banfilepath): m_banfilepath(banfilepath) { try { load(); } catch(SerializationError &e) { infostream << "BanManager: creating " << m_banfilepath << std::endl; } } BanManager::~BanManager() { save(); } void BanManager::load() { MutexAutoLock lock(m_mutex); infostream<<"BanManager: loading from "<second; } void BanManager::add(const std::string &ip, const std::string &name) { MutexAutoLock lock(m_mutex); m_ips[ip] = name; m_modified = true; } void BanManager::remove(const std::string &ip_or_name) { MutexAutoLock lock(m_mutex); for (StringMap::iterator it = m_ips.begin(); it != m_ips.end();) { if ((it->first == ip_or_name) || (it->second == ip_or_name)) { m_ips.erase(it++); m_modified = true; } else { ++it; } } } bool BanManager::isModified() { MutexAutoLock lock(m_mutex); return m_modified; }