-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.php
231 lines (199 loc) · 7.75 KB
/
index.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
223
224
225
226
227
228
229
230
231
<?php
error_reporting( E_ALL );
ini_set( 'display_errors', 1 );
/*
*
* НАСТРОЙКИ СКРИПТА
*
* */
$langFrom = 'ru'; // ЯЗЫК ИСТОЧНИКА
$langTo = 'ru'; // ЯЗЫК ПЕРЕВОДА. ЕСЛИ ПЕРЕВОД НЕ НУЖЕН, УКАЗАТЬ ЯЗЫК ИСТОЧНИКА
$site = 'https://www.myjane.ru/articles/rubric/?id=3'; // ССЫЛКА НА РУБРИКУ СТАТЕЙ MYJANE.RU
$startPage = 1; // НОМЕР СТРАНИЦЫ, С КОТОРОЙ НАЧИНАТЬ ПАРСИТЬ СТАТЬИ
$depth = 20; // СКОЛЬКО СТРАНИЦ РУБРИКИ ПРОСМАТРИВАТЬ?
$articlesCount = 5; // СКОЛЬКО СТАТЕЙ ДЕРГАТЬ ДЛЯ ВАЙТА?
$withImages = 1; // ЗАГРУЖАТЬ ЛИ РАНДОМНЫЕ КАРТИНКИ С PIXABAY?
/*
* ПРОКСИ
* ФОРМАТ http://ip:port ИЛИ http://user:password@ip:port
* ОСТАВИТЬ ПУСТЫМ, ЕСЛИ БЕЗ ПРОКСИ
* */
$proxy = '';
/*
*
* ЗАГРУЗКА НЕОБХОДИМЫХ БИБЛИОТЕК
*
* */
require_once __DIR__ . '/vendor/autoload.php';
require_once __DIR__ . '/zip.php';
require_once 'htmldom.php';
/*
*
* ИНИЦИАЛИЗАЦИЯ БИБЛИОТЕКИ ПЕРЕВОДА
*
* */
use Stichoza\GoogleTranslate\GoogleTranslate;
$tr = new GoogleTranslate();
$tr->setSource( $langFrom );
$tr->setTarget( $langTo );
$tr->setOptions( [ 'proxy' => $proxy ] );
/*
*
* СБОР ССЫЛОК НА СТАТЬИ C N ПЕРВЫХ СТРАНИЦ
*
* */
$articles = [];
echo "Получаю ссылки на статьи<br>";
flush();
for ( $page = $startPage; $page <= $startPage + $depth; $page++ ) {
echo "Просматриваю страницу #$page<br>";
flush();
$html = file_get_html( "$site&page=$page" );
foreach ( $html->find( 'a' ) as $a ) {
if ( strpos( $a->href, 'articles/text/?id=' ) !== false ) {
if ( strpos( $a->href, 'comments' ) === false ) {
$articles[] = $a->href;
}
}
}
}
/*
*
* СОЗДАНИЕ ВАЙТА
*
* */
// удаление старых вайтов из папки output
$dir = __DIR__ . "/output/";
$allowedFiles = [ '.', '..', 'w.php', 'contact.php', 'themes' ];
$files = scandir( $dir );
foreach ( $files as $file ) {
if ( !in_array( $file, $allowedFiles ) ) unlink( $dir . $file );
}
for ( $i = 1; $i <= $articlesCount; $i++ ) {
/*
*
* ОБЩИЙ ПАРСИНГ СТАТЬИ
*
* */
echo "Обрабатываю статью #$i<br>";
flush();
$a = array_rand( $articles );
$article = $articles[ $a ];
unset( $articles[ $a ] );
$translated = [];
$html = file_get_html( $article );
$data[ 'title' ] = $tr->translate( $html->find( 'h1', 0 )->plaintext );
$data[ 'text' ] = $html->find( 'div.usertext > div.usertext', 0 )->outertext;
/*
*
* ОБРАБОТКА ТЕКСТА СТАТЬИ
*
* */
$html = str_get_html( $data[ 'text' ] );
// убрать все ссылки в статье
foreach ( $html->find( 'a' ) as $a ) {
$a->href = '#';
}
// убрать содержимое рекламных баннеров
foreach ( $html->find( 'div > div' ) as $div ) {
$div->innertext = '';
}
$html = $html->save();
// поиск и запись краткого превью статьи
preg_match( '/<b>.*<\/b>/', $html, $matches );
if ( $matches ) {
$data[ 'short' ] = str_replace( '<b>', '', str_replace( '</b>', '', $matches[ 0 ] ) ) . '...';
$data[ 'short' ] = $tr->translate( $data[ 'short' ] );
}
// обработка мелочи в HTML-разметке
$html = preg_replace( '/<a[^>]+>/', '', $html );
$html = preg_replace( '/<\/a>/', '', $html );
$html = preg_replace( '/<br \/> <br \/>/', '<br />', $html );
$html = preg_replace( '/<br \/>/', '<p>', $html );
$html = preg_replace( '/<br>/', '<p>', $html );
$html = preg_replace( '/<b>/', '<p><b>', $html );
$html = preg_replace( '/<\/b>/', '</b></p>', $html );
$html = preg_replace( '/<div class\=\"usertext\">/', '', $html );
$html = preg_replace( '/<div>/', '', $html );
$html = preg_replace( '/<\/div>/', '', $html );
$html = preg_replace( '/<h3><p>/', '<h3>', $html );
// перевод статьи
$parts = preg_split( '/(<[^>]*[^\/]>)/i', $html, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE );
foreach ( $parts as $p ) {
if ( $langFrom != $langTo ) usleep( 500000 );
if ( empty( trim( $p ) ) ) continue;
if ( strpos( $p, '<' ) !== false ) {
$translated[] = $p;
continue;
}
$p = trim( $p );
if ( mb_strlen( $p ) < 5000 ) {
$translated[] = $tr->translate( $p );
}
}
$html = implode( '', $translated );
// записть готовой статьи в .html файл под ее порядковым номером
$posts[] = [ 'id' => $i, 'title' => $data[ 'title' ], 'filename' => "$i.html", 'short' => $data[ 'short' ] ?? '' ];
file_put_contents( "$dir/$i.html", $html );
file_put_contents( "$dir/posts.json", json_encode( $posts ) );
}
/*
*
* ЗАГРУЗКА КАРТИНОК ДЛЯ СТАТЬЕЙ, ЕСЛИ НУЖНО
*
* */
if ( $withImages ) {
foreach ( $posts as $post ) {
echo "Загружаю изображение #{$post['id']}<br>";
flush();
$imageFile = "$dir/{$post['id']}.jpg";
$image = getImage();
file_put_contents( $imageFile, file_get_contents( $image ) );
}
}
echo "Выполняю прочую мелочевку<br>";
flush();
/*
*
* МАССИВ ТЕКСТОВЫХ ЗНАЧЕНИЙ ЭЛЕМЕНТОВ ВАЙТА
*
* */
$lang = [
'readMore' => $tr->translate( 'Читать полностью...' ),
'search' => $tr->translate( 'Поиск' ),
'searchInput' => $tr->translate( 'Хочу найти...' ),
'recentPosts' => $tr->translate( 'Свежие статьи' ),
'published' => $tr->translate( 'Опубликовано' ),
'prev' => $tr->translate( 'Назад' ),
'next' => $tr->translate( 'Вперед' ),
'blog' => $tr->translate( 'Блог' ),
'contact' => $tr->translate( 'Контакты' ),
'name' => $tr->translate( 'Ваше имя' ),
'message' => $tr->translate( 'Сообщение' ),
'send' => $tr->translate( 'Отправить сообщение' ),
'searchSubmit' => $tr->translate( 'Найти!' ),
'images' => $tr->translate( 'Галерея' ),
'success' => $tr->translate( 'Спасибо за ваше сообщение!' ),
];
file_put_contents( "$dir/lang.json", json_encode( $lang ) );
/*
*
* ЗАПИСЬ КОНФИГУРАЦИОННОГО ФАЙЛА
*
* */
$themes = [ 'Cerulean', 'Cosmo', 'Cyborg', 'Darkly', 'Flatly', 'Journal', 'Litera', 'Lumen', 'Lux', 'Materia', 'Minty', 'Pulse', 'Sandstone', 'Simplex', 'Slate', 'Solar', 'Spacelab', 'Superhero', 'United', 'Yeti' ];
$theme = strtolower( $themes[ rand( 0, count( $themes ) - 1 ) ] );
$config = [
'theme' => $theme,
];
file_put_contents( "$dir/config.json", json_encode( $config ) );
function getImage () {
usleep( 1000000 );
$result = @file_get_contents( 'https://pixabay.com/api/?id=' . rand( 1, 999999 ) . '&key=7331766-71ba439a87eec21d8ee411b77' );
if ( strpos( $result, 'ERROR 400' ) !== false || !$result ) {
return getImage();
} else {
$result = json_decode( $result, true );
return $result[ 'hits' ][ 0 ][ 'largeImageURL' ];
}
}