-
Notifications
You must be signed in to change notification settings - Fork 18
/
irr.js
426 lines (364 loc) · 13.8 KB
/
irr.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/*
irr.js - sobnik.chrome module to work with Irr.ru
Copyright (c) 2014 Artur Brugeman <[email protected]>
Copyright other contributors as noted in the AUTHORS file.
This file is part of sobnik.chrome, Sobnik plugin for Chrome:
http://sobnik.com.
This is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
This software is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this program. If not, see
<http://www.gnu.org/licenses/>.
*/
;(function () {
console.log ("Loading irr");
var sobnik = window.sobnik;
console.assert (sobnik, "Sobnik required");
var cmn = sobnik.require ("cmn");
var boards = sobnik.require ("boards");
var irr = {
name: "irr.ru",
// FIXME add
abuseReasons: {
},
urls: [
"http[s]?://.*\\.?irr.ru/real-estate/.+advert[\\d]+",
],
trigger: "#contact_phones img",
// FIXME add
untrigger: [
],
// FIXME move this to capture stuff
clicks: ["#show_contact_phones"],
capture: {
phoneImage: {
selector: "#contact_phones img",
dropSize: true,
},
photoImage: {
dynamic: function () {
var data = {
dropImage: true,
detectText: true,
iterator: {},
}
var image = "div.nyroModalImage>img";
var queue = [];
data.iterator.next = function ()
{
return cmn.Promise (function (fulfill) {
if (!queue.length)
{
fulfill (false);
return;
}
var item = queue.shift ();
cmn.waitCond (function () {
var close = "a.nyroModalClose";
if ($(close).length)
cmn.click (close);
return $(close).length == 0;
}).then (function () {
cmn.click (item);
return cmn.waitDomLoaded (image);
}).then (function () {
fulfill (true);
});
return;
// click the link
cmn.click (item);
cmn.waitCond (function () {
// wait until image get's active
var src = $(image).attr ('src');
src = src.match (rx);
src = src.length ? src[1] : null;
return src == href;
}).then (function () {
// wait until image is loaded
return cmn.waitDomLoaded (image);
}).then (function () {
// now we're done!
fulfill (true);
});
});
}
data.iterator.value = function ()
{
return $(image)[0];
}
data.iterator.start = function () {
// $("ul.slider_pagination li a").each (function (i, e) {
$("div.slides a.nyroModal").each (function (i, e) {
queue.push (e);
});
return cmn.Now ();
}
console.log ("Capture settings", data);
return data;
},
},
},
// FIXME it is flowing!
watermark: {
top_left: {
right: 192,
bottom: 48,
},
bottom_right: {
right: 10,
bottom: 10,
},
},
list: {
// the row in the list
rowSelector: "div.adds_cont div.add_list div.add_title_wrap",
// container for the link to an ad (relative to rowSelector)
hrefSelector: "a",
// links matching this pattern will be marked in the list
pattern: "advert\\d+\\.html",
// matching urls will be treated as a list of ads
urls: [
"http[s]?://.*\\.?irr.ru/real-estate/.*(?!advert\\d+\\.html)" // (?! negated lookahead)
],
mark: function (row, ad) {
var html = "<span style='display:block;"
+"float:left; margin:4px 0 0 0; padding: 0'>"
+boards.marker (ad)+"</span>";
$(row).prepend (html);
return $(row).find ("span")[0];
},
},
page: {
marks: [
{
selector: "h1.title3",
mark: function (parent, ad) {
var html = "<span style='display:block;"
+"float:left; margin:12px 0 0 0; padding: 0'>"
+boards.marker (ad)+"</span>";
$(parent).prepend (html);
return $(parent).find("span")[0];
},
},
{
selector: "#contact_phones",
mark: function (parent, ad) {
var html = "<span style='display:block;"
+"float:left; margin:4px 0 0 0; padding: 0'>"
+boards.marker (ad)+"</span>";
$(parent).prepend (html);
return $(parent).find("span")[0];
},
},
],
},
url2id: function (url) {
var id = url.match (/advert(\d+)\.html/);
// console.log ("Url "+url);
// console.log (id);
if (!id)
return "";
return "irr:"+id[1];
},
fields: {
name: {
selector: "ul.form_info li",
data: {
name: {
rx: "Контактное\\s+лицо:\\s+(.*)",
rxi: 1,
},
},
},
phone_name: {
selector: "#contact_phones",
data: {
name: {},
},
},
seller: {
selector: "ul.form_info li",
data: {
name: {
rx: "Продавец:\\s+(.*)\\s*—\\s*Все",
rxi: 1,
},
user_ads: {
rx: "Все\\s+объявления\\s+продавца\\s+(\\d+)",
rxi: 1,
},
},
},
photo: {
selector: "div.slides div.slide a.nyroModal img",
attr: "src",
data: {
photo: {},
}
},
address: {
selector: "div.content_left div.clear a.address_link",
data: {
city: {
rx: "([^,]+),",
rxi: 1,
},
street: {
rx: "[^,]+,\\s+(.*)",
rxi: 1,
},
}
},
metro: {
selector: "div.address_block span.metro",
data: {
district: {}
},
},
price: {
selector: "table.title-wrap div.credit_cost",
data: {
price: {
rx: "[\\d.]+",
conv: function (s) {
return s.replace (".", "");
},
},
daily: {
rx: "сутки",
conv: function (s) {
return s ? "daily" : "";
},
},
},
},
type: {
selector: "#zzzz",
data: {
type: {
conv: function () {
if (document.location.href.match ("/rent/"))
return "sdam";
if (document.location.href.match ("/sale/"))
return "prodam";
return "unknown";
},
}
},
},
rooms: {
selector: "li.cf_block_rooms",
data: {
rooms: {
rx: "в квартире:\\s*(\\d+)",
rxi: 1
},
},
},
floor: {
selector: "li.cf_block_etage",
data: {
floor: {
rx: "Этаж:\\s*(\\d+)",
rxi: 1
},
}
},
floors: {
selector: "li.cf_block_etage-all",
data: {
floors: {
rx: "здании:\\s*(\\d+)",
rxi: 1
},
}
},
area: {
selector: "li.cf_block_meters-all",
data: {
area: {
rx: "площадь:\\s*(\\d+)",
rxi: 1
},
}
},
notes: {
selector: "div.content_left>p.text",
data: {
notes: {},
},
},
author_partner: {
selector: "span.partner",
data: {
author: {
conv: function (s) {
// skip same selector
if (s.match ("просмотров"))
return;
if (!s.match ("Частное"))
return "agent";
},
}
}
},
author_fee: {
selector: "li.cf_block_fee",
data: {
author: {
conv: function (s) {
console.log ("Fee", s);
if (!s.match ("Без комиссии"))
return "agent";
}
}
}
},
lat: {
selector: "#geo_x", // funny how lat became x
attr: "value",
data: {
lat: {}
}
},
lon: {
selector: "#geo_y", // funny how lon became y
attr: "value",
data: {
lon: {}
}
},
date: {
selector: "div.grey_info span.data",
data: {
created: {
conv: function (s) {
return boards.dateFmt (
s.replace (" января ", ".01.")
.replace (" февраля ", ".02.")
.replace (" марта ", ".03.")
.replace (" апреля ", ".04.")
.replace (" мая ", ".05.")
.replace (" июня ", ".06.")
.replace (" июля ", ".07.")
.replace (" августа ", ".08.")
.replace (" сентября ", ".09.")
.replace (" октября ", ".10.")
.replace (" ноября ", ".11.")
.replace (" декабря ", ".12.")
);
}
}
}
}
}
};
window.sobnik.boards.avito = irr;
window.sobnik.boards.current = irr;
}) ();