]> 4ch.mooo.com Git - test.git/blob - yotsubanome.php
modified: config.php
[test.git] / yotsubanome.php
1 <?php
2 /********************************
3     四葉の芽画像掲示板
4
5 yotsubanome.php*/$ver = "v0.7.8.1.0002 β lot.100404";/*
6
7 これがコアシステムです。 四葉の芽スクリプト
8 このスクリプトはレッツPHP!<http://php.s3.to/>のgazou.phpを改造したものです。
9 配布条件はレッツPHP!に準じます。改造、再配布は自由にどうぞ。
10 このスクリプトに関する質問はレッツPHP!にしないようにお願いします。
11 最新版は<http://4ch.irc.su/+4/script/>で配布しています。
12 ご質問は準備板@四葉の芽<http://4ch.irc.su/+4/test/>までどうぞ。
13
14 --【スパーキー(④ ^ヮ^)】◆FCr.DTJy2k◆◆/ODv/gdbGrBJVTTiLB/IBFugUUM=◆四葉の芽◇ちゃんねる ## 管理者 ##
15 ********************************
16 */
17 define("PIXMICAT_VER", 'yotsubanome '.$ver); // 版本資訊文字
18 /*
19 Pixmicat! : 圖咪貓貼圖版程式
20 http://pixmicat.openfoundry.org/
21 版權所有 © 2005-2009 Pixmicat! Development Team
22
23 版權聲明:
24 此程式是基於レッツPHP!<http://php.s3.to/>的gazou.php、
25 双葉ちゃん<http://www.2chan.net>的futaba.php所改寫之衍生著作程式,屬於自由軟體,
26 以The Clarified Artistic License作為發佈授權條款。
27 您可以遵照The Clarified Artistic License來自由使用、散播、修改或製成衍生著作。
28 更詳細的條款及定義請參考隨附"LICENSE"條款副本。
29
30 發佈這一程式的目的是希望它有用,但沒有任何擔保,甚至沒有適合特定目的而隱含的擔保。
31 關於此程式相關的問題請不要詢問レッツPHP!及双葉ちゃん。
32
33 如果您沒有隨著程式收到一份The Clarified Artistic License副本,
34 請瀏覽http://pixmicat.openfoundry.org/license/以取得一份。
35
36 最低運行需求:
37 PHP 4.3.0 / 27 December 2002
38 GD Version 2.0.28 / 21 July 2004
39
40 建議運行環境:
41 PHP 4.4.9 或更高版本並開啟 GD 和 Zlib 支援,如支援 ImageMagick 建議使用
42 安裝 PHP 編譯快取套件 (如eAccelerator, XCache, APC) 或其他快取套件 (如memcached) 更佳
43 如伺服器支援 SQLite, MySQL, PostgreSQL 等請盡量使用
44
45 設置方法:
46 根目錄的權限請設為777,
47 首先將pixmicat.php執行過一遍,必要的檔案和資料夾權限皆會自動設定,
48 自動設定完成後請刪除或註解起來此檔案底部之init(); // ←■■!程式環境初始化(略)一行,
49 然後再執行一遍pixmicat.php,即完成初始化程序,可以開始使用。
50
51 細部的設定請打開config.php參考註解修改,另有 Wiki (http://pixmicat.wikidot.com/pmcuse:config)
52 說明條目可資參考。
53 */
54
55 error_reporting(E_ALL); // show all errors for debugging
56
57 /* Enviorment Settings */
58 // Do not change unless you renamed the directories
59 define("PHP_DIRECTORY", '../test/'); // yotsubanome "C:\windows\system\"
60
61 /* Include */
62 include_once(PHP_DIRECTORY.'env.php'); // Enviorment Settings
63 include_once(PHP_DIRECTORY.'config.php'); // 引入設定檔
64 include_once(PHP_DIRECTORY.'lib/lib_language.php'); // 引入語系
65 include_once(PHP_DIRECTORY.'lib/lib_common.php'); // 引入共通函式檔案
66 include_once(PHP_DIRECTORY.'lib/lib_fileio.php'); // 引入FileIO
67 include_once(PHP_DIRECTORY.'lib/lib_pio.php'); // 引入PIO
68 include_once(PHP_DIRECTORY.'lib/lib_pms.php'); // 引入PMS
69 include_once(PHP_DIRECTORY.'lib/lib_pte.php'); // 引入PTE外部函式庫
70
71 $PTE = new PTELibrary(TEMPLATE_FILE); // PTE Library
72
73 /* Lockdown [prevents posting] */
74 if(file_exists(PHP_DIRECTORY.'lockdown')){
75         if($_POST['mode'] == 'usrdel' || $_GET['mode'] == 'latest' || $_GET['res']){
76                 echo "";
77         }else{
78                 die('Posting temporarily disabled. Come back later!<br/>&mdash;四葉の芽チーム');
79         }
80 }
81
82 /* 更新記錄檔檔案/輸出討論串 */
83 /* ログの全体更新 */
84 function updatelog($resno=0,$page_num=-1,$single_page=false){
85         global $PIO, $FileIO, $PTE, $PMS, $language, $LIMIT_SENSOR, $style_bar;
86
87         $adminMode = adminAuthenticate('check') && $page_num != -1 && !$single_page; // 前端管理模式
88         $adminFunc = ''; // 前端管理選擇
89         if($adminMode){
90                 $adminFunc = '<select name="func"><option value="delete">'._T('admin_delete').'</option>';
91                 $funclist = array();
92                 $PMS->useModuleMethods('AdminFunction', array('add', &$funclist, null, null)); // "AdminFunction" Hook Point
93                 foreach($funclist as $f) $adminFunc .= '<option value="'.$f[0].'">'.$f[1].'</option>'."\n";
94                 $adminFunc .= '</select>';
95         }
96         $resno = intval($resno); // 編號數字化
97         $page_start = $page_end = 0; // 靜態頁面編號
98         $inner_for_count = 1; // 內部迴圈執行次數
99         $RES_start = $RES_amount = $hiddenReply = $tree_count = $hiddenImage = $hiddenImagP = 0;
100         $hiddenImagRP = 1; // o++
101         $kill_sensor = $old_sensor = false; // 預測系統啟動旗標
102         $arr_kill = $arr_old = array(); // 過舊編號陣列
103         $pte_vals = array('{$THREADFRONT}'=>'','{$THREADREAR}'=>'','{$SELF}'=>PHP_SELF,
104                 '{$DEL_HEAD_TEXT}' => '<input type="hidden" name="mode" value="usrdel" />'._T('del_head'),
105                 '{$DEL_IMG_ONLY_FIELD}' => '<input type="checkbox" name="onlyimgdel" id="onlyimgdel" value="on" />',
106                 '{$DEL_IMG_ONLY_TEXT}' => _T('del_img_only'),
107                 '{$DEL_PASS_TEXT}' => ($adminMode ? $adminFunc : '')._T('del_pass'),
108                 '{$DEL_PASS_FIELD}' => '<input class="inputtext" type="password" name="pwd" size="8" value="" />',
109                 '{$DEL_SUBMIT_BTN}' => '<input type="submit" value="'._T('del_btn').'" />');
110         if(is_file(DATA_DIR.CSV_SS)) $pte_vals += array('{$STYLE_BAR}' => '<br />Style '.$style_bar);
111
112         if($resno) $pte_vals['{$RESTO}'] = $resno;
113
114         if(!$resno){
115                 if($page_num==-1){ // remake模式 (PHP動態輸出多頁份)
116                         $threads = $PIO->fetchThreadList(); // 取得全討論串列表
117                         $PMS->useModuleMethods('ThreadOrder', array($resno,$page_num,$single_page,&$threads)); // "ThreadOrder" Hook Point
118                         $threads_count = count($threads);
119                         $inner_for_count = $threads_count > PAGE_DEF ? PAGE_DEF : $threads_count;
120                         $page_end = ceil($threads_count / PAGE_DEF) - 1; // 頁面編號最後值
121                 }else{ // 討論串分頁模式 (PHP動態輸出一頁份)
122                         $threads_count = $PIO->threadCount(); // 討論串個數
123                         if($page_num < 0 || ($page_num * PAGE_DEF) >= $threads_count) error(_T('page_not_found')); // $page_num超過範圍
124                         $page_start = $page_end = $page_num; // 設定靜態頁面編號
125                         $threads = $PIO->fetchThreadList($page_num * PAGE_DEF, PAGE_DEF); // 取出分頁後的討論串首篇列表
126                         $PMS->useModuleMethods('ThreadOrder', array($resno,$page_num,$single_page,&$threads)); // "ThreadOrder" Hook Point
127                         $inner_for_count = count($threads); // 討論串個數就是迴圈次數
128                 }
129         }else{
130                 if(!$PIO->isThread($resno)){ error(_T('thread_not_found')); }
131                 $AllRes = isset($_GET['page_num']) && $_GET['page_num']=='all'; // 是否使用 ALL 全部輸出
132
133                 // 計算回應分頁範圍
134                 $tree_count = $PIO->postCount($resno) - 1; // 討論串回應個數
135                 if($tree_count && RE_PAGE_DEF){ // 有回應且RE_PAGE_DEF > 0才做分頁動作
136                         if($page_num==='all'){ // show all
137                                 $page_num = 0;
138                                 $RES_start = 1;
139                                 $RES_amount = $tree_count;
140                         }else{
141                                 if($page_num==='RE_PAGE_MAX') $page_num = ceil($tree_count / RE_PAGE_DEF) - 1; // 特殊值:最末頁
142                                 if($page_num < 0) $page_num = 0; // 負數
143                                 if($page_num * RE_PAGE_DEF >= $tree_count) error(_T('page_not_found'));
144                                 $RES_start = $page_num * RE_PAGE_DEF + 1; // 開始
145                                 $RES_amount = RE_PAGE_DEF; // 取幾個
146                         }
147                 }elseif($page_num > 0) error(_T('page_not_found')); // 沒有回應的情況只允許page_num = 0 或負數
148                 else{ $RES_start = 1; $RES_amount = $tree_count; $page_num = 0; } // 輸出全部回應
149
150                 if(USE_RE_CACHE && !$adminMode){ // 檢查快取是否仍可使用 / 頁面有無更動
151                         $cacheETag = md5(($AllRes ? 'all' : $page_num).'-'.$tree_count); // 最新狀態快取用 ETag
152                         $cacheFile = './cache/'.$resno.'-'.($AllRes ? 'all' : $page_num).'.'; // 暫存快取檔位置
153                         $cacheGzipPrefix = extension_loaded('zlib') ? 'compress.zlib://' : ''; // 支援 Zlib Compression Stream 就使用
154                         $cacheControl = isset($_SERVER['HTTP_CACHE_CONTROL']) ? $_SERVER['HTTP_CACHE_CONTROL'] : ''; // 瀏覽器快取控制
155                         if(isset($_SERVER['HTTP_IF_NONE_MATCH']) && $_SERVER['HTTP_IF_NONE_MATCH'] == '"'.$cacheETag.'"'){ // 再度瀏覽而快取無更動
156                                 header('HTTP/1.1 304 Not Modified');
157                                 header('ETag: "'.$cacheETag.'"');
158                                 return;
159                         }elseif(file_exists($cacheFile.$cacheETag) && $cacheControl != 'no-cache'){ // 有(更新的)暫存快取檔存在 (未強制no-cache)
160                                 header('X-Cache: HIT from Pixmicat');
161                                 header('ETag: "'.$cacheETag.'"');
162                                 header('Connection: close');
163                                 readfile($cacheGzipPrefix.$cacheFile.$cacheETag); return;
164                         }else{
165                                 header('X-Cache: MISS from Pixmicat');
166                         }
167                 }
168         }
169
170         // 預測過舊文章和將被刪除檔案
171         if(PIOSensor::check('predict', $LIMIT_SENSOR)){ // 是否需要預測
172                 $old_sensor = true; // 標記打開
173                 $arr_old = array_flip(PIOSensor::listee('predict', $LIMIT_SENSOR)); // 過舊文章陣列
174         }
175         $tmp_total_size = total_size(); // 目前附加圖檔使用量
176         $tmp_STORAGE_MAX = STORAGE_MAX * (($tmp_total_size >= STORAGE_MAX) ? 1 : 0.96); // 預估上限值
177         if(STORAGE_LIMIT && STORAGE_MAX > 0 && ($tmp_total_size >= $tmp_STORAGE_MAX)){
178                 $kill_sensor = true; // 標記打開
179                 $arr_kill = $PIO->delOldAttachments($tmp_total_size, $tmp_STORAGE_MAX); // 過舊附檔陣列
180         }
181
182         $PMS->useModuleMethods('ThreadFront', array(&$pte_vals['{$THREADFRONT}'], $resno)); // "ThreadFront" Hook Point
183         $PMS->useModuleMethods('ThreadRear', array(&$pte_vals['{$THREADREAR}'], $resno)); // "ThreadRear" Hook Point
184
185         // 生成靜態頁面一頁份內容
186         for($page = $page_start; $page <= $page_end; $page++){
187                 $dat = ''; $pte_vals['{$THREADS}'] = '';
188                 head($dat, $resno);
189                 form($dat, $resno);
190                 // 輸出討論串內容
191                 for($i = 0; $i < $inner_for_count; $i++){
192                         // 取出討論串編號
193                         if($resno) $tID = $resno; // 單討論串輸出 (回應模式)
194                         else{
195                                 if($page_num == -1 && ($page * PAGE_DEF + $i) >= $threads_count) break; // remake 超出索引代表已全部完成
196                                 $tID = ($page_start==$page_end) ? $threads[$i] : $threads[$page * PAGE_DEF + $i]; // 一頁內容 (一般模式) / 多頁內容 (remake模式)
197                                 $tree_count = $PIO->postCount($tID) - 1; // 討論串回應個數
198                                 $RES_start = $tree_count - RE_DEF + 1; if($RES_start < 1) $RES_start = 1; // 開始
199                                 $RES_amount = RE_DEF; // 取幾個
200                                 $hiddenReply = $RES_start - 1; // 被隱藏回應數
201                         }
202
203                         // $RES_start, $RES_amount 拿去算新討論串結構 (分頁後, 部分回應隱藏)
204                         $tree = $PIO->fetchPostList($tID); // 整個討論串樹狀結構
205                         $tree_cut = array_slice($tree, $RES_start, $RES_amount); array_unshift($tree_cut, $tID); // 取出特定範圍回應
206                         $posts = $PIO->fetchPosts($tree_cut); // 取得文章架構內容
207                         $posts_img = $PIO->fetchPosts($tree); // o++
208                         $pte_vals['{$THREADS}'] .= arrangeThread($PTE, $tree, $tree_cut, $posts, $hiddenReply, $resno, $arr_kill, $arr_old, $kill_sensor, $old_sensor, true, $adminMode, $hiddenImage, $hiddenImagP, $hiddenImagRP, $posts_img); // 交給這個函式去搞討論串印出
209                 }
210                 $pte_vals['{$PAGENAV}'] = '<div id="page_switch">';
211
212                 // 換頁判斷
213                 $prev = ($resno ? $page_num : $page) - 1;
214                 $next = ($resno ? $page_num : $page) + 1;
215                 if($resno){ // 回應分頁
216                         if(RE_PAGE_DEF > 0){ // 回應分頁開啟
217                                 $pte_vals['{$PAGENAV}'] .= '<table class="pages" border="1"><tr><td style="white-space: nowrap;">';
218                                 $pte_vals['{$PAGENAV}'] .= ($prev >= 0) ? '<a href="'.PHP_SELF.'?res='.$resno.'&amp;page_num='.$prev.'">'._T('prev_page').'</a>' : _T('first_page');
219                                 $pte_vals['{$PAGENAV}'] .= "</td><td>";
220                                 if($tree_count==0) $pte_vals['{$PAGENAV}'] .= '[<b>0</b>] '; // 無回應
221                                 else{
222                                         for($i = 0, $len = $tree_count / RE_PAGE_DEF; $i < $len; $i++){
223                                                 if(!$AllRes && $page_num==$i) $pte_vals['{$PAGENAV}'] .= '[<b>'.$i.'</b>] ';
224                                                 else $pte_vals['{$PAGENAV}'] .= '[<a href="'.PHP_SELF.'?res='.$resno.'&amp;page_num='.$i.'">'.$i.'</a>] ';
225                                         }
226                                         $pte_vals['{$PAGENAV}'] .= $AllRes ? '[<b>'._T('all_pages').'</b>] ' : ($tree_count > RE_PAGE_DEF ? '[<a href="'.PHP_SELF.'?res='.$resno.'&amp;page_num=all">'._T('all_pages').'</a>] ' : '');
227                                 }
228                                 $pte_vals['{$PAGENAV}'] .= '</td><td style="white-space: nowrap;">';
229                                 $pte_vals['{$PAGENAV}'] .= (!$AllRes && $tree_count > $next * RE_PAGE_DEF) ? '<a href="'.PHP_SELF.'?res='.$resno.'&amp;page_num='.$next.'">'._T('next_page').'</a>' : _T('last_page');
230                                 $pte_vals['{$PAGENAV}'] .= '</td></tr></table>'."\n";
231                         }
232                 }else{ // 一般分頁
233                         $pte_vals['{$PAGENAV}'] .= '<table class="pages" border="1"><tr>';
234                         if($prev >= 0){
235                                 if(!$adminMode && $prev==0) $pte_vals['{$PAGENAV}'] .= '<td><form action="'.PHP_SELF2.'" method="get">';
236                                 else{
237                                         if($adminMode || (STATIC_HTML_UNTIL != -1) && ($prev > STATIC_HTML_UNTIL)) $pte_vals['{$PAGENAV}'] .= '<td><form action="'.PHP_SELF.'?page_num='.$prev.'" method="post">';
238                                         else $pte_vals['{$PAGENAV}'] .= '<td><form action="'.$prev.PHP_EXT.'" method="get">';
239                                 }
240                                 $pte_vals['{$PAGENAV}'] .= '<div><input type="submit" value="'._T('prev_page').'" /></div></form></td>';
241                         }else $pte_vals['{$PAGENAV}'] .= '<td style="white-space: nowrap;">'._T('first_page').'</td>';
242                         $pte_vals['{$PAGENAV}'] .= '<td>';
243                         for($i = 0, $len = $threads_count / PAGE_DEF; $i < $len; $i++){
244                                 if($page==$i) $pte_vals['{$PAGENAV}'] .= "[<b>".$i."</b>] ";
245                                 else{
246                                         $pageNext = ($i==$next) ? ' rel="next"' : '';
247                                         if(!$adminMode && $i==0) $pte_vals['{$PAGENAV}'] .= '[<a href="'.PHP_SELF2.'?">0</a>] ';
248                                         elseif($adminMode || (STATIC_HTML_UNTIL != -1 && $i > STATIC_HTML_UNTIL)) $pte_vals['{$PAGENAV}'] .= '[<a href="'.PHP_SELF.'?page_num='.$i.'"'.$pageNext.'>'.$i.'</a>] ';
249                                         else $pte_vals['{$PAGENAV}'] .= '[<a href="'.$i.PHP_EXT.'?"'.$pageNext.'>'.$i.'</a>] ';
250                                 }
251                         }
252                         $pte_vals['{$PAGENAV}'] .= '</td>';
253                         if($threads_count > $next * PAGE_DEF){
254                                 if($adminMode || (STATIC_HTML_UNTIL != -1) && ($next > STATIC_HTML_UNTIL)) $pte_vals['{$PAGENAV}'] .= '<td><form action="'.PHP_SELF.'?page_num='.$next.'" method="post">';
255                                 else $pte_vals['{$PAGENAV}'] .= '<td><form action="'.$next.PHP_EXT.'" method="get">';
256                                 $pte_vals['{$PAGENAV}'] .= '<div><input type="submit" value="'._T('next_page').'" /></div></form></td>';
257                         }else $pte_vals['{$PAGENAV}'] .= '<td style="white-space: nowrap;">'._T('last_page').'</td>';
258                         $pte_vals['{$PAGENAV}'] .= '</tr></table>'."\n";
259                 }
260                 $pte_vals['{$PAGENAV}'] .= '<br style="clear: left;" />
261 </div>';
262                 $dat .= $PTE->ParseBlock('MAIN', $pte_vals);
263                 foot($dat);
264
265                 // 存檔 / 輸出
266                 if($single_page || ($page_num == -1 && !$resno)){ // 靜態快取頁面生成
267                         if($page==0) $logfilename = PHP_SELF2;
268                         else $logfilename = $page.PHP_EXT;
269                         $fp = fopen($logfilename, 'w');
270                         stream_set_write_buffer($fp, 0);
271                         fwrite($fp, $dat);
272                         fclose($fp);
273                         @chmod($logfilename, 0666);
274                         if(STATIC_HTML_UNTIL != -1 && STATIC_HTML_UNTIL==$page) break; // 頁面數目限制
275                 }else{ // PHP 輸出 (回應模式/一般動態輸出)
276                         if(USE_RE_CACHE && !$adminMode && $resno && !isset($_GET['upseries'])){ // 更新快取
277                                 if($oldCaches = glob($cacheFile.'*')){
278                                         foreach($oldCaches as $o) unlink($o); // 刪除舊快取
279                                 }
280                                 $fp = fopen($cacheGzipPrefix.$cacheFile.$cacheETag, 'w');
281                                 fwrite($fp, $dat);
282                                 fclose($fp);
283                                 @chmod($cacheFile.$cacheETag, 0666);
284                                 header('ETag: "'.$cacheETag.'"');
285                                 header('Connection: close');
286                         }
287                         echo $dat;
288                         break;
289                 }
290         }
291 }
292
293 /* 輸出討論串架構 */
294 function arrangeThread($PTE, $tree, $tree_cut, $posts, $hiddenReply, $resno=0, $arr_kill, $arr_old, $kill_sensor, $old_sensor, $showquotelink=true, $adminMode=false, $hiddenImage, $hiddenImagP, $hiddenImagRP, $posts_img){
295         global $PIO, $FileIO, $PMS, $language;
296
297         $thdat = ''; // 討論串輸出碼
298         $posts_count = count($posts); // 迴圈次數
299         if($hiddenReply) $posts_img_count = count($posts_img); // o++
300         if(gettype($tree_cut) == 'array') $tree_cut = array_flip($tree_cut); // array_flip + isset 搜尋法
301         if(gettype($tree) == 'array') $tree_clone = array_flip($tree);
302         if($hiddenReply){ // o++
303                 // $o = 0 (首篇), $o = 1~n (回應) //++++----
304                 for($o = 0; $o < $posts_img_count; $o++){ // o++
305                         extract($posts_img[$o]); // o++
306                         if($ext && $FileIO->imageExists($tim.$ext)) $hiddenImage++; // o++ all images in thread
307                 }
308                 // $oo = 0 (首篇), $oo = 1~n (回應) //++++----
309                 for($oo = 0; $oo < $posts_count; $oo++){ // o++
310                         extract($posts[$oo]); // o++
311                         if($oo) if($ext && $FileIO->imageExists($tim.$ext)) $hiddenImagP++; // o++ reply images in index
312                         elseif(!$ext && !$FileIO->imageExists($tim.$ext)) $hiddenImagRP = 0; // o++ opening thread image in index
313                 }
314
315                 // A little math is done to get the total number of omitted images
316                 $hiddenImgs = ($hiddenImage - $hiddenImagP) - $hiddenImagRP; // o++
317         }
318
319         // Actually beginning the REAL post extraction
320         // $i = 0 (首篇), $i = 1~n (回應)
321         for($i = 0; $i < $posts_count; $i++){
322                 $imgsrc = $img_thumb = $imgwh_bar = $imgfn_bar = '';
323                 $IMG_BAR = $REPLYBTN = $QUOTEBTN = $WARN_OLD = $WARN_BEKILL = $WARN_ENDREPLY = $WARN_HIDEPOST = '';
324                 extract($posts[$i]); // 取出討論串文章內容設定變數
325
326                 if($no == 0) break; // Do not display post 0
327
328                 // 設定欄位值
329                 $name = str_replace('&'.TRIP_KEY, '&amp;'.TRIP_KEY, $name); // 避免 &#xxxx; 後面被視為 Trip 留下 & 造成解析錯誤
330                 if(CLEAR_SAGE) $email = preg_replace('/^sage( *)/i', '', trim($email)); // 清除E-mail中的「sage」關鍵字
331                 // Tripcode indicator // t++ //++++----
332                 // This may be a blob of code but it apparently works >< please help me here
333                 $tripkeycount = substr_count($name, TRIP_KEY);
334                 if(ALLOW_NONAME==2){ // 強制砍名
335                         if($tripkeycount==1) $name = preg_match('/(\\'.TRIP_KEY.'.{10})/', $name, $matches) ? '<span class="postertrip">'.$matches[1].'</span>' : '';
336                         if($tripkeycount==2) $name = preg_match('/(\\'.TRIP_KEY.TRIP_KEY.'.{16})/', $name, $matches) ? '<span class="postertrip">'.$matches[1].'</span>' : '';
337                         if($tripkeycount==3) $name = preg_match('/(\\'.TRIP_KEY.'.{32})/', $name, $matches) ? '<span class="postertrip">'.$matches[1].'</span>' : '';
338                         if($email) $now = "<a href=\"mailto:$email\" class=\"linkmail\">$now</a>";
339                 }else{
340                         if($tripkeycount==1) $name = preg_replace('/(\\'.TRIP_KEY.'.{10})/', '<span class="postertrip">$1</span>', $name); // Trip取消粗體
341                         if($tripkeycount==2) $name = preg_replace('/(\\'.TRIP_KEY.TRIP_KEY.'.{16})/', '<span class="postertrip">$1</span>', $name); // Trip取消粗體
342                         if($tripkeycount==3) $name = preg_replace('/(\\'.TRIP_KEY.'.{32})/', '<span class="postertrip">$1</span>', $name); // Trip取消粗體
343                         if($email) $name = "<a href=\"mailto:$email\" class=\"linkmail\">$name</a>";
344                 }
345
346                 if(AUTO_LINK) $com = auto_link($com);
347                 $com = quoteLight($com);
348                 $com = quoteLight2($com);
349                 if(!$resno && MAX_LINES) list($com, $abbreviated) = abbreviate($com, MAX_LINES);
350                 if(isset($abbreviated) && $abbreviated && MAX_LINES) $com .= '<br /><span class="abbrev">'._T('long_comment').'<a href="'.PHP_SELF.'?res='.$tree[0].'#r'.$no.'">'._T('long_here').'</a>'._T('long_see').'</span>';
351
352                 if(USE_QUOTESYSTEM && $i){ // 啟用引用瀏覽系統
353                         if(preg_match_all('/((?:&gt;|>)+)(?:No\.)?(\d+)/i', $com, $matches, PREG_SET_ORDER)){ // 找尋>>No.xxx
354                                 $matches_unique = array();
355                                 foreach($matches as $val){ if(!in_array($val, $matches_unique)) array_push($matches_unique, $val); }
356                                 foreach($matches_unique as $val){
357                                         if(isset($tree_clone[$val[2]])){
358                                                 $r_page = $tree_clone[$val[2]]; // 引用回應在整體討論串中的位置
359                                                 // 在此頁顯示區間內,輸出錨點即可
360                                                 if(isset($tree_cut[$val[2]])) $com = str_replace($val[0], '<span class="reflink"><a class="qlink" href="#r'.$val[2].'" onclick="replyhl('.$val[2].');">'.$val[0].'</a></span>', $com);
361                                                 // 非此頁顯示區間,輸出完整頁面位置
362                                                 else $com = str_replace($val[0], '<span class="reflink"><a class="qlink" href="'.PHP_SELF.'?res='.$tree[0].(RE_PAGE_DEF ? '&amp;page_num='.floor(($r_page - 1) / RE_PAGE_DEF) : '').'#r'.$val[2].'">'.$val[0].'</a></span>', $com);
363                                         }
364                                 }
365                         }
366                 }
367
368                 // 設定附加圖檔顯示
369                 if($ext && !$FileIO->imageExists($tim.$ext)){
370                         $imgsrc = '<img src="'.ICON_DIR.'filedeleted.gif" class="img" alt="'.$imgsize.'" title="'.$imgsize.'" />';
371                 }elseif($ext && $FileIO->imageExists($tim.$ext)){
372                         $imageURL = $FileIO->getImageURL($tim.$ext); // image URL
373                         $thumbURL = $FileIO->getImageURL($tim.'s.jpg'); // thumb URL
374
375                         //----$imgsrc = '<a href="'.$imageURL.'" rel="_blank"><img src="'.ICON_DIR.'nothumb.gif" class="img" alt="'.$imgsize.'" title="'.$imgsize.'" /></a>'; // 預設顯示圖樣式 (無預覽圖時)
376                         $imgsrc = '<a href="'.$imageURL.'" rel="_blank"><span class="tn_reply" title="'.$imgsize.'">'._T('nothumb').'</span></a>'; // 預設顯示圖樣式 (無預覽圖時)
377                         if($tw && $th){
378                                 if($FileIO->imageExists($tim.'s.jpg')){ // 有預覽圖
379                                         $img_thumb = '<br /><small><span class="thumbnailmsg">'._T('img_sample').'</span></small>';
380                                         $imgsrc = '<a href="'.$imageURL.'" rel="_blank"><img src="'.$thumbURL.'" style="width: '.$tw.'px; height: '.$th.'px;" class="img" alt="'.$imgsize.'" title="'.$imgsize.'" /></a>';
381                                 }elseif($ext=='.swf') $imgsrc = ''; // swf檔案不需預覽圖
382                         }
383                         if(SHOW_IMGWH) $imgwh_bar = ', '.$imgw.'x'.$imgh; // 顯示附加圖檔之原檔長寬尺寸
384                         if(SHOW_FILENAME){
385                                 $longname = $shortname = '';
386                                 if($filename){
387                                         $longname = $filename.$ext;
388                                         if(strlen($filename) > 40) $shortname = substr($filename, 0, 40).'(....)'.$ext;
389                                         else $shortname = $longname;
390                                 }
391                         }
392                         if($longname) $imgfn_bar = ', <span title="'.$longname.'">'.$shortname.'</span>';
393                         $IMG_BAR = '<span class="filesize">'._T('img_filename').'<a href="'.$imageURL.'" rel="_blank">'.$tim.$ext.'</a>-('.$imgsize.$imgwh_bar.$imgfn_bar.')</span>'.$img_thumb;
394                 }
395
396                 // 設定回應 / 引用連結
397                 if($resno){ // 回應模式
398                         if($showquotelink) $QUOTEBTN = '<span class="reflink"><a href="'.PHP_SELF.'?res='.$tree[0].'#r'.$no.'" onclick="return replyhl('.$no.');">No.</a><a href="javascript:quote('.$no.');" class="qlink">'.$no.'</a></span>';
399                         else $QUOTEBTN = '<span class="reflink"><a href="'.PHP_SELF.'?res='.$tree[0].'#r'.$no.'" onclick="return replyhl('.$no.');">No.</a><a href="'.PHP_SELF.'?res='.$tree.'&amp;page_num=all#r'.$no.'" class="qlink">'.$no.'</a></span>';
400                 }else{
401                         if(!$i) $REPLYBTN = '[<a href="'.PHP_SELF.'?res='.$no.'">'._T('reply_btn').'</a>]'; // 首篇
402                         $QUOTEBTN = '<span class="reflink"><a href="'.PHP_SELF.'?res='.$tree[0].'#r'.$no.'">No.</a><a href="'.PHP_SELF.'?res='.$tree[0].'#q'.$no.'" class="qlink">'.$no.'</a></span>';
403                 }
404                 if($adminMode){ // 前端管理模式
405                         $modFunc = '';
406                         $PMS->useModuleMethods('AdminList', array(&$modFunc, $posts[$i], $resto)); // "AdminList" Hook Point
407                         $QUOTEBTN .= $modFunc;
408                 }
409
410                 // 設定討論串屬性
411                 if(STORAGE_LIMIT && $kill_sensor) if(isset($arr_kill[$no])) $WARN_BEKILL = '<span class="warn_txt">'._T('warn_sizelimit').'</span><br />'."\n"; // 預測刪除過大檔
412                 if(!$i){ // 首篇 Only
413                         if($old_sensor) if(isset($arr_old[$no])) $WARN_OLD = '<span class="oldpost">'._T('warn_oldthread').'</span><br />'."\n"; // 快要被刪除的提示
414                         $flgh = $PIO->getPostStatus($status);
415                         if($flgh->exists('TS')) $WARN_ENDREPLY = '<span class="warn_txt">'._T('warn_locked').'</span><br />'."\n"; // 被標記為禁止回應
416                         if($hiddenReply) $WARN_HIDEPOST = '<span class="omittedposts">'._res($hiddenReply, $hiddenImgs)._T('notice_omitted_reply').'</span><br />'."\n"; // 有隱藏的回應
417                 }
418
419                 // 對類別標籤作自動連結
420                 if(USE_CATEGORY){
421                         $ary_category = explode(',', str_replace('&#44;', ',', $category)); $ary_category = array_map('trim', $ary_category);
422                         $ary_category_count = count($ary_category);
423                         $ary_category2 = array();
424                         for($p = 0; $p < $ary_category_count; $p++){
425                                 if($c = $ary_category[$p]) $ary_category2[] = '<a href="'.PHP_SELF.'?mode=category&amp;c='.urlencode($c).'">'.$c.'</a>';
426                         }
427                         $category = implode(', ', $ary_category2);
428                 }else $category = '';
429
430                 // 最終輸出處
431                 if($i){ // 回應
432                         $arrLabels = array('{$NO}'=>$no, '{$SUB}'=>$sub, '{$NAME}'=>$name, '{$NOW}'=>$now, '{$COM}'=>$com, '{$CATEGORY}'=>$category, '{$QUOTEBTN}'=>$QUOTEBTN, '{$IMG_BAR}'=>$IMG_BAR, '{$IMG_SRC}'=>$imgsrc, '{$WARN_BEKILL}'=>$WARN_BEKILL, '{$QUOTEBTN}'=>$QUOTEBTN, '{$NAME_TEXT}'=>_T('post_name'), '{$CATEGORY_TEXT}'=>_T('post_category'), '{$SELF}'=>PHP_SELF);
433                         if($resno) $arrLabels['{$RESTO}']=$resno;
434                         $PMS->useModuleMethods('ThreadReply', array(&$arrLabels, $posts[$i], $resno)); // "ThreadReply" Hook Point
435                         $thdat .= $PTE->ParseBlock('REPLY',$arrLabels);
436                 }else{ // 首篇
437                         $arrLabels = array('{$NO}'=>$no, '{$SUB}'=>$sub, '{$NAME}'=>$name, '{$NOW}'=>$now, '{$COM}'=>$com, '{$CATEGORY}'=>$category, '{$QUOTEBTN}'=>$QUOTEBTN, '{$REPLYBTN}'=>$REPLYBTN, '{$IMG_BAR}'=>$IMG_BAR, '{$IMG_SRC}'=>$imgsrc, '{$WARN_OLD}'=>$WARN_OLD, '{$WARN_BEKILL}'=>$WARN_BEKILL, '{$WARN_ENDREPLY}'=>$WARN_ENDREPLY, '{$WARN_HIDEPOST}'=>$WARN_HIDEPOST, '{$NAME_TEXT}'=>_T('post_name'), '{$CATEGORY_TEXT}'=>_T('post_category'), '{$SELF}'=>PHP_SELF);
438                         if($resno) $arrLabels['{$RESTO}']=$resno;
439                         $PMS->useModuleMethods('ThreadPost', array(&$arrLabels, $posts[$i], $resno)); // "ThreadPost" Hook Point
440                         $thdat .= $PTE->ParseBlock('THREAD',$arrLabels);
441                 }
442         }
443         $thdat .= $PTE->ParseBlock('THREADSEPARATE',($resno)?array('{$RESTO}'=>$resno):array());
444         return $thdat;
445 }
446
447 /* 寫入記錄檔 */
448 /* 記事書き込み */
449 function regist(){
450         global $PIO, $FileIO, $PMS, $language, $BAD_STRING, $BAD_FILEMD5, $BAD_IPADDR, $LIMIT_SENSOR;
451         $dest = ''; $mes = ''; $up_incomplete = 0; $is_admin = false;
452         $path = realpath('.').DIRECTORY_SEPARATOR; // 此目錄的絕對位置
453
454         if($_SERVER['REQUEST_METHOD'] != 'POST') error(_T('regist_notpost')); // 非正規POST方式
455         // 欄位陷阱
456         $FTname = isset($_POST['name']) ? $_POST['name'] : '';
457         $FTemail = isset($_POST['email']) ? $_POST['email'] : '';
458         $FTsub = isset($_POST['sub']) ? $_POST['sub'] : '';
459         $FTcom = isset($_POST['com']) ? $_POST['com'] : '';
460         $FTreply = isset($_POST['reply']) ? $_POST['reply'] : '';
461         if($FTname != 'spammer' || $FTemail != 'foo@foo.bar' || $FTsub != 'DO NOT FIX THIS' || $FTcom != 'EID OG SMAPS' || $FTreply != '') error(_T('regist_nospam'));
462
463         $name = isset($_POST[FT_NAME]) ? CleanStr($_POST[FT_NAME]) : '';
464         $email = isset($_POST[FT_EMAIL]) ? CleanStr($_POST[FT_EMAIL]) : '';
465         $sub = isset($_POST[FT_SUBJECT]) ? CleanStr($_POST[FT_SUBJECT]) : '';
466         $com = isset($_POST[FT_COMMENT]) ? $_POST[FT_COMMENT] : '';
467         $pwd = isset($_POST['pwd']) ? $_POST['pwd'] : '';
468         $category = isset($_POST['category']) ? CleanStr($_POST['category']) : '';
469         $resto = isset($_POST['resto']) ? intval($_POST['resto']) : 0;
470         $upfile = isset($_FILES['upfile']['tmp_name']) ? $_FILES['upfile']['tmp_name'] : '';
471         $upfile_path = isset($_POST['upfile_path']) ? $_POST['upfile_path'] : '';
472         $upfile_name = isset($_FILES['upfile']['name']) ? $_FILES['upfile']['name'] : false;
473         $ext_ = ereg_replace("^.*\\.", ".", $upfile_name); // filename extention
474         $basename = basename($upfile_name, $ext_); // filename
475         $filename = isset($basename) ? CleanStr($basename) : ''; // cleaned filename
476         $upfile_status = isset($_FILES['upfile']['error']) ? $_FILES['upfile']['error'] : 4;
477         $pwdc = isset($_COOKIE['pwdc']) ? $_COOKIE['pwdc'] : '';
478         $ip = getREMOTE_ADDR(); $host = gethostbyaddr($ip);
479
480         $PMS->useModuleMethods('RegistBegin', array(&$name, &$email, &$sub, &$com, array('file'=>&$upfile, 'path'=>&$upfile_path, 'name'=>&$upfile_name, 'status'=>&$upfile_status), array('ip'=>$ip, 'host'=>$host), $resto)); // "RegistBegin" Hook Point
481         // 封鎖:IP/Hostname/DNSBL 檢查機能
482         $baninfo = '';
483         if(BanIPHostDNSBLCheck($ip, $host, $baninfo)) error(_T('regist_ipfiltered', $baninfo));
484         // 封鎖:限制出現之文字
485         foreach($BAD_STRING as $value){
486                 if(strpos($com, $value)!==false || strpos($sub, $value)!==false || strpos($name, $value)!==false || strpos($email, $value)!==false){
487                         error(_T('regist_wordfiltered'));
488                 }
489         }
490
491         // 檢查是否輸入櫻花日文假名
492         foreach(array($name, $email, $sub, $com) as $anti) if(anti_sakura($anti)) error(_T('regist_sakuradetected'));
493
494         // 時間
495         $time = time();
496         $tim = $time.substr(microtime(),2,3);
497         $tome = time()+0*60*60;
498
499         // 判斷上傳狀態
500         switch($upfile_status){
501                 case 1:
502                         error(_T('regist_upload_exceedphp'));
503                         break;
504                 case 2:
505                         error(_T('regist_upload_exceedcustom'));
506                         break;
507                 case 3:
508                         error(_T('regist_upload_incompelete'));
509                         break;
510                 case 6:
511                         error(_T('regist_upload_direrror'));
512                         break;
513                 case 4: // 無上傳
514                         if(NO_TEXTONLY == 2){
515                                 if(!$resto) error(_T('regist_upload_noimg'));
516                         }elseif(NO_TEXTONLY == 1){
517                                 if(!$resto && !isset($_POST['noimg'])) error(_T('regist_upload_noimg'));
518                         }
519                         break;
520                 case 0: // 上傳正常
521                 default:
522         }
523
524         // 如果有上傳檔案則處理附加圖檔
525         if($upfile && (@is_uploaded_file($upfile) || @is_file($upfile))){
526                 // 一‧先儲存檔案
527                 $dest = $path.TEMP_DIR.$tim.'.temp';
528                 @move_uploaded_file($upfile, $dest) or @copy($upfile, $dest);
529                 @chmod($dest, 0666);
530                 if(!is_file($dest)) error(_T('regist_upload_filenotfound'), $dest);
531
532                 // 二‧判斷上傳附加圖檔途中是否有中斷
533                 $upsizeTTL = $_SERVER['CONTENT_LENGTH'];
534                 if(isset($_FILES['upfile'])){ // 有傳輸資料才需要計算,避免作白工
535                         $upsizeHDR = 0;
536                         // 檔案路徑:IE附完整路徑,故得從隱藏表單取得
537                         $tmp_upfile_path = $upfile_name;
538                         if($upfile_path) $tmp_upfile_path = get_magic_quotes_gpc() ? stripslashes($upfile_path) : $upfile_path;
539                         list(,$boundary) = explode('=', $_SERVER['CONTENT_TYPE']);
540                         foreach($_POST as $header => $value){ // 表單欄位傳送資料
541                                 $upsizeHDR += strlen('--'.$boundary."\r\n");
542                                 $upsizeHDR += strlen('Content-Disposition: form-data; name="'.$header.'"'."\r\n\r\n".(get_magic_quotes_gpc()?stripslashes($value):$value)."\r\n");
543                         }
544                         // 附加圖檔欄位傳送資料
545                         $upsizeHDR += strlen('--'.$boundary."\r\n");
546                         $upsizeHDR += strlen('Content-Disposition: form-data; name="upfile"; filename="'.$tmp_upfile_path."\"\r\n".'Content-Type: '.$_FILES['upfile']['type']."\r\n\r\n");
547                         $upsizeHDR += strlen("\r\n--".$boundary."--\r\n");
548                         $upsizeHDR += $_FILES['upfile']['size']; // 傳送附加圖檔資料量
549                         // 上傳位元組差值超過 HTTP_UPLOAD_DIFF:上傳附加圖檔不完全
550                         if(($upsizeTTL - $upsizeHDR) > HTTP_UPLOAD_DIFF){
551                                 if(KILL_INCOMPLETE_UPLOAD){
552                                         unlink($dest);
553                                         die(_T('regist_upload_killincomp')); // 給瀏覽器的提示,假如使用者還看的到的話才不會納悶
554                                 }else $up_incomplete = 1;
555                         }
556                 }
557
558                 // 三‧檢查是否為可接受的檔案
559                 $size = @getimagesize($dest);
560                 if(!is_array($size)) error(_T('regist_upload_notimage'), $dest); // $size不為陣列就不是圖檔
561                 $imgsize = @filesize($dest); // 檔案大小
562                 if(!KB) $imgsize .= ' B'; // Bytes only
563                 else $imgsize = ($imgsize>=1024) ? (int)($imgsize/1024).' KB' : $imgsize.' B'; // KB和B的判別
564                 switch($size[2]){ // 判斷上傳附加圖檔之格式
565                         case 1 : $ext = ".gif"; break;
566                         case 2 : $ext = ".jpg"; break;
567                         case 3 : $ext = ".png"; break;
568                         case 4 : $ext = ".swf"; break;
569                         case 5 : $ext = ".psd"; break;
570                         case 6 : $ext = ".bmp"; break;
571                         case 7 : $ext = ".tiff"; break;
572                         case 8 : $ext = ".tiff"; break;
573                         case 9 : $ext = ".jpc"; break;
574                         case 10 : $ext = ".jp2"; break;
575                         case 11 : $ext = ".jpx"; break;
576                         case 12 : $ext = ".jb2"; break;
577                         case 13 : $ext = ".swf"; break;
578                         case 14 : $ext = ".aiff"; break;
579                         case 15 : $ext = ".wbmp"; break;
580                         case 16 : $ext = ".xbm"; break; // I add more media support (^^,)
581                         default : $ext = ".xxxx"; error(_T('regist_upload_notsupport'), $dest);
582                 }
583                 $allow_exts = explode('|', strtolower(ALLOW_UPLOAD_EXT)); // 接受之附加圖檔副檔名
584                 if(array_search(substr($ext, 1), $allow_exts)===false) error(_T('regist_upload_notsupport'), $dest); // 並無在接受副檔名之列
585                 // 封鎖設定:限制上傳附加圖檔之MD5檢查碼
586                 $md5chksum = md5_file($dest); // 檔案MD5
587                 if(array_search($md5chksum, $BAD_FILEMD5)!==FALSE) error(_T('regist_upload_blocked'), $dest); // 在封鎖設定內則阻擋
588
589                 // 四‧計算附加圖檔圖檔縮圖顯示尺寸 //++++---- <- the comment from pixmicat team is broken here 
590                 $W = $imgW = $size[0];
591                 $H = $imgH = $size[1];
592                 $MAXW = $resto ? MAX_RW : MAX_W;
593                 $MAXH = $resto ? MAX_RH : MAX_H;
594                 if($W > $MAXW || $H > $MAXH){
595                         $W2 = $MAXW / $W;
596                         $H2 = $MAXH / $H;
597                         $key = ($W2 < $H2) ? $W2 : $H2;
598                         $W = ceil($W * $key);
599                         $H = ceil($H * $key);
600                 }
601                 $mes = _T('regist_uploaded', CleanStr($upfile_name));
602         }
603
604         // 檢查表單欄位內容並修整
605         if(strlen($name) > 100) error(_T('regist_nametoolong'), $dest);
606         if(strlen($email) > 100) error(_T('regist_emailtoolong'), $dest);
607         if(strlen($sub) > 100) error(_T('regist_topictoolong'), $dest);
608         if(strlen($resto) > 10) error(_T('regist_longthreadnum'), $dest);
609
610         // E-mail / 標題修整
611         $email = str_replace("\r\n", '', $email); $sub = str_replace("\r\n", '', $sub);
612
613         // Tripcode area--------------------------------------------------------------------------------
614         if($name){
615                 // 名稱修整
616                 $name = str_replace(TRIP_KEY, TRIP_KEY_FAKE, $name); // 防止トリップ偽造
617                 $name = str_replace(CAP_SUFFIX, CAP_SUFFIX_FAKE, $name); // 防止管理員キャップ偽造
618                 $name = str_replace("\r\n", '', $name);
619                 $nameOri = $name; // 名稱
620                 // トリップ
621                 //----if(preg_match('/(.*?)[##](.*)/u', $name, $regs)){ // トリップ(Trip)機能
622                         //----$name = $nameOri = $regs[1]; $cap = strtr($regs[2], array('&amp;'=>'&'));
623                         //----$salt = preg_replace('/[^\.-z]/', '.', substr($cap.'H.', 1, 2));
624                         //----$salt = strtr($salt, ':;<=>?@[\\]^_`', 'ABCDEFGabcdef');
625                         //----$name = $name.TRIP_KEY.substr(crypt($cap, $salt), -10);
626                 if(preg_match('/(.*?)[##](.*)/u', $name, $regs)){ // トリップ(Trip)機能
627                         $name = str_replace("&#", "&%%%%%%", $name); # otherwise HTML numeric entities screw up explode()!
628                         list($name, $trip, $sectrip) = str_replace("&&", "&%%%%%%", explode("#", $name));
629
630                         if($trip != ''){
631                                 if(function_exists("iconv")) $trip = iconv("UTF-8", "SHIFT_JIS//TRANSLIT", $trip); // convert to Windows Japanese #&#65355;&#65345;&#65357;&#65353;
632                                 $salt = strtr(preg_replace('/[^\.-z]/', '.', substr($trip.'H.', 1, 2)), ':;<=>?@[\\]^_`', 'ABCDEFGabcdef');
633                                 $metrip = TRIP_KEY.substr(crypt($trip, $salt), -10);
634                         }else $metrip = '';
635                         if($sectrip != ''){
636                                 if(function_exists("iconv")) $sectrip = iconv("UTF-8", "SHIFT_JIS//TRANSLIT", $sectrip); // convert to Windows Japanese #&#65355;&#65345;&#65357;&#65353;
637                                 $salt = "LOLLOLOLOLOLOLOLOLOLOLOLOLOLOLOLMEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"; # this is ONLY used if the host doesn't have openssl # I don't know a better way to get random data
638                                 if(file_exists(SALTFILE)){ # already generated a key
639                                         $salt = file_get_contents(SALTFILE);
640                                 }else{
641                                         system("openssl rand 448 > '".SALTFILE, $err);
642                                         if($err === 0){
643                                                 if(chmod(SALTFILE,0400)){
644                                                         $salt = file_get_contents(SALTFILE);
645                                                 }else{
646                                                         $donk = IDSEED;
647                                                         $fp = fopen(SALTFILE, "w");
648                                                         fputs($fp, $donk);
649                                                         fclose($fp);
650                                                 }
651                                         }
652                                 }
653                                 $sha = base64_encode(pack("H*", sha1($sectrip.$salt)));
654                                 $sha = substr($sha, 0, 16);
655                                 $metrip .= TRIP_KEY.TRIP_KEY.$sha;
656                         }
657                         // Tripcode filter
658                         //++++if(file_exists(FILTER_DIR)){
659                                 //++++include(FILTER_DIR.'trip.php');
660                         //++++}
661                         //----"</b></font><font class=\"postertrip\">".
662                         $name .= $metrip;
663                 }
664                 if(CAP_ENABLE && preg_match('/(.*?)[##](.*)/u', $email, $aregs)){ // 管理員キャップ(Cap)機能
665                         $acap_name = $nameOri; $acap_pwd = strtr($aregs[2], array('&amp;'=>'&'));
666                         if($acap_name==CAP_NAME && $acap_pwd==CAP_PASS){
667                                 $name = '<span class="admin_cap">'.$name.CAP_SUFFIX.'</span>';
668                                 $is_admin = true;
669                                 $email = $aregs[1]; // 去除 #xx 密碼
670                         }
671                 }
672                 if(!$is_admin){ // 非管理員
673                         $name = str_replace(_T('admin'), '"'._T('admin').'"', $name);
674                         $name = str_replace(_T('deletor'), '"'._T('deletor').'"', $name);
675                 }
676                 $name = str_replace('&'.TRIP_KEY, '&amp;'.TRIP_KEY, $name); // 避免 &#xxxx; 後面被視為 Trip 留下 & 造成解析錯誤
677         }
678         // End of Tripcode area--------------------------------------------------------------------------
679         // 內文修整
680         if((strlen($com) > COMM_MAX) && !$is_admin) error(_T('regist_commenttoolong'), $dest);
681         $com = CleanStr($com, $is_admin); // 引入$is_admin參數是因為當管理員キャップ啟動時,允許管理員依config設定是否使用HTML
682         if(!$com && $upfile_status==4) error(_T('regist_withoutcomment'));
683         $com = str_replace(array("\r\n", "\r"), "\n", $com); $com = ereg_replace("\n(( | )*\n){4,}", "\n", $com);
684         if(!BR_CHECK || substr_count($com,"\n") < BR_CHECK) $com = nl2br($com); // 換行字元用<br />代替
685         $com = str_replace("\n", '', $com); // 若還有\n換行字元則取消換行
686         // 預設的內容
687         if(!$name || ereg("^[ | |]*$", $name)){
688                 if(ALLOW_NONAME) $name = DEFAULT_NONAME;
689                 else error(_T('regist_withoutname'), $dest);
690         }
691         if(!$sub || ereg("^[ | |]*$", $sub)){
692                 if(ALLOW_NOSUB) $sub = DEFAULT_NOTITLE;
693                 else error(_T('regist_withoutsubject'), $dest);
694         }
695         if(!$com || ereg("^[ | |\t]*$", $com)){
696                 if(ALLOW_NOSUB) $com = DEFAULT_NOCOMMENT;
697                 else error(_T('regist_withoutcomment'), $dest);
698         }
699         // 修整標籤樣式
700         if($category && USE_CATEGORY){
701                 $category = explode(',', $category); // 把標籤拆成陣列
702                 $category = ','.implode(',', array_map('trim', $category)).','; // 去空白再合併為單一字串 (左右含,便可以直接以,XX,形式搜尋)
703         }else{ $category = ''; }
704         if($up_incomplete) $com .= '<br /><br /><span class="warn_txt">'._T('notice_incompletefile').'</span>'; // 上傳附加圖檔不完全的提示
705
706         // 密碼和時間的樣式 
707         if($pwd=='') if(ALLOW_NOPASS) error(_T('regist_withoutpassword'), $dest); else $pwd = ($pwdc=='') ? substr(rand(),0,8) : $pwdc;
708         $pass = $pwd ? substr(md5($pwd), 2, 8) : '*'; // 生成真正儲存判斷用的密碼
709         $youbi = array(_T('sun'),_T('mon'),_T('tue'),_T('wed'),_T('thu'),_T('fri'),_T('sat'));
710 //----  $yd = $youbi[gmdate('w', $time+TIME_ZONE*60*60)];
711         $yd = $youbi[date('w', $tome)];
712 //----  $now = gmdate('y/m/d', $time+TIME_ZONE*60*60).'('.(string)$yd.')'.gmdate('H:i', $time+TIME_ZONE*60*60);
713         if(!EN_SEC)
714                 $now = date(DATE_FORMAT, $tome).'('.(string)$yd.')'.date('H:i', $tome);
715                 else $now = date(DATE_FORMAT, $tome).'('.(string)$yd.')'.date('H:i:s', $tome);
716
717 //----  if(DISP_ID){ // 顯示ID
718 //----          if($email && DISP_ID==1) $now .= ' ID:????';
719 //----          else $now .= ' ID:'.substr(crypt(md5(getREMOTE_ADDR().IDSEED.gmdate('Ymd', $time+TIME_ZONE*60*60)),'id'), -8);
720 //----  }
721         if(DISP_ID){ // 顯示ID
722                 if($email&&DISP_ID==1) $now .= " ID:????";
723                 else $now .= " ID:".substr(crypt(md5(getREMOTE_ADDR().IDSEED.date(DATE_FORMAT, $tome)),'id'), -8);
724         }
725
726         // 連續投稿 / 相同附加圖檔檢查
727         $checkcount = 50; // 預設檢查50筆資料
728         $pwdc = substr(md5($pwdc), 2, 8); // Cookies密碼
729         if($PIO->isSuccessivePost($checkcount, $com, $time, $pass, $pwdc, $host, $upfile_name)) error(_T('regist_successivepost'), $dest); // 連續投稿檢查
730         if($dest){ if($PIO->isDuplicateAttachment($checkcount, $md5chksum)) error(_T('regist_duplicatefile'), $dest); } // 相同附加圖檔檢查
731         if($resto) $ThreadExistsBefore = $PIO->isThread($resto);
732
733         // 舊文章刪除處理
734         if(PIOSensor::check('delete', $LIMIT_SENSOR)){
735                 $delarr = PIOSensor::listee('delete', $LIMIT_SENSOR);
736                 if(count($delarr)){
737                         deleteCache($delarr);
738                         $PMS->useModuleMethods('PostOnDeletion', array($delarr, 'recycle')); // "PostOnDeletion" Hook Point
739                         $files = $PIO->removePosts($delarr);
740                         if(count($files)) $FileIO->deleteImage($files);
741                 }
742         }
743
744         // 附加圖檔容量限制功能啟動:刪除過大檔
745         if(STORAGE_LIMIT && STORAGE_MAX > 0){
746                 $tmp_total_size = total_size(); // 取得目前附加圖檔使用量
747                 if($tmp_total_size > STORAGE_MAX){
748                         $files = $PIO->delOldAttachments($tmp_total_size, STORAGE_MAX, false);
749                         $FileIO->deleteImage($files);
750                 }
751         }
752
753         // 判斷欲回應的文章是不是剛剛被刪掉了
754         if($resto){
755                 if($ThreadExistsBefore){ // 欲回應的討論串是否存在
756                         if(!$PIO->isThread($resto)){ // 被回應的討論串存在但已被刪
757                                 // 提前更新資料來源,此筆新增亦不紀錄
758                                 $PIO->dbCommit();
759                                 updatelog();
760                                 error(_T('regist_threaddeleted'), $dest);
761                         }else{ // 檢查是否討論串被設為禁止回應 (順便取出原討論串的貼文時間)
762                                 $post = $PIO->fetchPosts($resto); // [特殊] 取單篇文章內容,但是回傳的$post同樣靠[$i]切換文章!
763                                 list($chkstatus, $chktime) = array($post[0]['status'], $post[0]['tim']);
764                                 $chktime = substr($chktime, 0, -3); // 拿掉微秒 (後面三個字元)
765                                 $flgh = $PIO->getPostStatus($chkstatus);
766                                 if($flgh->exists('TS')) error(_T('regist_threadlocked'), $dest);
767                         }
768                 }else error(_T('thread_not_found'), $dest); // 不存在
769         }
770
771         // 計算某些欄位值
772         $no = $PIO->getLastPostNo('beforeCommit') + 1;
773         isset($ext) ? 0 : $ext = '';
774         isset($imgW) ? 0 : $imgW = 0;
775         isset($imgH) ? 0 : $imgH = 0;
776         isset($imgsize) ? 0 : $imgsize = '';
777         isset($W) ? 0 : $W = 0;
778         isset($H) ? 0 : $H = 0;
779         isset($md5chksum) ? 0 : $md5chksum = '';
780         $age = false;
781         $status = '';
782         if(USE_UPSERIES && stristr($email, 'noko')){
783                 $email = false;
784                 $noko = true;
785         }else $noko = false;
786         if($resto){
787                 if(!stristr($email, 'sage') && ($PIO->postCount($resto) <= MAX_RES || MAX_RES==0)){
788                         if(!MAX_AGE_TIME || (($time - $chktime) < (MAX_AGE_TIME * 60 * 60))) $age = true; // 討論串並無過期,推文
789                 }
790         }
791         $PMS->useModuleMethods('RegistBeforeCommit', array(&$name, &$email, &$sub, &$com, &$category, &$age, $dest, $resto, array($W, $H, $imgW, $imgH), &$status)); // "RegistBeforeCommit" Hook Point
792
793         // 正式寫入儲存
794         $PIO->addPost($no,$resto,$md5chksum,$category,$tim,$ext,$imgW,$imgH,$imgsize,$filename,$W,$H,$pass,$now,$name,$email,$sub,$com,$host,$age,$status);
795         //----$PIO->addPost($no,$now,$name,$email,$sub,$com,$age,$status,$host,$pwd,$ext,$W,$H,$tim,$md5chksum,$imgsize,$filename,$imgW,$imgH,$category,$resto);
796         $PIO->dbCommit();
797         $lastno = $PIO->getLastPostNo('afterCommit'); // 取得此新文章編號
798         $PMS->useModuleMethods('RegistAfterCommit', array($lastno, $resto, $name, $email, $sub, $com)); // "RegistAfterCommit" Hook Point
799
800         // noko in cookie
801         if($noko) $email = 'noko';
802
803         // Cookies儲存:密碼與E-mail部分,期限是一週
804         setcookie('pwdc', $pwd, time()+7*24*3600, '/');
805         setcookie('emailc', $email, time()+7*24*3600, '/');
806         total_size(true); // 刪除舊容量快取
807         if($dest && is_file($dest)){
808                 $destFile = $path.IMG_DIR.$tim.$ext; // 圖檔儲存位置
809                 $thumbFile = $path.THUMB_DIR.$tim.'s.jpg'; // 預覽圖儲存位置
810                 rename($dest, $destFile);
811                 if(USE_THUMB !== 0){ // 生成預覽圖
812                         $thumbType = USE_THUMB; if(USE_THUMB==1){ $thumbType = 'gd'; } // 與舊設定相容
813                         require(PHP_DIRECTORY.'lib/thumb/thumb.'.$thumbType.'.php');
814                         $thObj = new ThumbWrapper($destFile, $imgW, $imgH);
815                         $thObj->setThumbnailConfig($W, $H, THUMB_Q);
816                         $thObj->makeThumbnailtoFile($thumbFile);
817                         @chmod($thumbFile, 0666);
818                         unset($thObj);
819                 }
820                 if($FileIO->uploadImage()){ // 支援上傳圖片至其他伺服器
821                         if(file_exists($destFile)) $FileIO->uploadImage($tim.$ext, $destFile, filesize($destFile));
822                         if(file_exists($thumbFile)) $FileIO->uploadImage($tim.'s.jpg', $thumbFile, filesize($thumbFile));
823                 }
824         }
825         updatelog();
826
827         // 引導使用者至新頁面
828         $RedirURL = PHP_SELF2.'?'.$tim; // 定義儲存資料後轉址目標
829         if(isset($_POST['up_series']) || $noko){ // 勾選連貼機能
830                 if($resto) $RedirURL = PHP_SELF.'?res='.$resto.'&amp;upseries=1'; // 回應後繼續轉回此主題下
831                 else{
832                         $RedirURL = PHP_SELF.'?res='.$lastno.'&amp;upseries=1'; // 新增主題後繼續轉到此主題下
833                 }
834         }
835         $RedirforJS = strtr($RedirURL, array("&amp;"=>"&")); // JavaScript用轉址目標
836
837         echo '<?xml version="1.0" encoding="UTF-8"?>'."\n";
838         echo <<< _REDIR_
839 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
840 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="'.PIXMICAT_LANGUAGE.'">
841 <head>
842 <title></title>
843 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
844 <meta http-equiv="Refresh" content="1;URL=$RedirURL" />
845 <script type="text/javascript">
846 // Redirection (use JS)
847 // <![CDATA[
848 function redir(){
849         location.href = "$RedirforJS";
850 }
851 setTimeout("redir()", 1000);
852 // ]]>
853 </script>
854 </head>
855 <body>
856 <div>
857 _REDIR_;
858 echo _T('regist_redirect',$mes,$RedirURL).'</div>
859 </body>
860 </html>';
861 }
862
863 /* 使用者刪除 */
864 /* ユーザー削除 */
865 function usrdel(){
866         global $PIO, $FileIO, $PMS, $language;
867         // $pwd: 使用者輸入值, $pwdc: Cookie記錄密碼
868         $pwd = isset($_POST['pwd']) ? $_POST['pwd'] : '';
869         $pwdc = isset($_COOKIE['pwdc']) ? $_COOKIE['pwdc'] : '';
870         $onlyimgdel = isset($_POST['onlyimgdel']) ? $_POST['onlyimgdel'] : '';
871         $delno = array();
872         reset($_POST);
873         while($item = each($_POST)){ if($item[1]=='delete' && $item[0] != 'func') array_push($delno, $item[0]); }
874         $haveperm = ($pwd==ADMIN_PASS) || adminAuthenticate('check');
875         if($haveperm && isset($_POST['func'])){ // 前端管理功能
876                 $message = '';
877                 $PMS->useModuleMethods('AdminFunction', array('run', $delno, $_POST['func'], &$message)); // "AdminFunction" Hook Point
878                 if($_POST['func'] != 'delete'){
879                         if(isset($_SERVER['HTTP_REFERER'])){
880                                 header('HTTP/1.1 302 Moved Temporarily');
881                                 header('Location: '.$_SERVER['HTTP_REFERER']);
882                         }
883                         exit(); // 僅執行AdminFunction,終止刪除動作
884                 }
885         }
886         $PMS->useModuleMethods('Authenticate', array($pwd,'userdel',&$haveperm));
887
888         if($pwd=='' && $pwdc!='') $pwd = $pwdc;
889         $pwd_md5 = substr(md5($pwd),2,8);
890         $host = gethostbyaddr(getREMOTE_ADDR());
891         $search_flag = $delflag = false;
892
893         if(!count($delno)) error(_T('del_notchecked'));
894
895         $delposts = array(); // 真正符合刪除條件文章
896         $posts = $PIO->fetchPosts($delno);
897         foreach($posts as $post){
898                 if($pwd_md5==$post['pwd'] || $host==$post['host'] || $haveperm){
899                         $search_flag = true; // 有搜尋到
900                         array_push($delposts, $post['no']);
901                 }
902         }
903         if($search_flag){
904                 if(!$onlyimgdel) $PMS->useModuleMethods('PostOnDeletion', array($delposts, 'frontend')); // "PostOnDeletion" Hook Point
905                 $files = $onlyimgdel ? $PIO->removeAttachments($delposts) : $PIO->removePosts($delposts);
906                 $FileIO->deleteImage($files);
907                 deleteCache($delposts);
908                 total_size(true); // 刪除容量快取
909                 $PIO->dbCommit();
910         }else error(_T('del_wrongpwornotfound'));
911         if(isset($_POST['func']) && $_POST['func'] == 'delete'){ // 前端管理刪除文章返回管理頁面
912                 if(isset($_SERVER['HTTP_REFERER'])){
913                         header('HTTP/1.1 302 Moved Temporarily');
914                         header('Location: '.$_SERVER['HTTP_REFERER']);
915                 }
916                 exit();
917         }
918 }
919
920 /* 管理員密碼認證 */
921 /* パス認証 */
922 function valid(){
923         global $PMS, $language;
924         $pass = isset($_POST['pass']) ? $_POST['pass'] : ''; // 管理者密碼
925         $haveperm = false;
926         $isCheck = adminAuthenticate('check'); // 登入是否正確
927         if(!$isCheck && $pass){
928                 $haveperm = ($pass == ADMIN_PASS);
929                 $PMS->useModuleMethods('Authenticate', array($pass,'admin',&$haveperm));
930                 if($haveperm){ adminAuthenticate('login'); $isCheck = true; }
931                 else error(_T('admin_wrongpassword'));
932         }
933         $dat = '';
934         head($dat);
935         $links = '[<a href="'.PHP_SELF2.'?'.time().'">'._T('return').'</a>] [<a href="'.PHP_SELF.'?mode=remake">'._T('admin_remake').'</a>] [<a href="'.PHP_SELF.'?page_num=0">'._T('admin_frontendmanage').'</a>]';
936         $PMS->useModuleMethods('LinksAboveBar', array(&$links,'admin',$isCheck)); // LinksAboveBar hook point
937         $dat .= '<div id="bannerlink">'.$links.'</div><div id="banner"><div class="passvalid">'._T('admin_top').'</div>
938 </div>
939 <form action="'.PHP_SELF.'" method="post" id="adminform">
940 <div id="admin-check" style="text-align: center;">
941 '; //----class="bar_admin"
942         echo $dat;
943         if(!$isCheck){
944                 echo '<br />
945 <input type="radio" name="admin" value="del" checked="checked" />'._T('admin_manageposts').'
946 <input type="radio" name="admin" value="optimize" />'._T('admin_optimize').'
947 <input type="radio" name="admin" value="check" />'._T('admin_check').'
948 <input type="radio" name="admin" value="repair" />'._T('admin_repair').'
949 <input type="radio" name="admin" value="export" />'._T('admin_export').'
950 <input type="radio" name="admin" value="stylesheets" />'._T('admin_stylesheets').'<p />
951 <input type="hidden" name="mode" value="admin" />
952 <input class="inputtext" type="password" name="pass" size="8" />
953 <input type="submit" value="'._T('admin_verify_btn').'" />
954 </div>
955 </form>';
956                 die("\n</body>\n</html>");
957         }elseif(!isset($_REQUEST['admin'])){
958                 echo '<br />
959 <input type="radio" name="admin" value="del" checked="checked" />'._T('admin_manageposts').'
960 <input type="radio" name="admin" value="optimize" />'._T('admin_optimize').'
961 <input type="radio" name="admin" value="check" />'._T('admin_check').'
962 <input type="radio" name="admin" value="repair" />'._T('admin_repair').'
963 <input type="radio" name="admin" value="export" />'._T('admin_export').'
964 <input type="radio" name="admin" value="stylesheets" />'._T('admin_stylesheets').'
965 <input type="radio" name="admin" value="logout" />'._T('admin_logout').'<p />
966 <input type="hidden" name="mode" value="admin" />
967 <input type="submit" value="'._T('admin_submit_btn').'" />
968 </div>
969 </form>';
970                 die("\n</body>\n</html>");
971         }
972 }
973
974 /* 管理文章模式 */
975 /* 管理者削除 */
976 function admindel(){
977         global $PIO, $FileIO, $PMS, $language;
978
979         $pass = isset($_POST['pass']) ? $_POST['pass'] : ''; // 管理者密碼
980         $page = isset($_REQUEST['page']) ? $_REQUEST['page'] : 0; // 切換頁數
981         $onlyimgdel = isset($_POST['onlyimgdel']) ? $_POST['onlyimgdel'] : ''; // 只刪圖
982         $modFunc = '';
983         $delno = $thsno = array();
984         $delflag = isset($_POST['func']) && ($_POST['func'] == 'delete') && isset($_POST['clist']); // 是否有「刪除」勾選
985         $thsflag = isset($_POST['stop']); // 是否有「停止」勾選
986         $is_modified = false; // 是否改寫檔案
987         $message = ''; // 操作後顯示訊息
988
989         if(isset($_POST['func']) && isset($_POST['clist']))
990                 $PMS->useModuleMethods('AdminFunction', array('run', $_POST['clist'], $_POST['func'], &$message)); // "AdminFunction" Hook Point
991
992         // 刪除文章區塊
993         if($delflag){
994                 //if(!adminAuthenticate('check')) error(_T('admin_wrongpassword'));
995
996                 $delno = array_merge($delno, $_POST['clist']);
997                 if($onlyimgdel != 'on') $PMS->useModuleMethods('PostOnDeletion', array($delno, 'backend')); // "PostOnDeletion" Hook Point
998                 $files = ($onlyimgdel != 'on') ? $PIO->removePosts($delno) : $PIO->removeAttachments($delno);
999                 $FileIO->deleteImage($files);
1000                 deleteCache($delno);
1001                 total_size(true); // 刪除容量快取
1002                 $is_modified = true;
1003         }
1004         // 討論串停止區塊
1005         if($thsflag){
1006                 //if(!adminAuthenticate('check')) error(_T('admin_wrongpassword'));
1007
1008                 $thsno = array_merge($thsno, $_POST['stop']);
1009                 $threads = $PIO->fetchPosts($thsno); // 取得文章
1010                 foreach($threads as $th){
1011                         $flgh = $PIO->getPostStatus($th['status']);
1012                         $flgh->toggle('TS');
1013                         $PIO->setPostStatus($th['no'], $flgh->toString());
1014                 }
1015                 $is_modified = true;
1016         }
1017         if(($delflag || $thsflag) && $is_modified) $PIO->dbCommit(); // 無論如何都有檔案操作,回寫檔案
1018
1019         $line = $PIO->fetchPostList(0, $page * ADMIN_PAGE_DEF, ADMIN_PAGE_DEF); // 分頁過的文章列表
1020         $posts_count = count($line); // 迴圈次數
1021         $posts = $PIO->fetchPosts($line); // 文章內容陣列
1022
1023         echo '<input type="hidden" name="mode" value="admin" />
1024 <input type="hidden" name="admin" value="del" />
1025 <div style="text-align: left;">'._T('admin_notices').'</div>
1026 <div>'.$message.'</div>
1027 <table border="1" cellspacing="0" style="margin: 0px auto;">
1028 <tr class="managehead">'._T('admin_list_header').'</tr>
1029 ';
1030
1031         for($j = 0; $j < $posts_count; $j++){
1032                 $bg = ($j % 2) ? 'row1' : 'row2'; // 背景顏色
1033                 extract($posts[$j]);
1034
1035                 if($no == 0) break; // Do not display post 0
1036
1037                 // 修改欄位樣式
1038                 $now = preg_replace('/.{2}\/(.{5})\(.+?\)(.{5}).*/', '$1 $2', $now);
1039                 $name = htmlspecialchars(str_cut(html_entity_decode(strip_tags($name)), 8));
1040                 $sub = htmlspecialchars(str_cut(html_entity_decode($sub), 8));
1041                 if($email) $name = "<a href=\"mailto:$email\">$name</a>";
1042                 $com = str_replace('<br />',' ',$com);
1043                 $com = htmlspecialchars(str_cut(html_entity_decode($com), 20));
1044
1045                 // 討論串首篇停止勾選框 及 模組功能
1046                 $modFunc = $THstop = ' ';
1047                 $PMS->useModuleMethods('AdminList', array(&$modFunc, $posts[$j], $resto)); // "AdminList" Hook Point
1048                 if($resto==0){ // $resto = 0 (即討論串首篇)
1049                         $flgh = $PIO->getPostStatus($status);
1050                         $THstop = '<input type="checkbox" name="stop[]" value="'.$no.'" />'.($flgh->exists('TS') ? _T('admin_stop_btn') : '');
1051                 }
1052
1053                 // 從記錄抽出附加圖檔使用量並生成連結
1054                 if($ext && $FileIO->imageExists($tim.$ext)){
1055                         $clip = '<a href="'.$FileIO->getImageURL($tim.$ext).'" rel="_blank">'.$tim.$ext.'</a>';
1056                         $size = $FileIO->getImageFilesize($tim.$ext);
1057                         if($FileIO->imageExists($tim.'s.jpg')) $size += $FileIO->getImageFilesize($tim.'s.jpg');
1058                 }else{
1059                         $clip = $md5chksum = '--';
1060                         $size = 0;
1061                 }
1062
1063                 // 印出介面
1064                 echo <<< _ADMINEOF_
1065 <tr class="$bg" align="left">
1066 <th align="center">$modFunc</th><th align="center">$THstop</th><th><input type="checkbox" name="clist[]" value="$no" />$no</th><td><small>$now</small></td><td>$sub</td><td><b>$name</b></td><td><small>$com</small></td><td>$host</td><td align="center">$clip ($size)<br />$md5chksum</td>
1067 </tr>
1068
1069 _ADMINEOF_;
1070         }
1071         echo '</table>
1072 <p>
1073 <select name="func"><option value="delete">'._T('admin_delete').'</option>';
1074         $funclist = array();
1075         $PMS->useModuleMethods('AdminFunction', array('add', &$funclist, null, null)); // "AdminFunction" Hook Point
1076         foreach($funclist as $f) echo '<option value="'.$f[0].'">'.$f[1].'</option>';
1077         echo '</select>
1078 <input type="submit" value="'._T('admin_submit_btn').'" /> <input type="reset" value="'._T('admin_reset_btn').'" /> [<input type="checkbox" name="onlyimgdel" id="onlyimgdel" value="on" /><label for="onlyimgdel">'._T('del_img_only').'</label>]</p>
1079 <p>'._T('admin_totalsize',total_size()).'</p>
1080 </div>
1081 </form>
1082 <hr />
1083 ';
1084
1085         $countline = $PIO->postCount(); // 總文章數
1086         $page_max = ceil($countline / ADMIN_PAGE_DEF) - 1; // 總頁數
1087         echo '<table class="pages" border="1" style="float: left;"><tr>';
1088         if($page) echo '<td><a href="'.PHP_SELF.'?mode=admin&amp;admin=del&amp;page='.($page - 1).'">'._T('prev_page').'</a></td>';
1089         else echo '<td style="white-space: nowrap;">'._T('first_page').'</td>';
1090         echo '<td>';
1091         for($i = 0; $i <= $page_max; $i++){
1092                 if($i==$page) echo '[<b>'.$i.'</b>] ';
1093                 else echo '[<a href="'.PHP_SELF.'?mode=admin&amp;admin=del&amp;page='.$i.'">'.$i.'</a>] ';
1094         }
1095         echo '</td>';
1096         if($page < $page_max) echo '<td><a href="'.PHP_SELF.'?mode=admin&amp;admin=del&amp;page='.($page + 1).'">'._T('next_page').'</a></td>';
1097         else echo '<td style="white-space: nowrap;">'._T('last_page').'</td>';
1098         die('</tr></table><br/><br/>
1099 </body>
1100 </html>');
1101 }
1102
1103 ////////////////
1104 // manage_css //
1105 ////////////////
1106 function manage_css(){
1107         global $PMS, $language;
1108         $order = array(); $line = '';
1109
1110         // Handle submission
1111         if(isset($_POST['order']) || isset($_POST['new'])){
1112                 $default = $_POST['default'];
1113
1114                 if(isset($_POST['order'])){
1115                         $dupid = false;
1116                         $order = $_POST['order'];
1117                         $ids = array();
1118                         $id = 0;
1119                         $name = '';
1120                         if(count($order) > 1){
1121                                 foreach($order as $name => $id) $ids[$id]++;
1122                                 foreach($ids as $idu => $count){
1123                                         if($idu < 1 || $count == 1) continue;
1124                                         foreach($order as $name => $id) if($id == $idu) $dupid = true;
1125                                 }
1126                                 if($dupid){
1127                                         ksort($order); // Yes, we're going to wimp out and reset it alphabetically.
1128                                         $go = 0;
1129                                         foreach($order as $name => $id) $go++;
1130                                         $order[$name] = $go;
1131                                 }
1132                         }
1133                         $order = array_flip($order);
1134                 }
1135
1136                 // Find out if a new stylesheet entry has been added
1137                 if(is_array($_POST['new'])){
1138                         $new_path = $_POST['new']['path'];
1139                         $new_name = $_POST['new']['name'];
1140                         $new_order = $_POST['new']['order'];
1141                         if($new_path != '' && $new_name != '') $order[$new_order] = $new_name;
1142                         if($default == 'new') $default = $new_name;
1143                 }
1144
1145                 ksort($order);
1146
1147                 // Get existing stylesheet entries
1148                 foreach($order as $id => $name){
1149                         if(!$id) continue;
1150                         if(!$_POST['path'][$name]) continue;
1151                         $temp['path'][$name] = $_POST['path'][$name];
1152                         $temp['names'][$name] = $name;
1153                         $temp['short'][$name] = $_POST['short'][$name];
1154                         $temp['order'][$name] = $id;
1155                 }
1156
1157                 // Get newly added stylesheet entries
1158                 if(is_array($_POST['new'])){
1159                         $temp['path'][$new_name] = $_POST['new']['path'];
1160                         $temp['names'][$new_name] = $new_name;
1161                         $temp['short'][$new_name] = $_POST['new']['short'];
1162                         $temp['order'][$new_name] = $new_order;
1163                 }
1164
1165                 // Build CSV lines
1166                 foreach($order as $id => $name){
1167                         if(!$id) continue; // Ignore Display order 0
1168                         $line   .= $name.','.$temp['short'][$name].','.$temp['path'][$name].',';
1169                         $line   .= ($name == $default) ? 'default,' : ',';
1170                         $line   .= "\n";
1171                 }
1172
1173                 $style_dat = DATA_DIR.CSV_SS;
1174
1175                 // Success messages
1176                 $action = (file_exists($style_dat)) ? _t('admin_updated') : _t('admin_created');
1177                 $delete = (@unlink(CSS_DIR.CSVSS)) ? ' - <span class="warning">'.str_replace('[file]', CSS_DIR.CSVSS, _t('admin_deleted')).'</span>' : false;
1178                 $fp = fopen($style_dat, 'w+');
1179                 set_file_buffer($fp, 0);
1180                 rewind($fp);
1181                 fputs($fp, $line);
1182                 fclose($fp);
1183                 @chmod($style_dat, 0666);
1184                 echo '<div class="bar_managecss">'.str_replace('[file]', $style_dat, _t('admin_updated')).$delete.'</div>';
1185         }
1186
1187         // Editing messages
1188         if(file_exists(DATA_DIR.CSV_SS)){
1189                 $style_data = DATA_DIR.CSV_SS;
1190                 $style_mode = _t('admin_editing');
1191         }else{
1192                 $style_data = CSS_DIR.CSVSS;
1193                 $style_mode = _t('admin_imported');
1194         }
1195         echo '<div class="banner"><table width="100%"><tr><th class="bar_managecss">
1196 '.str_replace('[file]', $style_data, $style_mode).'
1197 </th></tr></table></div>';
1198
1199         echo '<div class="postlists">
1200 <input type="hidden" name="mode" value="admin" />
1201 <input type="hidden" name="admin" value="stylesheets" />
1202 <table width="100%" border="1" cellspacing="0">';
1203
1204         // Read data from R4+(CSV)
1205         if(file_exists(DATA_DIR.CSV_SS)){
1206                 $style_data = DATA_DIR.CSV_SS;
1207                 $lines = explode("\n", file_get_contents($style_data));
1208                 $j = 0;
1209                 $lines = array_diff($lines, array(''));
1210                 if(count($lines)){
1211                         echo '<tr class="managehead"><th colspan="2">'._t('admin_is_default').'</th><th>'._t('admin_fullname').'</th><th>'._t('admin_shortname').'</th><th>'._t('admin_dispid').'</th></tr>';
1212                 }
1213                 foreach($lines as $null => $line){
1214                         if($line != ''){ // Line has data
1215                                 list($style_name, $style_short, $style_file, $style_rel) = explode(',', $line);
1216                                 $j++; // For alternating <tr> BG colour
1217
1218                                 $style_path = CSS_DIR.$style_file;
1219
1220                                 if(file_exists($style_path)){
1221                                         if($style_rel) $style_rel = ' checked="checked"';
1222                                         else $style_rel = false;
1223                                         $class = ($j % 2) ? 'row1' : 'row2'; // BG colour
1224                                         echo '<tr class="'.$class.'"><td align="left" colspan="2"><label><input name="default" type="radio"'.$style_rel.' value="'.$style_name.'" /> '.$style_path.'</label><input type="hidden" name="path['.$style_name.']" value="'.$style_file.'" /></td><td align="left">'.$style_name.'</td><td align="left"><input name="short['.$style_name.']" value="'.$style_short.'" size="5" /></td><td align="left"><label><input name="order['.$style_name.']" size="2" value="'.$j.'" /></label></td></tr>';
1225                                 }
1226                         }
1227                 }
1228         }
1229
1230         // Read data from R3 DAT
1231         else if(file_exists(CSS_DIR.CSVSS)){
1232                 $style_data = CSS_DIR.CSVSS;
1233                 $lines = explode("\n", file_get_contents($style_data));
1234                 $j = 0;
1235                 foreach($lines as $null => $line){ // Line has data, or line is not commented out
1236                         if(substr($line, 0, 2) != '//' && $line != ''){
1237                                 $bits = explode('[*]', $line);
1238                                 $j++;
1239                                 $style_name = $bits[0];
1240                                 $style_path = CSS_DIR.$bits[2];
1241                                 if(file_exists($style_path)){
1242                                         $style_short = $bits[1];
1243                                         if($bits[3]) $style_rel = ' checked="checked"';
1244                                         else $style_rel = false;
1245                                         $class = ($j % 2) ? 'row1' : 'row2'; // BG colour
1246                                         echo '<tr class="'.$class.'"><td align="left" colspan="2"><label><input name="default" type="radio"'.$style_rel.' value="'.$style_name.'" /> '.$style_path.'</label><input type="hidden" name="path['.$style_name.']" value="'.$bits[2].'" /></td><td align="left"><input name="names['.$style_name.']" value="'.$style_name.'" size="25" /></td><td align="left"><input name="short['.$style_name.']" value="'.$style_short.'" size="5" /></td><td align="left"><input name="order['.$style_name.']" size="2" value="'.$j.'" /></td></tr>';
1247                                 }
1248                         }
1249                 }
1250         }
1251
1252         $j++; $class = ($j % 2) ? 'row1' : 'row2';
1253
1254         // Insert string for when there are stylesheet entries to modify
1255         $action = ($j > 1) ? _t('admin_modstyle') : false;
1256         // Check default radio button for new row when there are NO stylesheet entries
1257         $style_rel = (!$action) ? ' checked="checked"' : false;
1258
1259         echo '<tr class="managehead"><th>'.str_replace('[or modify]', $action, _t('admin_addstyle')).'</th><th>'._t('admin_new_file').'</th><th>'._t('admin_fullname').'</th><th>'._t('admin_shortname').'</th><th>'._t('admin_new_id').'</th></tr>';
1260
1261         echo '<tr class="'.$class.'"><td align="left"><label><input name="default" type="radio"'.$style_rel.' value="new" /> '._t('admin_style_default').'</label></td><td align="left"><nobr>'.CSS_DIR.'<input name="new[path]" /></nobr></td><td align="left"><input name="new[name]" size="25" /></td><td align="left"><input name="new[short]" size="5" /></td><td align="left"><input name="new[order]" size="2" value="'.$j.'" /></td></tr></table></div>
1262 <center><p><div class="passvalid"><input type="submit" value="'._T('admin_submit_btn').'" /> <input type="reset" value="'._T('admin_reset_btn').'" /></div></p>';
1263         die('</center></form></body></html>');
1264 }
1265
1266 /* 計算目前附加圖檔使用容量 (單位:KB) */
1267 function total_size($isupdate=false){
1268         global $PIO, $FileIO;
1269
1270         $size = 0; $all = 0;
1271         $cache_file = "./".SIZE_CACHE; // 附加圖檔使用容量值快取檔案
1272
1273         if($isupdate){ // 刪除舊快取
1274                 if(is_file($cache_file)) unlink($cache_file);
1275                 return;
1276         }
1277         if(!is_file($cache_file)){ // 無快取,新增
1278                 $line = $PIO->fetchPostList(); // 取出所有文章編號
1279                 $posts = $PIO->fetchPosts($line);
1280                 $linecount = count($posts);
1281                 for($i = 0; $i < $linecount; $i++){
1282                         extract($posts[$i]);
1283                         // 從記錄檔抽出計算附加圖檔使用量
1284                         if($ext && $FileIO->imageExists($tim.$ext)) $all += $FileIO->getImageFilesize($tim.$ext); // 附加圖檔合計計算
1285                         if($FileIO->imageExists($tim.'s.jpg')) $all += $FileIO->getImageFilesize($tim.'s.jpg'); // 預覽圖合計計算
1286                 }
1287                 $sp = fopen($cache_file, 'w');
1288                 stream_set_write_buffer($sp, 0);
1289                 fwrite($sp, $all); // 寫入目前使用容量值
1290                 fclose($sp);
1291                 @chmod($cache_file, 0666);
1292         }else{ // 使用快取
1293                 $sp = file($cache_file);
1294                 $all = $sp[0];
1295                 unset($sp);
1296         }
1297         return (int)($all / 1024);
1298 }
1299
1300 /* 搜尋(全文檢索)功能 */
1301 function search(){
1302         global $PTE, $PIO, $FileIO, $PMS, $language;
1303
1304         if(!USE_SEARCH) error(_T('search_disabled'));
1305         $searchKeyword = isset($_POST['keyword']) ? trim($_POST['keyword']) : ''; // 欲搜尋的文字
1306         $dat = '';
1307         head($dat);
1308         $links = '[<a href="'.PHP_SELF2.'?'.time().'">'._T('return').'</a>]';
1309         $PMS->useModuleMethods('LinksAboveBar', array(&$links,'search'));
1310         $dat .= '<div id="bannerlink">'.$links.'</div><div id="banner"><div class="bar_search">'._T('search_top').'</div>
1311 </div>
1312 ';
1313         echo $dat;
1314         if($searchKeyword==''){
1315                 echo '<form action="'.PHP_SELF.'" method="post">
1316 <div id="search">
1317 <input type="hidden" name="mode" value="search" />
1318 ';
1319                 echo '<ul>'._T('search_notice').'<input class="inputtext" type="text" name="keyword" size="30" />
1320 '._T('search_target').'<select name="field"><option value="com" selected="selected">'._T('search_target_comment').'</option><option value="name">'._T('search_target_name').'</option><option value="sub">'._T('search_target_topic').'</option><option value="no">'._T('search_target_number').'</option></select>
1321 '._T('search_method').'<select name="method"><option value="AND" selected="selected">'._T('search_method_and').'</option><option value="OR">'._T('search_method_or').'</option></select>
1322 <input type="submit" value="'._T('search_submit_btn').'" />
1323 </li>
1324 </ul>
1325 </div>
1326 </form>';
1327         }else{
1328                 $searchField = $_POST['field']; // 搜尋目標 (no:編號, name:名稱, sub:標題, com:內文)
1329                 $searchMethod = $_POST['method']; // 搜尋方法
1330                 $searchKeyword = preg_split('/( | )+/', trim($searchKeyword)); // 搜尋文字用空格切割
1331                 $hitPosts = $PIO->searchPost($searchKeyword, $searchField, $searchMethod); // 直接傳回符合的文章內容陣列
1332
1333                 echo '<div id="search_result">
1334 ';
1335                 $resultlist = '';
1336                 foreach($hitPosts as $post){
1337                         extract($post);
1338                         if(USE_CATEGORY){
1339                                 $ary_category = explode(',', str_replace('&#44;', ',', $category)); $ary_category = array_map('trim', $ary_category);
1340                                 $ary_category_count = count($ary_category);
1341                                 $ary_category2 = array();
1342                                 for($p = 0; $p < $ary_category_count; $p++){
1343                                         if($c = $ary_category[$p]) $ary_category2[] = '<a href="'.PHP_SELF.'?mode=category&amp;c='.urlencode($c).'">'.$c.'</a>';
1344                                 }
1345                                 $category = implode(', ', $ary_category2);
1346                         }else $category = '';
1347                         $arrLabels = array('{$NO}'=>'<a href="'.PHP_SELF.'?res='.($resto?$resto.'#r'.$no:$no).'">'.$no.'</a>', '{$SUB}'=>$sub, '{$NAME}'=>$name, '{$NOW}'=>$now, '{$COM}'=>$com, '{$CATEGORY}'=>$category, '{$NAME_TEXT}'=>_T('post_name'), '{$CATEGORY_TEXT}'=>_T('post_category'));
1348                         $resultlist .= $PTE->ParseBlock('SEARCHRESULT',$arrLabels);
1349                 }
1350                 echo $resultlist ? $resultlist : '<div style="text-align: center">'._T('search_notfound').'<br/><a href="?mode=search">'._T('search_back').'</a></div>';
1351                 echo "</div>";
1352         }
1353         echo "</body>\n</html>";
1354 }
1355
1356 /* 利用類別標籤搜尋符合的文章 */
1357 function searchCategory(){
1358         global $PTE, $PIO, $PMS, $FileIO, $language;
1359         $category = isset($_GET['c']) ? strtolower(strip_tags(trim($_GET['c']))) : ''; // 搜尋之類別標籤
1360         if(!$category) error(_T('category_nokeyword'));
1361         $category_enc = urlencode($category); $category_md5 = md5($category);
1362         $page = isset($_GET['p']) ? @intval($_GET['p']) : 1; if($page < 1) $page = 1; // 目前瀏覽頁數
1363         $isrecache = isset($_GET['recache']); // 是否強制重新生成快取
1364
1365         // 利用Session快取類別標籤出現篇別以減少負擔
1366         session_start(); // 啟動Session
1367         if(!isset($_SESSION['loglist_'.$category_md5]) || $isrecache){
1368                 $loglist = $PIO->searchCategory($category);
1369                 $_SESSION['loglist_'.$category_md5] = serialize($loglist);
1370         }else $loglist = unserialize($_SESSION['loglist_'.$category_md5]);
1371
1372         $loglist_count = count($loglist);
1373         if(!$loglist_count) error(_T('category_notfound'));
1374         $page_max = ceil($loglist_count / PAGE_DEF); if($page > $page_max) $page = $page_max; // 總頁數
1375
1376         // 分割陣列取出適當範圍作分頁之用
1377         $loglist_cut = array_slice($loglist, PAGE_DEF * ($page - 1), PAGE_DEF); // 取出特定範圍文章
1378         $loglist_cut_count = count($loglist_cut);
1379
1380         $dat = '';
1381         head($dat);
1382         $links = '[<a href="'.PHP_SELF2.'?'.time().'">'._T('return').'</a>][<a href="'.PHP_SELF.'?mode=category&amp;c='.$category_enc.'&amp;recache=1">'._T('category_recache').'</a>]';
1383         $PMS->useModuleMethods('LinksAboveBar', array(&$links,'category'));
1384         $dat .= "<div>$links</div>\n";
1385         for($i = 0; $i < $loglist_cut_count; $i++){
1386                 $posts = $PIO->fetchPosts($loglist_cut[$i]); // 取得文章內容
1387                 $dat .= arrangeThread($PTE, ($posts[0]['resto'] ? $posts[0]['resto'] : $posts[0]['no']), null, $posts, 0, $loglist_cut[$i], array(), array(), false, false, false); // 逐個輸出 (引用連結不顯示)
1388         }
1389
1390         $dat .= '<table border="1"><tr>';
1391         if($page > 1) $dat .= '<td><form action="'.PHP_SELF.'?mode=category&amp;c='.$category_enc.'&amp;p='.($page - 1).'" method="post"><div><input type="submit" value="'._T('prev_page').'" /></div></form></td>';
1392         else $dat .= '<td style="white-space: nowrap;">'._T('first_page').'</td>';
1393         $dat .= '<td>';
1394         for($i = 1; $i <= $page_max ; $i++){
1395                 if($i==$page) $dat .= "[<b>".$i."</b>] ";
1396                 else $dat .= '[<a href="'.PHP_SELF.'?mode=category&amp;c='.$category_enc.'&amp;p='.$i.'">'.$i.'</a>] ';
1397         }
1398         $dat .= '</td>';
1399         if($page < $page_max) $dat .= '<td><form action="'.PHP_SELF.'?mode=category&amp;c='.$category_enc.'&amp;p='.($page + 1).'" method="post"><div><input type="submit" value="'._T('next_page').'" /></div></form></td>';
1400         else $dat .= '<td style="white-space: nowrap;">'._T('last_page').'</td>';
1401         $dat .= '</tr></table>'."\n";
1402
1403         foot($dat);
1404         echo $dat;
1405 }
1406
1407 /* 顯示已載入模組資訊 */
1408 function listModules(){
1409         global $PMS, $language;
1410         $dat = '';
1411         head($dat);
1412         $links = '[<a href="'.PHP_SELF2.'?'.time().'">'._T('return').'</a>]';
1413         $PMS->useModuleMethods('LinksAboveBar', array(&$links,'modules'));
1414         $dat .= '<div id="bannerlink">'.$links.'</div><div id="banner"><div class="bar_info_mod">'._T('module_info_top').'</div>
1415 </div>
1416
1417 <div id="modules">
1418 ';
1419         /* Module Loaded */
1420         $dat .= _T('module_loaded').'<ul>'."\n";
1421         foreach($PMS->getLoadedModules() as $m) $dat .= '<li>'.$m."</li>\n";
1422         $dat .= "</ul><hr />\n";
1423
1424         /* Module Infomation */
1425         $dat .= _T('module_info').'<ul>'."\n";
1426         foreach($PMS->moduleInstance as $m) $dat .= '<li>'.$m->getModuleName().'<div style="padding-left:2em;">'.$m->getModuleVersionInfo()."</div></li>\n";
1427         $dat .= '</ul><hr />
1428 </div>
1429
1430 ';
1431         foot($dat);
1432         echo $dat;
1433 }
1434
1435 /* 刪除舊頁面快取檔 */
1436 function deleteCache($no){
1437         foreach($no as $n){
1438                 if($oldCaches = glob('./cache/'.$n.'-*')){
1439                         foreach($oldCaches as $o) @unlink($o);
1440                 }
1441         }
1442 }
1443
1444 /* 顯示系統各項資訊 */
1445 function showstatus(){
1446         global $PTE, $PIO, $FileIO, $PMS, $language, $LIMIT_SENSOR;
1447         $countline = $PIO->postCount(); // 計算投稿文字記錄檔目前資料筆數
1448         $counttree = $PIO->threadCount(); // 計算樹狀結構記錄檔目前資料筆數
1449         $tmp_total_size = total_size(); // 附加圖檔使用量總大小
1450         $tmp_ts_ratio = STORAGE_MAX > 0 ? $tmp_total_size / STORAGE_MAX : 0; // 附加圖檔使用量
1451
1452         // 決定「附加圖檔使用量」提示文字顏色
1453         if($tmp_ts_ratio < 0.3 ) $clrflag_sl = '235CFF';
1454         elseif($tmp_ts_ratio < 0.5 ) $clrflag_sl = '0CCE0C';
1455         elseif($tmp_ts_ratio < 0.7 ) $clrflag_sl = 'F28612';
1456         elseif($tmp_ts_ratio < 0.9 ) $clrflag_sl = 'F200D3';
1457         else $clrflag_sl = 'F2004A';
1458
1459         // 生成預覽圖物件資訊及功能是否正常
1460         $func_thumbWork = '<span style="color: red;">'._T('info_nonfunctional').'</span>';
1461         $func_thumbInfo = '(No thumbnail)';
1462         if(USE_THUMB !== 0){
1463                 $thumbType = USE_THUMB; if(USE_THUMB==1){ $thumbType = 'gd'; }
1464                 require(PHP_DIRECTORY.'lib/thumb/thumb.'.$thumbType.'.php');
1465                 $thObj = new ThumbWrapper();
1466                 if($thObj->isWorking()) $func_thumbWork = '<span style="color: blue;">'._T('info_functional').'</span>';
1467                 $func_thumbInfo = $thObj->getClass();
1468                 unset($thObj);
1469         }
1470
1471         // PIOSensor
1472         if(count($LIMIT_SENSOR))
1473                 $piosensorInfo=nl2br(PIOSensor::info($LIMIT_SENSOR));
1474
1475         $dat = '';
1476         head($dat);
1477         $links = '[<a href="'.PHP_SELF2.'?'.time().'">'._T('return').'</a>] [<a href="'.PHP_SELF.'?mode=moduleloaded">'._T('module_info_top').'</a>]';
1478         $PMS->useModuleMethods('LinksAboveBar', array(&$links,'status'));
1479         $dat .= '<div id="bannerlink">'.$links.'</div><div id="banner"><div class="bar_info">'._T('info_top').'</div>
1480 </div>
1481 ';
1482
1483         $dat .= '
1484 <div id="status-table" style="text-align: center;">
1485 <table border="1" style="margin: 0px auto; text-align: left;">
1486 <tr><td align="center" colspan="4">'._T('info_basic').'</td></tr>
1487 <tr><td style="width: 240px;">'._T('info_basic_ver').'</td><td colspan="3"> '.PIXMICAT_VER.' </td></tr>
1488 <tr><td>'._T('info_basic_pio').'</td><td colspan="3"> '.PIXMICAT_BACKEND.' : '.$PIO->pioVersion().'</td></tr>
1489 <tr><td>'._T('info_basic_threadsperpage').'</td><td colspan="3"> '.PAGE_DEF.' '._T('info_basic_threads').'</td></tr>
1490 <tr><td>'._T('info_basic_postsperpage').'</td><td colspan="3"> '.RE_DEF.' '._T('info_basic_posts').'</td></tr>
1491 <tr><td>'._T('info_basic_postsinthread').'</td><td colspan="3"> '.RE_PAGE_DEF.' '._T('info_basic_posts').' '._T('info_basic_posts_showall').'</td></tr>
1492 <tr><td>'._T('info_basic_bumpposts').'</td><td colspan="3"> '.MAX_RES.' '._T('info_basic_posts').' '._T('info_basic_0disable').'</td></tr>
1493 <tr><td>'._T('info_basic_bumphours').'</td><td colspan="3"> '.MAX_AGE_TIME.' '._T('info_basic_hours').' '._T('info_basic_0disable').'</td></tr>
1494 <tr><td>'._T('info_basic_urllinking').'</td><td colspan="3"> '.AUTO_LINK.' '._T('info_0no1yes').'</td></tr>
1495 <tr><td>'._T('info_basic_com_limit').'</td><td colspan="3"> '.COMM_MAX._T('info_basic_com_after').'</td></tr>
1496 <tr><td>'._T('info_basic_anonpost').'</td><td colspan="3"> '.ALLOW_NONAME.' '._T('info_basic_anonpost_opt').'</td></tr>
1497 <tr><td>'._T('info_basic_del_incomplete').'</td><td colspan="3"> '.KILL_INCOMPLETE_UPLOAD.' '._T('info_0no1yes').'</td></tr>
1498 <tr><td>'._T('info_basic_use_sample',THUMB_Q).'</td><td colspan="3"> '.USE_THUMB.' '._T('info_0notuse1use').'</td></tr>
1499 <tr><td>'._T('info_basic_useblock').'</td><td colspan="3"> '.BAN_CHECK.' '._T('info_0disable1enable').'</td></tr>
1500 <tr><td>'._T('info_basic_showid').'</td><td colspan="3"> '.DISP_ID.' '._T('info_basic_showid_after').'</td></tr>
1501 <tr><td>'._T('info_basic_cr_limit').'</td><td colspan="3"> '.BR_CHECK._T('info_basic_cr_after').'</td></tr>
1502 <!--<tr><td>'._T('info_basic_timezone').'</td><td colspan="3"> GMT </td></tr>-->
1503 <tr><td>'._T('info_basic_max_lines_limit').'</td><td colspan="3"> '.MAX_LINES._T('info_basic_max_lines_after').'</td></tr>
1504 <tr><td>'._T('info_basic_theme').'</td><td colspan="3"> '.$PTE->BlockValue('THEMENAME').' '.$PTE->BlockValue('THEMEVER').'<br/>by '.$PTE->BlockValue('THEMEAUTHOR').'</td></tr>
1505 <tr><td align="center" colspan="4">'._T('info_dsusage_top').'</td></tr>
1506 <tr align="center"><td>'._T('info_basic_threadcount').'</td><td colspan="'.(isset($piosensorInfo)?'2':'3').'"> '.$counttree.' '._T('info_basic_threads').'</td>'.(isset($piosensorInfo)?'<td rowspan="2">'.$piosensorInfo.'</td>':'').'</tr>
1507 <tr align="center"><td>'._T('info_dsusage_count').'</td><td colspan="'.(isset($piosensorInfo)?'2':'3').'">'.$countline.'</td></tr>
1508 <tr><td align="center" colspan="4">'._T('info_fileusage_top').STORAGE_LIMIT.' '._T('info_0disable1enable').'</td></tr>';
1509
1510         if(STORAGE_LIMIT){
1511                 $dat .= '
1512 <tr align="center"><td>'._T('info_fileusage_limit').'</td><td colspan="2">'.STORAGE_MAX.' KB</td><td rowspan="2">'._T('info_dsusage_usage').'<br /><span style="color: #'.$clrflag_sl.'">'.substr(($tmp_ts_ratio * 100), 0, 6).'</span> %</td></tr>
1513 <tr align="center"><td>'._T('info_fileusage_count').'</td><td colspan="2"><span style="color: #'.$clrflag_sl.'">'.$tmp_total_size.' KB</span></td></tr>';
1514         }else{
1515                 $dat .= '
1516 <tr align="center"><td>'._T('info_fileusage_count').'</td><td>'.$tmp_total_size.' KB</td><td colspan="2">'._T('info_dsusage_usage').'<br /><span style="color: green;">'._T('info_fileusage_unlimited').'</span></td></tr>';
1517         }
1518
1519         $dat .= '
1520 <tr><td align="center" colspan="4">'._T('info_server_top').'</td></tr>
1521 <tr align="center"><td colspan="3">PHP version</td><td>'.phpversion().'</td></tr>
1522 <tr align="center"><td colspan="3">'.$func_thumbInfo.'</td><td>'.$func_thumbWork.'</td></tr>
1523 </table>
1524 <hr />
1525 </div>'."\n";
1526
1527         foot($dat);
1528         echo $dat;
1529 }
1530
1531 /* 程式首次執行之初始化 */
1532 /* 初期設定 */
1533 function init(){
1534         global $PIO, $FileIO, $language;
1535         if(!is_writable(realpath('./'))) error(_T('init_permerror'));
1536
1537         $chkfolder = array(IMG_DIR, THUMB_DIR, 'cache/', TEMP_DIR);
1538         // 逐一自動建置資料夾
1539         foreach($chkfolder as $value) if(!is_dir($value)){ mkdir($value); @chmod($value, 0777); }  // 沒有就建立
1540
1541         $PIO->dbInit(); // PIO Init
1542         $FileIO->init(); // FileIO Init
1543
1544         error(_T('init_inited'));
1545 }
1546
1547 /*-----------程式各項功能主要判斷-------------*/
1548 /*-----------Main-------------*/
1549 if(GZIP_COMPRESS_LEVEL && ($Encoding = CheckSupportGZip())){ ob_start(); ob_implicit_flush(0); } // 支援且開啟Gzip壓縮就設緩衝區
1550 $mode = isset($_GET['mode']) ? $_GET['mode'] : (isset($_POST['mode']) ? $_POST['mode'] : ''); // 目前執行模式 (GET, POST)
1551
1552 //init(); // ←■■!程式環境初始化,跑過一次後請刪除此行!■■
1553 switch($mode){
1554         case 'regist':
1555                 regist();
1556                 break;
1557         case 'admin':
1558                 $admin = isset($_REQUEST['admin']) ? $_REQUEST['admin'] : ''; // 管理者執行模式
1559                 valid();
1560                 switch($admin){
1561                         case 'del': admindel(); break;
1562                         case 'logout':
1563                                 adminAuthenticate('logout');
1564                                 header('HTTP/1.1 302 Moved Temporarily');
1565                                 header('Location: '.fullURL().PHP_SELF2.'?'.time());
1566                                 break;
1567                         case 'optimize':
1568                         case 'check':
1569                         case 'repair':
1570                         case 'export':
1571                                 if(!$PIO->dbMaintanence($admin)) echo _T('action_main_notsupport');
1572                                 else echo _T('action_main_'.$admin).(($mret = $PIO->dbMaintanence($admin,true))?_T('action_main_success'):_T('action_main_failed')).(is_bool($mret)?'':'<br/>'.$mret);
1573                                 die("</div></form></body>\n</html>");
1574                                 break;
1575                         case 'stylesheets': manage_css(); break;
1576                         default:
1577                 }
1578                 break;
1579         case 'search':
1580                 search();
1581                 break;
1582         case 'status':
1583                 showstatus();
1584                 break;
1585         case 'category':
1586                 searchCategory();
1587                 break;
1588         case 'module':
1589                 $loadModule = isset($_GET['load']) ? $_GET['load'] : '';
1590                 if($PMS->onlyLoad($loadModule)) $PMS->moduleInstance[$loadModule]->ModulePage();
1591                 else echo '404 Not Found';
1592                 break;
1593         case 'moduleloaded':
1594                 listModules();
1595                 break;
1596         case 'init':
1597                 init(); // ←■■!程式環境初始化,跑過一次後請刪除此行!■■
1598                 break;
1599         case 'usrdel':
1600                 usrdel();
1601         case 'remake':
1602                 updatelog();
1603                 header('HTTP/1.1 302 Moved Temporarily');
1604                 header('Location: '.fullURL().PHP_SELF2.'?'.time());
1605                 break;
1606         default:
1607                 // 如果瀏覽器支援XHTML標準MIME就輸出
1608                 header('Content-Type: '.((USE_XHTML && strpos($_SERVER['HTTP_ACCEPT'],'application/xhtml+xml')!==FALSE) ? 'application/xhtml+xml' : 'text/html').'; charset=utf-8');
1609                 $res = isset($_GET['res']) ? $_GET['res'] : 0; // 欲回應編號
1610                 if($res){ // 回應模式輸出
1611                         $page = isset($_GET['page_num']) ? $_GET['page_num'] : 'RE_PAGE_MAX';
1612                         if(!($page=='all' || $page=='RE_PAGE_MAX')) $page = intval($_GET['page_num']);
1613                         updatelog($res, $page); // 實行分頁
1614                 }elseif(isset($_GET['page_num']) && intval($_GET['page_num']) > -1){ // PHP動態輸出一頁
1615                         updatelog(0, intval($_GET['page_num']));
1616                 }else{ // 導至靜態庫存頁
1617                         if(!is_file(PHP_SELF2)) updatelog();
1618                         header('HTTP/1.1 302 Moved Temporarily');
1619                         header('Location: '.fullURL().PHP_SELF2.'?'.time());
1620                 }
1621 }
1622 if(GZIP_COMPRESS_LEVEL && $Encoding){ // 有啟動Gzip
1623         if(!ob_get_length()) exit; // 沒內容不必壓縮
1624         header('Content-Encoding: '.$Encoding);
1625         header('X-Content-Encoding-Level: '.GZIP_COMPRESS_LEVEL);
1626         header('Vary: Accept-Encoding');
1627         print gzencode(ob_get_clean(), GZIP_COMPRESS_LEVEL); // 壓縮內容
1628 }
1629 ?>