-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathevent.hpp
75 lines (63 loc) · 2.33 KB
/
event.hpp
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
#pragma once
#include <sstream>
#include <time.h>
class Event {
std::string _raw;
std::string property(std::string component, std::string property) {
std::stringstream raw_stream(_raw);
std::string line;
bool in_component = false;
int property_value_index = property.length() + 1; // include colon
while (getline(raw_stream, line, '\n')) {
if (in_component && line.find(property) != std::string::npos) {
return line.substr(property_value_index, -1);
}
if (line.find("BEGIN:" + component) != std::string::npos) { in_component = true; }
if (line.find("END:" + component) != std::string::npos) { break; }
}
return "";
}
tm to_time_info(std::string datetime) { // rfc5545 datetime in UTC
tm utc_time_info = { 0 };
utc_time_info.tm_year = std::atoi(datetime.substr(0, 4).c_str()) - 1900;
utc_time_info.tm_mon = std::atoi(datetime.substr(4, 2).c_str()) - 1;
utc_time_info.tm_mday = std::atoi(datetime.substr(6, 2).c_str());
if (datetime.size() > 8) {
utc_time_info.tm_hour = std::atoi(datetime.substr(9, 2).c_str());
utc_time_info.tm_min = std::atoi(datetime.substr(11, 2).c_str());
utc_time_info.tm_sec = std::atoi(datetime.substr(13, 2).c_str());
}
time_t utc_timestamp = mktime(&utc_time_info) - _timezone; // timegm not implemented on esp32
return *localtime(&utc_timestamp);
}
public:
Event(std::string raw) {
_raw = raw;
}
std::string summary() {
return property("VEVENT", "SUMMARY");
}
tm start() {
std::string attr = (is_all_day()) ? property("VEVENT", "DTSTART;VALUE=DATE") : property("VEVENT", "DTSTART");
return to_time_info(attr);
}
std::string formatted_start(std::string fmt) {
tm time_info = start();
char formatted[100];
strftime(formatted, sizeof(formatted), fmt.c_str(), &time_info);
std::string str = formatted;
return str;
}
std::string duration() {
return property("VEVENT", "DURATION");
}
bool starts_on(tm day) { // Multi day events can start days before
return (start().tm_mday == day.tm_mday) ? true : false;
}
bool is_all_day() {
return duration() == "P1D";
}
bool valid_on(tm day) { // Synology also returns single all days events the day after, see https://stackoverflow.com/q/75379228
return (is_all_day() && !starts_on(day)) ? false : true;
}
};