-
-
Save davidwalter0/71db7baa4b801d5cda6b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from bottle import route, run, request, static_file | |
import subprocess | |
""" | |
Get DEVICE_ID by running script and connecting to the url with your mobile device | |
python unlock.py | |
Bottle v0.11.2 server starting up (using WSGIRefServer())... | |
Listening on http://192.168.77.102:8888/ | |
Hit Ctrl-C to quit. | |
android-ebed2865246db.mynetwork.net | |
Use that device id for allowed devices. | |
Bottle is the only dependency | |
http://bottlepy.org/docs/dev/ | |
Will probably only work on systems running Gnome desktop, tested on Ubuntu 13.04 | |
""" | |
@route('/') | |
def hello(): | |
print request.environ.get('REMOTE_HOST') | |
devices =('DEVICE_ID_HER',) | |
if request.environ.get('REMOTE_HOST') in devices: | |
status = subprocess.check_output(["gnome-screensaver-command", "-t"]) | |
if status == 'The screensaver is not currently active.\n': | |
message = "YOUR SWITCH ON HTML GOES HERE" | |
subprocess.call(["gnome-screensaver-command", "-l"]) | |
else: | |
message = "YOUR SWITCH OFF HTML GOES HERE" | |
subprocess.call(["gnome-screensaver-command", "-d"]) | |
else: | |
message = "YOUR UNAUTHORISED HTML GOES HERE" | |
return message | |
@route('/images/<filename>') | |
def images(filename): | |
return static_file(filename, root='/path_to_images/images') | |
#host must be on lan (not localhost) | |
run(host='192.168.77.102', port=8888) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment