-
Notifications
You must be signed in to change notification settings - Fork 3
/
renderer.php
604 lines (515 loc) · 13.5 KB
/
renderer.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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
<?php
// phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps
// phpcs:disable PSR2.Methods.MethodDeclaration.Underscore
use dokuwiki\Extension\SyntaxPlugin;
use dokuwiki\File\PageResolver;
/**
* Renderer for preparing data for embedding
*
* Based on the text and markdown renderers
*
* @todo table handling is not perfect
* @author Michael Hamann <[email protected]>
* @author Todd Augsburger <[email protected]>
* @author i-net software <[email protected]>
* @link https://www.dokuwiki.org/plugin:text
* @link https://www.dokuwiki.org/plugin:dw2markdown
*/
class renderer_plugin_aichat extends Doku_Renderer_xhtml
{
/** @var array The stack of list types */
private $listMode = [];
/** @var int Number of table columns */
private $tableColumns = 0;
/** @inheritdoc */
public function getFormat()
{
return 'aichat';
}
/** @inheritdoc */
public function startSectionEdit($start, $data, $title = null)
{
}
/** @inheritdoc */
public function finishSectionEdit($end = null, $hid = null)
{
}
/**
* @inheritdoc
* Use specific text support if available, otherwise use xhtml renderer and strip tags
*/
public function plugin($name, $data, $state = '', $match = '')
{
/** @var SyntaxPlugin $plugin */
$plugin = plugin_load('syntax', $name);
if ($plugin === null) return;
if (
!$plugin->render($this->getFormat(), $this, $data) &&
!$plugin->render('text', $this, $data) &&
!$plugin->render('markdown', $this, $data)
) {
// plugin does not support any of the text formats, so use stripped-down xhtml
$tmpData = $this->doc;
$this->doc = '';
if ($plugin->render('xhtml', $this, $data) && ($this->doc !== '')) {
$pluginoutput = $this->doc;
$this->doc = $tmpData . DOKU_LF . trim(strip_tags($pluginoutput)) . DOKU_LF;
} else {
$this->doc = $tmpData;
}
}
}
/** @inheritdoc */
public function document_start()
{
global $ID;
$this->doc = '';
$metaheader = [];
$metaheader['Content-Type'] = 'text/plain; charset=utf-8';
$meta = [];
$meta['format']['aichat'] = $metaheader;
p_set_metadata($ID, $meta);
}
/** @inheritdoc */
public function document_end()
{
$this->doc = preg_replace("/(\r?\n){3,}/", "\n\n", $this->doc);
$this->doc = ltrim($this->doc); // remove leading space and empty lines
// remove ignored parts
$regex = $this->getConf('ignoreRegex');
if($regex) {
$this->doc = preg_replace('/' . $regex . '/i', '', $this->doc);
}
}
/** @inheritdoc */
public function header($text, $level, $pos, $returnonly = false)
{
$this->doc .= str_repeat("#", $level) . ' ' . $text . DOKU_LF;
}
/** @inheritdoc */
public function section_open($level)
{
$this->doc .= DOKU_LF;
}
/** @inheritdoc */
public function section_close()
{
$this->doc .= DOKU_LF;
}
/** @inheritdoc */
public function cdata($text)
{
$this->doc .= $text;
}
/** @inheritdoc */
public function p_open()
{
$this->doc .= DOKU_LF;
}
/** @inheritdoc */
public function p_close()
{
$this->doc .= DOKU_LF;
}
/** @inheritdoc */
public function linebreak()
{
$this->doc .= DOKU_LF . DOKU_LF;
}
/** @inheritdoc */
public function hr()
{
$this->doc .= '----' . DOKU_LF;
}
/** @inheritdoc */
public function strong_open()
{
}
/** @inheritdoc */
public function strong_close()
{
}
/** @inheritdoc */
public function emphasis_open()
{
}
/** @inheritdoc */
public function emphasis_close()
{
}
/** @inheritdoc */
public function underline_open()
{
}
/** @inheritdoc */
public function underline_close()
{
}
/** @inheritdoc */
public function monospace_open()
{
}
/** @inheritdoc */
public function monospace_close()
{
}
/** @inheritdoc */
public function subscript_open()
{
}
/** @inheritdoc */
public function subscript_close()
{
}
/** @inheritdoc */
public function superscript_open()
{
}
/** @inheritdoc */
public function superscript_close()
{
}
/** @inheritdoc */
public function deleted_open()
{
}
/** @inheritdoc */
public function deleted_close()
{
}
/** @inheritdoc */
public function footnote_open()
{
$this->doc .= ' ((';
}
/** @inheritdoc */
public function footnote_close()
{
$this->doc .= '))';
}
/** @inheritdoc */
public function listu_open($classes = null)
{
if ($this->listMode === []) {
$this->doc .= DOKU_LF;
}
$this->listMode[] = '*';
}
/** @inheritdoc */
public function listu_close()
{
array_pop($this->listMode);
if ($this->listMode === []) {
$this->doc .= DOKU_LF;
}
}
/** @inheritdoc */
public function listo_open($classes = null)
{
if ($this->listMode === []) {
$this->doc .= DOKU_LF;
}
$this->listMode[] = '1.';
}
/** @inheritdoc */
public function listo_close()
{
array_pop($this->listMode);
if ($this->listMode === []) {
$this->doc .= DOKU_LF;
}
}
/** @inheritdoc */
public function listitem_open($level, $node = false)
{
$this->doc .= str_repeat(' ', $level * 2) . $this->listMode[count($this->listMode) - 1];
}
/** @inheritdoc */
public function listitem_close()
{
}
/** @inheritdoc */
public function listcontent_open()
{
}
/** @inheritdoc */
public function listcontent_close()
{
$this->doc .= DOKU_LF;
}
/** @inheritdoc */
public function unformatted($text)
{
$this->doc .= $text;
}
/** @inheritdoc */
public function quote_open()
{
$this->doc .= '>>>';
}
/** @inheritdoc */
public function quote_close()
{
$this->doc .= '<<<' . DOKU_LF;
}
/** @inheritdoc */
public function preformatted($text)
{
$this->code($text);
}
/** @inheritdoc */
public function file($text, $language = null, $filename = null, $options = null)
{
$this->code($text, $language, $filename, $options);
}
/** @inheritdoc */
public function code($text, $language = null, $filename = null, $options = null)
{
$this->doc .= DOKU_LF . '```' . ($language ?? '') . DOKU_LF . trim($text) . DOKU_LF . '```' . DOKU_LF;
}
/** @inheritdoc */
public function acronym($acronym)
{
if (array_key_exists($acronym, $this->acronyms)) {
$title = $this->acronyms[$acronym];
$this->doc .= $acronym . ' (' . $title . ')';
} else {
$this->doc .= $acronym;
}
}
/** @inheritdoc */
public function smiley($smiley)
{
$this->doc .= $smiley;
}
/** @inheritdoc */
public function entity($entity)
{
if (array_key_exists($entity, $this->entities)) {
$this->doc .= $this->entities[$entity];
} else {
$this->doc .= $entity;
}
}
/** @inheritdoc */
public function multiplyentity($x, $y)
{
$this->doc .= $x . 'x' . $y;
}
/** @inheritdoc */
public function singlequoteopening()
{
global $lang;
$this->doc .= $lang['singlequoteopening'];
}
/** @inheritdoc */
public function singlequoteclosing()
{
global $lang;
$this->doc .= $lang['singlequoteclosing'];
}
/** @inheritdoc */
public function apostrophe()
{
global $lang;
$this->doc .= $lang['apostrophe'];
}
/** @inheritdoc */
public function doublequoteopening()
{
global $lang;
$this->doc .= $lang['doublequoteopening'];
}
/** @inheritdoc */
public function doublequoteclosing()
{
global $lang;
$this->doc .= $lang['doublequoteclosing'];
}
/** @inheritdoc */
public function camelcaselink($link, $returnonly = false)
{
$this->internallink($link, $link);
}
/** @inheritdoc */
public function locallink($hash, $name = null, $returnonly = false)
{
$name = $this->_getLinkTitle($name, $hash, $isImage);
$this->doc .= $name;
}
/** @inheritdoc */
public function internallink($id, $name = null, $search = null, $returnonly = false, $linktype = 'content')
{
global $ID;
// default name is based on $id as given
$default = $this->_simpleTitle($id);
$resolver = new PageResolver($ID);
$id = $resolver->resolveId($id);
$name = $this->_getLinkTitle($name, $default, $isImage, $id, $linktype);
if ($returnonly) {
return $name;
}
$this->doc .= $name;
return null;
}
/** @inheritdoc */
public function externallink($url, $name = null, $returnonly = false)
{
$title = $this->_getLinkTitle($name, $url, $isImage);
if ($title != $url) {
$this->doc .= "[$title]($url)";
} else {
$this->doc .= $title;
}
}
/** @inheritdoc */
public function interwikilink($match, $name, $wikiName, $wikiUri, $returnonly = false)
{
$this->doc .= $this->_getLinkTitle($name, $wikiUri, $isImage);
}
/** @inheritdoc */
public function windowssharelink($url, $name = null, $returnonly = false)
{
$this->doc .= $this->_getLinkTitle($name, $url, $isImage);
}
/** @inheritdoc */
public function emaillink($address, $name = null, $returnonly = false)
{
$name = $this->_getLinkTitle($name, '', $isImage);
$address = html_entity_decode(obfuscate($address), ENT_QUOTES, 'UTF-8');
if (empty($name)) {
$name = $address;
}
$this->doc .= $name;
}
/** @inheritdoc */
public function internalmedia(
$src,
$title = null,
$align = null,
$width = null,
$height = null,
$cache = null,
$linking = null,
$return = false
) {
$this->doc .= $title;
}
/** @inheritdoc */
public function externalmedia(
$src,
$title = null,
$align = null,
$width = null,
$height = null,
$cache = null,
$linking = null,
$return = false
) {
$this->doc .= $title;
}
/** @inheritdoc */
public function rss($url, $params)
{
}
/** @inheritdoc */
public function table_open($maxcols = null, $numrows = null, $pos = null, $classes = null)
{
}
/** @inheritdoc */
public function table_close($pos = null)
{
$this->doc .= DOKU_LF;
}
/** @inheritdoc */
public function tablethead_open()
{
$this->tableColumns = 0;
$this->doc .= DOKU_LF; // . '|';
}
/** @inheritdoc */
public function tablethead_close()
{
$this->doc .= '|' . str_repeat('---|', $this->tableColumns) . DOKU_LF;
}
/** @inheritdoc */
public function tabletbody_open()
{
}
/** @inheritdoc */
public function tabletbody_close()
{
}
/** @inheritdoc */
public function tabletfoot_open()
{
}
/** @inheritdoc */
public function tabletfoot_close()
{
}
/** @inheritdoc */
public function tablerow_open($classes = null)
{
}
/** @inheritdoc */
public function tablerow_close()
{
$this->doc .= '|' . DOKU_LF;
}
/** @inheritdoc */
public function tableheader_open($colspan = 1, $align = null, $rowspan = 1, $classes = null)
{
$this->doc .= str_repeat('|', $colspan);
$this->tableColumns += $colspan;
}
/** @inheritdoc */
public function tableheader_close()
{
}
/** @inheritdoc */
public function tablecell_open($colspan = 1, $align = null, $rowspan = 1, $classes = null)
{
$this->doc .= str_repeat('|', $colspan);
}
/** @inheritdoc */
public function tablecell_close()
{
}
/** @inheritdoc */
public function _getLinkTitle($title, $default, &$isImage, $id = null, $linktype = 'content')
{
$isImage = false;
if (is_array($title)) {
$isImage = true;
if (!is_null($default) && ($default != $title['title']))
return $default . " " . $title['title'];
else return $title['title'];
} elseif (is_null($title) || trim($title) == '') {
if (useHeading($linktype) && $id) {
$heading = p_get_first_heading($id);
if ($heading) {
return $this->_xmlEntities($heading);
}
}
return $this->_xmlEntities($default);
} else {
return $this->_xmlEntities($title);
}
}
/** @inheritdoc */
public function _xmlEntities($string)
{
return $string; // nothing to do for text
}
/** @inheritdoc */
public function _formatLink($link)
{
if (!empty($link['name'])) {
return $link['name'];
} elseif (!empty($link['title'])) {
return $link['title'];
}
return $link['url'];
}
}