forked from florianf/tilelive
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtilelive.js
255 lines (227 loc) · 8.56 KB
/
tilelive.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
var tilelive = exports;
var path = require('path');
var url = require('url');
var util = require('util');
var os = require('os');
var Queue = require('./queue');
var EventEmitter = require('events').EventEmitter;
var CopyTask = require('./copytask');
var Scheme = require('./scheme');
var sm = new (require('@mapbox/sphericalmercator'));
tilelive.CopyTask = CopyTask;
tilelive.Scheme = Scheme;
tilelive.protocols = {
// Add your protocol handlers here.
// 'mbtiles:': require('@mapbox/mbtiles')
};
tilelive.defaults = {
id: null,
name: '',
description: '',
version: "1.0.0",
legend: null,
scheme: "xyz",
minzoom: 0,
maxzoom: 22,
bounds: [-180, -85.05112877980659, 180, 85.05112877980659],
center: null
};
// List all tile source URIs from all tile sources.
tilelive.list = function(source, callback) {
if (typeof callback !== 'function') {
throw new Error('Callback required as second argument');
}
if (!Object.keys(tilelive.protocols).length) {
return callback(new Error('No tilesource protocols defined'));
}
var result = {};
var queue = Object.keys(tilelive.protocols);
var load = function() {
if (!queue.length) return callback(null, result);
tilelive.protocols[queue.shift()].list(source, function(err, uris) {
if (err) return callback(err);
if (uris) for (var key in uris) {
if (result[key] == null) result[key] = uris[key];
}
load();
});
};
load();
};
// Obtains a tile source URI from an ID, checking all tile source protocols
// until one is found.
tilelive.findID = function(source, id, callback) {
if (typeof callback !== 'function') {
throw new Error('Callback required as third argument');
}
var protocols = Object.keys(tilelive.protocols);
check();
function check(err, uri) {
if (!protocols.length) {
return callback(new Error('Tileset does not exist'));
}
tilelive.protocols[protocols.shift()].findID(source, id, function(err, uri) {
if (err) check();
else callback(null, uri);
});
}
};
tilelive.load = function(uri, callback) {
if (typeof callback !== 'function') {
throw new Error('Callback required as second argument');
}
if (typeof uri === 'string') uri = url.parse(uri, true);
// Handle uris in the format /path/to/dir?id=bar
if (!uri.protocol && uri.pathname && uri.query.id) {
tilelive.findID(uri.pathname, uri.query.id, function(err, uri) {
if (err) callback(err);
else tilelive.load(uri, callback);
});
return;
}
if (!tilelive.protocols[uri.protocol]) {
return callback(new Error('Invalid tilesource protocol'));
}
var handler = new tilelive.protocols[uri.protocol](uri, callback);
};
tilelive.auto = function(uri) {
uri = url.parse(uri);
// Attempt to load any modules that may match keyword pattern.
var keyword = uri.protocol
? uri.protocol.replace(':','')
: path.extname(uri.pathname).replace('.','');
uri.protocol = uri.protocol || keyword + ':';
if (!tilelive.protocols[uri.protocol]) {
// Attempt to support the specified tilelive protocol. So far, the plugin's are in the
// following formats (where * is the format name):
// @mapbox/tilelive-*
// @mapbox/*
// tilelive-*
// *
let pluginName = '@mapbox/tilelive-' + keyword;
try { require(pluginName).registerProtocols(tilelive); }
catch(err) {
pluginName = '@mapbox/' + keyword;
try { require(pluginName).registerProtocols(tilelive); }
catch(err) {
pluginName = 'tilelive-' + keyword;
try { require(pluginName).registerProtocols(tilelive); }
catch(err) {
pluginName = keyword;
try { require(pluginName).registerProtocols(tilelive); }
catch(err) {
console.log( 'Unable to add plugin for ' + keyword + ' in tilelive.' );
pluginName = null;
}
}
}
}
if (pluginName != null) {
console.log( 'Added ' + pluginName + ' plugin to tilelive.' );
}
}
return uri;
};
// Load a tilesource and retrieve metadata
tilelive.info = function(uri, callback) {
if (typeof callback !== 'function') {
throw new Error('Callback required as second argument');
}
tilelive.load(uri, function(err, handler) {
if (err) return callback(err);
handler.getInfo(function(err, data) {
if (data) {
for (var key in tilelive.defaults) {
if (data[key] == null) data[key] = tilelive.defaults[key];
}
callback(err, data, handler);
} else {
callback(err);
}
});
});
};
// Load metadata for all tile source URIs.
// Ignore errors from loading individual models (e.g.
// don't let one bad apple spoil the collection).
tilelive.all = function(source, callback) {
if (typeof callback !== 'function') {
throw new Error('Callback required as second argument');
}
tilelive.list(source, function(err, uris) {
if (err) return callback(err);
if (!uris || !Object.keys(uris).length) return callback(null, []);
var result = [];
var remaining = Object.keys(uris).length;
for (var id in uris) {
tilelive.info(uris[id], function(err, data, handler) {
if (err) console.error(err.stack);
if (!err && data && handler) result.push([data, handler]);
if (!--remaining) {
result.sort(function(a, b) {
return (a[0].name||a[0].id).toLowerCase() < (b[0].name||b[0].id).toLowerCase() ? -1 : 1;
});
var models = result.map(function(r) { return r[0] });
var handlers = result.map(function(r) { return r[1] });
callback(null, models, handlers);
}
});
}
});
};
tilelive.verify = function(ts) {
if (!ts.id) {
return new Error("Tilesource has invalid ID: " + util.inspect(ts.id));
}
// validates the retrieved settings.
// Returns an error object when invalid, otherwise undefined.
if (!(/^\d+(\.\d+){0,2}$/).test(ts.version)) {
return new Error("Tilesource has invalid version: " + util.inspect(ts.version));
}
if (ts.scheme !== 'xyz' && ts.scheme !== 'tms') {
return new Error("Tilesource has invalid scheme: " + util.inspect(ts.scheme));
}
if (ts.minzoom < 0 || ts.minzoom > 22) {
return new Error("Tilesource has invalid minzoom: " + util.inspect(ts.minzoom));
}
if (ts.maxzoom < 0 || ts.maxzoom > 22) {
return new Error("Tilesource has invalid maxzoom: " + util.inspect(ts.maxzoom));
}
if (ts.minzoom > ts.maxzoom) {
return new Error("Tilesource's minzoom > maxzoom");
}
if (!Array.isArray(ts.bounds) || ts.bounds.length !== 4) {
return new Error("Tilesource has invalid bounds: " + util.inspect(ts.bounds));
}
if (ts.bounds[0] < -180 || ts.bounds[0] > 180) {
return new Error("Tilesource's west bound is invalid: " + util.inspect(ts.bounds));
}
if (ts.bounds[2] < -180 || ts.bounds[2] > 180) {
return new Error("Tilesource's east bound is invalid: " + util.inspect(ts.bounds));
}
// @TODO these should actually be checked against
// +-85.05112877980659 but some mbtiles may be using +-90 which
// may not be worth failure.
if (ts.bounds[1] < -90 || ts.bounds[1] > 90) {
return new Error("Tilesource's south bound is invalid: " + util.inspect(ts.bounds));
}
if (ts.bounds[3] < -90 || ts.bounds[3] > 90) {
return new Error("Tilesource's north bound is invalid: " + util.inspect(ts.bounds));
}
if (Array.isArray(ts.center)) {
if (ts.center.length !== 3) {
return new Error("Tilesource has invalid center: " + util.inspect(ts.center));
}
if (ts.center[0] < ts.bounds[0] || ts.center[0] > ts.bounds[2]) {
return new Error("Tilesource has invalid longitude as center: " + util.inspect(ts.center));
}
if (ts.center[1] < ts.bounds[1] || ts.center[1] > ts.bounds[3]) {
return new Error("Tilesource has invalid latitude as center: " + util.inspect(ts.center));
}
if (ts.center[2] < ts.minzoom || ts.center[2] > ts.maxzoom) {
return new Error("Tilesource has invalid zoom as center: " + util.inspect(ts.center));
}
} else if (ts.center !== null) {
return new Error("Tilesource has invalid center: " + util.inspect(ts.center));
}
};