mirror of https://github.com/pelias/api.git
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.
31 lines
513 B
31 lines
513 B
8 years ago
|
'use strict';
|
||
|
|
||
|
const _ = require('lodash');
|
||
|
|
||
|
const ServiceConfiguration = require('./ServiceConfiguration');
|
||
|
|
||
|
class PlaceHolder extends ServiceConfiguration {
|
||
|
constructor(o) {
|
||
|
super('placeholder', o);
|
||
|
}
|
||
|
|
||
|
getParameters(req) {
|
||
|
const parameters = {
|
||
|
text: req.clean.text
|
||
|
};
|
||
|
|
||
|
if (_.has(req.clean, 'lang.iso6393')) {
|
||
|
parameters.lang = req.clean.lang.iso6393;
|
||
|
}
|
||
|
|
||
|
return parameters;
|
||
|
}
|
||
|
|
||
|
getUrl(req) {
|
||
|
return `${this.baseUrl}/search`;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports = PlaceHolder;
|