OSDN Git Service

BugTrack/2422 Counter plugin supports MySQL
[pukiwiki/pukiwiki.git] / lib / init.php
1 <?php
2 // PukiWiki - Yet another WikiWikiWeb clone.
3 // init.php
4 // Copyright
5 //   2002-2016 PukiWiki Development Team
6 //   2001-2002 Originally written by yu-ji
7 // License: GPL v2 or (at your option) any later version
8 //
9 // Init PukiWiki here
10
11 // PukiWiki version / Copyright / Licence
12
13 define('S_VERSION', '1.5.1');
14 define('S_COPYRIGHT',
15         '<strong>PukiWiki ' . S_VERSION . '</strong>' .
16         ' &copy; 2001-2016' .
17         ' <a href="http://pukiwiki.osdn.jp/">PukiWiki Development Team</a>'
18 );
19
20 /////////////////////////////////////////////////
21 // Session security options
22
23 ini_set('session.use_strict_mode', 1);
24 ini_set('session.use_cookies', 1);
25 ini_set('session.use_only_cookies', 1);
26
27 /////////////////////////////////////////////////
28 // Init server variables
29
30 // Comapat and suppress notices
31 if (!isset($HTTP_SERVER_VARS)) $HTTP_SERVER_VARS = array();
32
33 foreach (array('SCRIPT_NAME', 'SERVER_ADMIN', 'SERVER_NAME',
34         'SERVER_PORT', 'SERVER_SOFTWARE') as $key) {
35         define($key, isset($_SERVER[$key]) ? $_SERVER[$key] : '');
36         unset(${$key}, $_SERVER[$key], $HTTP_SERVER_VARS[$key]);
37 }
38
39 /////////////////////////////////////////////////
40 // Init grobal variables
41
42 $foot_explain = array();        // Footnotes
43 $related      = array();        // Related pages
44 $head_tags    = array();        // XHTML tags in <head></head>
45
46 /////////////////////////////////////////////////
47 // Time settings
48
49 define('LOCALZONE', date('Z'));
50 define('UTIME', time() - LOCALZONE);
51 define('MUTIME', getmicrotime());
52
53 /////////////////////////////////////////////////
54 // Require INI_FILE
55
56 define('INI_FILE',  DATA_HOME . 'pukiwiki.ini.php');
57 $die = '';
58 if (! file_exists(INI_FILE) || ! is_readable(INI_FILE)) {
59         $die .= 'File is not found. (INI_FILE)' . "\n";
60 } else {
61         require(INI_FILE);
62 }
63 if ($die) die_message(nl2br("\n\n" . $die));
64
65 /////////////////////////////////////////////////
66 // INI_FILE: LANG に基づくエンコーディング設定
67
68 // MB_LANGUAGE: mb_language (for mbstring extension)
69 //   'uni'(means UTF-8), 'English', or 'Japanese'
70 // SOURCE_ENCODING: Internal content encoding (for mbstring extension)
71 //   'UTF-8', 'ASCII', or 'EUC-JP'
72 // CONTENT_CHARSET: Internal content encoding = Output content charset
73 //    (for DTD, htmlsc())
74 //   'UTF-8', 'iso-8859-1', 'EUC-JP' or ...
75
76 switch (LANG){
77 case 'en': define('MB_LANGUAGE', 'English' ); break;
78 case 'ja': define('MB_LANGUAGE', 'Japanese'); break;
79 case 'ko': define('MB_LANGUAGE', 'Korean'  ); break; //UTF-8 only
80         // See BugTrack2/13 for all hack about Korean support, //UTF-8 only
81         // and give us your report!                            //UTF-8 only
82 default: die_message('No such language "' . LANG . '"'); break;
83 }
84
85 define('PKWK_UTF8_ENABLE', 1); //UTF-8 only
86 if (defined('PKWK_UTF8_ENABLE')) {
87         define('SOURCE_ENCODING', 'UTF-8');
88         define('CONTENT_CHARSET', 'UTF-8');
89 } else {
90         switch (LANG){
91         case 'en':
92                 define('SOURCE_ENCODING', 'ASCII');
93                 define('CONTENT_CHARSET', 'iso-8859-1');
94                 break;
95         case 'ja':
96                 define('SOURCE_ENCODING', 'EUC-JP');
97                 define('CONTENT_CHARSET', 'EUC-JP');
98                 break;
99         }
100 }
101
102 mb_language(MB_LANGUAGE);
103 mb_internal_encoding(SOURCE_ENCODING);
104 mb_http_output('pass');
105 mb_detect_order('auto');
106
107 /////////////////////////////////////////////////
108 // INI_FILE: Require LANG_FILE
109
110 define('LANG_FILE_HINT', DATA_HOME . LANG . '.lng.php');        // For encoding hint
111 define('LANG_FILE',      DATA_HOME . UI_LANG . '.lng.php');     // For UI resource
112 $die = '';
113 foreach (array('LANG_FILE_HINT', 'LANG_FILE') as $langfile) {
114         if (! file_exists(constant($langfile)) || ! is_readable(constant($langfile))) {
115                 $die .= 'File is not found or not readable. (' . $langfile . ')' . "\n";
116         } else {
117                 require_once(constant($langfile));
118         }
119 }
120 if ($die) die_message(nl2br("\n\n" . $die));
121
122 /////////////////////////////////////////////////
123 // LANG_FILE: Init encoding hint
124
125 define('PKWK_ENCODING_HINT', isset($_LANG['encode_hint'][LANG]) ? $_LANG['encode_hint'][LANG] : '');
126 unset($_LANG['encode_hint']);
127
128 /////////////////////////////////////////////////
129 // LANG_FILE: Init severn days of the week
130
131 $weeklabels = $_msg_week;
132
133 /////////////////////////////////////////////////
134 // INI_FILE: Init $script
135
136 if (isset($script)) {
137         get_script_uri($script); // Init manually
138 } else {
139         $script = get_script_uri(); // Init automatically
140 }
141
142 /////////////////////////////////////////////////
143 // INI_FILE: $agents:  UserAgentの識別
144
145 $ua = 'HTTP_USER_AGENT';
146 $user_agent = $matches = array();
147
148 $user_agent['agent'] = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
149 unset(${$ua}, $_SERVER[$ua], $HTTP_SERVER_VARS[$ua], $ua);      // safety
150
151 foreach ($agents as $agent) {
152         if (preg_match($agent['pattern'], $user_agent['agent'], $matches)) {
153                 $user_agent['profile'] = isset($agent['profile']) ? $agent['profile'] : '';
154                 $user_agent['name']    = isset($matches[1]) ? $matches[1] : ''; // device or browser name
155                 $user_agent['vers']    = isset($matches[2]) ? $matches[2] : ''; // 's version
156                 break;
157         }
158 }
159 unset($agents, $matches);
160
161 // Profile-related init and setting
162 define('UA_PROFILE', isset($user_agent['profile']) ? $user_agent['profile'] : '');
163
164 define('UA_INI_FILE', DATA_HOME . UA_PROFILE . '.ini.php');
165 if (! file_exists(UA_INI_FILE) || ! is_readable(UA_INI_FILE)) {
166         die_message('UA_INI_FILE for "' . UA_PROFILE . '" not found.');
167 } else {
168         require(UA_INI_FILE); // Also manually
169 }
170
171 define('UA_NAME', isset($user_agent['name']) ? $user_agent['name'] : '');
172 define('UA_VERS', isset($user_agent['vers']) ? $user_agent['vers'] : '');
173 unset($user_agent);     // Unset after reading UA_INI_FILE
174
175 /////////////////////////////////////////////////
176 // ディレクトリのチェック
177
178 $die = '';
179 foreach(array('DATA_DIR', 'DIFF_DIR', 'BACKUP_DIR', 'CACHE_DIR') as $dir){
180         if (! is_writable(constant($dir)))
181                 $die .= 'Directory is not found or not writable (' . $dir . ')' . "\n";
182 }
183
184 // 設定ファイルの変数チェック
185 $temp = '';
186 foreach(array('rss_max', 'page_title', 'note_hr', 'related_link', 'show_passage',
187         'rule_related_str', 'load_template_func') as $var){
188         if (! isset(${$var})) $temp .= '$' . $var . "\n";
189 }
190 if ($temp) {
191         if ($die) $die .= "\n"; // A breath
192         $die .= 'Variable(s) not found: (Maybe the old *.ini.php?)' . "\n" . $temp;
193 }
194
195 $temp = '';
196 foreach(array('LANG', 'PLUGIN_DIR') as $def){
197         if (! defined($def)) $temp .= $def . "\n";
198 }
199 if ($temp) {
200         if ($die) $die .= "\n"; // A breath
201         $die .= 'Define(s) not found: (Maybe the old *.ini.php?)' . "\n" . $temp;
202 }
203
204 if($die) die_message(nl2br("\n\n" . $die));
205 unset($die, $temp);
206
207 /////////////////////////////////////////////////
208 // 必須のページが存在しなければ、空のファイルを作成する
209
210 foreach(array($defaultpage, $whatsnew, $interwiki) as $page){
211         if (! is_page($page)) pkwk_touch_file(get_filename($page));
212 }
213
214 /////////////////////////////////////////////////
215 // 外部からくる変数のチェック
216
217 // Prohibit $_GET attack
218 foreach (array('msg', 'pass') as $key) {
219         if (isset($_GET[$key])) die_message('Sorry, already reserved: ' . $key . '=');
220 }
221
222 // Expire risk
223 unset($HTTP_GET_VARS, $HTTP_POST_VARS); //, 'SERVER', 'ENV', 'SESSION', ...
224 unset($_REQUEST);       // Considered harmful
225
226 // Remove null character etc.
227 $_GET    = input_filter($_GET);
228 $_POST   = input_filter($_POST);
229 $_COOKIE = input_filter($_COOKIE);
230
231 // 文字コード変換 ($_POST)
232 // <form> で送信された文字 (ブラウザがエンコードしたデータ) のコードを変換
233 // POST method は常に form 経由なので、必ず変換する
234 //
235 if (isset($_POST['encode_hint']) && $_POST['encode_hint'] != '') {
236         // do_plugin_xxx() の中で、<form> に encode_hint を仕込んでいるので、
237         // encode_hint を用いてコード検出する。
238         // 全体を見てコード検出すると、機種依存文字や、妙なバイナリ
239         // コードが混入した場合に、コード検出に失敗する恐れがある。
240         $encode = mb_detect_encoding($_POST['encode_hint']);
241         mb_convert_variables(SOURCE_ENCODING, $encode, $_POST);
242
243 } else if (isset($_POST['charset']) && $_POST['charset'] != '') {
244         // TrackBack Ping で指定されていることがある
245         // うまくいかない場合は自動検出に切り替え
246         if (mb_convert_variables(SOURCE_ENCODING,
247             $_POST['charset'], $_POST) !== $_POST['charset']) {
248                 mb_convert_variables(SOURCE_ENCODING, 'auto', $_POST);
249         }
250
251 } else if (! empty($_POST)) {
252         // 全部まとめて、自動検出/変換
253         mb_convert_variables(SOURCE_ENCODING, 'auto', $_POST);
254 }
255
256 // 文字コード変換 ($_GET)
257 // GET method は form からの場合と、<a href="http://script/?key=value> の場合がある
258 // <a href...> の場合は、サーバーが rawurlencode しているので、コード変換は不要
259 if (isset($_GET['encode_hint']) && $_GET['encode_hint'] != '')
260 {
261         // form 経由の場合は、ブラウザがエンコードしているので、コード検出・変換が必要。
262         // encode_hint が含まれているはずなので、それを見て、コード検出した後、変換する。
263         // 理由は、post と同様
264         $encode = mb_detect_encoding($_GET['encode_hint']);
265         mb_convert_variables(SOURCE_ENCODING, $encode, $_GET);
266 }
267
268
269 /////////////////////////////////////////////////
270 // QUERY_STRINGを取得
271
272 // cmdもpluginも指定されていない場合は、QUERY_STRINGを
273 // ページ名かInterWikiNameであるとみなす
274 $arg = '';
275 if (isset($_SERVER['QUERY_STRING']) && $_SERVER['QUERY_STRING'] != '') {
276         global $g_query_string;
277         $g_query_string = $_SERVER['QUERY_STRING'];
278         $arg = & $_SERVER['QUERY_STRING'];
279 } else if (isset($_SERVER['argv']) && ! empty($_SERVER['argv'])) {
280         $arg = & $_SERVER['argv'][0];
281 }
282 if (PKWK_QUERY_STRING_MAX && strlen($arg) > PKWK_QUERY_STRING_MAX) {
283         // Something nasty attack?
284         pkwk_common_headers();
285         sleep(1);       // Fake processing, and/or process other threads
286         echo('Query string too long');
287         exit;
288 }
289 $arg = input_filter($arg); // \0 除去
290
291 // unset QUERY_STRINGs
292 foreach (array('QUERY_STRING', 'argv', 'argc') as $key) {
293         unset(${$key}, $_SERVER[$key], $HTTP_SERVER_VARS[$key]);
294 }
295 // $_SERVER['REQUEST_URI'] is used at func.php NOW
296 unset($REQUEST_URI, $HTTP_SERVER_VARS['REQUEST_URI']);
297
298 // mb_convert_variablesのバグ(?)対策: 配列で渡さないと落ちる
299 $arg = array($arg);
300 mb_convert_variables(SOURCE_ENCODING, 'auto', $arg);
301 $arg = $arg[0];
302
303 /////////////////////////////////////////////////
304 // QUERY_STRINGを分解してコード変換し、$_GET に上書き
305
306 // URI を urlencode せずに入力した場合に対処する
307 $matches = array();
308 foreach (explode('&', $arg) as $key_and_value) {
309         if (preg_match('/^([^=]+)=(.+)/', $key_and_value, $matches) &&
310             mb_detect_encoding($matches[2]) != 'ASCII') {
311                 $_GET[$matches[1]] = $matches[2];
312         }
313 }
314 unset($matches);
315
316 /////////////////////////////////////////////////
317 // GET, POST, COOKIE
318
319 $get    = & $_GET;
320 $post   = & $_POST;
321 $cookie = & $_COOKIE;
322
323 // GET + POST = $vars
324 if (empty($_POST)) {
325         $vars = & $_GET;  // Major pattern: Read-only access via GET
326 } else if (empty($_GET)) {
327         $vars = & $_POST; // Minor pattern: Write access via POST etc.
328 } else {
329         $vars = array_merge($_GET, $_POST); // Considered reliable than $_REQUEST
330 }
331
332 // 入力チェック: 'cmd=' and 'plugin=' can't live together
333 if (isset($vars['cmd']) && isset($vars['plugin']))
334         die('Using both cmd= and plugin= is not allowed');
335
336 // 入力チェック: cmd, plugin の文字列は英数字以外ありえない
337 foreach(array('cmd', 'plugin') as $var) {
338         if (isset($vars[$var]) && ! preg_match('/^[a-zA-Z][a-zA-Z0-9_]*$/', $vars[$var]))
339                 unset($get[$var], $post[$var], $vars[$var]);
340 }
341
342 // 整形: page, strip_bracket()
343 if (isset($vars['page'])) {
344         $get['page'] = $post['page'] = $vars['page']  = strip_bracket($vars['page']);
345 } else {
346         $get['page'] = $post['page'] = $vars['page'] = '';
347 }
348
349 // 整形: msg, 改行を取り除く
350 if (isset($vars['msg'])) {
351         $get['msg'] = $post['msg'] = $vars['msg'] = str_replace("\r", '', $vars['msg']);
352 }
353
354 // 後方互換性 (?md5=...)
355 if (isset($get['md5']) && $get['md5'] != '' &&
356     ! isset($vars['cmd']) && ! isset($vars['plugin'])) {
357         $get['cmd'] = $post['cmd'] = $vars['cmd'] = 'md5';
358 }
359
360 // cmdもpluginも指定されていない場合は、QUERY_STRINGをページ名かInterWikiNameであるとみなす
361 if (! isset($vars['cmd']) && ! isset($vars['plugin'])) {
362
363         $get['cmd']  = $post['cmd']  = $vars['cmd']  = 'read';
364
365         $arg = preg_replace("#^([^&]*)&.*$#", "$1", $arg);
366         if ($arg == '') $arg = $defaultpage;
367         $arg = rawurldecode($arg);
368         $arg = strip_bracket($arg);
369         $arg = input_filter($arg);
370         $get['page'] = $post['page'] = $vars['page'] = $arg;
371 }
372
373 /////////////////////////////////////////////////
374 // 初期設定($WikiName,$BracketNameなど)
375 // $WikiName = '[A-Z][a-z]+(?:[A-Z][a-z]+)+';
376 // $WikiName = '\b[A-Z][a-z]+(?:[A-Z][a-z]+)+\b';
377 // $WikiName = '(?<![[:alnum:]])(?:[[:upper:]][[:lower:]]+){2,}(?![[:alnum:]])';
378 // $WikiName = '(?<!\w)(?:[A-Z][a-z]+){2,}(?!\w)';
379
380 // BugTrack/304暫定対処
381 $WikiName = '(?:[A-Z][a-z]+){2,}(?!\w)';
382
383 // $BracketName = ':?[^\s\]#&<>":]+:?';
384 $BracketName = '(?!\s):?[^\r\n\t\f\[\]<>#&":]+:?(?<!\s)';
385
386 // InterWiki
387 $InterWikiName = '(\[\[)?((?:(?!\s|:|\]\]).)+):(.+)(?(1)\]\])';
388
389 // 注釈
390 $NotePattern = '/\(\(((?:(?>(?:(?!\(\()(?!\)\)(?:[^\)]|$)).)+)|(?R))*)\)\)/x';
391
392 /////////////////////////////////////////////////
393 // 初期設定(ユーザ定義ルール読み込み)
394 require(DATA_HOME . 'rules.ini.php');
395
396 /////////////////////////////////////////////////
397 // Load HTML Entity pattern
398 // This pattern is created by 'plugin/update_entities.inc.php'
399 require(LIB_DIR . 'html_entities.php');
400
401 /////////////////////////////////////////////////
402 // 初期設定(その他のグローバル変数)
403
404 // 現在時刻
405 $now = format_date(UTIME);
406
407 // 日時置換ルールを$line_rulesに加える
408 if ($usedatetime) $line_rules += $datetime_rules;
409 unset($datetime_rules);
410
411 // フェイスマークを$line_rulesに加える
412 if ($usefacemark) $line_rules += $facemark_rules;
413 unset($facemark_rules);
414
415 // 実体参照パターンおよびシステムで使用するパターンを$line_rulesに加える
416 $line_rules = array_merge(array(
417         '&amp;(#[0-9]+|#x[0-9a-f]+|' . get_html_entity_pattern() . ');' => '&$1;',
418         "\r"          => '<br />' . "\n",       /* 行末にチルダは改行 */
419 ), $line_rules);