forked from unpush/p2-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
edit_ng_thread.php
executable file
·222 lines (193 loc) · 6.47 KB
/
edit_ng_thread.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<?php
/*
p2 - NGスレッドインタフェース
*/
include_once './conf/conf.inc.php';
$_login->authorize(); // ユーザ認証
if (!empty($_POST['submit_save']) || !empty($_POST['submit_default'])) {
if (!isset($_POST['csrfid']) or $_POST['csrfid'] != P2Util::getCsrfId()) {
die('p2 error: 不正なポストです');
}
}
require_once P2_LIB_DIR . '/wiki/ngthreadctl.class.php';
$ngaborns = &new NgThreadCtl;
//=====================================================================
// 前処理
//=====================================================================
// {{{ ■保存ボタンが押されていたら、設定を保存
if (!empty($_POST['submit_save'])) {
if ($ngaborns->save($POST['nga']) != FALSE) {
$_info_msg_ht .= "<p>○設定を更新保存しました</p>";
} else {
$_info_msg_ht .= "<p>×設定を更新保存できませんでした</p>";
}
// }}}
// {{{ ■デフォルトに戻すボタンが押されていたら
} elseif (!empty($_POST['submit_default'])) {
if ($ngaborns->clear()) {
$_info_msg_ht .= "<p>○リストを空にしました</p>";
} else {
$_info_msg_ht .= "<p>×リストを空にできませんでした</p>";
}
}
// }}}
// {{{ リスト読み込み
$formdata = $ngaborns->load();
// }}}
//=====================================================================
// プリント設定
//=====================================================================
$ptitle_top = 'NGスレッド編集';
$ptitle = strip_tags($ptitle_top);
$csrfid = P2Util::getCsrfId();
//=====================================================================
// プリント
//=====================================================================
// ヘッダHTMLをプリント
P2Util::header_nocache();
echo $_conf['doctype'];
echo <<<EOP
<html lang="ja">
<head>
{$_conf['meta_charset_ht']}
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>{$ptitle}</title>\n
EOP;
if (!$_conf['ktai']) {
echo <<<EOP
<script type="text/javascript" src="js/basic.js?{$_conf['p2expack']}"></script>
<link rel="stylesheet" href="css.php?css=style&skin={$skin_en}" type="text/css">
<link rel="stylesheet" href="css.php?css=edit_conf_user&skin={$skin_en}" type="text/css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">\n
EOP;
}
$body_at = ($_conf['ktai']) ? $_conf['k_colors'] : ' onLoad="top.document.title=self.document.title;"';
echo <<<EOP
</head>
<body{$body_at}>\n
EOP;
// PC用表示
if (!$_conf['ktai']) {
echo <<<EOP
<p id="pan_menu"><a href="editpref.php">設定管理</a> > {$ptitle_top}</p>\n
EOP;
} else {
echo basename($path) . "<br>";
}
// PC用表示
if (!$_conf['ktai']) {
$htm['form_submit'] = <<<EOP
<tr class="group">
<td colspan="7" align="center">
<input type="submit" name="submit_save" value="変更を保存する">
<input type="submit" name="submit_default" value="リストを空にする" onClick="if (!window.confirm('リストを空にしてもよろしいですか?(やり直しはできません)')) {return false;}"><br>
</td>
</tr>\n
EOP;
// 携帯用表示
} else {
$htm['form_submit'] = <<<EOP
<input type="submit" name="submit_save" value="変更を保存する"><br>\n
EOP;
}
// 情報メッセージ表示
if (!empty($_info_msg_ht)) {
echo $_info_msg_ht;
$_info_msg_ht = "";
}
$usage = <<<EOP
<ul>
<li>×: 削除</li>
<li>ワード: NG/あぼーんワード (空にすると登録解除)</li>
<li>i: 大文字小文字を無視</li>
<li>re: 正規表現</li>
<li>板: newsplus,software 等 (完全一致, カンマ区切り)</li>
</ul>
EOP;
if ($_conf['ktai']) {
$usage = mb_convert_kana($usage, 'k');
}
echo <<<EOP
{$usage}
<form method="POST" action="{$_SERVER['SCRIPT_NAME']}" target="_self" accept-charset="{$_conf['accept_charset']}">
{$_conf['k_input_ht']}
<input type="hidden" name="detect_hint" value="◎◇ ◇◎">
<input type="hidden" name="path" value="{$path_ht}">
<input type="hidden" name="csrfid" value="{$csrfid}">\n
EOP;
// PC用表示(table)
if (!$_conf['ktai']) {
echo <<<EOP
<table class="edit_conf_user" cellspacing="0">
<tr>
<td align="center">×</td>
<td align="center">ワード</td>
<td align="center">i</td>
<td align="center">re</td>
<td align="center">板</td>
<td align="center">最終ヒット日時と回数</td>
</tr>
<tr class="group">
<td colspan="6">新規登録</td>
</tr>\n
EOP;
$row_format = <<<EOP
<tr>
<td><input type="checkbox" name="nga[%1\$d][del]" value="1"></td>
<td><input type="text" size="35" name="nga[%1\$d][word]" value="%2\$s"></td>
<td><input type="checkbox" name="nga[%1\$d][ignorecase]" value="1"%3\$s></td>
<td><input type="checkbox" name="nga[%1\$d][regex]" value="1"%4\$s></td>
<td><input type="text" size="10" name="nga[%1\$d][bbs]" value="%5\$s"></td>
<td align="right">
<input type="hidden" name="nga[%1\$d][hits]" value="%6\$s">%6\$s
<input type="hidden" name="nga[%1\$d][lasttime]" value="%7\$d">(%7\$d)
</td>
</tr>\n
EOP;
// 携帯用表示
} else {
echo "新規登録<br>\n";
$row_format = <<<EOP
<input type="text" name="nga[%1\$d][word]" value="%2\$s"><br>
板:<input type="text" size="5" name="nga[%1\$d][bbs]" value="%5\$s">
<input type="checkbox" name="nga[%1\$d][ignorecase]" value="1"%3\$s>i
<input type="checkbox" name="nga[%1\$d][regex]" value="1"%4\$s>re
<input type="text" name="nga[%1\$d][del]" value="1">×<br>
<input type="hidden" name="nga[%1\$d][lasttime]" value="%6\$s">
<input type="hidden" name="nga[%1\$d][hits]" value="%7\$d">(%6\$d)<br>\n
EOP;
}
printf($row_format, -1, '', '', '', '', '--', 0);
echo $htm['form_submit'];
if (!empty($formdata)) {
foreach ($formdata as $k => $v) {
printf($row_format,
$k,
htmlspecialchars($v['word'], ENT_QUOTES),
$v['ignorecase'],
$v['regex'],
htmlspecialchars($v['bbs'], ENT_QUOTES),
htmlspecialchars($v['lasttime'], ENT_QUOTES),
htmlspecialchars($v['hits'], ENT_QUOTES)
);
}
echo $htm['form_submit'];
}
// PCなら
if (!$_conf['ktai']) {
echo '</table>'."\n";
}
echo '</form>'."\n";
// 携帯なら
if ($_conf['ktai']) {
echo <<<EOP
<hr>
<a {$_conf['accesskey']}="{$_conf['k_accesskey']['up']}" href="editpref.php{$_conf['k_at_q']}">{$_conf['k_accesskey']['up']}.設定編集</a>
{$_conf['k_to_index_ht']}
EOP;
}
echo '</body></html>';
// ここまで
exit;