]> git.lizzy.rs Git - minetest.git/blob - src/ban.cpp
Treegen: Improve use of signed vs. unsigned integers
[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                 m_modified(false)
33 {
34         try{
35                 load();
36         }
37         catch(SerializationError &e)
38         {
39                 warningstream<<"BanManager: creating "
40                                 <<m_banfilepath<<std::endl;
41         }
42 }
43
44 BanManager::~BanManager()
45 {
46         save();
47 }
48
49 void BanManager::load()
50 {
51         MutexAutoLock lock(m_mutex);
52         infostream<<"BanManager: loading from "<<m_banfilepath<<std::endl;
53         std::ifstream is(m_banfilepath.c_str(), std::ios::binary);
54         if(is.good() == false)
55         {
56                 infostream<<"BanManager: failed loading from "<<m_banfilepath<<std::endl;
57                 throw SerializationError("BanManager::load(): Couldn't open file");
58         }
59
60         while(!is.eof() && is.good())
61         {
62                 std::string line;
63                 std::getline(is, line, '\n');
64                 Strfnd f(line);
65                 std::string ip = trim(f.next("|"));
66                 std::string name = trim(f.next("|"));
67                 if(!ip.empty()) {
68                         m_ips[ip] = name;
69                 }
70         }
71         m_modified = false;
72 }
73
74 void BanManager::save()
75 {
76         MutexAutoLock lock(m_mutex);
77         infostream << "BanManager: saving to " << m_banfilepath << std::endl;
78         std::ostringstream ss(std::ios_base::binary);
79
80         for (StringMap::iterator it = m_ips.begin(); it != m_ips.end(); ++it)
81                 ss << it->first << "|" << it->second << "\n";
82
83         if (!fs::safeWriteToFile(m_banfilepath, ss.str())) {
84                 infostream << "BanManager: failed saving to " << m_banfilepath << std::endl;
85                 throw SerializationError("BanManager::save(): Couldn't write file");
86         }
87
88         m_modified = false;
89 }
90
91 bool BanManager::isIpBanned(const std::string &ip)
92 {
93         MutexAutoLock lock(m_mutex);
94         return m_ips.find(ip) != m_ips.end();
95 }
96
97 std::string BanManager::getBanDescription(const std::string &ip_or_name)
98 {
99         MutexAutoLock lock(m_mutex);
100         std::string s = "";
101         for (StringMap::iterator it = m_ips.begin(); it != m_ips.end(); ++it) {
102                 if (it->first  == ip_or_name || it->second == ip_or_name
103                                 || ip_or_name == "") {
104                         s += it->first + "|" + it->second + ", ";
105                 }
106         }
107         s = s.substr(0, s.size() - 2);
108         return s;
109 }
110
111 std::string BanManager::getBanName(const std::string &ip)
112 {
113         MutexAutoLock lock(m_mutex);
114         StringMap::iterator it = m_ips.find(ip);
115         if (it == m_ips.end())
116                 return "";
117         return it->second;
118 }
119
120 void BanManager::add(const std::string &ip, const std::string &name)
121 {
122         MutexAutoLock lock(m_mutex);
123         m_ips[ip] = name;
124         m_modified = true;
125 }
126
127 void BanManager::remove(const std::string &ip_or_name)
128 {
129         MutexAutoLock lock(m_mutex);
130         for (StringMap::iterator it = m_ips.begin(); it != m_ips.end();) {
131                 if ((it->first == ip_or_name) || (it->second == ip_or_name)) {
132                         m_ips.erase(it++);
133                 } else {
134                         ++it;
135                 }
136         }
137         m_modified = true;
138 }
139
140
141 bool BanManager::isModified()
142 {
143         MutexAutoLock lock(m_mutex);
144         return m_modified;
145 }
146