-
Notifications
You must be signed in to change notification settings - Fork 5
/
narch-scan.php
189 lines (140 loc) · 5.21 KB
/
narch-scan.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
<?
$URL = 'http://www.archive.gov.tatarstan.ru/_go/anonymous/metbooks/';
$COOKIE = '';
// парсим страницу, вынимаем оттуда все теги SELECT
function U_getselects($url, $content = false)
{
if ($content === false) {
global $COOKIE;
$opts = array(
'http' => array(
'method' => 'GET',
'header' => 'Cookie: ' . $COOKIE,
),
);
$content = file_get_contents($url, false, stream_context_create($opts));
foreach ($http_response_header as $header) {
if (preg_match('/^set-cookie:.*?(PHPSESSID=[^; ]+)/i', $header, $m)) {
$COOKIE = $m[1];
break;
}
}
}
$out = array();
$content = iconv('cp1251', 'utf8', $content);
if (preg_match('@<span class="bt4r">([^<>]+)</span>@si', $content, $m)) {
echo 'Ошибка: ', $m[1], "\n";
exit;
}
$mask = '@<span class="bt4b">([^<>]+)(?:<[^>]+>\s*)*?<select\s+.*?name="([^"]+)"[^>]*>(.*?)</select>@si';
if (preg_match_all($mask, $content, $matches, PREG_SET_ORDER)) {
foreach ($matches as $select) {
$options = preg_match_all('/"([^"]+)"/s', $select[3], $m) ? $m[1] : array();
$out[] = array(
'title' => $select[1],
'name' => $select[2],
'options' => $options,
);
}
}
return $out;
}
// Даём пользователю выбрать какой-то пункт из найденного SELECTа
function U_reactselect($select)
{
for (;;) {
echo $select['title'], "\n";
foreach ($select['options'] as $key => $val) {
if (strpos($val, '/') !== false) list(,$val) = explode('/', $val, 2);
printf("% 2d. %s\n", $key + 1, $val);
}
echo "\nПожалуйста, введите номер пункта и нажмите Enter: ";
$value = (int) fgets(STDIN);
if (in_array($value - 1, array_keys($select['options']))) {
echo "\n";
return $select['options'][$value - 1];
}
echo "\n\nТакого пункта нет в списке. Попытайтесь ещё раз, пожалуйста.\n\n";
}
}
// Отправляем запрос
function U_postselect($url, $fields)
{
global $COOKIE;
$fields = array_map(function($item) {
return iconv('utf8', 'cp1251', $item);
}, $fields);
$opts = array(
'http' => array(
'method' => 'POST',
'header' => 'Cookie: ' . $COOKIE . "\r\n".
'Content-type: application/x-www-form-urlencoded',
'content' => http_build_query($fields),
),
);
return file_get_contents($url, false, stream_context_create($opts));
}
// Просим ввести диапазон
function U_getyear($message)
{
echo $message;
$val = (int) fgets(STDIN);
return min(1917, max($val, 1724));
}
$postcontent = false;
for ($step = 1; $step < 3; $step++) {
$choices = array();
foreach (U_getselects($URL, $postcontent) as $select) {
$choices[$select['name']] = U_reactselect($select);
}
$choices['action'] = 'step' . $step;
$choices['to_step' . ($step + 1)] = 'Далее >';
$postcontent = U_postselect($URL, $choices);
}
$choices = array(
'to_step4' => 'Найти',
'action' => 'step3',
);
foreach (U_getselects($URL, $postcontent) as $select) {
$choices[$select['name']] = U_reactselect($select);
}
$from = U_getyear('Введите начальный год: ');
$to = U_getyear('И конечный: ');
if ($from > $to) {
list($from, $to) = array($to, $from);
}
$years = array();
echo "\n";
for ($year = $from; $year <= $to; $year++) {
$choices['year'] = $year;
$postcontent = U_postselect($URL, $choices);
$found =
strpos($postcontent, "\xed\xe5\x20\xed\xe0\xe9\xe4\xe5\xed\xfb") === false &&
strpos($postcontent, "\xed\xe0\xe9\xe4\xe5\xed\xfb") !== false;
if ($found) {
$years[] = $year;
echo '+';
} else {
echo '-';
}
}
if ($years) {
$years[] = INF;
echo "\nАрхив найден за следующие годы: ";
for ($i = 0, $l = sizeof($years); $i<$l-1; $i++) {
if ($i) echo ', ';
echo $years[$i];
for($c = 0, $i++; $i<$l; $i++, $c++) {
if ($years[$i] - $years[$i-1] > 1) {
$i--;
if ($c) {
echo '-', $years[$i];
}
break;
}
}
}
echo "\n";
} else {
echo "\nНичего не найдено.\n";
}