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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
|
#ifndef CONFIG_H
#define CONFIG_H
#include <client.h>
#include "Proxy.h"
using std::vector;
using std::string;
/**
* @brief represents client configuration<br/>
* When vreated config.cfg is read to determine basic settings, server addresses, etc.<br/>
*/
class Config
{
public:
/**
* @brief Class to represent 'firewall' record in the config file
*/
class FirewallEntry
{
public:
FirewallEntry(): block(false), host("127.0.0.1") {}
/**
* @brief Firewall action: true - to block access to the host,
* false - to allow access to the host
*/
bool block;
/**
* @brief Hostname or address to allow/block access to
*/
string host;
/**
* @brief Extract and set instance variables from config line
*/
void Parse(string entry);
};
/**
* @brief class that represent file actions that should be taken: update/delete
*/
class FileEntry
{
public:
/**
* @enum possible file action types
*/
enum ActionType
{
/**
* @brief unknown file action (default)
*/
UnknownAction,
/**
* @brief delete file from filesystem (if it exists)
*/
DeleteAction,
/**
* @brief download file to filesystem (if it isn't exists)
*/
DownloadAction
};
FileEntry(): action(UnknownAction) {}
/**
* @brief action that should be taken
*/
ActionType action;
/**
* @brief file path
*/
string path;
/**
* @brief md5hash value for this file ('upload' action only)
*/
string md5;
/**
* @brief Extract and set instance variables from config line
*/
void Parse(string entry, ActionType _action);
};
/**
* @brief Time between consecutive program updates
*/
unsigned ClientUpdateInterval;
/**
* @brief Welcome message that is displayed after program start
*/
string WelcomeMsg;
/**
* @brief Message that is shown when the config.cfg downloaded/updated
* successfully
*/
string ConfigLoadedMsg;
/**
* @brief Text that is displayed in as the top panel caption in the UI
*/
string TopPanelText;
/**
* @brief Text that is displayed in as the bottom panel caption in the UI
*/
string BottomPanelText;
/**
* @brief Determines whether proxy speed displayed in the UI or not
*/
bool IsSpeedVisible;
/**
* @brief Full filename of the Proxyfier's executable
*/
string ProxifierExeFile;
/**
* @brief Full filename of the Proxyfier's profile
*/
string ProxifierConfigFile;
/**
* @brief Update client configuration
* @deprecated config is updated periodically on timer events now
*/
void AcquireConfig();
/**
* @brief Get list of country names where at least one proxy available<br/>
* (generic proxy records only)
* @return Alphabetically sorted vector<string> with unique country names
*/
vector<string> GetCountries();
/**
* @brief Get list of country states where at least one proxy available<br/>
* (generic proxy records only)
* @param country name of country to get list of states for
* @return Alphabetically sorted vector<string> with unique state names.<br/>
* Resultant vector<string> may be empty in case if there are no states in specified country
*/
vector<string> GetStates(string &country);
/**
* @brief Get list of cities in particular country without states<br/>
* (generic proxy records only)
* @param country name of country to get list of states for
* @return Alphabetically sorted vector<string> with unique city names
*/
vector<string> GetCities(string &country);
/**
* @brief Get list of cities in particular country and state<br/>
* (generic proxy records only)
* @param country name of country to get list of cities for
* @param state name of state to get list of cities for
* @return Alphabetically sorted vector<string> with unique city names
*/
vector<string> GetCities(string &country, string &state);
/**
* @brief Get list of proxy server addresses in particular country and city (without states)<br/>
* (generic proxy records only)
* @param country name of country to get list of proxies for
* @param city name of city to get list of proxies for
* @return Alphabetically sorted vector<string> with unique proxy names
*/
vector<Proxy> GetProxies(string &country, string &city);
/**
* @brief Get list of proxy server addresses in particular country, state and city<br/>
* (generic proxy records only)
* @param country name of country to get list of proxies for
* @param state name of state to get list of proxies for
* @param city name of city to get list of proxies for
* @return Alphabetically sorted vector<string> with unique proxy names
*/
vector<Proxy> GetProxies(string &country, string &state, string &city);
/**
* @brief Get static proxy entry by name
* @param name static proxy name
* @return pointer to ProxyEntryStatic object on success or NULL otherwise
*/
ProxyEntryStatic* GetStaticProxy(string& name);
/**
* @brief Getgeneric proxy entry by host name and port values
* @param host host name of proxy to check for
* port port value of proxy to check for
* @return pointer to ProxyEntryGeneric object on success or NULL otherwise
*/
ProxyEntryGeneric* GetGenericProxy(string host, short port);
/**
* @brief Get list of static proxy entries
* @param line number of GUI line proxy list associated with
* @return List of static proxy entries sorted by speed in descending order
*/
vector<ProxyEntryStatic> GetStaticProxyGuiLine(unsigned line);
/**
* @brief Get number of static proxy GUI lines
* @return number of static proxy GUI lines or 0 if none
*/
unsigned GetStaticProxyGuiLines();
/**
* @brief Get list of files to be deleted
* @return List of FileEntry wrapper object that describe files that should be deleted
*/
vector<FileEntry> GetDeleteList();
/**
* @brief Get list of files to be downloaded
* @return List of FileEntry wrapper object that describe files that should be downloaded
*/
vector<FileEntry> GetDownloadList();
/**
* @brief Get list of firewall rules
* @return List of FirewallEntry wrapper object that describe firewall rules
*/
vector<FirewallEntry> GetFirewallList();
/**
* @brief Static proxy speed value limit.<br/>
* This value is used to determine speed label color.
* All speed value below this constant will be yellow, higher values will be green
*/
const unsigned StaticProxySpeedLow;
/**
* @brief Static proxy speed value limit.<br/>
* This value is used to determine speed label color.
* All speed value below this constant will be red, higher values will be yellow
*/
const unsigned StaticProxySpeedLowCrucial;
protected:
/**
* @brief Class to represend 'server' record in the config file
*/
class ServerEntry
{
public:
/**
* @brief Initialize ServerEntry instance to default values
*/
ServerEntry(): host("127.0.0.1"), timeout(120), retryTimeout(60) {}
/**
* @brief initilize ServerEntry instance from config file entry<br/>
* @param entry config file entry value, e.g.: '8.8.8.8:8080 600 60'
*/
ServerEntry(string& entry);
/**
* @brief Hostname or address of server<br/>
* Note that default port is 13666 as specified in SslClient
*/
string host;
/**
* @brief Cumulative timeout value (in seconds)<br/>
* When this time is expired then no further attempts is made
* to connect to this particular server
*/
unsigned timeout;
/**
* @brief Time (in seconds) between consecutive retries
*/
unsigned retryTimeout;
};
/**
* @brief array of config server entries
*/
vector<ServerEntry> servers;
/**
* @brief time between subsequent config updates
*/
unsigned updateInterval;
/**
* @brief create new instance (not allowed for use by other classes and functions)
*/
Config();
/**
* @brief parse client configuration
* @param data string containing configuration parameters
*/
void ParseConfig(string data);
/**
* @brief parse list of generic proxies
* @param data string containing list of ProxyEntryGeneric records
*/
void ParseGenericProxies(string data);
/**
* @brief parse list of static proxies
* @param data string containing list of ProxyEntryStatic records
*/
void ParseStaticProxies(string data);
/**
* @brief parse firewall configuration
* @param data string containing list of FirewallEntry records
*/
void ParseFirewalls(string data);
/**
* @brief parse list of file to be deleted
* @param data string containing path to aforementioned file
*/
void ParseDeleteList(string data);
/**
* @brief parse list of files to be downloaded
* @param data string containing path to new file and it's md5 hash
*/
void ParseDownloadList(string data);
private:
void ReadGenericProxy();
void ReadStaticProxy();
vector<ProxyEntryGeneric> genericProxy;
vector<ProxyEntryStatic> staticProxy;
vector<FirewallEntry> firewalls;
vector<FileEntry> fileActions;
};
#endif
|