-
Notifications
You must be signed in to change notification settings - Fork 1
/
attachlist.inc.php
463 lines (416 loc) · 16.3 KB
/
attachlist.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
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
<?php
/**
* 添付ファイル一覧表示用プラグイン 配布版
*
* @version 1.1
* @author kanateko
* @link https://jpngamerswiki.com/?f51cd63681
* @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3
* -- Update --
* 2022-05-18 v1.1 1.5.4のURLカスタマイズに対応
* 一括管理画面のフォームの配置を若干変更
* 2022-01-26 v1.0 attachプラグインを改造しなくても動作するように仕様を変更
* 設定のキャッシュ利用の許可をデフォルトでtrueに変更
* 一括操作に凍結・解凍を追加
* 一括操作ボタンを左上に移動
* 一括操作画面で凍結されたファイルにマーク (*) を追加
* 全選択/解除用スクリプトを簡略化
* 2022-01-23 v0.5 全てのキャッシュを削除する機能を追加
* 添付ファイルの削除に失敗した場合の処理を追加
* 一括操作画面に全選択/解除ボタンを追加
* 2022-01-21 v0.4 添付ファイルの一括削除機能を追加
* 添付ファイルのリンクを修正
* v0.3 キャッシュの削除機能を追加
* v0.2 キャッシュ機能を追加
* 2022-01-20 v0.1 初版作成
*/
// キャッシュ利用の許可
define('ATTACHLIST_ALLOW_CACHE', true);
// キャッシュのディレクトリ
define('ATTACHLIST_CACHE_DIR', CACHE_DIR . 'attachlist/');
// ファイルサイズをキロバイトではなくバイト表記にする
define('ATTACHLIST_DISPLAY_BYTE', false);
require_once(PLUGIN_DIR . 'attach.inc.php');
/**
* ブロック型
*/
function plugin_attachlist_convert()
{
global $vars;
$page = $vars['page'];
$dir = UPLOAD_DIR;
$cache = ATTACHLIST_CACHE_DIR . encode($page) . '.dat';
if (ATTACHLIST_ALLOW_CACHE && file_exists($cache) && attachlist_is_fresh_cache($dir, $cache)) {
$attachlist = file_get_contents($cache);
} else {
$attachlist = attachlist_update_cache($page, $dir, $cache);
}
return '<div class="attachlist" style="margin-top:20px">' . $attachlist . '</div>';
}
/**
* アクション型
*/
function plugin_attachlist_action()
{
global $vars;
if (empty($vars['page'])) return attachlist_clear_all_cache();
$msg = 'ファイルの一括操作';
if (isset($vars['pcmd'])) {
switch($vars['pcmd']) {
case 'upload':
$attach = plugin_attach_action();
$form = array('msg' => $attach['msg'], 'body' => $attach['body'] . plugin_attachlist_convert());
return $form;
case 'confirm':
return attachlist_confirmation($msg, $vars['page']);
}
} else {
return attachlist_authentification($msg, $vars['page']);
}
}
/**
* アップロードフォルダとキャッシュの更新日時を比較
*
* @param string $dir アップロードフォルダのパス
* @param string $cache キャッシュのパス
* @return bool $is_fresh キャッシュが新しいかどうか
*/
function attachlist_is_fresh_cache($dir, $cache)
{
$t_dir = filemtime($dir);
$t_cache = filemtime($cache);
$is_fresh = $t_dir < $t_cache;
return $is_fresh;
}
/**
* キャッシュの更新
*
* @param string $page 対象のページ名
* @param string $dir 添付ファイルのあるディレクトリ
* @param string $cache 添付ファイル一覧のキャッシュのパス
* @return string $body html_convert済みの添付ファイル一覧
*/
function attachlist_update_cache($page, $dir, $cache)
{
// キャッシュフォルダの確認と作成
if (! file_exists(ATTACHLIST_CACHE_DIR) && ATTACHLIST_ALLOW_CACHE) {
mkdir(ATTACHLIST_CACHE_DIR, 0755);
chmod(ATTACHLIST_CACHE_DIR, 0755);
}
// 各添付ファイルの情報を取得する
$files = attachlist_get_files($page, $dir);
if (empty($files)) return;
// 添付ファイルの情報をテーブルに整形
$uri = get_base_uri(PKWK_URI_ABSOLUTE);
$e_page = rawurlencode($page);
$ref = '[[%name%:' . $uri . '?cmd=attach&pcmd=open&file=%ename%&refer=' . $e_page . ']]';
$info = '&size(12){[[[詳細:' . $uri . '?cmd=attach&pcmd=info&file=%ename%&refer=' . $e_page . ']]]};';
$body = '|~ファイル名|~ファイルサイズ|~アップロード日時|h' . "\n";
$body .= '|380|SIZE(14):RIGHT:200|SIZE(14):CENTER:200|c' . "\n";
foreach ($files as $file) {
$e_name = rawurlencode($file['name']);
$body .= '|' . str_replace('%name%', $file['name'], str_replace('%ename%', $e_name, $ref)) . ' ' . str_replace('%ename%', $e_name, $info) . '|' . $file['size'] . '|' . $file['time'] . '|' . "\n";
}
$ctrl = 'ファイル数:' . count($files) . ' [[[ファイルの一括操作>' . $uri . '?cmd=attachlist&page=' . $e_page . ']]]';
$body = convert_html($ctrl . "\n" . $body);
// キャッシュの生成
if (ATTACHLIST_ALLOW_CACHE) file_put_contents($cache, $body);
return $body;
}
/**
* ページに添付されたファイルの情報を取得する
*
* @param string $page 対象のページ名
* @param string $dir 添付ファイルのあるディレクトリ
* @return array $files 各添付ファイルの情報
*/
function attachlist_get_files($page, $dir)
{
// ページに添付されたファイルの一覧を取得
$pattern = $dir . encode($page) . '_' . '*';
$s_files = glob($pattern);
$files = array();
foreach ($s_files as $i => $file) {
// 各ファイルの情報を取得
preg_match('/.+_([^\.]+)$/', $file, $matches);
if (empty($matches[1])) continue;
$files[$i]['name'] = decode($matches[1]);
$files[$i]['time'] = format_date(filemtime($file));
$files[$i]['size'] = attachlist_get_filesize($file);
}
return $files;
}
/**
* 添付ファイルのサイズを取得する
*
* @param string $file 添付ファイルのパス
* @return void
*/
function attachlist_get_filesize($file)
{
$size = filesize($file);
if (ATTACHLIST_DISPLAY_BYTE) {
// バイト表示
return number_format($size, 1) . ' B';
} else {
return number_format($size / 1024, 1) . ' KB';
}
}
/**
* ファイル一括操作の管理パスワード認証
*
* @param string $msg タブに表示する文章
* @param string $page 対象のページ名
* @return array 各種フォーム
*/
function attachlist_authentification($msg, $page)
{
global $vars;
// ページ名のチェック
if (! is_page($page)) {
$body = '<p>ページ "' . htmlsc($page) . '" は存在しません</p>';
return array('msg' => $msg, 'body' => $body);
}
// 認証用フォームの作成
$auth_failed = '<p>パスワードが違います</p>' . "\n";
$body = <<<EOD
<form method="post" action="./">
<input type="hidden" name="cmd" value="attachlist">
<input type="hidden" name="page" value="$page">
<input type="password" name="pass">
<input type="submit" value="認証">
</form>
EOD;
// パスワードのチェック
if ($vars['pass']) {
if (pkwk_login($vars['pass'])) {
// パスワードがあっていれば選択用フォームを表示
return array('msg' => $msg, 'body' => attachlist_listup_files($page));
} else {
return array('msg' => $msg, 'body' => $auth_failed . $body);
}
} else {
return array('msg' => $msg, 'body' => $body);
}
}
/**
* チェックボックス付きの添付ファイル一覧を取得
*
* @param string $page 対象のページ名
* @return string $body 添付ファイルの一覧
*/
function attachlist_listup_files($page)
{
// 各添付ファイルの情報を取得
$files = attachlist_get_files($page, UPLOAD_DIR);
$body = '';
foreach ($files as $i => $file) {
// 凍結されているファイルにマークを追加
$obj = new AttachFile($page, $file['name'], 0);
$obj->getstatus();
$freezed = $obj->status['freeze'] ? '*' : '';
// チェックボックス付きのリストを作成
$body .=
'<li><input type="checkbox" class="check_list" name="file[]" value="' . $file['name'] .
'"><a href="' . get_base_uri() . '?cmd=attach&pcmd=open&file='
. rawurlencode($file['name']) . '&refer=' . rawurlencode($page) . '">'
. $file['name'] . '</a>' . $freezed . '</li>' . "\n";
}
$body = '<ul>' . "\n" . $body . "\n" . '</ul>';
// 全選択/解除用スクリプト
$js = <<<EOD
<script>
const check_all = document.querySelector("#check_all");
const check_list = document.querySelectorAll(".check_list");
check_all.addEventListener('change', () => {
if (check_all.checked) {
check_list.forEach (checkbox => (checkbox.checked = true));
} else {
check_list.forEach (checkbox => (checkbox.checked = false));
}
});
</script>
EOD;
// 選択用フォームの作成
$body = <<<EOD
<p>* = 凍結されたファイル</p>
<p style="user-select:none">
<input type="checkbox" id="check_all">
<label for="check_all">全て選択 / 解除</label>
</p>
<form method="post" action="./">
$body
<input type="hidden" name="cmd" value="attachlist">
<input type="hidden" name="pcmd" value="confirm">
<input type="hidden" name="page" value="$page">
<input type="submit" name="mode" value="削除">
<input type="submit" name="mode" value="凍結">
<input type="submit" name="mode" value="解凍">
</form>
$js
EOD;
return $body;
}
/**
* 操作するファイルの最終確認
*
* @param string $msg タブに表示する文章
* @param string $page 対象のページ名
* @return array 各種フォームもしくは操作完了のメッセージ
*/
function attachlist_confirmation($msg, $page)
{
global $vars;
// モード選択
$mode = isset($vars['mode']) ? htmlsc($vars['mode']) : '';
// 選択した添付ファイルのリストを作成
$targets = '';
if ($vars['file']) {
foreach ($vars['file'] as $i => $val) {
$targets .= '<li><input type="hidden" name="file[' . $i . ']" value="' . $val . '">' . $val . '</li>' . "\n";
}
$targets = '<ul>' . $targets . '</ul>';
} else {
// ファイルが一つも選択されていなかった場合はエラー
return array('msg' => $msg, 'body' => '<p>ファイルが選択されていません</p>');
}
// 最終確認用フォームの作成
$auth_failed = '<p>パスワードが違います</p>' . "\n";
$body = <<<EOD
<p>以下のファイルを{$mode}します</p>
<form method="post" action="./">
<input type="password" name="pass">
<input type="submit" value="実行">
$targets
<input type="hidden" name="cmd" value="attachlist">
<input type="hidden" name="pcmd" value="confirm">
<input type="hidden" name="mode" value="$mode">
<input type="hidden" name="page" value="$page">
<input type="hidden" name="refer" value="$page">
<input type="hidden" name="age" value="0">
</form>
EOD;
// パスワードのチェック
if ($vars['pass']) {
if (pkwk_login($vars['pass'])) {
// パスワードがあっていればファイルの操作を開始
if (! empty($mode)) $body = attachlist_manage_files($mode, $page);
return array('msg' => $msg, 'body' => $body);
} else {
return array('msg' => $msg, 'body' => $auth_failed . $body);
}
} else {
return array('msg' => $msg, 'body' => $body);
}
}
/**
* 添付ファイルの一括操作
*
* @param string $mode 削除/凍結/解凍
* @param string $page 対象のページ
* @return string $body 操作したファイルの一覧
*/
function attachlist_manage_files($mode, $page)
{
global $vars, $_attach_messages;
$files = $vars['file'];
$result = array();
$lines = array();
// 行う処理の判別
switch($mode) {
case '削除': $pcmd = 'delete'; break;
case '凍結': $pcmd = 'freeze'; break;
case '解凍': $pcmd = 'unfreeze'; break;
default : return '<p>不明な処理:' . htmlsc($mode) . '</p>';
}
// attachの処理成功時のメッセージ
$success = $_attach_messages['msg_' . $pcmd . 'd'];
// 使用するattachの関数
if ($pcmd == 'unfreeze') {
$attach = 'attach_freeze';
} else {
$attach = 'attach_' . $pcmd;
}
// ファイルごとに処理
foreach ($files as $vars['file']) {
$file = $vars['file'];
if ($pcmd == 'delete') {
$result = $attach();
} else {
$result = $attach($pcmd == 'freeze' ? true : false);
}
if ($result['msg'] == $success) {
// 処理成功のメッセージを受け取ったらファイル名を記録
$lines[] = $file;
} else if ($result['msg'] == $_attach_messages['msg_info']) {
// 凍結されたファイルを削除しようとした場合のメッセージ
return $_attach_messages['msg_isfreeze'];
} else {
return $result['msg'];
}
}
// 処理したファイルの一覧を表示
$body ='';
foreach ($lines as $line) {
$body .= '<li>' . $line . '</li>' . "\n";
}
$body = '<ul>' . "\n" . $body . "\n" . '</ul>';
$body = '<p>以下のファイルを' . $mode . 'しました</p>' . "\n" . $body . "\n" ;
$body .= '<p><a href="' . get_page_uri($page) . '">ページに戻る</a></p>';
return $body;
}
/**
* キャッシュファイルの一括削除
*
* @return array キャッシュクリアの確認・完了画面
*/
function attachlist_clear_all_cache()
{
global $vars;
$msg = 'キャッシュのクリア';
$pattern = ATTACHLIST_CACHE_DIR . '*.dat';
// 認証用フォームの作成
$auth_failed = '<p>パスワードが違います</p>' . "\n";
$body = <<<EOD
<p>添付ファイル一覧のキャッシュをクリアします</p>
<form method="post" action="./">
<input type="hidden" name="cmd" value="attachlist">
<input type="password" name="pass">
<input type="submit" value="実行">
</form>
EOD;
// パスワードのチェック
if ($vars['pass']) {
if (pkwk_login($vars['pass'])) {
// 認証できたらキャッシュの検索開始
$caches = glob($pattern);
if (empty($caches)) {
// datファイルがなければ終了
$body = '<p>キャッシュが見つかりませんでした</p>';
} else {
// datファイルがあればそれらを削除
$body = '<p>以下のページのキャッシュを削除しました<p>' . "\n";
foreach ($caches as $i => $cache) {
preg_match('/.+\/(.+).dat/', $cache, $matches);
$page = decode($matches[1]);
$attrs = get_page_link_a_attrs($page);
if (unlink($cache)) {
// 削除に成功したページをリストアップ
$body .= '<li><a href="' . get_page_uri($page) . '" class="' .
$attrs['class'] . '" data-mtime="' . $attrs['data_mtime'] .
'">' . $page . '</a></li>' . "\n";
} else {
// 削除に失敗したら処理を終了
$body = '<p>"' . htmlsc(decode($matches[1])) . '" のキャッシュが削除できませんでした</p>';
break;
}
}
}
return array('msg' => $msg, 'body' => $body);
} else {
return array('msg' => $msg, 'body' => $auth_failed . $body);
}
} else {
return array('msg' => $msg, 'body' => $body);
}
}