2019-08-11 18:21:58 +02:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
|
|
|
"""Displays sunrise and sunset times
|
|
|
|
|
2020-03-26 22:22:46 +01:00
|
|
|
Requires the following python packages:
|
|
|
|
* requests
|
|
|
|
* suntime
|
|
|
|
|
2019-08-11 18:21:58 +02:00
|
|
|
Parameters:
|
|
|
|
* cpu.lat : Latitude of your location
|
|
|
|
* cpu.lon : Longitude of your location
|
|
|
|
"""
|
|
|
|
|
|
|
|
try:
|
|
|
|
from suntime import Sun, SunTimeException
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
import requests
|
|
|
|
except ImportError:
|
|
|
|
pass
|
2019-08-21 22:23:01 +02:00
|
|
|
try:
|
|
|
|
from dateutil.tz import tzlocal
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
import datetime
|
2019-08-11 18:21:58 +02:00
|
|
|
|
|
|
|
import bumblebee.input
|
|
|
|
import bumblebee.output
|
|
|
|
import bumblebee.engine
|
|
|
|
|
2019-08-21 21:20:04 +02:00
|
|
|
|
2019-08-11 18:21:58 +02:00
|
|
|
class Module(bumblebee.engine.Module):
|
|
|
|
def __init__(self, engine, config):
|
2019-08-21 21:20:04 +02:00
|
|
|
super(Module, self).__init__(
|
|
|
|
engine, config,
|
2019-08-11 18:21:58 +02:00
|
|
|
bumblebee.output.Widget(full_text=self.suntimes)
|
|
|
|
)
|
|
|
|
self.interval(3600)
|
|
|
|
self._lat = self.parameter("lat", None)
|
|
|
|
self._lon = self.parameter("lon", None)
|
|
|
|
try:
|
|
|
|
if not self._lat or not self._lon:
|
|
|
|
location_url = "http://ipinfo.io/json"
|
|
|
|
location = requests.get(location_url).json()
|
|
|
|
self._lat, self._lon = location["loc"].split(",")
|
|
|
|
self._lat = float(self._lat)
|
|
|
|
self._lon = float(self._lon)
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
self.update(None)
|
|
|
|
|
|
|
|
def suntimes(self, _):
|
|
|
|
if self._sunset and self._sunrise:
|
2019-08-21 22:23:01 +02:00
|
|
|
if self._isup:
|
|
|
|
return u"\u21A7{} \u21A5{}".format(
|
|
|
|
self._sunset.strftime('%H:%M'),
|
|
|
|
self._sunrise.strftime('%H:%M'))
|
2019-08-21 21:20:04 +02:00
|
|
|
return u"\u21A5{} \u21A7{}".format(self._sunrise.strftime('%H:%M'),
|
|
|
|
self._sunset.strftime('%H:%M'))
|
2019-08-11 18:21:58 +02:00
|
|
|
return "?"
|
|
|
|
|
2019-08-12 17:36:13 +02:00
|
|
|
def _calculate_times(self):
|
2019-08-21 22:23:01 +02:00
|
|
|
self._isup = False
|
2019-08-12 17:36:13 +02:00
|
|
|
try:
|
2020-04-05 12:29:56 +02:00
|
|
|
if not self._lat or not self._lon:
|
|
|
|
raise()
|
2019-08-12 17:36:13 +02:00
|
|
|
sun = Sun(self._lat, self._lon)
|
|
|
|
except Exception:
|
2019-08-11 18:21:58 +02:00
|
|
|
self._sunrise = None
|
|
|
|
self._sunset = None
|
2019-08-12 17:36:13 +02:00
|
|
|
return
|
|
|
|
|
2019-08-21 22:23:01 +02:00
|
|
|
order_matters = True
|
|
|
|
|
2019-08-11 18:21:58 +02:00
|
|
|
try:
|
2019-08-12 17:36:13 +02:00
|
|
|
self._sunrise = sun.get_local_sunrise_time()
|
|
|
|
except SunTimeException:
|
2019-08-21 22:23:01 +02:00
|
|
|
self._sunrise = "no sunrise"
|
|
|
|
order_matters = False
|
2019-08-11 18:21:58 +02:00
|
|
|
|
2019-08-12 17:36:13 +02:00
|
|
|
try:
|
|
|
|
self._sunset = sun.get_local_sunset_time()
|
|
|
|
except SunTimeException:
|
2019-08-21 22:23:01 +02:00
|
|
|
self._sunset = "no sunset"
|
|
|
|
order_matters = False
|
|
|
|
|
|
|
|
if not order_matters:
|
|
|
|
return
|
|
|
|
|
|
|
|
now = datetime.datetime.now(tz=tzlocal())
|
|
|
|
if now > self._sunset:
|
|
|
|
tomorrow = (now + datetime.timedelta(days=1)).date()
|
|
|
|
try:
|
|
|
|
self._sunrise = sun.get_local_sunrise_time(tomorrow)
|
|
|
|
self._sunset = sun.get_local_sunset_time(tomorrow)
|
|
|
|
except SunTimeException:
|
|
|
|
self._sunrise = "no sunrise"
|
|
|
|
self._sunset = "no sunset"
|
|
|
|
|
|
|
|
elif now > self._sunrise:
|
|
|
|
tomorrow = (now + datetime.timedelta(days=1)).date()
|
|
|
|
try:
|
|
|
|
self._sunrise = sun.get_local_sunrise_time(tomorrow)
|
|
|
|
except SunTimeException:
|
|
|
|
self._sunrise = "no sunrise"
|
|
|
|
return
|
|
|
|
self._isup = True
|
2019-08-12 17:36:13 +02:00
|
|
|
|
|
|
|
def update(self, widgets):
|
|
|
|
if not self._lat or not self._lon:
|
2019-08-11 18:21:58 +02:00
|
|
|
self._sunrise = None
|
|
|
|
self._sunset = None
|
2019-08-12 17:36:13 +02:00
|
|
|
self._calculate_times()
|
2019-08-11 18:21:58 +02:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|