forked from unpush/p2-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmimizun.php
executable file
·42 lines (36 loc) · 1022 Bytes
/
mimizun.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
<?php
/*
みみずんID検索にURLを渡す。
引数:
host:$hostを渡す (任意)
bbs:$bbsを渡す
id:IDを渡す
img:何か含まれていれば画像を表示
*/
include_once './conf/conf.inc.php';
$_login->authorize(); //ユーザ認証
require_once './plugin/mimizun/mimizun.class.php';
$mimizun = new mimizun();
$mimizun->host = $_GET['host'];
$mimizun->bbs = $_GET['bbs'];
// 画像を表示する場合
if ($_GET['img']) {
if ($mimizun->isEnable()) {
header("Content-Type: image/png");
readfile('./plugin/mimizun/mimizun.png');
} else {
header("Content-Type: image/gif");
readfile('./img/spacer.gif');
}
exit;
} else {
if ($mimizun->isEnable()) {
$mimizun->id = $_GET['id'];
//header('Location: ' . html_entity_decode(P2Util::throughIme($mimizun->getIDURL())));
$url = P2Util::throughIme($mimizun->getIDURL());
$url = str_replace('&', '&', $url);
header('Location: ' . $url);
} else {
P2Util::printSimpleHtml('この板は対応していません。');
}
}