-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck.php
161 lines (138 loc) · 4.43 KB
/
check.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
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>リダイレクト状況チェックツール:結果画面</title>
<style>
table {
table-layout: fixed;
font-size: small;
}
th, td {
border: solid 1px #999;
}
.elipsis {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
</style>
</head>
<body>
<table>
<col style="width:28%;">
<col style="width:20%;">
<col style="width:3%;">
<col style="width:20%;">
<col style="width:3%;">
<col style="width:28%;">
<tr>
<th>
URL
</th>
<th>
タイトル
</th>
<th>
Status1
</th>
<th>
リダイレクト先タイトル
</th>
<th>
Status2
</th>
<th>
リダイレクト先URL
</th>
</tr>
<?php
//タイムアウトしないようにする
set_time_limit(0);
//URL一覧をPOSTのデータから生成する
$urls = [];
if (isset($_POST['url_from'])) {
$str = $_POST['url_from'];
$str = str_replace("\r\n", "\n", $str);
$str = str_replace("\r", "\n", $str);
$urls = explode("\n", $str);
}
// 待ち時間の定義(整数秒)
$interval = 3;
// URLを順番に処理
foreach ($urls as $url) {
//処理ごとに指定秒数まつ
sleep($interval);
// 出力バッファの内容を送信する
@ob_flush();
@flush();
// (1回目)cURLセッションを初期化
$ch = curl_init($url);
// (1回目)cURLオプションを設定
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
//FOLLOWLOCATION すると 最終的なリダイレクト結果まで一気に行くのでそれはしない
//curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
// (1回目)HTTPリクエストを実行
$response = curl_exec($ch);
// (1回目)ステータスコードを取得
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
// (1回目)cURLセッションを終了
curl_close($ch);
// (1回目)ページタイトルを取得
$dom = new DOMDocument();
@$dom->loadHTML($response);
$title = $dom->getElementsByTagName('title')->item(0)->nodeValue;
// 1回目のステータスコードがリダイレクト系の時だけ、最終リダイレクト先の確認処理
if ($httpCode !== 301 && $httpCode !== 302 && $httpCode !== 303 && $httpCode !== 307) {
$titleR = "-";
$httpCodeR = "-";
$redirectUrlR = "-";
}else{
// (2回目)cURLセッションを初期化
$chR = curl_init($url);
// (2回目)cURLオプションを設定
curl_setopt($chR, CURLOPT_RETURNTRANSFER, true);
curl_setopt($chR, CURLOPT_FOLLOWLOCATION, true);
// (2回目)HTTPリクエストを実行
$responseR = curl_exec($chR);
// (2回目)ステータスコードを取得
$httpCodeR = curl_getinfo($chR, CURLINFO_HTTP_CODE);
// (2回目)リダイレクト先のURLを取得
$redirectUrlR = curl_getinfo($chR, CURLINFO_EFFECTIVE_URL);
// (2回目)cURLセッションを終了
curl_close($chR);
// (2回目)ページタイトルを取得
$domR = new DOMDocument();
@$domR->loadHTML($responseR);
$titleR = $domR->getElementsByTagName('title')->item(0)->nodeValue;
}
?>
<tr>
<td>
<?php echo $url ?>
</td>
<td style="max-width: 0;">
<div class="elipsis">
<?php echo $title ?>
</div>
</td>
<td>
<?php echo $httpCode ?>
</td>
<td style="max-width: 0;">
<div class="elipsis">
<?php echo $titleR ?>
</div>
</td>
<td>
<?php echo $httpCodeR ?>
</td>
<td>
<?php echo $redirectUrlR ?>
</td>
</tr>
<?php } ?>
</table>
</body>
</html>