Add WebUI

This commit is contained in:
Dmitri Popov
2018-03-20 10:03:05 +01:00
parent 2b46f43e59
commit 82fbfca6a8
4 changed files with 115 additions and 0 deletions

76
webui.py Executable file
View File

@@ -0,0 +1,76 @@
#!/usr/bin/python
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from bottle import post, route, request, run
import os
@route('/')
@route('/', method='POST')
def control():
if (request.POST.get("cardbackup")):
os.system("sudo /home/pi/little-backup-box/backup.sh")
if (request.POST.get("camerabackup")):
os.system("sudo /home/pi/little-backup-box/backup.sh")
if (request.POST.get("shutdown")):
os.system("sudo shutdown -h now")
return """
<title>Little Backup Box</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<form method="POST" action="/">
<div id="content"><p><input id="btn" name="cardbackup" type="submit" value="Card backup"></p>
<div id="content"><p><input id="btn" class="orange" name="camerabackup" type="submit" value="Camera backup"></p>
<p><input id="btn" class="red" name="shutdown" value="Shut down" type="submit" /></p>
</form>
<p class="left">Press <strong>Card backup</strong> to back up a storage card connected via a card reader.</p>
<p class="left">Press <strong>Camera backup</strong> to transfer files directly from the connected camera.</p>
<p class="left">Press <strong>Shutdown</strong> to shut down the Little Backup Box.</p>
</div>
<style>
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
body {
font: 15px/25px 'Lato', sans-serif;
}
p.left {
text-align: left;
}
p.right {
text-align: right;
}
#content {
font: 15px/25px 'Open Sans', sans-serif;
margin: 0px auto;
width: 275px;
text-align: left;
}
#btn {
width: 11em; height: 2em;
background: #3399ff;
border-radius: 5px;
color: #fff;
font-family: 'Lato', sans-serif; font-size: 25px; font-weight: 900;
letter-spacing: 3px;
border:none;
}
#btn.orange {
background: #ff9900;
}
#btn.red {
background: #cc0000;
}
</style>
"""
run(host="0.0.0.0",port=8080, debug=True, reloader=True)