-
Notifications
You must be signed in to change notification settings - Fork 1
/
abfallkalender.ics.php
149 lines (122 loc) · 3.23 KB
/
abfallkalender.ics.php
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
<?php
/**
* Skript zur Umwandlung des Online-Abfallkalenders der Bremer Stadtreinigung
* in das iCalendar-Format.
*
* @author Philipp Cordes <pc@irgendware.net>
* @license MIT
*/
/**
* Adresse des Skripts, das die Termine kennt.
*
* @var string
*/
const BASE_URL = 'http://213.168.213.236/bremereb/bify/bify.jsp?';
date_default_timezone_set('Europe/Berlin');
/**
* VEVENT für den Termin ausgeben.
*
* @param \DateTime $day
* @param string $summary
*
* @return void
*/
function printEvent(\DateTime $day, $summary)
{
static $format = null;
if (null === $format) {
$format = "BEGIN:VEVENT\r\n"
."UID:%s\r\n"
."DTSTART;TZID=Europe/Berlin;VALUE=DATE:%s\r\n"
."SUMMARY:%s\r\n"
."END:VEVENT\r\n";
}
// Bei abweichenden Wochentagen verkürzt
$summary = str_replace([
'Bioabf.',
'G.Sack',
'Restm.',
], [
'Bioabfall',
'Gelber Sack',
'Restmüll',
], $summary);
$slug = preg_replace('/\\W+/', '', $summary);
printf(
$format,
$slug.'#'.$day->format('Y-m-d').'@'.$_SERVER['HTTP_HOST'],
$day->format('Ymd'),
$summary
);
}
// Der Server arbeitet in ISO-8859-1; also konvertieren wir, falls nötig
if (strpos($_SERVER['QUERY_STRING'], '%C3%') !== false) {
$_SERVER['QUERY_STRING'] = utf8_decode($_SERVER['QUERY_STRING']);
}
// Abfragen, Ausgabe nach UTF-8 konvertieren
$html = utf8_encode(file_get_contents(BASE_URL.$_SERVER['QUERY_STRING']));
// Jahre einsammeln
$posi = 0;
$jahr = 0;
$jahre = [];
$treffer = [];
while (
// 'Start Titel Jahr' steht am Beginn jedes Jahresabschnitts im Kommentar
($posi = strpos($html, 'Start Titel Jahr', $posi)) !== false
) {
if ($jahr) {
$jahre[$jahr] = $posi;
}
// Alle vierstelligen Zahlen direkt danach sind Jahreszahlen
if (preg_match(
'/\\d{4}/',
$html,
$treffer,
PREG_OFFSET_CAPTURE,
$posi
) !== 1) {
break;
}
$jahr = $treffer[0][0];
$posi = $treffer[0][1];
}
$jahre[$jahr] = strlen($html); // Bis zum Ende gehen
// ------ Ausgabe ------
header('Content-Type: text/calendar'); // Standardmäßig UTF-8
echo "BEGIN:VCALENDAR\r\n"
."VERSION:2.0\r\n"
."PRODID:-//github.com/corphi//NONSGML Abfallkalender v1//DE\r\n";
if (array_keys($jahre) === array(0)) {
// Es wurden keine Jahre gefunden: Dummy-Eintrag ausgeben.
printEvent(
new \DateTime(), // Heute
'Keine Abfuhrtermine gefunden.'
);
} else {
$posi = 0;
foreach ($jahre as $jahr => $bis) {
while ($posi < $bis) {
if (preg_match(
'/(\\d+).(\\d+). ([^<]+)/',
$html,
$treffer,
PREG_OFFSET_CAPTURE,
$posi
) !== 1) {
break;
}
printEvent(
new \DateTime(
"$jahr-{$treffer[2][0]}-{$treffer[1][0]}"
),
html_entity_decode(
$treffer[3][0],
ENT_COMPAT | ENT_HTML401,
'UTF-8'
)
);
$posi = $treffer[3][1];
}
}
}
echo "END:VCALENDAR\r\n";