1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/ReactNativeClient/lib/geolocation-node.js

30 lines
747 B
JavaScript
Raw Normal View History

const { shim } = require('lib/shim.js');
const { netUtils } = require('lib/net-utils.js');
2017-07-10 20:09:58 +02:00
class GeolocationNode {
static async currentPosition(options = null) {
if (!options) options = {};
const ip = await netUtils.ip();
let response = await shim.fetch('http://ip-api.com/json/' + ip);
2017-07-10 20:09:58 +02:00
if (!response.ok) throw new Error('Could not get geolocation: ' + await response.text());
response = await response.json();
if (!('lat' in response) || !('lon' in response)) throw new Error('Invalid geolocation response: ' . JSON.stringify(response));
2017-07-10 20:09:58 +02:00
return {
timestamp: (new Date()).getTime(),
coords: {
longitude: response.lon,
2017-07-10 20:09:58 +02:00
altitude: 0,
latitude: response.lat
2017-07-10 20:09:58 +02:00
}
}
}
}
2017-11-03 02:13:17 +02:00
module.exports = { GeolocationNode };