Compare commits
No commits in common. "master" and "master" have entirely different histories.
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
venv/
|
venv/
|
||||||
donationcalc/__pycache__/
|
donationcalc/__pycache__/
|
||||||
|
donors.txt
|
||||||
|
@ -4,7 +4,7 @@ Priority: optional
|
|||||||
Architecture: all
|
Architecture: all
|
||||||
Essential: no
|
Essential: no
|
||||||
Installed-Size: 2000
|
Installed-Size: 2000
|
||||||
Depends: python3-flask, gunicorn
|
Depends: python3-flask
|
||||||
Homepage: https://gitea.dmz.rs/fram3d/donationcalc
|
Homepage: https://gitea.dmz.rs/fram3d/donationcalc
|
||||||
Maintainer: fram3d <fram3d@dmz.rs>
|
Maintainer: fram3d <fram3d@dmz.rs>
|
||||||
Description: Web app that tracks donations and notifies users via email
|
Description: Web app that tracks donations and notifies users via email
|
||||||
|
4
build-deb/donationcalc/DEBIAN/postinst
Executable file → Normal file
4
build-deb/donationcalc/DEBIAN/postinst
Executable file → Normal file
@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
/usr/bin/echo "Adding monthly rebalance to crontab"
|
/usr/bin/echo "Adding monthly rebalance to crontab"
|
||||||
/usr/bin/crontab -l > /tmp/donationcalccrontab.tmp
|
/usr/bin/crontab -l > /tmp/donationcalccrontab.tmp
|
||||||
/usr/bin/echo "0 0 1 * * /usr/bin/python3 /var/donationcalc/rebalance.py" >> /tmp/donationcalccrontab.tmp
|
/usr/bin/echo "0 0 1 * * /usr/bin/python3 /var/donationcalc/run.py -r" >> /tmp/donationcalccrontab.tmp
|
||||||
/usr/bin/crontab /tmp/donationcalccrontab.tmp
|
/usr/bin/crontab /tmp/donationcalccrontab.tmp
|
||||||
/usr/bin/rm /tmp/donationcalccrontab.tmp
|
/usr/bin/rm /tmp/donationcalccrontab.tmp
|
||||||
/usr/bin/systemctl enable donationcalc.service
|
|
||||||
/sbin/service donationcalc start
|
|
||||||
|
4
build-deb/donationcalc/DEBIAN/prerm
Executable file → Normal file
4
build-deb/donationcalc/DEBIAN/prerm
Executable file → Normal file
@ -2,8 +2,6 @@
|
|||||||
|
|
||||||
/usr/bin/echo "Removing monthly rebalance to crontab"
|
/usr/bin/echo "Removing monthly rebalance to crontab"
|
||||||
/usr/bin/crontab -l > /tmp/donationcalccrontab.tmp
|
/usr/bin/crontab -l > /tmp/donationcalccrontab.tmp
|
||||||
/usr/bin/grep -v "0 0 1 * * /usr/bin/python3 /var/donationcalc/rebalance.py" /tmp/donationcalccrontab.tmp >> /tmp/donationcalccrontab.tmp1
|
/usr/bin/grep -v "0 0 1 * * /usr/bin/python3 /var/donationcalc/run.py -r" /tmp/donationcalccrontab.tmp >> /tmp/donationcalccrontab.tmp1
|
||||||
/usr/bin/crontab /tmp/donationcalccrontab.tmp1
|
/usr/bin/crontab /tmp/donationcalccrontab.tmp1
|
||||||
/usr/bin/rm /tmp/donationcalccrontab.tmp /tmp/donationcalccrontab.tmp1
|
/usr/bin/rm /tmp/donationcalccrontab.tmp /tmp/donationcalccrontab.tmp1
|
||||||
/sbin/service donationcalc stop
|
|
||||||
/usr/bin/systemdctl disable donationcalc.service
|
|
||||||
|
@ -1,12 +1,8 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="sr">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="/styles/reset.css">
|
|
||||||
<link rel="stylesheet" href="/styles/style.css">
|
|
||||||
<link rel="stylesheet" href="/styles/donation.css">
|
|
||||||
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
|
||||||
<title>Subscribe for donation reminders</title>
|
<title>Subscribe for donation reminders</title>
|
||||||
<style>
|
<style>
|
||||||
.container {
|
.container {
|
||||||
|
16
rebalance.py
16
rebalance.py
@ -1,16 +0,0 @@
|
|||||||
from donationcalc import donationconfig
|
|
||||||
import donationcalc.models
|
|
||||||
|
|
||||||
donconf = donationconfig.donationconfig()
|
|
||||||
donconf.rebalance()
|
|
||||||
sender = donationcalc.models.sender()
|
|
||||||
donors = []
|
|
||||||
f = open("donors.txt", "r")
|
|
||||||
|
|
||||||
for line in f.readlines():
|
|
||||||
linesplit = line.split(",")
|
|
||||||
newdonor = donationcalc.models.donor(email = linesplit[0], monthly = linesplit[1])
|
|
||||||
donors.append(newdonor)
|
|
||||||
f.close()
|
|
||||||
|
|
||||||
donationcalc.models.rebalanceall(sender,donors)
|
|
31
run.py
31
run.py
@ -1,16 +1,31 @@
|
|||||||
|
from donationcalc import app
|
||||||
from donationcalc import donationconfig
|
from donationcalc import donationconfig
|
||||||
import donationcalc.models
|
import donationcalc.models
|
||||||
|
import argparse
|
||||||
|
|
||||||
donconf = donationconfig.donationconfig()
|
def parseArgs(parser):
|
||||||
donconf.rebalance()
|
parser.add_argument("-r", "--rebalance", dest = "rebalance", help = "balance the monthly values", action="store_true")
|
||||||
sender = donationcalc.models.sender()
|
return parser.parse_args()
|
||||||
donors = []
|
|
||||||
f = open("donors.txt", "r")
|
|
||||||
|
|
||||||
for line in f.readlines():
|
parser = argparse.ArgumentParser()
|
||||||
|
args = parseArgs(parser)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
|
||||||
|
if args.rebalance:
|
||||||
|
donconf = donationconfig.donationconfig()
|
||||||
|
donconf.rebalance()
|
||||||
|
sender = donationcalc.models.sender()
|
||||||
|
donors = []
|
||||||
|
f = open("donors.txt", "r")
|
||||||
|
|
||||||
|
for line in f.readlines():
|
||||||
linesplit = line.split(",")
|
linesplit = line.split(",")
|
||||||
newdonor = donationcalc.models.donor(email = linesplit[0], monthly = linesplit[1])
|
newdonor = donationcalc.models.donor(email = linesplit[0], monthly = linesplit[1])
|
||||||
donors.append(newdonor)
|
donors.append(newdonor)
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
donationcalc.models.rebalanceall(sender,donors)
|
donationcalc.models.rebalanceall(sender,donors)
|
||||||
|
exit()
|
||||||
|
|
||||||
|
app.run(debug=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user