You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

194 lines
4.6 KiB

var OverpassLayer = require('overpass-layer')
var jsonMultilineStrings = require('json-multiline-strings')
function OpenStreetBrowserLoader () {
this.types = {}
this.categories = {}
this.repoCache = {}
this.templates = {}
this._loadClash = {} // if a category is being loaded multiple times, collect callbacks
}
OpenStreetBrowserLoader.prototype.setMap = function (map) {
this.map = map
}
/**
* @param string id ID of the category
* @parapm [object] options Options.
* @param function callback Callback which will be called with (err, category)
*/
OpenStreetBrowserLoader.prototype.getCategory = function (id, options, callback) {
if (typeof options === 'function') {
callback = options
options = {}
}
var repo
var categoryId
var m
if (m = id.match(/^(.*)\/([^\/]*)/)) {
repo = m[1]
categoryId = m[2]
} else {
repo = 'default'
categoryId = id
}
if (id in this.categories) {
return callback(null, this.categories[id])
}
this.getRepo(repo, options, function (err, repoData) {
// maybe loaded in the meantime?
if (id in this.categories) {
return callback(null, this.categories[id])
}
if (err) {
return callback(err, null)
}
if (!(categoryId in repoData)) {
return callback(new Error('category not defined'), null)
}
this.getCategoryFromData(id, repoData[categoryId], function (err, category) {
if (category) {
category.setMap(this.map)
}
callback(err, category)
}.bind(this))
}.bind(this))
}
/**
* @param string repo ID of the repository
* @parapm [object] options Options.
* @param function callback Callback which will be called with (err, repoData)
*/
OpenStreetBrowserLoader.prototype.getRepo = function (repo, options, callback) {
if (repo in this.repoCache) {
return callback(null, this.repoCache[repo])
}
if (repo in this._loadClash) {
this._loadClash[repo].push(callback)
return
}
this._loadClash[repo] = [ callback ]
function reqListener (req) {
if (req.status !== 200) {
console.log(req)
return callback(req.statusText, null)
}
this.repoCache[repo] = JSON.parse(req.responseText)
var todo = this._loadClash[repo]
delete this._loadClash[repo]
todo.forEach(function (callback) {
callback(null, this.repoCache[repo])
}.bind(this))
}
var param = []
if (repo) {
param.push('repo=' + encodeURIComponent(repo))
}
param.push(config.categoriesRev)
param = param.length ? '?' + param.join('&') : ''
var req = new XMLHttpRequest()
req.addEventListener('load', reqListener.bind(this, req))
req.open('GET', 'repo.php' + param)
req.send()
}
/**
* @param string id ID of the template
* @parapm [object] options Options.
* @param function callback Callback which will be called with (err, template)
*/
OpenStreetBrowserLoader.prototype.getTemplate = function (id, options, callback) {
if (typeof options === 'function') {
callback = options
options = {}
}
if (id in this.templates) {
callback.apply(this, this.templates[id])
return
}
if (id in this._loadClash) {
this._loadClash[id].push(callback)
return
}
this._loadClash[id] = []
function reqListener (req) {
if (req.status !== 200) {
console.log(req)
this.templates[id] = [ req.statusText, null ]
} else {
this.templates[id] = [ null, OverpassLayer.twig.twig({ data: req.responseText, autoescape: true }) ]
}
callback.apply(this, this.templates[id])
this._loadClash[id].forEach(function (c) {
c.apply(this, this.templates[id])
}.bind(this))
}
var req = new XMLHttpRequest()
req.addEventListener('load', reqListener.bind(this, req))
req.open('GET', config.categoriesDir + '/' + id + '.html?' + config.categoriesRev)
req.send()
}
OpenStreetBrowserLoader.prototype.getCategoryFromData = function (id, data, callback) {
if (id in this.categories) {
callback(null, this.categories[id])
return
}
if (!data.type) {
return callback(new Error('no type defined'), null)
}
if (!(data.type in this.types)) {
return callback(new Error('unknown type'), null)
}
var layer = new this.types[data.type](id, data)
layer.setMap(this.map)
this.categories[id] = layer
if ('load' in layer) {
layer.load(function (err) {
callback(err, layer)
})
} else {
callback(null, layer)
}
}
OpenStreetBrowserLoader.prototype.forget = function (id) {
this.categories[id].remove()
delete this.categories[id]
}
OpenStreetBrowserLoader.prototype.registerType = function (type, classObject) {
this.types[type] = classObject
}
module.exports = new OpenStreetBrowserLoader()