-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.js
186 lines (173 loc) · 4.63 KB
/
index.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
var http = require('http')
, fs = require('fs')
, exec = require('child_process').exec
, path = require('path')
, homeRoot = process.cwd() + '/'
, temp = require('temp')
, settings = { zoom_level:0
, tiles_prefix:'image_'
, path_to_image:'panos'
, output_prefix:'output_'
, tmp_dir_prefix: 'gpan_tmp_'
, pub: true
, api_retry: 3
, api_timeout: 5000
}
exports.version = '1.2.1';
exports.config = function(key, value){
if(typeof(key) != 'string' && typeof(key) == 'object'){
for (var i in key)
settings[i] = key[i];
} else if (typeof(key) == 'string' && value != null && value !='function') {
settings[key] = value;
} else {
return settings[key];
}
}
exports.savePanorama = function(panos, cb) {
if(typeof(panos) === 'array'){
for(var i=0;i<panos.length;i++){
temp.mkdir(settings.tmp_dir_prefix + panos[i], function(err, path){
if (err)
return cb(err);
_savePanorama(panos[i], path, function(err, imagePath){
if (err)
return cb(err);
return cb(null, imagePath);
})
})
}
} else {
temp.mkdir(settings.tmp_dir_prefix + panos, function(err, path){
if (err)
return cb(err);
_savePanorama(panos, path, function(err,imagePath){
if (err)
return cb(err);
return cb(null, imagePath);
})
})
}
}
var _savePanorama = function(panoId, tmp_dir, cb) {
var panoramaRule = getPanoramaZoom(settings.zoom_level)
, currentImageNum = 0
, downloaded = 0
, pub = (settings.pub) ? 'public/' : ''
, imagePath = homeRoot + pub + settings.path_to_image + '/'
, totalTiles = (panoramaRule.x +1) * (panoramaRule.y+1);
if (typeof(tmp_dir) === 'function') {
var tmpDir = settings.tmp_dir;
cb = tmp_dir;
} else
tmpDir = tmp_dir;
for(var y =0; y <= panoramaRule.y; y++) {
for(var x =0; x <= panoramaRule.x; x++) {
currentImageNum++;
saveTile(panoId, x, y, padNumber(currentImageNum, 5), tmpDir, function(err, _x, _y) {
downloaded++;
if (err)
return cb(err);
if(downloaded == totalTiles) {
var command = 'montage '
+ tmpDir + '/' + settings.tiles_prefix + '*.jpg -tile '
+ (panoramaRule.x + 1) + 'x' + (panoramaRule.y + 1)
+ ' -geometry 512x512 -quality 100 '
+ "'" + imagePath + settings.output_prefix + panoId + '.jpg' + "'" ;
ensureDir(imagePath, function(e){
if (err)
return cb(err, null);
exec(command, function(err, stdout, stderr) {
return cb(err, imagePath + settings.output_prefix + panoId + '.jpg');
});
});
}
});
}
}
}
var saveTile = function(panoId, x, y, imageNumber, tmpDir, cb) {
var random = Math.floor(Math.random()*4)
, options = { host: 'cbk'+random+'.googleapis.com'
, port: 80
, path: '/cbk?output=tile&zoom='
+ settings.zoom_level
+ '&x=' + x + '&y=' + y
+ '&panoid=' + panoId
}
http.get(options, function(resp){
var image = '';
resp.setEncoding('binary');
resp.on('data', function(chunk){
image += chunk;
});
resp.on('end', function(r) {
var inputPath = path.join(tmpDir, settings.tiles_prefix+imageNumber+'.jpg');
fs.writeFile(inputPath, image, 'binary', function(err){
if (err)
return cb(err, null, null)
//setTimeout(function(){
cb(null, x, y);
//}, 1000);
});
});
}).on("error", function(err){
//TODO: retry x times
//TODO: handle timeout error
return cb(err);
});
}
var getPanoramaZoom = function(zoom) {
switch(zoom) {
case 0:
return {zoom:zoom,x:0,y:0}
break;
case 1:
return {zoom:zoom,x:1,y:0}
break;
case 2:
return {zoom:zoom,x:3,y:1}
break;
case 3:
return {zoom:zoom,x:6,y:3}
break;
case 4:
return {zoom:zoom,x:12,y:6}
break;
case 5:
return {zoom:zoom,x:25,y:12}
break;
default:
return {zoom:0,x:0,y:0}
break;
}
}
var padNumber = function(n, width, z) {
z = z || '0';
n = n + '';
return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
}
var ensureDir = function(dir, mode, callback) {
if (mode && typeof mode === 'function') {
callback = mode;
mode = null;
}
mode = mode || 0777 & (~process.umask());
callback = callback || function () {};
_ensureDir(dir, mode, callback);
}
function _ensureDir(dir, mode, callback) {
var existsFunction = fs.exists || path.exists;
existsFunction(dir, function (exists) {
if (exists) return callback(null);
var current = path.resolve(dir)
, parent = path.dirname(current);
_ensureDir(parent, mode, function (err) {
if (err) return callback(err);
fs.mkdir(current, mode, function (err) {
if (err) return callback(err);
callback();
});
});
});
}