-
Notifications
You must be signed in to change notification settings - Fork 0
/
anwesenheitsliste.php
181 lines (147 loc) · 5.64 KB
/
anwesenheitsliste.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
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
<?php
/*
* Plugin Name: Anwesenheitsliste
* Description: Exportiert alle Besucher:innen der vergangenen 3 Wochen als PDF.
* Version: 1.2.1
* Author: Jonas Pfannkuche
*/
if (!defined('ABSPATH')) {
exit;
}
include('anwesenheitsliste-helper.php');
include_once('corona.php');
if (isset($_POST['generate_pdf'])) {
generate_pdf();
}
add_action('admin_menu', 'anwesenheitsliste_create_admin_menu');
function anwesenheitsliste_create_admin_menu()
{
$hook = add_submenu_page(
'tools.php',
'Anwesenheitsliste',
'Anwesenheitsliste',
'manage_options',
'anwesenheitsliste',
'anwesenheitsliste_create_admin_page'
);
}
function cron_activation()
{
if (!wp_next_scheduled('delete_old_entries')) {
wp_schedule_event(time(), 'daily', 'delete_old_entries');
}
}
add_action('wp', 'cron_activation');
function cron_deactivation()
{
$timestamp = wp_next_scheduled('delete_old_entries');
wp_unschedule_event($timestamp, 'delete_old_entries');
}
register_deactivation_hook(__FILE__, 'cron_deactivation');
function cleanup_entries() {
global $wpdb;
$wpdb->query('DELETE FROM ' . $wpdb->base_prefix . 'corona_anwesenheitsliste WHERE aktiv <> 1 AND TIMESTAMPDIFF(DAY, von, CURRENT_TIMESTAMP()) > 21');
}
add_action ('delete_old_entries', 'cleanup_entries');
function load_vuescripts()
{
wp_register_script('anwesenheitsliste_vuejs', plugin_dir_url(__FILE__) . '/js/vue.js');
wp_register_script('anwesenheitsliste_vuecookiesjs', plugin_dir_url(__FILE__) . '/js/vue-cookies.js', 'anwesenheitsliste_vuejs', false);
wp_register_script('anwesenheitsliste_vueappjs', plugin_dir_url(__FILE__) . '/js/app.js', ['anwesenheitsliste_vuejs', 'anwesenheitsliste_vuecookiesjs'], false, true);
}
add_action('wp_enqueue_scripts', 'load_vuescripts');
function shortcode_anwesenheitsliste(): string
{
wp_enqueue_script('anwesenheitsliste_vuejs');
wp_enqueue_script('anwesenheitsliste_vuecookiesjs');
wp_enqueue_script('anwesenheitsliste_vueappjs');
$user = wp_get_current_user();
if (array_intersect(['administrator'], $user->roles)) {
// @TODO
return "<div id='app'></div>";
}
return "<div id='app'></div>";
}
add_shortcode('anwesenheitsliste', 'shortcode_anwesenheitsliste');
function generate_pdf()
{
global $wpdb;
$result = $wpdb->get_results('SELECT CONCAT(nachname, \', \', vorname) as name, telefon, CONCAT(straße,\' \', nummer, \'\, \', plz, \' \', ort) as adresse, DATE_FORMAT(von, \'%d.%m.%Y %T\') as ankunft, COALESCE(DATE_FORMAT(bis, \'%d.%m.%Y %T\'), \'Noch da\') as abfahrt, aktiv FROM ' . $wpdb->base_prefix . 'corona_anwesenheitsliste', ARRAY_N);
if (isset($result)) {
$pdf = new PDF();
$pdf->AliasNbPages("{nb}");
$pdf->AddFont('DejaVu','','DejaVuSansCondensed.ttf',true);
$pdf->SetFont('DejaVu','',10);
output_pdf($result, $pdf);
}
}
function output_pdf($data, $pdf, $page = 1)
{
if (isset($data)) {
$headers = array("Name", "Telefon", "Adresse", "Von", "Bis");
$nb_headers = count($headers);
$rows = $data;
$nb_rows = count($rows);
$pdf->AddPage("L", "A3");
$template = $pdf->LoadTemplate();
if ($template <= 0) {
die (" ** Error couldn't load template file");
}
$pdf->IncludeTemplate($template);
$pdf->ApplyTextProp("FOOTRNB2", "$page / {nb}");
$pcol = $pdf->GetColls("COLSWDTH", "");
$ptxp = $pdf->ApplyTextProp("ROW0COL0", "");
for ($ii = 0; $ii < $nb_headers; $ii++) {
$header = $headers[$ii];
$pdf->SetX($pdf->GetX() + 1);
$pdf->Cell($pcol [$ii], $ptxp ['iy'], $header, 1, 0, "C", true);
}
$pdf->SetFillColor(240, 240, 240);
$ptxp = $pdf->ApplyTextProp("ROW1COL0", "");
$py = $ptxp ['py'];
$page_break = false;
for ($jj = 0; $jj < $nb_rows; $jj++) {
$pdf->SetXY($ptxp ['px'], $py);
$row = $rows[$jj];
for ($ii = 0; $ii < $nb_headers; $ii++) {
$value = trim($row[$ii]);
$pdf->SetX($pdf->GetX() + 1);
$pdf->Cell($pcol [$ii], $ptxp ['iy'], $value, "", 0, "L", $jj & 1);
}
$py += $ptxp ['iy'];
if ($pdf->checkPageBreak()) {
$page_break = true;
break;
}
}
if ($page_break) {
$remaining_data = array_slice($rows, -(count($rows) - $jj - 1));
output_pdf($remaining_data, $pdf, ++$page);
}
$pdf->Output('D', 'Anwesenheitsliste (Stand ' . date('d.m.Y H_i') . ').pdf');
}
exit;
}
function anwesenheitsliste_create_admin_page()
{
?>
<div class="wrap">
<h1>Anwesenheitsliste - PDF Export</h1>
<p>Klick auf den Button, um ein PDF herunterzuladen, das alle Anwesenden der letzten 3 Wochen samt ihrer
persönlichen Daten beinhaltet.</p>
<h3>DENK DARAN:</h3>
<p><strong>Datenschutz!!! </strong>Diese Daten müssen spätestens nach 4 Wochen nach Erfassung gelöscht/ zerstört
werden.<br>
Keine Sorge das passiert auf dem Server automatisch. Du kannst also gar nicht versehentlich "alte" Daten
herunterladen.<br>
Aber sobald du auf den Button klickst, bist du für die Löschung von deinem Gerät und Zerstörung - wenn du
die Liste ausgedruckt hast - zuständig!!!
</p>
<form method="post" id="export_pdf_form">
<button class="button button-primary" type="submit" name="generate_pdf" value="generate">
Exportieren
</button>
</form>
</div>
<?php
}