Add location options to redshift module

This commit is contained in:
Bas van den Heuvel 2019-08-21 19:12:58 +02:00
parent f9132bd7fd
commit ced31c3a22

View file

@ -4,9 +4,16 @@
Requires the following executable: Requires the following executable:
* redshift * redshift
Parameters:
* redshift.location : location provider, either of "geoclue2" (default), \
"ipinfo" (requires the requests package), or "manual"
* redshift.lat : latitude if location is set to "manual"
* redshift.lon : longitude if location is set to "manual"
""" """
import threading import threading
import requests
import bumblebee.input import bumblebee.input
import bumblebee.output import bumblebee.output
@ -20,7 +27,7 @@ def is_terminated():
return False return False
def get_redshift_value(widget): def get_redshift_value(widget, location, lat, lon):
while True: while True:
if is_terminated(): if is_terminated():
return return
@ -33,8 +40,14 @@ def get_redshift_value(widget):
break break
widget.get("condition").release() widget.get("condition").release()
command = ["redshift", "-p", "-l"]
if location == "manual":
command.append(lat + ":" + lon)
else:
command.append("geoclue2")
try: try:
res = bumblebee.util.execute("redshift -p") res = bumblebee.util.execute(" ".join(command))
except Exception: except Exception:
res = "" res = ""
widget.set("temp", "n/a") widget.set("temp", "n/a")
@ -59,11 +72,35 @@ class Module(bumblebee.engine.Module):
def __init__(self, engine, config): def __init__(self, engine, config):
widget = bumblebee.output.Widget(full_text=self.text) widget = bumblebee.output.Widget(full_text=self.text)
super(Module, self).__init__(engine, config, widget) super(Module, self).__init__(engine, config, widget)
self._location = self.parameter("location", "geoclue2")
self._lat = self.parameter("lat", None)
self._lon = self.parameter("lon", None)
# Even if location method is set to manual, if we have no lat or lon,
# fall back to the geoclue2 method.
if self._location == "manual" and (self._lat is None
or self._lon is None):
self._location == "geoclue2"
if self._location == "ipinfo":
try:
location_url = "http://ipinfo.io/json"
location = requests.get(location_url).json()
self._lat, self._lon = location["loc"].split(",")
self._lat = str(float(self._lat))
self._lon = str(float(self._lon))
self._location = "manual"
except Exception:
# Fall back to geoclue2.
self._location = "geoclue2"
self._text = "" self._text = ""
self._condition = threading.Condition() self._condition = threading.Condition()
widget.set("condition", self._condition) widget.set("condition", self._condition)
self._thread = threading.Thread(target=get_redshift_value, self._thread = threading.Thread(target=get_redshift_value,
args=(widget,)) args=(widget, self._location,
self._lat, self._lon))
self._thread.start() self._thread.start()
self._condition.acquire() self._condition.acquire()
self._condition.notify() self._condition.notify()