123 lines
3.9 KiB
JavaScript
Raw Normal View History

2017-09-21 20:06:42 -04:00
/* global WeatherProvider, WeatherDay */
/* Magic Mirror
* Module: Weather
* Provider: Dark Sky
*
* By Nicholas Hubbard https://github.com/nhubbard
* MIT Licensed
*
* This class is a provider for Dark Sky.
* Note that the Dark Sky API does not provide rainfall. Instead it provides snowfall and precipitation probability
2017-09-21 20:06:42 -04:00
*/
WeatherProvider.register("darksky", {
// Set the name of the provider.
// Not strictly required, but helps for debugging.
providerName: "Dark Sky",
units: {
imperial: 'us',
2018-12-30 14:11:16 +01:00
metric: 'si'
},
2018-12-30 14:11:16 +01:00
fetchCurrentWeather() {
this.fetchData(this.getUrl())
.then(data => {
if(!data || !data.currently || typeof data.currently.temperature === "undefined") {
// No usable data?
return;
}
2018-12-27 19:37:02 +01:00
2018-12-30 14:11:16 +01:00
const currentWeather = this.generateWeatherDayFromCurrentWeather(data);
this.setCurrentWeather(currentWeather);
}).catch(function(request) {
2018-12-27 19:37:02 +01:00
Log.error("Could not load data ... ", request);
});
2017-09-21 20:06:42 -04:00
},
2018-12-30 14:11:16 +01:00
fetchWeatherForecast() {
this.fetchData(this.getUrl())
.then(data => {
if(!data || !data.daily || !data.daily.data.length) {
// No usable data?
return;
}
2018-12-27 19:37:02 +01:00
2018-12-30 14:11:16 +01:00
const forecast = this.generateWeatherObjectsFromForecast(data.daily.data);
this.setWeatherForecast(forecast);
}).catch(function(request) {
2018-12-27 19:37:02 +01:00
Log.error("Could not load data ... ", request);
});
},
// Create a URL from the config and base URL.
2018-12-30 14:11:16 +01:00
getUrl() {
const units = this.units[this.config.units] || "auto";
return `${this.config.apiBase}${this.config.weatherEndpoint}/${this.config.apiKey}/${this.config.lat},${this.config.lon}?units=${units}&lang=${this.config.lang}`;
2017-09-29 10:11:46 -04:00
},
2017-09-21 20:06:42 -04:00
// Implement WeatherDay generator.
2018-12-30 14:11:16 +01:00
generateWeatherDayFromCurrentWeather(currentWeatherData) {
const currentWeather = new WeatherObject(this.config.units, this.config.tempUnits, this.config.windUnits);
currentWeather.date = moment();
2017-09-21 20:06:42 -04:00
currentWeather.humidity = parseFloat(currentWeatherData.currently.humidity);
currentWeather.temperature = parseFloat(currentWeatherData.currently.temperature);
currentWeather.windSpeed = parseFloat(currentWeatherData.currently.windSpeed);
currentWeather.windDirection = currentWeatherData.currently.windBearing;
currentWeather.weatherType = this.convertWeatherType(currentWeatherData.currently.icon);
currentWeather.sunrise = moment(currentWeatherData.daily.data[0].sunriseTime, "X");
currentWeather.sunset = moment(currentWeatherData.daily.data[0].sunsetTime, "X");
2017-09-21 20:06:42 -04:00
return currentWeather;
},
2018-12-30 14:11:16 +01:00
generateWeatherObjectsFromForecast(forecasts) {
const days = [];
2018-12-30 14:11:16 +01:00
for (const forecast of forecasts) {
const weather = new WeatherObject(this.config.units, this.config.tempUnits, this.config.windUnits);
weather.date = moment(forecast.time, "X");
weather.minTemperature = forecast.temperatureMin;
weather.maxTemperature = forecast.temperatureMax;
weather.weatherType = this.convertWeatherType(forecast.icon);
weather.snow = 0;
// The API will return centimeters if units is 'si' and will return inches for 'us'
// Note that the Dark Sky API does not provide rainfall. Instead it provides snowfall and precipitation probability
if (forecast.hasOwnProperty("precipAccumulation")) {
if (this.config.units === "imperial" && !isNaN(forecast.precipAccumulation)) {
weather.snow = forecast.precipAccumulation;
} else if (!isNaN(forecast.precipAccumulation)) {
weather.snow = forecast.precipAccumulation * 10;
}
}
weather.precipitation = weather.snow;
2018-12-30 14:11:16 +01:00
days.push(weather);
}
2018-12-30 14:11:16 +01:00
return days;
},
2017-09-21 20:06:42 -04:00
// Map icons from Dark Sky to our icons.
2018-12-30 14:11:16 +01:00
convertWeatherType(weatherType) {
const weatherTypes = {
2017-09-21 20:06:42 -04:00
"clear-day": "day-sunny",
"clear-night": "night-clear",
"rain": "rain",
"snow": "snow",
"sleet": "snow",
"wind": "wind",
"fog": "fog",
"cloudy": "cloudy",
"partly-cloudy-day": "day-cloudy",
"partly-cloudy-night": "night-cloudy"
};
2018-12-30 14:11:16 +01:00
2017-09-21 20:06:42 -04:00
return weatherTypes.hasOwnProperty(weatherType) ? weatherTypes[weatherType] : null;
}
2018-12-27 19:37:02 +01:00
});