-
Notifications
You must be signed in to change notification settings - Fork 28
/
yubin.js
54 lines (49 loc) · 1.64 KB
/
yubin.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
#!/usr/bin/env node
'use strict';
var C = require('colors/safe');
/**
* 郵便番号データダウンロードサンプル
*/
var path = require('path');
var client = require('../index');
// ダウンロードマネージャー設定
client.download
.on('add', function (url) {
console.log(C.blue('NEW'), url);
})
.on('ready', function (stream) {
// ダウンロード完了時の処理(各ファイルごとに呼ばれる)
var file = stream.url.pathname.match(/([^/]+)$/)[1];
var savepath = path.join(__dirname, file);
stream.saveAs(savepath, function (err) {
if (err) {
console.error(err);
return;
}
// 書き込み完了
console.log(C.green('SUCCESS'), C.blue(stream.url.href) + ' => ' + C.yellow(savepath));
console.log(C.magenta('STATE'), client.download.state);
});
})
.on('error', function (err) {
// ダウンロード失敗時の処理(各ファイルごとに呼ばれる)
console.error(C.red('ERROR'), err);
console.log(C.magenta('STATE'), this.state);
})
.on('end', function () {
// ダウンロードキューが空になった時の処理
console.log(C.green.bold('COMPLETE'), this.state);
});
// fetch start
client
.fetch('https://www.post.japanpost.jp/zipcode/dl/kogaki-zip.html')
.then(function (result) {
console.log(C.cyan('INFO'), '東京都の郵便番号データをダウンロードします');
result.$('a[href*="/zip/13tokyo.zip"]').download();
})
.catch(function (err) {
console.error(C.red('ERROR'), err);
})
.finally(function () {
console.log(C.cyan('INFO'), 'スクレイピングが終了しました');
});