mirror of https://github.com/pelias/api.git
Peter Johnson
9 years ago
4 changed files with 116 additions and 0 deletions
@ -0,0 +1,39 @@
|
||||
|
||||
function setup() { |
||||
return applyLocalNamingConventions; |
||||
} |
||||
|
||||
function applyLocalNamingConventions(req, res, next) { |
||||
|
||||
// do nothing if no result data set
|
||||
if (!res || !res.data) { |
||||
return next(); |
||||
} |
||||
|
||||
// loop through data items and flip relevant number/street
|
||||
res.data.filter(function(place){ |
||||
// only relevant for German addresses
|
||||
if( 'DEU' !== place.alpha3 ){ return false; } |
||||
if( !place.hasOwnProperty('address') ){ return false; } |
||||
if( !place.address.hasOwnProperty('number') ){ return false; } |
||||
if( !place.address.hasOwnProperty('street') ){ return false; } |
||||
return true; |
||||
}) |
||||
.forEach( flipNumberAndStreet ); |
||||
|
||||
next(); |
||||
} |
||||
|
||||
// DE address should have the housenumber and street name flipped
|
||||
// eg. '101 Grolmanstraße' -> 'Grolmanstraße 101'
|
||||
function flipNumberAndStreet(place) { |
||||
var standard = ( place.address.number + ' ' + place.address.street ), |
||||
flipped = ( place.address.street + ' ' + place.address.number ); |
||||
|
||||
// flip street name and housenumber
|
||||
if( place.name.default === standard ){ |
||||
place.name.default = flipped; |
||||
} |
||||
} |
||||
|
||||
module.exports = setup; |
@ -0,0 +1,71 @@
|
||||
var localNamingConventions = require('../../../middleware/localNamingConventions'); |
||||
|
||||
module.exports.tests = {}; |
||||
|
||||
// ref: https://github.com/pelias/pelias/issues/141
|
||||
module.exports.tests.flipNumberAndStreet = function(test, common) { |
||||
|
||||
var ukAddress = { |
||||
'_id': 'test1', |
||||
'_type': 'test', |
||||
'name': { 'default': '1 Main St' }, |
||||
'center_point': { 'lon': -7.131521, 'lat': 54.428866 }, |
||||
'address': { |
||||
'zip': 'BT77 0BG', |
||||
'number': '1', |
||||
'street': 'Main St' |
||||
}, |
||||
'admin1': 'Dungannon', |
||||
'alpha3': 'GBR', |
||||
'admin0': 'United Kingdom' |
||||
}; |
||||
|
||||
var deAddress = { |
||||
'_id': 'test2', |
||||
'_type': 'test', |
||||
'name': { 'default': '23 Grolmanstraße' }, |
||||
'center_point': { 'lon': 13.321487, 'lat': 52.506781 }, |
||||
'address': { |
||||
'zip': '10623', |
||||
'number': '23', |
||||
'street': 'Grolmanstraße' |
||||
}, |
||||
'admin1': 'Berlin', |
||||
'locality': 'Berlin', |
||||
'alpha3': 'DEU', |
||||
'admin2': 'Berlin', |
||||
'admin0': 'Germany', |
||||
'neighborhood': 'Hansaviertel' |
||||
}; |
||||
|
||||
var req = {}, |
||||
res = { data: [ ukAddress, deAddress ] }, |
||||
middleware = localNamingConventions(); |
||||
|
||||
test('flipNumberAndStreet', function(t) { |
||||
|
||||
middleware( req, res, function next(){ |
||||
|
||||
// GBR address should be a noop
|
||||
t.equal( res.data[0].name.default, '1 Main St', 'standard name' ); |
||||
|
||||
// DEU address should have the housenumber and street name flipped
|
||||
// eg. '101 Grolmanstraße' -> 'Grolmanstraße 101'
|
||||
t.equal( res.data[1].name.default, 'Grolmanstraße 23', 'flipped name' ); |
||||
|
||||
t.end(); |
||||
}); |
||||
}); |
||||
|
||||
}; |
||||
|
||||
module.exports.all = function (tape, common) { |
||||
|
||||
function test(name, testFunction) { |
||||
return tape('[middleware] localNamingConventions: ' + name, testFunction); |
||||
} |
||||
|
||||
for( var testCase in module.exports.tests ){ |
||||
module.exports.tests[testCase](test, common); |
||||
} |
||||
}; |
Loading…
Reference in new issue