This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
esp-firewall/SourceCode/arduino/lib/Firewall/esp32Firewall.hpp

69 lines
2.1 KiB
C++
Raw Normal View History

2022-04-19 21:26:43 +02:00
#ifndef ESP32_FIREWALL_HPP
#define ESP32_FIREWALL_HPP
2022-04-10 20:46:54 +02:00
2022-04-11 17:02:58 +02:00
#include "Arduino.h"
#include "ArduinoJson.h"
2022-04-18 11:16:01 +02:00
#include "EEPROM.h"
2022-04-18 22:56:30 +02:00
#include "HTTPSServer.hpp"
#include "SSLCert.hpp"
#include "HTTPRequest.hpp"
#include "HTTPResponse.hpp"
2022-04-10 20:46:54 +02:00
2022-04-19 21:15:55 +02:00
#include "FirewallTypes.h"
2022-04-18 17:35:52 +02:00
#define eeprom_start_firewall_rules 4
using namespace httpsserver;
2022-04-18 17:35:52 +02:00
2022-04-19 21:26:43 +02:00
class esp32Firewall
2022-04-10 20:46:54 +02:00
{
2022-04-18 13:11:02 +02:00
uint16_t eeprom_size = 512;
uint8_t amount_of_rules = 0;
uint8_t security_number = 93;
2022-04-18 17:35:52 +02:00
int eeprom_settings_head = 0;
int eeprom_rules_head = eeprom_start_firewall_rules;
2022-04-11 17:02:58 +02:00
struct firewall_rule *head = NULL;
2022-04-11 11:47:50 +02:00
HTTPSServer *firewall_api;
SSLCert *certificate;
2022-04-11 21:27:27 +02:00
// Protocol / Target conversion
String protocol_to_string(firewall_protocol_t &);
2022-04-18 22:56:30 +02:00
firewall_protocol_t string_to_protocol(std::string &);
String target_to_string(firewall_target_t &);
2022-04-18 22:56:30 +02:00
firewall_target_t string_to_target(std::string &);
2022-04-18 11:16:01 +02:00
// EEPROM
2022-04-18 13:11:02 +02:00
void setup_eeprom();
void eeprom_write_firewall_rule(firewall_rule_t *rule);
void eeprom_write_firewall_rules();
void eeprom_read_firewall_rule(uint8_t &, uint8_t &);
2022-04-18 13:11:02 +02:00
void eeprom_read_firewall_rules();
2022-04-18 11:16:01 +02:00
2022-04-11 21:27:27 +02:00
// Firewall Actions
void add_rule_to_firewall(firewall_rule_t *);
firewall_rule_t *get_rule_from_firewall(uint8_t);
bool delete_rule_from_firewall(uint8_t);
2022-04-11 21:27:27 +02:00
// Firewall-API Actions
void setup_certificate();
2022-04-19 21:15:55 +02:00
void setup_routing();
void json_generic_response(HTTPResponse *, String, int);
void json_message_response(HTTPResponse *, String, int);
2022-04-11 21:27:27 +02:00
String construct_json_firewall_rule(firewall_rule_t *);
String construct_json_firewall();
void not_found_handler(HTTPRequest *, HTTPResponse *);
void restart_device_handler(HTTPRequest *, HTTPResponse *);
void get_firewall_rule_handler(HTTPRequest *, HTTPResponse *);
void get_firewall_rules_handler(HTTPRequest *, HTTPResponse *);
bool request_has_firewall_parameter(ResourceParameters *);
void post_firewall_handler(HTTPRequest *, HTTPResponse *);
void delete_firewall_handler(HTTPRequest *, HTTPResponse *);
2022-04-10 20:46:54 +02:00
public:
2022-04-19 21:26:43 +02:00
esp32Firewall(const uint16_t = 8080);
void handle_firewall_api_clients();
2022-04-10 20:46:54 +02:00
};
#endif