Add templating. Free disk space
This commit is contained in:
@@ -51,17 +51,17 @@ case $CHOICE in
|
|||||||
1)
|
1)
|
||||||
crontab -l | { cat; echo "@reboot sudo /home/pi/little-backup-box/card-backup.sh"; } | crontab
|
crontab -l | { cat; echo "@reboot sudo /home/pi/little-backup-box/card-backup.sh"; } | crontab
|
||||||
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/camera-backup.sh"; } | crontab
|
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/camera-backup.sh"; } | crontab
|
||||||
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/rc.py"; } | crontab
|
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/rc/rc.py"; } | crontab
|
||||||
;;
|
;;
|
||||||
2)
|
2)
|
||||||
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/card-backup.sh"; } | crontab
|
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/card-backup.sh"; } | crontab
|
||||||
crontab -l | { cat; echo "@reboot sudo /home/pi/little-backup-box/camera-backup.sh"; } | crontab
|
crontab -l | { cat; echo "@reboot sudo /home/pi/little-backup-box/camera-backup.sh"; } | crontab
|
||||||
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/rc.py"; } | crontab
|
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/rc/rc.py"; } | crontab
|
||||||
;;
|
;;
|
||||||
3)
|
3)
|
||||||
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/card-backup.sh"; } | crontab
|
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/card-backup.sh"; } | crontab
|
||||||
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/camera-backup.sh"; } | crontab
|
crontab -l | { cat; echo "#@reboot sudo /home/pi/little-backup-box/camera-backup.sh"; } | crontab
|
||||||
crontab -l | { cat; echo "@reboot sudo /home/pi/little-backup-box/rc.py"; } | crontab
|
crontab -l | { cat; echo "@reboot sudo /home/pi/little-backup-box/rc/rc.py"; } | crontab
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|||||||
73
rc.py
73
rc.py
@@ -1,73 +0,0 @@
|
|||||||
#!/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 remote_control():
|
|
||||||
if (request.POST.get("cardbackup")):
|
|
||||||
os.system("sudo /home/pi/little-backup-box/card-backup.sh")
|
|
||||||
if (request.POST.get("camerabackup")):
|
|
||||||
os.system("sudo /home/pi/little-backup-box/camera-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>
|
|
||||||
<p class="left">Back up a storage card connected via a card reader</p>
|
|
||||||
<div id="content"><p><input id="btn" class="orange" name="camerabackup" type="submit" value="Camera backup"></p>
|
|
||||||
<p class="left">Transfer files directly from the connected camera</p>
|
|
||||||
<p><input id="btn" class="red" name="shutdown" value="Shut down" type="submit" /></p>
|
|
||||||
<p class="left">Shut down the Little Backup Box</p>
|
|
||||||
</form>
|
|
||||||
<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)
|
|
||||||
32
rc/rc.py
Executable file
32
rc/rc.py
Executable file
@@ -0,0 +1,32 @@
|
|||||||
|
#!/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, template, run
|
||||||
|
import os
|
||||||
|
|
||||||
|
@route('/')
|
||||||
|
@route('/', method='POST')
|
||||||
|
def remote_control():
|
||||||
|
#dh = os.system("df -h | grep '/dev/sda' | awk '{print $4}'")
|
||||||
|
st = os.statvfs("/home/dmpop")
|
||||||
|
free = "%.2f" % float((st.f_bavail * st.f_frsize)/1.073741824e9)
|
||||||
|
if (request.POST.get("cardbackup")):
|
||||||
|
os.system("sudo /home/pi/little-backup-box/card-backup.sh")
|
||||||
|
if (request.POST.get("camerabackup")):
|
||||||
|
os.system("sudo /home/pi/little-backup-box/camera-backup.sh")
|
||||||
|
if (request.POST.get("shutdown")):
|
||||||
|
os.system("sudo shutdown -h now")
|
||||||
|
return template('rc.tpl', freespace=free)
|
||||||
|
run(host="0.0.0.0", port=8080, debug=True, reloader=True)
|
||||||
50
rc/rc.tpl
Normal file
50
rc/rc.tpl
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link rel="stylesheet" type="text/css" href="static/styles.css">
|
||||||
|
<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.center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#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>
|
||||||
|
</head>
|
||||||
|
<title>Little Backup Box</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<form method="POST" action="/">
|
||||||
|
<div id="content">
|
||||||
|
<p class="center">Free disk space: <b>{{freespace}}</b> GB</p>
|
||||||
|
<p><input id="btn" name="cardbackup" type="submit" value="Card backup"></p>
|
||||||
|
<p class="left">Back up a storage card connected via a card reader</p>
|
||||||
|
<p><input id="btn" class="orange" name="camerabackup" type="submit" value="Camera backup"></p>
|
||||||
|
<p class="left">Transfer files directly from the connected camera</p>
|
||||||
|
<p><input id="btn" class="red" name="shutdown" value="Shut down" type="submit" /></p>
|
||||||
|
<p class="left">Shut down the Little Backup Box</p>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
Reference in New Issue
Block a user