-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathic2_setter.php
378 lines (325 loc) · 12.2 KB
/
ic2_setter.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
<?php
/**
* ImageCache2 - アップローダ
*/
// {{{ p2基本設定読み込み&認証
define('P2_OUTPUT_XHTML', 1);
require_once './conf/conf.inc.php';
$_login->authorize();
if (!$_conf['expack.ic2.enabled']) {
p2die('ImageCache2は無効です。', 'conf/conf_admin_ex.inc.php の設定を変えてください。');
}
// }}}
// {{{ ライブラリ読み込み
require_once 'HTML/Template/Flexy.php';
require_once P2EX_LIB_DIR . '/ic2/bootstrap.php';
// }}}
// {{{ config
// 設定ファイル読み込み
$ini = ic2_loadconfig();
// 最大ファイルサイズを設定
$ic2_maxsize = $ini['Source']['maxsize'];
if (preg_match('/(\d+\.?\d*)([KMG])/i', $ic2_maxsize, $m)) {
$ic2_maxsize = p2_si2int($m[1], $m[2]);
} else {
$ic2_maxsize = (int)$ic2_maxsize;
}
$ini_maxsize = ini_get('upload_max_filesize');
if (preg_match('/(\d+\.?\d*)([KMG])/i', $ini_maxsize, $m)) {
$ini_maxsize = p2_si2int($m[1], $m[2]);
} else {
$ini_maxsize = (int)$ini_maxsize;
}
if (0 < $ic2_maxsize && $ic2_maxsize < $ini_maxsize) {
$maxsize = $ic2_maxsize;
$maxsize_si = $ini['Source']['maxsize'];
} else {
$maxsize = $ini_maxsize;
$maxsize_si = ini_get('upload_max_filesize');
}
$maxwidth = (int)$ini['Source']['maxwidth'] ;
$maxheight = (int)$ini['Source']['maxheight'];
// ポップアップウインドウ?
$isPopUp = empty($_REQUEST['popup']) ? 0 : 1;
// 対応MIMEタイプ
$mimemap = array(IMAGETYPE_GIF => 'image/gif', IMAGETYPE_JPEG => 'image/jpeg', IMAGETYPE_PNG => 'image/png');
$mimeregex = '{^(image/(p?jpeg|png|gif)|application/octet-stream)$}';
// エラーメッセージのフォーマット
$err_fmt = array();
$err_fmt['none'] = "<p>Error: ファイルが一つも選ばれていません。</p>\n";
$err_fmt['file'] = "<p>Error: %s → %s</p>\n";
$err_fmt['mime'] = "<p>Error: %s → 非対応のMIMEタイプです。(%s)</p>\n";
$err_fmt['name'] = "<p>Error: %s → ファイル名の取得に失敗しました。</p>\n";
$err_fmt['size'] = "<p>Error: %s → 画像サイズの取得に失敗しました。</p>\n";
$err_fmt['pix'] = "<p>Error: %s → 画像が大きすぎます。(%s × %s, {$maxwidth} × {$maxheight} まで)</p>\n";
$err_fmt['dir'] = "<p>Error: %s → ディレクトリを作成できませんでした。(%s)</p>\n";
$err_fmt['move'] = "<p>Error: %s → リネーム失敗。(%s → %s)</p>\n";
// }}}
// {{{ process uploaded file
$upfiles = array();
if (!empty($_GET['upload']) && !empty($_FILES['upimg'])) {
$errors = array_count_values($_FILES['upimg']['error']);
if (!empty($errors[UPLOAD_ERR_NO_TMP_DIR])) {
p2die('ImageCache2 - ファイルアップロード用のテンポラリフォルダがありません。');
} elseif (count($_FILES['upimg']['error']) == $errors[UPLOAD_ERR_NO_FILE]) {
P2Util::pushInfoHtml($err_fmt['none']);
} else {
// サムネイル作成クラスのインスタンスを作成
$thumbnailer = new IC2_Thumbnailer(IC2_Thumbnailer::SIZE_DEFAULT);
// DBに記録する共通データを設定
$f_host = 'localhost';
$f_time = time();
$f_memo = isset($_POST['memo']) ? IC2_DataObject_Images::staticUniform($_POST['memo'], 'CP932') : '';
$f_rank = isset($_POST['rank']) ? intval($_POST['rank']) : 0;
if ($f_rank > 5) {
$f_rank = 5;
} elseif ($f_rank < 0) {
$f_rank = 0;
}
// アップロードされたファイルを処理
foreach ($_FILES['upimg']['name'] as $key => $value) {
$path = $_POST['path'][$key];
$name = $_FILES['upimg']['name'][$key];
$type = $_FILES['upimg']['type'][$key];
$filesize = $_FILES['upimg']['size'][$key];
$tmpname = $_FILES['upimg']['tmp_name'][$key];
$errcode = $_FILES['upimg']['error'][$key];
if ($errcode == UPLOAD_ERR_NO_FILE) {
continue;
}
$file = ic2_check_uploaded_file($path, $name, $type, $filesize, $tmpname, $errcode);
if (is_array($file)) {
$upfiles[] = $file;
} else {
P2Util::pushInfoHtml($file);
}
}
}
}
// }}}
// {{{ output
$_flexy_options = array(
'locale' => 'ja',
'charset' => 'Shift_JIS',
'compileDir' => $_conf['compile_dir'] . DIRECTORY_SEPARATOR . 'ic2',
'templateDir' => P2EX_LIB_DIR . '/ic2/templates',
'numberFormat' => '', // ",0,'.',','" と等価
);
$flexy = new HTML_Template_Flexy($_flexy_options);
$flexy->compile('ic2s.tpl.html');
if (!$isPopUp && (!empty($upfiles) || P2Util::hasInfoHtml())) {
$showForm = false;
} else {
$showForm = true;
}
// フォームを修正
$elements = $flexy->getElements();
if ($showForm) {
$form_attr = array(
'action' => $_SERVER['SCRIPT_NAME'] . '?upload=1',
'accept-charset' => $_conf['accept_charset'],
);
$elements['fileupload']->setAttributes($form_attr);
$elements['MAX_FILE_SIZE']->setValue($maxsize);
$elements['popup']->setValue($isPopUp);
if ($isPopUp) {
$elements['fileupload']->setAttributes('target="_self"');
} else {
$elements['fileupload']->setAttributes('target="read"');
}
}
// テンプレート変数
$view = new stdClass;
$view->php_self = $_SERVER['SCRIPT_NAME'];
$view->STYLE = $STYLE;
$view->skin = $skin_en;
$view->hint = $_conf['detect_hint'];
$view->isPopUp = $isPopUp;
$view->showForm = $showForm;
$view->info_msg = P2Util::getInfoHtml();
$view->upfiles = $upfiles;
$view->maxfilesize = $maxsize_si;
$view->maxpostsize = ini_get('post_max_size');
$view->extra_headers = $_conf['extra_headers_ht'];
$view->extra_headers_x = $_conf['extra_headers_xht'];
// ページを表示
P2Util::header_nocache();
$flexy->outputObject($view, $elements);
// }}}
// {{{ 関数
// {{{ ic2_check_uploaded_file()
/**
* アップロードされた各画像ファイルを検証する。
* 問題がなければ ic2_register_uploaded_file() にファイル情報を渡し、
* 問題があればエラーメッセージ(文字列)を返す。
*/
function ic2_check_uploaded_file($path, $name, $type, $filesize, $tmpname, $errcode)
{
global $_conf, $ini, $err_fmt;
global $mimemap, $mimeregex, $maxsize, $maxwidth, $maxheight;
$path_ht = htmlspecialchars($path, ENT_QUOTES);
// アップロード失敗のとき
if ($errcode != UPLOAD_ERR_OK) {
switch ($errcode) {
case UPLOAD_ERR_INI_SIZE:
$errmsg = 'アップロードされたファイルは、php.ini の upload_max_filesize ディレクティブの値を超えています。';
break;
case UPLOAD_ERR_FORM_SIZE:
$errmsg = 'アップロードされたファイルは、HTMLフォームで指定された MAX_FILE_SIZE を超えています。';
break;
case UPLOAD_ERR_PARTIAL:
$errmsg = 'アップロードされたファイルは一部のみしかアップロードされていません。';
break;
default:
$errmsg = '原因不明のエラー';
}
return sprintf($err_fmt['file'], $path_ht, $errmsg);
}
// ブラウザから送信されたMIMEタイプを検証
if (!preg_match($mimeregex, $type)) {
return sprintf($err_fmt['mime'], $path_ht, $type);
}
// 正しい画像ファイルかどうかを確認
$size = @getimagesize($tmpname);
if (!$size || !$size[0] || !$size[1]) {
return sprintf($err_fmt['size'], $path_ht);
}
// 縦横の大きさを確認
if (($maxwidth > 0 && $size[0] > $maxwidth) || ($maxheight > 0 && $size[1] > $maxheight)) {
return sprintf($err_fmt['pix'], $size[0], $size[1]);
}
// もう一度 MIMEタイプを検証
$type = $size[2];
if (!isset($mimemap[$type])) {
$mime = isset($size['mime']) ? $size['mime'] : $type;
return sprintf($err_fmt['mime'], $path_ht, $mime);
}
// ファイル名を取得
$basename = p2_mb_basename($path);
if ($basename == '') {
if (strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false) {
$name = p2_combine_nfd_kana($name);
}
$name = mb_convert_encoding($name, 'CP932', 'UTF-8,CP51932,CP932');
$basename = p2_mb_basename($name);
if ($name == '') {
return sprintf($err_fmt['name'], $path_ht);
}
}
// ファイル情報を設定
$file = array();
$file['path'] = $path;
$file['name'] = $basename;
$file['size'] = $filesize;
$file['mime'] = $mimemap[$type];
$file['width'] = $size[0];
$file['height'] = $size[1];
$file['md5'] = md5_file($tmpname);
$file['tmp_name'] = $tmpname;
// DBに登録し、結果を返す
return ic2_register_uploaded_file($file);
}
// }}}
// {{{ ic2_register_uploaded_file()
/**
* アップロードされた画像ファイルをDBに登録する。
* 成功したときはファイル情報(配列)を、
* 失敗したときはエラーメッセージ(文字列)を返す。
*/
function ic2_register_uploaded_file($file)
{
global $_conf, $ini, $err_fmt;
global $thumbnailer;
global $f_host, $f_time, $f_memo, $f_rank;
$utf8_path = mb_convert_encoding($file['path'], 'UTF-8', 'CP932');
$utf8_name = mb_convert_encoding($file['name'], 'UTF-8', 'CP932');
$file['path'] = htmlspecialchars($file['path'], ENT_QUOTES);
$file['name'] = htmlspecialchars($file['name'], ENT_QUOTES);
$file['memo'] = $f_memo;
$file['rank'] = $f_rank;
$file['img_src'] = $thumbnailer->srcPath($file['size'], $file['md5'], $file['mime']);
$file['thumb'] = $thumbnailer->thumbPath($file['size'], $file['md5'], $file['mime']);
if (!file_exists($file['thumb'])) {
$file['thumb'] = 'ic2.php?r=1&t=1&file=' . $file['size'] . '_' . $file['md5'];
}
if (preg_match('/(\d+)x(\d+)/', $thumbnailer->calc($file['width'], $file['height']), $thumb_xy)) {
$file['thumb_x'] = $thumb_xy[1];
$file['thumb_y'] = $thumb_xy[2];
}
// 既存の画像か検索
$search1 = new IC2_DataObject_Images;
$search1->whereAddQuoted('size', '=', $file['size']);
$search1->whereAddQuoted('md5', '=', $file['md5']);
$search1->whereAddQuoted('mime', '=', $file['mime']);
$search2 = clone $search1;
$search1->whereAddQuoted('uri', '=', $utf8_path);
// 全く同じ画像が登録されていたとき
if ($search1->find(TRUE)) {
$update = clone $search1;
$changed = FALSE;
if (strlen($f_memo) > 0 && strpos($search1->memo, $f_memo) === false){
if (!is_null($search1->memo) && strlen($search1->memo) > 0) {
$update->memo = $f_memo . ' ' . $search1->memo;
} else {
$update->memo = $f_memo;
}
$file['memo'] = mb_convert_encoding($update->memo, 'CP932', 'UTF-8');
$changed = TRUE;
}
if ($search1->rank != $f_rank) {
$update->rank = $f_rank;
$changed = TRUE;
}
if ($changed) {
$update->update();
}
$file['message'] = '<a href="iv2.php?field=md5&key=' . $file['md5'] . '" target="_blank">同じ画像が登録されていました。</a>';
if ($changed) {
$file['message'] .= '(ステータスの更新あり)';
}
} else {
$record = new IC2_DataObject_Images;
$record->uri = $utf8_path;
$record->host = $f_host;
$record->name = $utf8_name;
$record->size = $file['size'];
$record->md5 = $file['md5'];
$record->width = $file['width'];
$record->height = $file['height'];
$record->mime = $file['mime'];
$record->time = $f_time;
$record->rank = $f_rank;
if (strlen($f_memo) > 0) {
$record->memo = $f_memo;
}
// 登録済みの画像で、URLが異なるとき
if ($search2->find(TRUE) && file_exists($file['img_src'])) {
$record->insert();
$file['message'] = '<a href="iv2.php?field=md5&key=' . $file['md5'] . '" target="_blank">同じ画像が異なるURLで登録されていました。</a>';
// 未登録の画像だったとき
} else {
$newdir = dirname($file['img_src']);
if (!is_dir($newdir) && !@mkdir($newdir)) {
return sprintf($err_fmt['dir'], $file['path'], $newdir);
}
if (!@move_uploaded_file($file['tmp_name'], $file['img_src'])) {
return sprintf($err_fmt['file'], $file['path'], $file['tmp_name'], $file['img_src']);
}
$record->insert();
$file['message'] = '<a href="iv2.php?field=md5&key=' . $file['md5'] . '" target="_blank">アップロード成功。</a>';
}
}
return $file;
}
// }}}
// }}}
/*
* Local Variables:
* mode: php
* coding: cp932
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/
// vim: set syn=php fenc=cp932 ai et ts=4 sw=4 sts=4 fdm=marker: