|
var phantom = require('phantom'); |
|
var async = require('async'); |
|
var result = {yamanote: []};// 取得したデータを格納 |
|
|
|
// まずは山手線の駅一覧を取得 |
|
phantom.create(function (ph) { |
|
ph.createPage(function (page) { |
|
page.open("http://suumo.jp/chintai/tokyo/en_yamanotesen/", function (status) { |
|
page.evaluate(function () { |
|
var list = []; |
|
$(".searchitem label").each(function(i,station){ |
|
var id = $(station).attr("for"); |
|
var name = $(station).find("span:first").text(); |
|
list.push({id: id, name: name}); |
|
}); |
|
return list; |
|
}, |
|
// ここから各駅の平均家賃収集 |
|
function (stationlist) { |
|
async.eachSeries(stationlist, function(data, next) { |
|
this.data = data; |
|
async.waterfall([ |
|
// 1. phantom.create |
|
function (callback) { |
|
phantom.create({parameters: {'load-images': 'no'}},function (ph) { |
|
this.ph = ph; |
|
callback(null); |
|
}) |
|
}, |
|
// 2. ph.createPage |
|
function (callback) { |
|
this.ph.createPage(function(page){ |
|
this.page = page; |
|
callback(null); |
|
}); |
|
}, |
|
// 3. page.open |
|
function (callback) { |
|
this.page.open("http://suumo.jp/chintai/tokyo/en_yamanotesen/", function (status) { |
|
callback(null); |
|
}); |
|
}, |
|
// 4. config |
|
function (callback) { |
|
this.page.evaluate( |
|
function(data){ |
|
$('input[name=et]').val(['15']); // 徒歩15分以内 |
|
document.getElementById(data.id).checked = true; // 駅指定 |
|
document.getElementById("tc4").checked = true; // エアコン |
|
document.getElementById("tc0").checked = true; // バストイレ別 |
|
return document.getElementsByClassName("js-ensenSearchBtn")[0].click(); |
|
}, |
|
function(){ |
|
setTimeout(function(){callback(null)}, 3000); // 3秒ルール |
|
}, |
|
this.data |
|
) |
|
}, |
|
// 5. calc |
|
function (callback) { |
|
this.page.evaluate( |
|
function(){ |
|
var sum=0; |
|
$('.detailbox-property-point').each(function(){ |
|
sum += parseInt($(this).text(), 10); |
|
}); |
|
return sum / $('.detailbox-property-point').length; |
|
}, |
|
function(average){ |
|
average = Math.round(average*10000); |
|
var obj = {name: this.data.name, rent: average}; |
|
result.yamanote.push(obj); |
|
callback(null); |
|
} |
|
); |
|
} |
|
// 6. screenshot |
|
// , |
|
// function(callback){ |
|
// this.page.render(data.id+'.png'); |
|
// callback(null); |
|
// } |
|
], function (err) { |
|
this.ph.exit(); |
|
next(); |
|
}); |
|
}, function complete(err) { |
|
result.yamanote.sort(function(a,b){ |
|
if(a.rent<b.rent) return -1; |
|
if(a.rent > b.rent) return 1; |
|
return 0; |
|
}); |
|
console.log(JSON.stringify(result, null, '\t')); |
|
ph.exit(); |
|
}); |
|
}); |
|
}); |
|
}); |
|
}); |