/* Minetest Copyright (C) 2013 celeron55, Perttu Ahola 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 "jthread/jmutexautolock.h" #include #include #include "strfnd.h" #include "util/string.h" #include "log.h" #include "filesys.h" BanManager::BanManager(const std::string &banfilepath): m_banfilepath(banfilepath), m_modified(false) { try{ load(); } catch(SerializationError &e) { infostream<<"WARNING: BanManager: creating " <::iterator i = m_ips.begin(); i != m_ips.end(); i++) { ss << i->first << "|" << i->second << "\n"; } if(!fs::safeWriteToFile(m_banfilepath, ss.str())) { infostream<<"BanManager: failed saving to "<::iterator i = m_ips.begin(); i != m_ips.end(); i++) { if(i->first == ip_or_name || i->second == ip_or_name || ip_or_name == "") s += i->first + "|" + i->second + ", "; } s = s.substr(0, s.size()-2); return s; } std::string BanManager::getBanName(const std::string &ip) { JMutexAutoLock lock(m_mutex); std::map::iterator i = m_ips.find(ip); if(i == m_ips.end()) return ""; return i->second; } void BanManager::add(const std::string &ip, const std::string &name) { JMutexAutoLock lock(m_mutex); m_ips[ip] = name; m_modified = true; } void BanManager::remove(const std::string &ip_or_name) { JMutexAutoLock lock(m_mutex); for(std::map::iterator i = m_ips.begin(); i != m_ips.end();) { if((i->first == ip_or_name) || (i->second == ip_or_name)) { m_ips.erase(i++); } else { ++i; } } m_modified = true; } bool BanManager::isModified() { JMutexAutoLock lock(m_mutex); return m_modified; }