-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathtable.php
More file actions
182 lines (158 loc) · 5.22 KB
/
Copy pathtable.php
File metadata and controls
182 lines (158 loc) · 5.22 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
<?php
/**
* DokuWiki Plugin struct (Syntax Component)
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
* @author Andreas Gohr, Michael Große <dokuwiki@cosmocode.de>
*/
use dokuwiki\Extension\SyntaxPlugin;
use dokuwiki\plugin\struct\meta\Aggregation;
use dokuwiki\plugin\struct\meta\AggregationTable;
use dokuwiki\plugin\struct\meta\ConfigParser;
use dokuwiki\plugin\struct\meta\SearchConfig;
use dokuwiki\plugin\struct\meta\StructException;
class syntax_plugin_struct_table extends SyntaxPlugin
{
/** @var string which class to use for output */
protected $tableclass = AggregationTable::class;
/** @var string Config options that are not allowed for this syntax mode */
protected $illegalOptions = ['nesting', 'index'];
/**
* @return string Syntax mode type
*/
public function getType()
{
return 'substition';
}
/**
* @return string Paragraph type
*/
public function getPType()
{
return 'block';
}
/**
* @return int Sort order - Low numbers go before high numbers
*/
public function getSort()
{
return 155;
}
/**
* Connect lookup pattern to lexer.
*
* @param string $mode Parser mode
*/
public function connectTo($mode)
{
$this->Lexer->addSpecialPattern('----+ *struct table *-+\n.*?\n----+', $mode, 'plugin_struct_table');
}
/**
* Handle matches of the struct syntax
*
* @param string $match The match of the syntax
* @param int $state The state of the handler
* @param int $pos The position in the document
* @param Doku_Handler $handler The handler
* @return array Data for the renderer
*/
public function handle($match, $state, $pos, Doku_Handler $handler)
{
global $conf;
$lines = explode("\n", $match);
array_shift($lines);
array_pop($lines);
try {
$parser = new ConfigParser($lines);
$config = $parser->getConfig();
$this->checkForInvalidOptions($config);
return $config;
} catch (StructException $e) {
msg($e->getMessage(), -1, $e->getLine(), $e->getFile());
if ($conf['allowdebug']) msg('<pre>' . hsc($e->getTraceAsString()) . '</pre>', -1);
return null;
}
}
/**
* Render xhtml output or metadata
*
* @param string $format Renderer mode (supported modes: xhtml)
* @param Doku_Renderer $renderer The renderer
* @param array $config The parsed config data from the handler() function
* @return bool If rendering was successful.
*/
public function render($format, Doku_Renderer $renderer, $config)
{
global $INFO;
global $conf;
if (!$config) return false;
$config = $this->addTypeFilter($config); // add type specific filters
// always use the main page's ID @todo might make sense as utility method somewhere
if ($INFO !== null) {
$mainId = $INFO['id'];
} else {
$mainId = getID();
}
try {
if ($format === "metadata") {
$search = $this->getSearchConfig($config, false);
} else {
$search = $this->getSearchConfig($config);
}
if ($format === 'struct_csv' || $format === "metadata") {
// no pagination in export or metadata render
$search->setLimit(0);
$search->setOffset(0);
}
$table = new $this->tableclass($mainId, $format, $renderer, $search);
if (!$table instanceof Aggregation) {
// this may happen with plugins that extend struct
throw new StructException('Aggregation class does not inherit Aggregation: ' . $this->tableclass);
}
$table->startScope();
$table->render(true);
$table->finishScope();
if ($format === 'metadata') {
/** @var Doku_Renderer_metadata $renderer */
$renderer->meta['plugin']['struct']['hasaggregation'] = $search->getCacheFlag();
}
} catch (StructException $e) {
msg($e->getMessage(), -1, $e->getLine(), $e->getFile());
if ($conf['allowdebug']) msg('<pre>' . hsc($e->getTraceAsString()) . '</pre>', -1);
}
return true;
}
/**
* Initialize a SearchConfig with the given parsed config
*
* @param array $config
* @return SearchConfig
*/
protected function getSearchConfig($config, $dynamic = true)
{
return new SearchConfig($config, $dynamic);
}
/**
* Filter based on primary key columns, applicable in child classes
*
* @param array $config
* @return array
*/
protected function addTypeFilter($config)
{
return $config;
}
/**
* Checks for options that do not work in this aggregation
*
* @param array $config
*/
protected function checkForInvalidOptions($config)
{
foreach ($this->illegalOptions as $illegalOption) {
if (!empty($config[$illegalOption])) {
throw new StructException('illegal option', $illegalOption);
}
}
}
}