-
Notifications
You must be signed in to change notification settings - Fork 77
/
EventHandlers.php
454 lines (372 loc) · 17.6 KB
/
EventHandlers.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
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<?php
namespace dokuwiki\template\bootstrap3;
/**
* DokuWiki Bootstrap3 Template: Event Handlers Class
*
* @link http://dokuwiki.org/template:bootstrap3
* @author Giuseppe Di Terlizzi <[email protected]>
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
*/
class EventHandlers
{
protected $template;
public function __construct(Template $template)
{
$this->template = $template;
/** @var \Doku_Event_Handler */
global $EVENT_HANDLER;
# Event => [ ADVISDE, METHOD ]
$events_dispatcher = [
'FORM_QUICKSEARCH_OUTPUT' => ['BEFORE', ['search']],
'FORM_SEARCH_OUTPUT' => ['BEFORE', ['search']],
'HTML_DRAFTFORM_OUTPUT' => ['BEFORE', ['htmlDraftForm']], # Deprecated (2018-07-29)
'HTML_EDITFORM_OUTPUT' => ['BEFORE', ['htmlEditForm']], # use FORM_EDIT_OUTPUT in DokuWiki next
'HTML_LOGINFORM_OUTPUT' => ['BEFORE', ['htmlAccountFormOutput']],
'HTML_RESENDPWDFORM_OUTPUT' => ['BEFORE', ['htmlAccountFormOutput']],
'HTML_PROFILEDELETEFORM_OUTPUT' => ['BEFORE', ['htmlAccountFormOutput']],
'HTML_RECENTFORM_OUTPUT' => ['BEFORE', ['htmlRevisionsFormOutput']],
'HTML_REGISTERFORM_OUTPUT' => ['BEFORE', ['htmlAccountFormOutput']],
'HTML_REVISIONSFORM_OUTPUT' => ['BEFORE', ['htmlRevisionsFormOutput']],
'HTML_SECEDIT_BUTTON' => ['AFTER', ['htmlSecEditButton']],
'HTML_SUBSCRIBEFORM_OUTPUT' => ['BEFORE', ['htmlAccountFormOutput']],
'HTML_UPDATEPROFILEFORM_OUTPUT' => ['BEFORE', ['htmlAccountFormOutput']],
'PLUGIN_TAG_LINK' => ['AFTER', ['pluginTagLink']],
'PLUGIN_TPLINC_LOCATIONS_SET' => ['BEFORE', ['tplIncPlugin']],
'SEARCH_QUERY_FULLPAGE' => ['BEFORE', ['search']],
'SEARCH_QUERY_PAGELOOKUP' => ['BEFORE', ['search']],
'SEARCH_RESULT_FULLPAGE' => ['BEFORE', ['search']],
'SEARCH_RESULT_PAGELOOKUP' => ['BEFORE', ['search']],
'TPL_CONTENT_DISPLAY' => ['BEFORE', ['tplContent']],
'TPL_METAHEADER_OUTPUT' => ['BEFORE', ['tplMetaHeaderOutput']],
'FORM_CONFLICT_OUTPUT' => ['BEFORE', ['commonStyles']],
'FORM_DRAFT_OUTPUT' => ['BEFORE', ['commonStyles']],
'FORM_EDIT_OUTPUT' => ['BEFORE', ['commonStyles', 'formEditOutput']],
'FORM_LOGIN_OUTPUT' => ['BEFORE', ['commonStyles', 'formLoginOutput']],
'FORM_PROFILEDELETE_OUTPUT' => ['BEFORE', ['commonStyles', 'formProfileDeleteOutput']],
'FORM_RECENT_OUTPUT' => ['BEFORE', ['commonStyles', 'formRevisionsOutput']],
'FORM_REGISTER_OUTPUT' => ['BEFORE', ['commonStyles', 'formRegisterOutput']],
'FORM_RESENDPWD_OUTPUT' => ['BEFORE', ['commonStyles', 'formResendPwdOutput']],
'FORM_REVISIONS_OUTPUT' => ['BEFORE', ['commonStyles', 'formRevisionsOutput']],
'FORM_SEARCHMEDIA_OUTPUT' => ['BEFORE', ['commonStyles']],
'FORM_SUBSCRIBE_OUTPUT' => ['BEFORE', ['commonStyles']],
'FORM_UPDATEPROFILE_OUTPUT' => ['BEFORE', ['commonStyles', 'formUpdateProfileOutput']],
'FORM_UPLOAD_OUTPUT' => ['BEFORE', ['commonStyles']],
];
foreach ($events_dispatcher as $event => $data) {
list($advise, $methods) = $data;
foreach ($methods as $method) {
$EVENT_HANDLER->register_hook($event, $advise, $this, $method);
}
}
}
public function test(\Doku_Event $event)
{
msg('<pre>' . hsc(print_r($event, 1)) . '</pre>');
}
public function formLoginOutput(\Doku_Event $event)
{
/** @var dokuwiki\Form\Form $form */
$form = $event->data;
$form->getElementAt($form->findPositionByType('fieldsetopen'))
->attrs(['data-dw-icon' => 'mdi:account', 'data-dw-icon-target' => 'legend']);
$form->getElementAt($form->findPositionByAttribute('type', 'submit'))
->addClass('btn-success')->attr('data-dw-icon', 'mdi:lock');
}
public function formResendPwdOutput(\Doku_Event $event)
{
/** @var dokuwiki\Form\Form $form */
$form = $event->data;
$form->getElementAt($form->findPositionByType('fieldsetopen'))
->attrs(['data-dw-icon' => 'mdi:lock-reset', 'data-dw-icon-target' => 'legend']);
$form->getElementAt($form->findPositionByAttribute('type', 'submit'))
->addClass('btn-success')->attr('data-dw-icon', 'mdi:arrow-right');
}
public function formRegisterOutput(\Doku_Event $event)
{
/** @var dokuwiki\Form\Form $form */
$form = $event->data;
$form->getElementAt($form->findPositionByType('fieldsetopen'))
->attrs(['data-dw-icon' => 'mdi:account-plus', 'data-dw-icon-target' => 'legend']);
$form->getElementAt($form->findPositionByAttribute('type', 'submit'))
->addClass('btn-success')->attr('data-dw-icon', 'mdi:arrow-right');
}
public function formRevisionsOutput(\Doku_Event $event)
{
/** @var dokuwiki\Form\Form $form */
$form = $event->data;
for ($pos = 0; $pos < $form->elementCount(); $pos++) {
$element = $form->getElementAt($pos);
$type = $element->getType();
if ($type == 'html') {
$value = $element->val();
$value = str_replace(['positive', 'negative'], ['positive label label-success', 'negative label label-danger'], $value);
$element->val($value);
}
}
}
public function commonStyles(\Doku_Event $event)
{
/** @var dokuwiki\Form\Form $form */
$form = $event->data;
for ($pos = 0; $pos < $form->elementCount(); $pos++) {
$element = $form->getElementAt($pos);
$type = $element->getType();
if ($type == 'button') {
$element->addClass('btn btn-default mr-2');
}
}
}
public function formUpdateProfileOutput(\Doku_Event $event)
{
/** @var dokuwiki\Form\Form $form */
$form = $event->data;
$form->getElementAt($form->findPositionByAttribute('type', 'submit'))
->addClass('btn-success')->attr('data-dw-icon', 'mdi:arrow-right');
$form->getElementAt($form->findPositionByType('fieldsetopen'))
->attrs(['data-dw-icon' => 'mdi:account-card-details-outline', 'data-dw-icon-target' => 'legend']);
}
public function formProfileDeleteOutput(\Doku_Event $event)
{
/** @var dokuwiki\Form\Form $form */
$form = $event->data;
$form->getElementAt($form->findPositionByAttribute('type', 'submit'))
->addClass('btn-danger')->attr('data-dw-icon', 'mdi:arrow-right');
$form->getElementAt($form->findPositionByType('fieldsetopen'))
->attrs(['data-dw-icon' => 'mdi:account-remove', 'data-dw-icon-target' => 'legend']);
}
public function formEditOutput(\Doku_Event $event)
{
global $lang;
/** @var dokuwiki\Form\Form $form */
$form = $event->data;
if ($position = $form->findPositionByAttribute('name', 'do[save]')) {
$form->getElementAt($position)->addClass('btn btn-success mr-2')
->attr('data-dw-icon', 'mdi:content-save');
}
if ($position = $form->findPositionByAttribute('name', 'do[preview]')) {
$form->getElementAt($position)->addClass('btn btn-default mr-2')
->attr('data-dw-icon', 'mdi:file-document-outline');
}
if ($position = $form->findPositionByAttribute('name', 'do[cancel]')) {
$form->getElementAt($position)->addClass('btn btn-default mr-2')
->attr('data-dw-icon', 'mdi:arrow-left');
}
}
public function htmlSecEditButton(\Doku_Event $event)
{
$html = new \simple_html_dom;
$html->load($event->result, true, false);
# Section Edit Button
foreach ($html->find('[type=submit]') as $elm) {
$elm->class .= ' btn btn-xs btn-default';
}
# Section Edit icons
foreach ($html->find('.editbutton_section button') as $elm) {
$elm->innertext = iconify('mdi:pencil') . ' ' . $elm->innertext;
}
foreach ($html->find('.editbutton_table button') as $elm) {
$elm->innertext = iconify('mdi:table') . ' ' . $elm->innertext;
}
$event->result = $html->save();
$html->clear();
unset($html);
}
public function htmlAccountFormOutput(\Doku_Event $event)
{
foreach ($event->data->_content as $key => $item) {
if (is_array($item) && isset($item['_elem'])) {
$title_icon = 'account';
$button_class = 'btn btn-success';
$button_icon = 'arrow-right';
switch ($event->name) {
case 'HTML_LOGINFORM_OUTPUT':
$title_icon = 'account';
$button_icon = 'lock';
break;
case 'HTML_UPDATEPROFILEFORM_OUTPUT':
$title_icon = 'account-card-details-outline';
break;
case 'HTML_PROFILEDELETEFORM_OUTPUT':
$title_icon = 'account-remove';
$button_class = 'btn btn-danger';
break;
case 'HTML_REGISTERFORM_OUTPUT':
$title_icon = 'account-plus';
break;
case 'HTML_SUBSCRIBEFORM_OUTPUT':
$title_icon = null;
break;
case 'HTML_RESENDPWDFORM_OUTPUT':
$title_icon = 'lock-reset';
break;
}
// Legend
if ($item['_elem'] == 'openfieldset') {
$event->data->_content[$key]['_legend'] = (($title_icon) ? iconify("mdi:$title_icon") : '') . ' ' . $event->data->_content[$key]['_legend'];
}
// Save button
if (isset($item['type']) && $item['type'] == 'submit') {
$event->data->_content[$key]['class'] = " $button_class";
$event->data->_content[$key]['value'] = (($button_icon) ? iconify("mdi:$button_icon") : '') . ' ' . $event->data->_content[$key]['value'];
}
}
}
}
/**
* Handle HTML_DRAFTFORM_OUTPUT event
*
* @param \Doku_Event $event Event handler
*
* @return void
**/
public function htmlDraftForm(\Doku_Event $event)
{
foreach ($event->data->_content as $key => $item) {
if (is_array($item) && isset($item['_elem'])) {
if ($item['_action'] == 'draftdel') {
$event->data->_content[$key]['class'] = ' btn btn-danger';
$event->data->_content[$key]['value'] = iconify('mdi:close') . ' ' . $event->data->_content[$key]['value'];
}
if ($item['_action'] == 'recover') {
$event->data->_content[$key]['value'] = iconify('mdi:refresh') . ' ' . $event->data->_content[$key]['value'];
}
if ($item['_action'] == 'show') {
$event->data->_content[$key]['value'] = iconify('mdi:arrow-left') . ' ' . $event->data->_content[$key]['value'];
}
}
}
}
/**
* Handle HTML_EDITFORM_OUTPUT and HTML_DRAFTFORM_OUTPUT event
*
* @param \Doku_Event $event Event handler
*
* @return void
**/
public function htmlEditForm(\Doku_Event $event)
{
foreach ($event->data->_content as $key => $item) {
if (is_array($item) && isset($item['_elem'])) {
// Save button
if ($item['_action'] == 'save') {
$event->data->_content[$key]['class'] = ' btn btn-success';
$event->data->_content[$key]['value'] = iconify('mdi:content-save') . ' ' . $event->data->_content[$key]['value'];
}
// Preview and Show buttons
if ($item['_action'] == 'preview' || $item['_action'] == 'show') {
$event->data->_content[$key]['value'] = iconify('mdi:file-document-outline') . ' ' . $event->data->_content[$key]['value'];
}
// Cancel button
if ($item['_action'] == 'cancel') {
$event->data->_content[$key]['value'] = iconify('mdi:arrow-left') . ' ' . $event->data->_content[$key]['value'];
}
}
}
}
/**
* Handle HTML_REVISIONSFORM_OUTPUT and HTML_RECENTFORM_OUTPUT events
*
* @param \Doku_Event $event Event handler
*
* @return void
**/
public function htmlRevisionsFormOutput(\Doku_Event $event)
{
foreach ($event->data->_content as $key => $item) {
// Revision form
if (is_array($item) && isset($item['_elem'])) {
if ($item['_elem'] == 'opentag' && $item['_tag'] == 'span' && strstr($item['class'], 'sizechange')) {
if (strstr($item['class'], 'positive')) {
$event->data->_content[$key]['class'] .= ' label label-success';
}
if (strstr($item['class'], 'negative')) {
$event->data->_content[$key]['class'] .= ' label label-danger';
}
}
// Recent form
if ($item['_elem'] == 'opentag' && $item['_tag'] == 'li' && strstr($item['class'], 'minor')) {
$event->data->_content[$key]['class'] .= ' text-muted';
}
}
}
}
public function tplContent(\Doku_Event $event)
{
$event->data = $this->template->normalizeContent($event->data);
}
public function search(\Doku_Event $event)
{
if ($event->name == 'SEARCH_RESULT_PAGELOOKUP') {
array_unshift($event->data['listItemContent'], iconify('mdi:file-document-outline', ['title' => hsc($event->data['page'])]) . ' ');
}
if ($event->name == 'SEARCH_RESULT_FULLPAGE') {
$event->data['resultBody']['meta'] = str_replace(
['<span class="lastmod">', '<span class="hits">'],
['<span class="lastmod">' . iconify('mdi:calendar') . ' ', '<span class="hits"' . iconify('mdi:poll') . ' '],
'<small>' . $event->data['resultBody']['meta'] . '</small>'
);
}
}
/**
* Load the template assets (Bootstrap, AnchorJS, etc)
*
* @author Giuseppe Di Terlizzi <[email protected]>
* @todo Move the specific-padding size of Bootswatch template in template.less
*
* @param \Doku_Event $event
*/
public function tplMetaHeaderOutput(\Doku_Event $event)
{
global $ACT;
global $INPUT;
$fixed_top_navbar = $this->template->getConf('fixedTopNavbar');
if ($google_analitycs = $this->template->getGoogleAnalitycs()) {
$tag_id = $this->template->getConf('googleAnalyticsTrackID');
$event->data['script'][] = [
'type' => 'text/javascript',
'async' => 1,
'src' => "https://www.googletagmanager.com/gtag/js?id=$tag_id",
];
$event->data['script'][] = [
'type' => 'text/javascript',
'_data' => $google_analitycs,
];
}
// Apply some FIX
if ($ACT || defined('DOKU_MEDIADETAIL')) {
// Default Padding
$navbar_padding = 20;
if ($fixed_top_navbar) {
$navbar_height = $this->template->getNavbarHeight();
$navbar_padding += $navbar_height;
}
$styles = [];
// TODO implement in css.php dispatcher
$styles[] = "body { margin-top: {$navbar_padding}px; }";
$styles[] = ' #dw__toc.affix { top: ' . ($navbar_padding - 10) . 'px; position: fixed !important; }';
if ($this->template->getConf('tocCollapseSubSections')) {
$styles[] = ' #dw__toc .nav .nav .nav { display: none; }';
}
$event->data['style'][] = [
'type' => 'text/css',
'_data' => '@media screen { ' . implode(" ", $styles) . ' }',
];
}
}
public function pluginTagLink(\Doku_Event $event)
{
$event->data['class'] .= ' tag label label-default mx-1';
$event->data['title'] = iconify('mdi:tag-text-outline') . ' ' . $event->data['title'];
}
public function tplIncPlugin(\Doku_Event $event)
{
$event->data['header'] = 'Header of page below the navbar (header)';
$event->data['topheader'] = 'Top Header of page (topheader)';
$event->data['pagefooter'] = 'Footer below the page content (pagefooter)';
$event->data['pageheader'] = 'Header above the page content (pageheader)';
$event->data['sidebarfooter'] = 'Footer below the sidebar (sidebarfooter)';
$event->data['sidebarheader'] = 'Header above the sidebar (sidebarheader)';
$event->data['rightsidebarfooter'] = 'Footer below the right-sidebar (rightsidebarfooter)';
$event->data['rightsidebarheader'] = 'Header above the right-sidebar (rightsidebarheader)';
}
}