-
Notifications
You must be signed in to change notification settings - Fork 45
/
read_async.php
190 lines (145 loc) · 5.21 KB
/
read_async.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<?php
/**
* rep2expack - スレッドをツリー表示する
* ツリー表示以外のルーチンはread.phpから拝借
*/
require_once './conf/conf.inc.php';
$_login->authorize(); // ユーザ認証
//================================================================
// 変数
//================================================================
$newtime = date('gis'); // 同じリンクをクリックしても再読込しない仕様に対抗するダミークエリー
//$_today = date('y/m/d');
if (empty($_GET['host']) || empty($_GET['bbs']) || empty($_GET['key']) || empty($_GET['ls'])) {
p2die('レスの指定が変です。');
}
$host = $_GET['host'];
$bbs = $_GET['bbs'];
$key = $_GET['key'];
$mode = isset($_GET['q']) ? (int)$_GET['q'] : 0;
$_conf['ktai'] = FALSE;
//==================================================================
// メイン
//==================================================================
$aThread = new ThreadRead;
//==========================================================
// idxの読み込み
//==========================================================
// hostを分解してidxファイルのパスを求める
if (!isset($aThread->keyidx)) {
$aThread->setThreadPathInfo($host, $bbs, $key);
}
// 板ディレクトリが無ければ作る
//FileCtl::mkdirFor($aThread->keyidx);
$aThread->itaj = P2Util::getItaName($host, $bbs);
if (!$aThread->itaj) {
$aThread->itaj = $aThread->bbs;
}
// idxファイルがあれば読み込む
if ($lines = FileCtl::file_read_lines($aThread->keyidx, FILE_IGNORE_NEW_LINES)) {
$data = explode('<>', $lines[0]);
} else {
$data = array_fill(0, 12, '');
}
$aThread->getThreadInfoFromIdx();
//===========================================================
// DATのダウンロード
//===========================================================
if (empty($_GET['offline'])) {
$aThread->downloadDat();
}
// DATを読み込み
$aThread->readDat();
// オフライン指定でもログがなければ、改めて強制読み込み
if (empty($aThread->datlines) && !empty($_GET['offline'])) {
$aThread->downloadDat();
$aThread->readDat();
}
$aThread->setTitleFromLocal(); // タイトルを取得して設定
//===========================================================
// 表示レス番の範囲を設定
//===========================================================
$aThread->ls = $_GET['ls'];
$rn = (int)$aThread->ls; // string "256n" => integer 256
$rp = $rn - 1;
$aThread->lsToPoint();
//===============================================================
// プリント
//===============================================================
$ptitle_ht = htmlspecialchars($aThread->itaj, ENT_QUOTES).' / '.$aThread->ttitle_hd;
// {{{ HTTPヘッダとXML宣言
P2Util::header_nocache();
header('Content-Type: text/html; charset=Shift_JIS');
// }}}
// {{{ 本体生成
$node = 'ないぽ。';
if ($aThread->rescount) {
//$aShowThread = new ShowThreadTree($aThread);
$aShowThread = new ShowThreadPc($aThread);
if (isset($aShowThread->thread->datlines[$rp])) {
$ares = $aShowThread->thread->datlines[$rp];
$part = $aShowThread->thread->explodeDatLine($ares);
switch ($mode) {
// レスポップアップ
case 1:
$node = $aShowThread->qRes($ares, $rn);
break;
// コピペ
case 2:
$node = $rn;
$node .= ' :' . strip_tags($part[0]);
$node .= ' :' . strip_tags($part[1]);
$node .= ' :' . strip_tags($part[2]) . "\n";
$node .= trim(preg_replace('/ *<br.*?> */i', "\n", strip_tags($part[3], '<br>')));
break;
default:
$node = $aShowThread->transMsg($part[3], $rn);
}
}
}
// }}}
// {{{ 本体出力
if (P2Util::isBrowserSafariGroup()) {
$node = P2Util::encodeResponseTextForSafari($node);
}
echo $node;
// }}}
// idx・履歴設定フラグがなければ終了
if (empty($_GET['rec'])) {
exit;
}
// テレビ番組欄@2chなどはログ・idx・履歴を保存しない
if (P2Util::isHostNoCacheData($aThread->host)) {
//@unlink($aThread->keydat); // ThreadRead::readDat()で削除する
exit;
}
//===========================================================
// idxの値を設定、記録
//===========================================================
if ($aThread->rescount) {
$aThread->readnum = min($aThread->rescount, max(0, $data[5], $aThread->resrange['to']));
$newline = $aThread->readnum + 1; // $newlineは廃止予定だが、旧互換用に念のため
$sar = array($aThread->ttitle, $aThread->key, $data[2], $aThread->rescount, $aThread->modified,
$aThread->readnum, $data[6], $data[7], $data[8], $newline,
$data[10], $data[11], $aThread->datochiok);
P2Util::recKeyIdx($aThread->keyidx, $sar); // key.idxに記録
}
//===========================================================
// 履歴を記録
//===========================================================
$newdata_ar = array($aThread->ttitle, $aThread->key, $data[2], '', '', $aThread->readnum,
$data[6], $data[7], $data[8], $newline, $aThread->host, $aThread->bbs);
$newdata = implode('<>', $newdata_ar);
P2Util::recRecent($newdata);
// NGあぼーんを記録
NgAbornCtl::saveNgAborns();
/*
* Local Variables:
* mode: php
* coding: cp932
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/
// vim: set syn=php fenc=cp932 ai et ts=4 sw=4 sts=4 fdm=marker: