]> git.lizzy.rs Git - minetest.git/blob - src/ban.cpp
bab.cpp: code modernization
[minetest.git] / src / ban.cpp
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "ban.h"
21 #include <fstream>
22 #include "threading/mutex_auto_lock.h"
23 #include <sstream>
24 #include <set>
25 #include "util/strfnd.h"
26 #include "util/string.h"
27 #include "log.h"
28 #include "filesys.h"
29
30 BanManager::BanManager(const std::string &banfilepath):
31                 m_banfilepath(banfilepath)
32 {
33         try {
34                 load();
35         } catch(SerializationError &e) {
36                 warningstream<<"BanManager: creating "
37                                 <<m_banfilepath<<std::endl;
38         }
39 }
40
41 BanManager::~BanManager()
42 {
43         save();
44 }
45
46 void BanManager::load()
47 {
48         MutexAutoLock lock(m_mutex);
49         infostream<<"BanManager: loading from "<<m_banfilepath<<std::endl;
50         std::ifstream is(m_banfilepath.c_str(), std::ios::binary);
51         if (!is.good()) {
52                 infostream<<"BanManager: failed loading from "<<m_banfilepath<<std::endl;
53                 throw SerializationError("BanManager::load(): Couldn't open file");
54         }
55
56         while (!is.eof() && is.good()) {
57                 std::string line;
58                 std::getline(is, line, '\n');
59                 Strfnd f(line);
60                 std::string ip = trim(f.next("|"));
61                 std::string name = trim(f.next("|"));
62                 if(!ip.empty()) {
63                         m_ips[ip] = name;
64                 }
65         }
66         m_modified = false;
67 }
68
69 void BanManager::save()
70 {
71         MutexAutoLock lock(m_mutex);
72         infostream << "BanManager: saving to " << m_banfilepath << std::endl;
73         std::ostringstream ss(std::ios_base::binary);
74
75         for (const auto &ip : m_ips)
76                 ss << ip.first << "|" << ip.second << "\n";
77
78         if (!fs::safeWriteToFile(m_banfilepath, ss.str())) {
79                 infostream << "BanManager: failed saving to " << m_banfilepath << std::endl;
80                 throw SerializationError("BanManager::save(): Couldn't write file");
81         }
82
83         m_modified = false;
84 }
85
86 bool BanManager::isIpBanned(const std::string &ip)
87 {
88         MutexAutoLock lock(m_mutex);
89         return m_ips.find(ip) != m_ips.end();
90 }
91
92 std::string BanManager::getBanDescription(const std::string &ip_or_name)
93 {
94         MutexAutoLock lock(m_mutex);
95         std::string s;
96         for (const auto &ip : m_ips) {
97                 if (ip.first  == ip_or_name || ip.second == ip_or_name
98                                 || ip_or_name.empty()) {
99                         s += ip.first + "|" + ip.second + ", ";
100                 }
101         }
102         s = s.substr(0, s.size() - 2);
103         return s;
104 }
105
106 std::string BanManager::getBanName(const std::string &ip)
107 {
108         MutexAutoLock lock(m_mutex);
109         StringMap::iterator it = m_ips.find(ip);
110         if (it == m_ips.end())
111                 return "";
112         return it->second;
113 }
114
115 void BanManager::add(const std::string &ip, const std::string &name)
116 {
117         MutexAutoLock lock(m_mutex);
118         m_ips[ip] = name;
119         m_modified = true;
120 }
121
122 void BanManager::remove(const std::string &ip_or_name)
123 {
124         MutexAutoLock lock(m_mutex);
125         for (StringMap::iterator it = m_ips.begin(); it != m_ips.end();) {
126                 if ((it->first == ip_or_name) || (it->second == ip_or_name)) {
127                         m_ips.erase(it++);
128                 } else {
129                         ++it;
130                 }
131         }
132         m_modified = true;
133 }
134
135
136 bool BanManager::isModified()
137 {
138         MutexAutoLock lock(m_mutex);
139         return m_modified;
140 }
141