-
Notifications
You must be signed in to change notification settings - Fork 1
/
PluginSettings.cpp
237 lines (199 loc) · 5.65 KB
/
PluginSettings.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/*
* esteid-browser-plugin - a browser plugin for Estonian EID card
*
* Copyright (C) 2010 Estonian Informatics Centre
* Copyright (C) 2010 Smartlink OÜ
*
* This library 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 library 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 library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _WIN32
#include <stdlib.h>
#endif
#define BOOST_FILESYSTEM_VERSION 2
#include <fstream>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/foreach.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include "PluginSettings.h"
#include "whitelist.h"
#include "global/config.h"
#include "debug.h"
#include "esteid-config.h"
#ifdef _WIN32
#include "Win/registry.h"
#endif
using namespace boost::filesystem;
PluginSettings::PluginSettings()
: m_allowLocal(true)
{
load();
}
path PluginSettings::globalSettingsDir()
{
#ifdef _WIN32
return Registry::readValue(HKEY_LOCAL_MACHINE, "Software\\Estonian ID Card", "Installed");
#else // UNIX
return ESTEID_CONFIGDIR;
#endif
}
path PluginSettings::userSettingsDir()
{
#ifdef _WIN32
return path(getenv("APPDATA"), native);
#else // UNIX
path home(getenv("HOME"), native);
# ifdef __APPLE__
return home / "Library/Application Support";
# else
return home / ".config";
# endif
#endif
}
PluginSettings::~PluginSettings()
{
}
path PluginSettings::globalSettingsFile()
{
static const std::string fileName = "esteid-browser-plugin.conf";
return globalSettingsDir() / fileName;
}
path PluginSettings::userSettingsFile()
{
static const std::string fileName = "esteid-browser-plugin.conf";
return userSettingsDir() / fileName;
}
path PluginSettings::legacySettingsFile()
{
static const std::string fileName = "esteidplugin.conf";
return userSettingsDir() / fileName;
}
void PluginSettings::load(const boost::filesystem::path& filename,
Whitelist& out_whitelist)
{
using boost::property_tree::ptree;
ptree pt;
read_xml(filename.string(), pt);
BOOST_FOREACH(ptree::value_type& v, pt.get_child("settings.whitelist")) {
if (v.first == "url") {
out_whitelist.push_back(v.second.data());
}
}
}
void PluginSettings::loadLegacy(const boost::filesystem::path& configFile)
{
std::string line;
ifstream input(configFile);
m_whitelist.clear();
while (std::getline(input, line) && !line.empty()) {
if (line == "@NODEFAULTS")
;
else if (line == "@NOLOCAL")
m_allowLocal = false;
else
m_whitelist.push_back(line);
}
}
void PluginSettings::convertLegacy()
{
path legacySettings = legacySettingsFile();
if (exists(legacySettings)) {
loadLegacy(legacySettings);
save();
remove(legacySettings);
}
}
void PluginSettings::load()
{
try {
// Load systemwide settings file
load(globalSettingsFile(), m_defaultWhitelist);
} catch(const std::exception& e) {
ESTEID_DEBUG("Error loading settings: %s", e.what());
}
try {
// Load user settings file from home directory
load(userSettingsFile(), m_whitelist);
} catch(const std::exception& e) {
ESTEID_DEBUG("Error loading user settings: %s", e.what());
}
try {
// Convert legacy settings into the new format
convertLegacy();
} catch(const std::exception& e) {
ESTEID_DEBUG("Error converting legacy settings: %s", e.what());
}
}
void PluginSettings::save(const boost::filesystem::path& filename)
{
using boost::property_tree::ptree;
using boost::property_tree::xml_writer_make_settings;
path settingsDir = filename.parent_path();
if (!exists(settingsDir))
create_directory(settingsDir);
// Create empty property tree object
ptree settings;
ptree wl_tree;
BOOST_FOREACH(const std::string& url, m_whitelist) {
wl_tree.add("url", url);
}
settings.add_child("settings.whitelist", wl_tree);
write_xml(filename.string(),
settings,
std::locale(),
xml_writer_make_settings(' ', 4));
}
void PluginSettings::save()
{
removeDuplicateEntries(m_whitelist);
removeDuplicateEntries(m_whitelist, m_defaultWhitelist);
try {
// Save user settings file
save(userSettingsFile());
} catch(const std::exception& e) {
ESTEID_DEBUG("Error saving user settings: %s", e.what());
}
}
bool PluginSettings::inWhitelist(const std::string& s)
{
bool ret = ::inWhitelist(m_defaultWhitelist, s) ||
::inWhitelist(m_whitelist, s);
return ret;
}
Whitelist PluginSettings::defaultWhitelist()
{
return m_defaultWhitelist;
}
Whitelist PluginSettings::whitelist()
{
return m_whitelist;
}
void PluginSettings::setWhitelist(const Whitelist& whitelist)
{
m_whitelist = whitelist;
}
void PluginSettings::addSite(const std::string& site)
{
m_whitelist.push_back(site);
}
void PluginSettings::clearWhitelist()
{
m_whitelist.clear();
}
bool PluginSettings::allowLocal()
{
return m_allowLocal;
}