-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
54 lines (45 loc) · 1.3 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
'use strict'
const Base = require('bfx-facs-base')
const axios = require('axios').default
const _ = require('lodash')
class GooglePlaces extends Base {
constructor (caller, opts, ctx) {
super(caller, opts, ctx)
this.name = 'places-google'
this._hasConf = true
this.authority = 'https://maps.googleapis.com/maps/api/place/'
this.init()
if (opts.conf) this.conf = opts.conf
}
queryAutoComplete (args) {
if (!(args && args.input)) throw new Error('Input is required')
const path = 'queryautocomplete'
const keys = [
'input', 'sessiontoken', 'offset', 'origin', 'location', 'radius',
'language', 'types', 'components', 'strictbounds'
]
return this._req(
path,
_.pick(args, keys)
)
}
details (args) {
if (!(args && args.place_id)) throw new Error('place_id is required')
const path = 'details'
const keys = [
'place_id', 'language', 'region', 'sessiontoken', 'fields'
]
return this._req(
path,
_.pick(args, keys)
)
}
_req (path, args) {
const key = this.conf.google.key
const output = 'json'
const query = new URLSearchParams({ ...args, key }).toString()
const url = this.authority + path + '/' + output + '?' + query
return axios.get(url)
}
}
module.exports = GooglePlaces