-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathConfig.cpp
316 lines (271 loc) · 8.41 KB
/
Config.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
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
//
//
//
#define DBG_OUTPUT_PORT Serial
#include "Config.h"
#include "FSWebServer.h"
#include "DynamicData.h"
strConfig config;
strApConfig apConfig;
strHTTPAuth httpAuth;
// convert a single hex digit character to its integer value (from https://code.google.com/p/avr-netino/)
unsigned char h2int(char c)
{
if (c >= '0' && c <= '9') {
return((unsigned char)c - '0');
}
if (c >= 'a' && c <= 'f') {
return((unsigned char)c - 'a' + 10);
}
if (c >= 'A' && c <= 'F') {
return((unsigned char)c - 'A' + 10);
}
return(0);
}
void defaultConfig (){
// DEFAULT CONFIG
config.ssid = "YOUR_DEFAULT_WIFI_SSID";
config.password = "YOUR_DEFAULT_WIFI_PASSWD";
config.dhcp = true;
config.IP[0] = 192; config.IP[1] = 168; config.IP[2] = 1; config.IP[3] = 4;
config.Netmask[0] = 255; config.Netmask[1] = 255; config.Netmask[2] = 255; config.Netmask[3] = 0;
config.Gateway[0] = 192; config.Gateway[1] = 168; config.Gateway[2] = 1; config.Gateway[3] = 1;
config.DNS[0] = 192; config.DNS[1] = 168; config.DNS[2] = 1; config.DNS[3] = 1;
config.ntpServerName = "es.pool.ntp.org";
config.Update_Time_Via_NTP_Every = 5;
config.timezone = 10;
config.daylight = true;
config.DeviceName = "ESP8266fs";
//config.connectionLed = CONNECTION_LED;
save_config();
#ifdef DEBUG
DBG_OUTPUT_PORT.println(__PRETTY_FUNCTION__);
#endif // DEBUG
}
boolean load_config() {
File configFile = SPIFFS.open(CONFIG_FILE, "r");
if (!configFile) {
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Failed to open config file");
#endif // DEBUG
return false;
}
size_t size = configFile.size();
if (size > 1024) {
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Config file size is too large");
#endif
configFile.close();
return false;
}
// Allocate a buffer to store contents of the file.
std::unique_ptr<char[]> buf(new char[size]);
// We don't use String here because ArduinoJson library requires the input
// buffer to be mutable. If you don't use ArduinoJson, you may as well
// use configFile.readString instead.
configFile.readBytes(buf.get(), size);
configFile.close();
#ifdef DEBUG
DBG_OUTPUT_PORT.print("JSON file size: "); Serial.print(size); Serial.println(" bytes");
#endif
StaticJsonBuffer<1024> jsonBuffer;
JsonObject& json = jsonBuffer.parseObject(buf.get());
if (!json.success()) {
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Failed to parse config file");
#endif // DEBUG
return false;
}
#ifdef DEBUG
String temp;
json.prettyPrintTo(temp);
Serial.println(temp);
#endif
//memset(config.ssid, 0, 28);
//memset(config.pass, 0, 50);
//String("Virus_Detected!!!").toCharArray(config.ssid, 28); // Assign WiFi SSID
//String("LaJunglaSigloXX1@.").toCharArray(config.pass, 50); // Assign WiFi PASS
config.ssid = json["ssid"].asString();
//String(ssid_str).toCharArray(config.ssid, 28);
config.password = json["pass"].asString();
config.IP[0] = json["ip"][0];
config.IP[1] = json["ip"][1];
config.IP[2] = json["ip"][2];
config.IP[3] = json["ip"][3];
config.Netmask[0] = json["netmask"][0];
config.Netmask[1] = json["netmask"][1];
config.Netmask[2] = json["netmask"][2];
config.Netmask[3] = json["netmask"][3];
config.Gateway[0] = json["gateway"][0];
config.Gateway[1] = json["gateway"][1];
config.Gateway[2] = json["gateway"][2];
config.Gateway[3] = json["gateway"][3];
config.DNS[0] = json["dns"][0];
config.DNS[1] = json["dns"][1];
config.DNS[2] = json["dns"][2];
config.DNS[3] = json["dns"][3];
config.dhcp = json["dhcp"];
//String(pass_str).toCharArray(config.pass, 28);
config.ntpServerName = json["ntp"].asString();
config.Update_Time_Via_NTP_Every = json["NTPperiod"];
config.timezone = json["timeZone"];
config.daylight = json["daylight"];
config.DeviceName = json["deviceName"].asString();
//config.connectionLed = json["led"];
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Data initialized.");
DBG_OUTPUT_PORT.print("SSID: "); Serial.println(config.ssid);
DBG_OUTPUT_PORT.print("PASS: "); Serial.println(config.password);
DBG_OUTPUT_PORT.print("NTP Server: "); Serial.println(config.ntpServerName);
//DBG_OUTPUT_PORT.printf("Connection LED: %d\n", config.connectionLed);
DBG_OUTPUT_PORT.println(__PRETTY_FUNCTION__);
#endif // DEBUG
return true;
}
boolean save_config() {
//flag_config = false;
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Save config");
#endif
StaticJsonBuffer<1024> jsonBuffer;
JsonObject& json = jsonBuffer.createObject();
json["ssid"] = config.ssid;
json["pass"] = config.password;
JsonArray& jsonip = json.createNestedArray("ip");
jsonip.add(config.IP[0]);
jsonip.add(config.IP[1]);
jsonip.add(config.IP[2]);
jsonip.add(config.IP[3]);
JsonArray& jsonNM = json.createNestedArray("netmask");
jsonNM.add(config.Netmask[0]);
jsonNM.add(config.Netmask[1]);
jsonNM.add(config.Netmask[2]);
jsonNM.add(config.Netmask[3]);
JsonArray& jsonGateway = json.createNestedArray("gateway");
jsonGateway.add(config.Gateway[0]);
jsonGateway.add(config.Gateway[1]);
jsonGateway.add(config.Gateway[2]);
jsonGateway.add(config.Gateway[3]);
JsonArray& jsondns = json.createNestedArray("dns");
jsondns.add(config.DNS[0]);
jsondns.add(config.DNS[1]);
jsondns.add(config.DNS[2]);
jsondns.add(config.DNS[3]);
json["dhcp"] = config.dhcp;
json["ntp"] = config.ntpServerName;
json["NTPperiod"] = config.Update_Time_Via_NTP_Every;
json["timeZone"] = config.timezone;
json["daylight"] = config.daylight;
json["deviceName"] = config.DeviceName;
//json["led"] = config.connectionLed;
//TODO add AP data to html
File configFile = SPIFFS.open(CONFIG_FILE, "w");
if (!configFile) {
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Failed to open config file for writing");
#endif // DEBUG
configFile.close();
return false;
}
#ifdef DEBUG
String temp;
json.prettyPrintTo(temp);
Serial.println(temp);
#endif
json.printTo(configFile);
configFile.flush();
configFile.close();
return true;
}
boolean loadHTTPAuth() {
File configFile = SPIFFS.open(SECRET_FILE, "r");
if (!configFile) {
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Failed to open secret file");
#endif // DEBUG
httpAuth.auth = false;
httpAuth.wwwUsername = "";
httpAuth.wwwPassword = "";
configFile.close();
return false;
}
size_t size = configFile.size();
if (size > 256) {
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Secret file size is too large");
#endif
httpAuth.auth = false;
configFile.close();
return false;
}
// Allocate a buffer to store contents of the file.
std::unique_ptr<char[]> buf(new char[size]);
// We don't use String here because ArduinoJson library requires the input
// buffer to be mutable. If you don't use ArduinoJson, you may as well
// use configFile.readString instead.
configFile.readBytes(buf.get(), size);
configFile.close();
#ifdef DEBUG
DBG_OUTPUT_PORT.printf("JSON secret file size: %d %s\n", size, "bytes");
#endif
StaticJsonBuffer<256> jsonBuffer;
JsonObject& json = jsonBuffer.parseObject(buf.get());
if (!json.success()) {
#ifdef DEBUG
String temp;
json.prettyPrintTo(temp);
DBG_OUTPUT_PORT.println(temp);
DBG_OUTPUT_PORT.println("Failed to parse secret file");
#endif // DEBUG
httpAuth.auth = false;
return false;
}
#ifdef DEBUG
String temp;
json.prettyPrintTo(temp);
DBG_OUTPUT_PORT.println(temp);
#endif
//memset(config.ssid, 0, 28);
//memset(config.pass, 0, 50);
//String("Virus_Detected!!!").toCharArray(config.ssid, 28); // Assign WiFi SSID
//String("LaJunglaSigloXX1@.").toCharArray(config.pass, 50); // Assign WiFi PASS
httpAuth.auth = json["auth"];
httpAuth.wwwUsername = json["user"].asString();
httpAuth.wwwPassword = json["pass"].asString();
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Secret initialized.");
DBG_OUTPUT_PORT.print("User: "); DBG_OUTPUT_PORT.println(httpAuth.wwwUsername);
DBG_OUTPUT_PORT.print("Pass: "); DBG_OUTPUT_PORT.println(httpAuth.wwwPassword);
DBG_OUTPUT_PORT.println(__PRETTY_FUNCTION__);
#endif // DEBUG
return true;
}
boolean saveHTTPAuth() {
//flag_config = false;
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Save secret");
#endif
StaticJsonBuffer<256> jsonBuffer;
JsonObject& json = jsonBuffer.createObject();
json["auth"] = httpAuth.auth;
json["user"] = httpAuth.wwwUsername;
json["pass"] = httpAuth.wwwPassword;
//TODO add AP data to html
File configFile = SPIFFS.open(SECRET_FILE, "w");
if (!configFile) {
#ifdef DEBUG
DBG_OUTPUT_PORT.println("Failed to open secret file for writing");
#endif // DEBUG
configFile.close();
return false;
}
#ifdef DEBUG
String temp;
json.prettyPrintTo(temp);
Serial.println(temp);
#endif
json.printTo(configFile);
configFile.flush();
configFile.close();
return true;
}