-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
228 lines (194 loc) · 8.36 KB
/
main.js
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
const http = require('http');
const fetch = require('isomorphic-unfetch');
const fs=require('fs');
const winston = require('winston');
const { JSDOM } = require('jsdom');
const logger = require('./log')(module);
// параметры по умолчанию
let URL = 'http://dom.mingkh.ru';
let rowCount = -1; //количество адрессов (если -1 то выведет ВСЕ)
let pauseTime = 250;
//поверяем наличие файла с конфигами
if (fs.existsSync(`./config.json`)) {
const configText = fs.readFileSync('./config.json', 'utf-8');
const config = JSON.parse(configText);
URL = config.URL;
rowCount = config.rowCount; //количество адрессов (если -1 то выведет ВСЕ)
pauseTime = config.pauseTime;
} else {
logger.error('./config.json not exist! The default settings are used');
}
//Если папка для хранения html и json домов не существует то создать
if (!fs.existsSync('./html')){
fs.mkdirSync('./html');
}
//Если папка для хранения логов не существует то создать
if (!fs.existsSync('./log')){
fs.mkdirSync('./log');
}
// функция делает паузу программы
const pause = (ms) => {
const date = new Date();
let curDate = null;
do { curDate = new Date(); }
while(curDate-date < ms);
}
// функция получает весь список адресов по городу и региону
const getListHouses = async (regionUrl = 'sankt-peterburg', cityUrl = 'sankt-peterburg') => {
try{
logger.info('getListHouses start');
while(true) {
logger.info(`get data from ${cityUrl}`);
let body = `current=1&rowCount=${rowCount}®ion_url=${regionUrl}`;
body += cityUrl ? `&city_url=${cityUrl}` : '';
const responseFetch = await fetch('http://dom.mingkh.ru/api/houses', {
method: 'POST',
headers: {
Accept: '*/*',
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
},
body: `${body}`,
});
if (responseFetch.ok) {
logger.info('I got all the addresses');
return await responseFetch.json();
}
logger.info('I did not receive all the addresses, I ll repeat in 1 minute');
pause(60000);
}
} catch (error) {
logger.error('getListHouses:' + error.message)
}
};
// скопировать html-файл дома
const getHtmlHouses = async (region = 'default', listHouses, city) => {
const date = new Date();
for (let house of listHouses) {
logger.info('getHtmlHouses: id house ' + house.url);
try {
const houseId = house.url.split('/')[3];
const houseUrl = URL+house.url;
//если html для данного дома нет то создать
let fileName = `./html/${region}`;
fileName += city ? `/${city}`: '';
fileName += `/${houseId}.html`;
if (!fs.existsSync(fileName)) {
const houseFetch = await fetch(houseUrl);
if (houseFetch.ok) {
const houseHtml = await houseFetch.text();
fs.writeFileSync(fileName, houseHtml, 'utf-8');
} else {
logger.error('error get html' + houseId + error);
pause(30000);
}
pause(pauseTime);
}
} catch (error) {
pause(30000);
logger.error('server in while:' + error.message);
}
}
console.log('На создание и проверку HTML файлов затрачено:' + new Date()-date + ' мс');
}
//записать json-файл с информацией о доме
//json-файлы создаются путем распарсивания html-файлов лежащих в папке ./html
const writeJsonHouses = (path) => {
fs.readdir(`${path}`, async (err, files) => {
logger.info('Запись файлов JSON начнется через 5 сек');
pause(5000);
//парсин операция долгая и для большого количества файлов может занять продолжительное время
//поэтому в переменную number мы сохраняем обработаное количество файлов и выводим это числов консоль
let number = 0;
try{
for (let file of files) {
if(file.split('.').length>0 && file.split('.')[1] === 'html') {
number+=1;
//еслт json для данного html нет то создать
if (!fs.existsSync(`${path}/${file.split('.')[0]}.json`)) {
const dom = await JSDOM.fromFile(`${path}/${file}`, {});
let json = {'id': file.split('.')[0]};
//вытаскиваем информация из DOM
let houseTable = dom.window.document.querySelectorAll('.col-md-6 .table.table-striped tbody');
houseTable.forEach(table => {
houseChildren = table.children;
for (let i=0; i<houseChildren.length; i++) {
let key = houseChildren[i].children[0].innerHTML.replace('<sup>2</sup>', '.кв');
let value = houseChildren[i].children.length>=3 ?
houseChildren[i].children[2].innerHTML:
houseChildren[i].children[1].innerHTML;
json[key] = value;
}
let houseLng = dom.window.document.querySelector('input#mapcenterlng').value;
let houseLat = dom.window.document.querySelector('input#mapcenterlat').value;
json['coordinates'] = [houseLng, houseLat];
});
fs.writeFileSync(`${path}/${file.split('.')[0]}.json`, JSON.stringify(json), 'utf-8');
console.log('Конвертировано в JSON ' + number + ' файл ' + path);
} else {
console.log(number + ' ый(ой) файл пропущен, он уже конвертирован в JSON');
}
}
};
} catch (error) {
logger.error('writeJsonHouses:' + error.message)
}
logger.info(`JSON файлы ${path} записаны`);
});
}
//главная исполняемая функция программы
const main = async (region) => {
try {
//Если папка для хранения информации о домах города не существует то создать
if (!fs.existsSync(`./html/${region}`)){
fs.mkdirSync(`./html/${region}`);
}
let result = await getListHouses(region);
logger.info('server promise then OK: total = ' + result.total);
fs.writeFileSync(`./html/${region}/main.json`, JSON.stringify(result.rows), 'utf-8');
let uniqueUrlCity = {};
for(let houseRow of result.rows) {
let url = String(houseRow.url).split('/')[2];
if(uniqueUrlCity[url]===undefined) {
uniqueUrlCity[url] = true;
}
}
for(let city in uniqueUrlCity) {
console.log(city);
let result = await getListHouses(region, city);
logger.info('server promise then OK: total = ' + result.total);
if (!fs.existsSync(`./html/${region}/${city}`)){
fs.mkdirSync(`./html/${region}/${city}`);
}
fs.writeFileSync(`./html/${region}/${city}/main.json`, JSON.stringify(result.rows), 'utf-8');
await getHtmlHouses(region, result.rows, city);
const path = `./html/${region}/${city}`
writeJsonHouses(path);
}
} catch(error) {
logger.error(`main: ${error.message}`);
}
}
const main_city = async (region, city) => {
try {
//Если папка для хранения информации о домах города не существует то создать
if (!fs.existsSync(`./html/${region}`)){
fs.mkdirSync(`./html/${region}`);
}
let result = await getListHouses(region, city);
logger.info('server promise then OK: total = ' + result.total);
if (!fs.existsSync(`./html/${region}/${city}`)){
fs.mkdirSync(`./html/${region}/${city}`);
}
fs.writeFileSync(`./html/${region}/${city}/main.json`, JSON.stringify(result.rows), 'utf-8');
await getHtmlHouses(region, result.rows, city);
const path = `./html/${region}/${city}`
writeJsonHouses(path);
} catch(error) {
logger.error(`main: ${error.message}`);
}
}
//регион
let region = 'leningradskaya-oblast';
let city = 'villozi';
//main(region);
main_city(region, city);