-
Notifications
You must be signed in to change notification settings - Fork 1
/
infobox.inc.php
336 lines (291 loc) · 10.2 KB
/
infobox.inc.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
<?php
/**
* テンプレートを読み込んでインフォボックスを設置するプラグイン
*
* @version 1.1.0
* @author kanateko
* @link https://jpngamerswiki.com/?f51cd63681
* @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3
* -- Update --
* 2024-09-13 v1.1.0 他プラグインとの互換性を改善
* v1.0.1 複数行の値でコメントアウトに対応
* 2024-09-01 v1.0.0 コードを整理
* デフォルト値を設定する機能を追加
* 値を複数行にわたって書けるように改善
* 値が空白のキーは非表示扱いに変更
* 2023-07-25 v0.6.0 =前後の空白に対応
* 2022-03-19 v0.5.0 同ページ内に同じテンプレートを使用したインフォボックスを複数設置できるよう改善
* 2021-08-04 v0.4.0 指定した文字列を含む行をinclude時に除外する機能を追加
* v0.3.0 テンプレートページの凍結が必要かどうかを設定できる機能を追加
* v0.2.0 テンプレートの読み込みがループする場合はエラーを表示する機能を追加
* 2021-08-03 v0.1.0 初版作成
*/
/**
* 初期化
*
* @return void
*/
function plugin_infobox_init(): void
{
$msg['_infobox_messages'] = [
'msg_usage' => '#infobox([template][,nozoom][,class=xxx][,except=xxx]){{<br><key> = xxx<br>...<br>}}<br>',
'err_notpl' => '#infobox Error: The template does not exist. (%s)',
'err_loop' => '#infobox Error: The template is already included. (%s)',
'err_self' => '#infobox Error: It is not allowed to load current page as template.',
'err_freeze' => '#infobox Error: Safe mode is enabled. Please freeze template pages.',
'err_map' => '#infobox Error: Could not find multiline argument.'
];
set_plugin_messages($msg);
}
/**
* Undocumented function
*
* @param string ...$args
* @return string
*/
function plugin_infobox_convert(string ...$args): string
{
$infobox = new PluginInfobox($args);
return $infobox->convert();
}
/**
* インフォボックスの作成
*/
class PluginInfobox {
private const KEY_FORMAT = '{{{%s}}}';
private const KEY_REGEXP = '([^{}]+)';
private const DEFAULT_VALUE_SEPARATOR = ':';
private const TEMPLATE_PATH = ':config/plugin/infobox/';
private const ENABLE_SAFE_MODE = false;
private string $template_page;
private array $template;
private array $map;
private array $options = [];
private array $err = [];
private static ?array $included;
public function __construct($args)
{
self::$included ??= [];
$num = count($args);
// 引数の分解とエラー処理
if ($num < 2) {
$this->err = ['msg_usage'];
} else {
$template_page = self::TEMPLATE_PATH . array_shift($args);
$multiline = array_pop($args);
if (! str_contains($multiline ,"\r")) {
// マルチライン無し
$this->err = ['err_map'];
} elseif (! is_page($template_page)) {
// テンプレート無し
$this->err = ['err_notpl' => $template_page];
} else {
$this->template_page = $template_page;
$this->options = $this->parse_options($args);
$this->template = $this->parse_template($template_page);
$this->map = [...$this->map, ...self::parse_keyvals($multiline)];
}
}
}
/**
* HTMLへの変換
*
* @return string
*/
public function convert(): string
{
if ($this->has_error()) return $this->show_msg();
$html = '';
$source = $this->template;
$class = $this->options['class'] ?? '';
foreach($this->map as $key => $val) {
$search = str_replace('%s', $key, self::KEY_FORMAT);
$source = str_replace($search, $val, $source);
}
// HTMLを整形
$html = $this->strip_lines($source);
$html = convert_html($html);
$html = <<<EOD
<div class="infobox$class">
$html
</div>
EOD;
self::$included[$this->template_page] = null;
return $html;
}
/**
* 不要な行の削除
*
* @param array $source
* @return string
*/
public function strip_lines(array $source): string
{
// 未使用のキー削除
foreach ($source as $i => $line) {
$pattern = '/' . str_replace('%s', self::KEY_REGEXP, self::KEY_FORMAT) . '/';
if (preg_match($pattern, $line)) {
unset($source[$i]);
}
}
$html = implode($source);
// noinlude部分を削除
$html = preg_replace('/==noinclude==[\s\S]*?==\/noinclude==\s/', '', $html);
return $html;
}
/**
* テンプレートを取得
*
* @param string $template_page
* @return array
*/
public function parse_template(string $template_page): array
{
global $vars;
$template = [];
$current_page = $vars['page'];
// エラーチェック
if (self::$included[$template_page] === true) {
// ループ
$this->err = ['err_loop' => $template_page];
} elseif ($current_page === $template_page) {
// ループ (現ページ)
$this->err = ['err_self'];
} elseif (self::ENABLE_SAFE_MODE && ! is_freeze($template_page)) {
// セーフモード
$this->err = ['err_freeze'];
}
// 問題なければテンプレートを取得
if (! $this->has_error()) {
self::$included[$template_page] = true;
$template = get_source($template_page);
// 不要な行を削除
foreach ($template as $i => $line) {
// 不要なプラグイン
if (str_starts_with($line, '#author') || str_starts_with($line, '#freeze')) {
unset($template[$i]);
}
// 除外設定
if ($this->options['except'] !== null) {
if (preg_match($this->options['except'], $line)) {
unset($template[$i]);
}
}
}
// デフォルト値の取得と置き換え
$template = $this->get_default_values($template);
}
return $template;
}
/**
* デフォルト値の取得と置き換え
*
* @param array $template
* @return array
*/
public function get_default_values(array $template): array
{
$key_regexp = self::KEY_REGEXP;
$separator = self::DEFAULT_VALUE_SEPARATOR;
$regexp = '/' . str_replace('%s', $key_regexp . $separator . $key_regexp, self::KEY_FORMAT) . '/';
$map = [];
// デフォルト値の取得
foreach ($template as $i => $line) {
if (preg_match($regexp, $line, $m)) {
$map[$m[1]]= $m[2];
$replace = str_replace('%s', $m[1], self::KEY_FORMAT);
$template[$i] = str_replace($m[0], $replace, $line);
}
}
$this->map = $map;
return $template;
}
/**
* マルチライン引数からキーと値を取得する
*
* @param string $multiline
* @return array
*/
public static function parse_keyvals(string $multiline): array
{
$map = [];
$lines = explode("\r", trim($multiline));
$current_key = '';
foreach ($lines as $line) {
if (preg_match('/(.+?)\s*(?<!\\\)=\s*(.+)?/', $line, $m)) {
$current_key = '';
if ($m[2] !== null) {
$map[$m[1]] = $m[2];
} else {
// 複数行のキーを設定
$current_key = $m[1];
}
} elseif ($current_key !== '') {
// 複数行での値指定
if (str_starts_with($line, '//')) continue;
$map[$current_key] = $map[$current_key] === null ? '' : $map[$current_key] . "&br;";
$map[$current_key] .= str_replace('\=', '=', $line);
}
}
return $map;
}
/**
* オプションの判別
*
* @param array $args
* @return array
*/
public function parse_options(array $args): array
{
$options = [];
$class_array = [];
foreach($args as $arg) {
[$key, $val] = array_map('trim', explode('=', $arg));
if ($val !== null) {
if ($key === 'except') {
// 正規表現での除外設定
$options['except'] = '/' . str_replace('/', '\/', $val) . '/';
} elseif ($key === 'class') {
// 追加クラス
$class_array[] = $val;
}
} elseif ($key === 'nozoom') {
// 追加クラス
$class_array[] = $key;
}
}
// クラスの整形
if ($class_array !== []) {
$options['class'] = ' ' . htmlsc(implode(' ', $class_array));
}
return $options;
}
/**
* エラーの確認
*
* @return boolean
*/
public function has_error(): bool
{
return $this->err !== [];
}
/**
* メッセージ表示
*
* @return string
*/
public function show_msg(): string
{
global $_infobox_messages;
$msg = '';
if (array_values($this->err) === $this->err) {
$msg = $_infobox_messages[$this->err[0]];
} else {
foreach ($this->err as $key => $val) {
$msg = $_infobox_messages[$key];
$msg = str_replace('%s', htmlsc($val), $msg);
}
}
return "<p>$msg</p>";
}
}