-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsyntax.php
More file actions
331 lines (290 loc) · 11.2 KB
/
syntax.php
File metadata and controls
331 lines (290 loc) · 11.2 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
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
<?php
/**
* DokuWiki Plugin parserfunctions (Syntax Component)
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author Daniel "Nerun" Rodrigues <danieldiasr@gmail.com>
* @created Sat, 09 Dec 2023 14:59 -0300
*
* This is my first plugin, and I don't even know PHP well, that's why it's full
* of comments, but I'll leave it that way so I can consult it in the future.
*
*/
use dokuwiki\Extension\SyntaxPlugin;
use dokuwiki\Utf8\PhpString;
class syntax_plugin_parserfunctions extends SyntaxPlugin
{
/** @var helper_plugin_parserfunctions $helper */
private $helper;
public function __construct() {
$this->helper = plugin_load('helper', 'parserfunctions');
}
/** @inheritDoc */
public function getType()
{
/* READ: https://www.dokuwiki.org/devel:syntax_plugins#syntax_types
* substition — modes where the token is simply replaced – they can not
* contain any other modes
*/
return 'substition';
}
/** @inheritDoc */
public function getPType()
{
/* READ: https://www.dokuwiki.org/devel:syntax_plugins
* normal — Default value, will be used if the method is not overridden.
* The plugin output will be inside a paragraph (or another
* block element), no paragraphs will be inside.
*/
return 'normal';
}
/** @inheritDoc */
public function getSort()
{
/* READ: https://www.dokuwiki.org/devel:parser:getsort_list
* Don't understand exactly what it does, need more study.
*
* Must go after Templater (302) and WST (319) plugin, to be able to
* render @parameter@ and {{{parameter}}}.
*/
return 320;
}
/** @inheritDoc */
public function connectTo($mode)
{
/* READ: https://www.dokuwiki.org/devel:syntax_plugins#patterns
* This pattern accepts any alphanumeric function AND nested functions.
*
* $this->Lexer->addSpecialPattern('\{\{#.+?#\}\}', $mode, 'plugin_parserfunctions');
* Captures nested functions up to level-1:
* $this->Lexer->addSpecialPattern('\{\{#[[:alnum:]]+:(?:(?:[^\{#]*?\{\{.*?#\}\})|.*?)+?#\}\}', $mode, 'plugin_parserfunctions');
*
* SEE action.php
*/
}
// @author ChatGPT -- Wed, 02 jul 2025 12:04:42 -0300
public function resolveFunction($text)
{
// Remove {{# and #}} delimiters if present
if (substr($text, 0, 3) === '{{#' && substr($text, -3) === '#}}') {
$text = substr($text, 3, -3);
}
// Recursively resolves all nested functions from the inside out
$text = $this->resolveNestedFunctions($text);
// Separates function name and parameters
preg_match('/^([[:alnum:]]+):(.*)$/s', $text, $m);
if (empty($m[1])) {
return $this->helper->formatError('important', 'function_name', 'invalid_syntax');
}
$funcName = PhpString::strtolower($m[1]);
$paramsText = $m[2] ?? '';
$params = $this->helper->parseParameters($paramsText);
switch ($funcName) {
case 'if':
return $this->_IF($params, $funcName);
case 'ifeq':
return $this->_IFEQ($params, $funcName);
case 'ifexist':
return $this->_IFEXIST($params, $funcName);
case 'switch':
return $this->_SWITCH($params, $funcName);
case 'expr':
return $this->_EXPR($params, $funcName);
default:
return $this->helper->formatError('important', $funcName, 'no_such_function');
}
}
// @author ChatGPT -- Wed, 02 jul 2025 12:04:42 -0300
private function resolveNestedFunctions($text)
{
$offset = 0;
while (($start = strpos($text, '{{#', $offset)) !== false) {
$level = 0;
$length = strlen($text);
for ($i = $start; $i < $length - 2; $i++) {
if (substr($text, $i, 3) === '{{#') {
$level++;
$i += 2;
} elseif (substr($text, $i, 3) === '#}}') {
$level--;
$i += 2;
if ($level === 0) {
$full = substr($text, $start, $i - $start + 1);
$resolved = $this->resolveFunction($full);
$text = substr_replace($text, $resolved, $start, strlen($full));
// Start from the beginning because the text has changed
$offset = 0;
continue 2;
}
}
}
// If you got here, invalid syntax (no #}})
break;
}
return $text;
}
/** @inheritDoc */
public function handle($match, $state, $pos, Doku_Handler $handler) {
/* This method is only called if the Lexer, in the connectTo() method,
* finds a $match.
*
* READ: https://www.dokuwiki.org/devel:syntax_plugins#handle_method
* This is the part of your plugin which should do all the work. Before
* DokuWiki renders the wiki page it creates a list of instructions for
* the renderer. The plugin's handle() method generates the render
* instructions for the plugin's own syntax mode. At some later time,
* these will be interpreted by the plugin's render() method.
*
* Parameters:
*
* $match (string) — The text matched by the patterns
*
* $state (int) — The lexer state for the match, representing
* the type of pattern which triggered this call
* to handle(): DOKU_LEXER_SPECIAL — a pattern
* set by addSpecialPattern().
*
* $pos (int) — The character position of the matched text.
*
* $handler — Object Reference to the Doku_Handler object.
*/
return $this->resolveFunction($match);
}
/** @inheritDoc */
public function render($mode, Doku_Renderer $renderer, $data)
{
/* READ: https://www.dokuwiki.org/devel:syntax_plugins#render_method
* The part of the plugin that provides the output for the final web
* page.
*
* Parameters:
*
* $mode — Name for the format mode of the final output produced
* by the renderer.
*
* $renderer — Give access to the object Doku_Renderer, which contains
* useful functions and values.
*
* $data — An array containing the instructions previously
* prepared and returned by the plugin's own handle()
* method. The render() must interpret the instruction and
* generate the appropriate output.
*/
if ($mode !== 'xhtml') {
return false;
}
if (!$data) {
return false;
}
// escape sequences
$data = $this->helper->processEscapes($data);
// Do not use <div></div> because we need inline substitution!
$data = $renderer->render_text($data, 'xhtml');
// Remove the first '<p>' and the last '</p>'
if (substr($data, 0, 3) === '<p>' && substr($data, -4) === '</p>') {
$data = substr($data, 3, -4);
}
$renderer->doc .= $data;
return true;
}
/**
* ========== #IF
* {{#if: 1st parameter | 2nd parameter | 3rd parameter #}}
* {{#if: test string | value if test string is not empty | value if test
* string is empty (or only white space) #}}
*/
function _IF($params, $funcName)
{
if ( count($params) < 1 ) {
$result = $this->helper->formatError('alert', $funcName, 'not_enough_params');
} else {
if ( !empty($params[0]) ) {
$result = $params[1] ?? '';
} else {
$result = $params[2] ?? '';
}
}
return $result;
}
/**
* ========== #IFEQ
* {{#ifeq: 1st parameter | 2nd parameter | 3rd parameter | 4th parameter #}}
* {{#ifeq: string 1 | string 2 | value if identical | value if different #}}
*/
function _IFEQ($params, $funcName)
{
if ( count($params) < 2 ) {
$result = $this->helper->formatError('alert', $funcName, 'not_enough_params');
} else {
if ( $params[0] == $params[1] ) {
$result = $params[2] ?? '';
} else {
$result = $params[3] ?? '';
}
}
return $result;
}
/**
* ======= #IFEXIST
* Syntax: {{#ifexist: target | if-true | if-false #}}
*
* Accepts:
* - DokuWiki page/media IDs (e.g. "wiki:start", "wiki:image.png")
* - Namespaces (must end with ":", e.g. "wiki:")
* - Absolute or relative filesystem paths
*
* @param array $params [
* 0 => string $target Path or ID to check (required)
* 1 => string $ifTrue Value to return if target exists (optional)
* 2 => string $ifFalse Value to return if target doesn't exist (optional)
* ]
* @param string $funcName Name of the parser function (for error messages)
* @return string Rendered output based on existence check
*/
function _IFEXIST($params, $funcName)
{
if (count($params) < 1) {
return $this->helper->formatError('alert', $funcName, 'not_enough_params');
}
$target = trim($params[0]);
if ($target === '') {
return $this->helper->formatError('alert', $funcName, 'empty_test_parameter');
}
$exists = $this->helper->checkExistence($target);
return $exists
? ($params[1] ?? '')
: ($params[2] ?? '');
}
/**
* ========== #SWITCH
* {{#switch: comparison string
* | case1 = result1
* | ...
* | caseN = resultN
* | default result
* #}}
*/
function _SWITCH($params, $funcName) {
if (count($params) < 2) {
return $this->helper->formatError('alert', $funcName, 'not_enough_params');
}
$parsed = $this->helper->parseSwitchCases($params);
// Checks if the test string exists as a key in the switch cases array
if (array_key_exists($parsed['test'], $parsed['cases'])) {
return $parsed['cases'][$parsed['test']]; // ← May return empty string
}
// Returns the default (explicit or implicit) only if the case does not exist
return $parsed['default'] ?? '';
}
/**
* ========== #EXPR
* This function evaluates a mathematical expression and returns the
* calculated value.
*/
private function _EXPR($params, $funcName) {
if (!isset($params[0])) {
return $this->helper->formatError('alert', $funcName, 'empty_test_parameter');
}
return $this->helper->evaluateMathExpression($params[0]);
}
}