-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathrenderer.php
More file actions
223 lines (199 loc) · 6.53 KB
/
Copy pathrenderer.php
File metadata and controls
223 lines (199 loc) · 6.53 KB
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
<?php
// phpcs:disable: PSR1.Methods.CamelCapsMethodName.NotCamelCaps
// phpcs:disable: PSR2.Methods.MethodDeclaration.Underscore
use dokuwiki\plugin\dw2pdf\src\HeadingResolver;
/**
* DokuWiki Plugin dw2pdf (Renderer Component)
* Render xhtml suitable as input for mpdf library
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author Andreas Gohr <gohr@cosmocode.de>
*/
class renderer_plugin_dw2pdf extends Doku_Renderer_xhtml
{
/**
* Emit an anchor the writer can rewrite intra-PDF links to
*
* @inheritdoc
*/
public function document_start()
{
global $ID;
parent::document_start();
//anchor for rewritten links to included pages
$check = false;
$pid = sectionID($ID, $check);
$this->doc .= "<a name=\"{$pid}__\">";
$this->doc .= "</a>";
}
/**
* Make available as XHTML replacement renderer
*
* @param $format
* @return bool
*/
public function canRender($format)
{
if ($format == 'xhtml') {
return true;
}
return false;
}
/**
* Simplified header printing
*
* Numbering and PDF bookmark are not known while a single page is rendered, so a marker
* is emitted instead. It is resolved by the writer once the page's position within the
* export is known.
*
* @param string $text
* @param int $level from 1 (highest) to 6 (lowest)
* @param int $pos
* @see HeadingResolver
*/
public function header($text, $level, $pos, $returnonly = false)
{
//skip empty headlines
if (!$text) {
return;
}
global $ID;
$hid = $this->_headerToLink($text, true);
//only add items within global configured levels (doesn't check the pdf toc settings)
$this->toc_additem($hid, $text, $level);
$check = false;
$pid = sectionID($ID, $check);
$hid = $pid . '__' . $hid;
// print header
$this->doc .= DOKU_LF . "<h$level>";
$this->doc .= HeadingResolver::marker($text, $level);
$this->doc .= "<a name=\"$hid\">";
$this->doc .= $this->_xmlEntities($text);
$this->doc .= "</a>";
$this->doc .= "</h$level>" . DOKU_LF;
}
/**
* Render a page local link
*
* // modified copy of parent function
*
* @param string $hash hash link identifier
* @param string $name name for the link
* @param bool $returnonly
* @return string|void
*
* @see Doku_Renderer_xhtml::locallink
*/
public function locallink($hash, $name = null, $returnonly = false)
{
global $ID;
$name = $this->_getLinkTitle($name, $hash, $isImage);
$hash = $this->_headerToLink($hash);
$title = $ID . ' ↵';
$check = false;
$pid = sectionID($ID, $check);
$this->doc .= '<a href="#' . $pid . '__' . $hash . '" title="' . $title . '" class="wikilink1">';
$this->doc .= $name;
$this->doc .= '</a>';
}
/**
* Wrap centered media in a div to center it
*
* @param string $src media ID
* @param string $title descriptive text
* @param string $align left|center|right
* @param int $width width of media in pixel
* @param int $height height of media in pixel
* @param string $cache cache|recache|nocache
* @param bool $render should the media be embedded inline or just linked
* @return string
*/
public function _media(
$src,
$title = null,
$align = null,
$width = null,
$height = null,
$cache = null,
$render = true
) {
$out = '';
if ($align == 'center') {
$out .= '<div align="center" style="text-align: center">';
}
$out .= parent::_media($src, $title, $align, $width, $height, $cache, $render);
if ($align == 'center') {
$out .= '</div>';
}
return $out;
}
/**
* hover info makes no sense in PDFs, so drop acronyms
*
* @param string $acronym
*/
public function acronym($acronym)
{
$this->doc .= $this->_xmlEntities($acronym);
}
/**
* reformat links if needed
*
* Because the output of this renderer will be cached, but might be part of a larger PDF
* including multiple pages, the links are not rewritten here.
* Instead they will be rewritten in the created HTML after rendering but before feeding to mPDF.
*
* @param array $link
* @return string
*/
public function _formatLink($link)
{
// mark internal wiki links for later processing by the writer
if (
!empty($link['more']) &&
str_contains($link['more'], 'data-wiki-id=')
) {
[, $hash] = sexplode('#', $link['url'], 2, '');
$target = $link['title'] ?? ''; // for internal links, 'title' holds the target page id
if ($target !== '') {
$attrs = ['data-dw2pdf-target="' . hsc($target) . '"'];
if ($hash !== '') {
$attrs[] = 'data-dw2pdf-hash="' . hsc($hash) . '"';
}
$link['more'] = trim($link['more'] . ' ' . implode(' ', $attrs));
}
}
// prefix interwiki links with interwiki icon
if ($link['name'][0] != '<' && preg_match('/\binterwiki iw_(.\w+)\b/', $link['class'], $m)) {
if (file_exists(DOKU_INC . 'lib/images/interwiki/' . $m[1] . '.png')) {
$img = DOKU_BASE . 'lib/images/interwiki/' . $m[1] . '.png';
} elseif (file_exists(DOKU_INC . 'lib/images/interwiki/' . $m[1] . '.gif')) {
$img = DOKU_BASE . 'lib/images/interwiki/' . $m[1] . '.gif';
} else {
$img = DOKU_BASE . 'lib/images/interwiki.png';
}
$link['name'] = sprintf(
'<img src="%s" width="16" height="16" style="vertical-align: middle" class="%s" />%s',
$img,
$link['class'],
$link['name']
);
}
return parent::_formatLink($link);
}
/**
* no obfuscation for email addresses
*
* @param string $address
* @param bool $returnonly
* @return string|void
*/
public function emaillink($address, $name = null, $returnonly = false)
{
global $conf;
$old = $conf['mailguard'];
$conf['mailguard'] = 'none';
parent::emaillink($address, $name, $returnonly);
$conf['mailguard'] = $old;
}
}