Compare commits
8 Commits
master
...
intermedia
| Author | SHA1 | Date | |
|---|---|---|---|
| 3bfc2fc182 | |||
| 802af2418a | |||
| cd9fc4755e | |||
| 158c419747 | |||
| 79e5fdf56b | |||
| a9338805e2 | |||
| 7f82a288da | |||
| 8728d3028b |
@@ -6,7 +6,6 @@ from flask_sqlalchemy import SQLAlchemy
|
|||||||
import os
|
import os
|
||||||
from config import config
|
from config import config
|
||||||
from flask_security.forms import LoginForm
|
from flask_security.forms import LoginForm
|
||||||
from flask_limiter import Limiter
|
|
||||||
from flask_limiter.util import get_remote_address
|
from flask_limiter.util import get_remote_address
|
||||||
|
|
||||||
from .forms import *
|
from .forms import *
|
||||||
@@ -15,13 +14,6 @@ from .forms import *
|
|||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
app.config.from_object(config[os.getenv('FLASK_CONFIG') or 'default'])
|
app.config.from_object(config[os.getenv('FLASK_CONFIG') or 'default'])
|
||||||
|
|
||||||
# applies to all routes, so choose limits wisely!
|
|
||||||
limiter = Limiter(
|
|
||||||
app,
|
|
||||||
key_func=get_remote_address,
|
|
||||||
# default_limits=["500 per second"]
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
@app.errorhandler(429)
|
@app.errorhandler(429)
|
||||||
def ratelimit_handler(e):
|
def ratelimit_handler(e):
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from flask_security.core import current_user
|
|||||||
import requests
|
import requests
|
||||||
|
|
||||||
from ..entities import FillingStation
|
from ..entities import FillingStation
|
||||||
from .. import app, db, limiter
|
from .. import app, db
|
||||||
|
|
||||||
|
|
||||||
@app.route('/filling_stations/favourites/toggle/<fsid>')
|
@app.route('/filling_stations/favourites/toggle/<fsid>')
|
||||||
@@ -24,7 +24,6 @@ def add_favourite_filling_stations(fsid):
|
|||||||
|
|
||||||
@app.route('/filling_stations', methods=['GET'])
|
@app.route('/filling_stations', methods=['GET'])
|
||||||
@login_required
|
@login_required
|
||||||
@limiter.limit('1 per second')
|
|
||||||
def query_filling_stations():
|
def query_filling_stations():
|
||||||
api_key = app.config['TANKERKOENIG_API_KEY']
|
api_key = app.config['TANKERKOENIG_API_KEY']
|
||||||
|
|
||||||
|
|||||||
@@ -164,6 +164,7 @@
|
|||||||
<ul id="consumable_{{vehicle.id}}_{{consumable.id}}_tabs" class="nav nav-tabs" data-tabs="tabs">
|
<ul id="consumable_{{vehicle.id}}_{{consumable.id}}_tabs" class="nav nav-tabs" data-tabs="tabs">
|
||||||
{{ nav_tab(vehicle.id|string + '_' + consumable.id|string + '_consumption', 'Consumption', true) }}
|
{{ nav_tab(vehicle.id|string + '_' + consumable.id|string + '_consumption', 'Consumption', true) }}
|
||||||
{{ nav_tab(vehicle.id|string + '_' + consumable.id|string + '_amount', 'Amount', false) }}
|
{{ nav_tab(vehicle.id|string + '_' + consumable.id|string + '_amount', 'Amount', false) }}
|
||||||
|
{{ nav_tab(vehicle.id|string + '_' + consumable.id|string + '_price', 'Price', false) }}
|
||||||
</ul>
|
</ul>
|
||||||
<div id="consumable_{{vehicle.id}}_{{consumable.id}}_content" class="tab-content ">
|
<div id="consumable_{{vehicle.id}}_{{consumable.id}}_content" class="tab-content ">
|
||||||
{{ tab_pane(
|
{{ tab_pane(
|
||||||
@@ -188,6 +189,17 @@
|
|||||||
false
|
false
|
||||||
)
|
)
|
||||||
}}
|
}}
|
||||||
|
{{ tab_pane(
|
||||||
|
vehicle.id|string + '_' + consumable.id|string + '_price',
|
||||||
|
chart(
|
||||||
|
consumable.price,
|
||||||
|
'ref_' + vehicle.id|string + '_' + consumable.id|string + '_price',
|
||||||
|
'€ / '+consumable.unit,
|
||||||
|
url_for('create_pit_stop_form', vid=vehicle.id, cid=consumable.id)
|
||||||
|
),
|
||||||
|
false
|
||||||
|
)
|
||||||
|
}}
|
||||||
</div>
|
</div>
|
||||||
{{ tab_script('vehicle_' + vehicle.id|string + '_' + consumable.id|string + '_tabs') }}
|
{{ tab_script('vehicle_' + vehicle.id|string + '_' + consumable.id|string + '_tabs') }}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ class ConsumableStats:
|
|||||||
self.average_amount_used = 0
|
self.average_amount_used = 0
|
||||||
self.average_amount = []
|
self.average_amount = []
|
||||||
self.amounts = []
|
self.amounts = []
|
||||||
|
self.price = []
|
||||||
|
|
||||||
pitstops = [
|
pitstops = [
|
||||||
stop for stop in vehicle.pitstops if stop.consumable_id == consumable.id
|
stop for stop in vehicle.pitstops if stop.consumable_id == consumable.id
|
||||||
@@ -37,6 +38,9 @@ class ConsumableStats:
|
|||||||
for pitstop in pitstops:
|
for pitstop in pitstops:
|
||||||
self.overall_amount += pitstop.amount
|
self.overall_amount += pitstop.amount
|
||||||
self.amounts.append(StatsEvent(pitstop.date, pitstop.amount))
|
self.amounts.append(StatsEvent(pitstop.date, pitstop.amount))
|
||||||
|
# some pitstops seem to have lost their costs...
|
||||||
|
if pitstop.costs:
|
||||||
|
self.price.append(StatsEvent(pitstop.date, pitstop.costs/pitstop.amount))
|
||||||
self.average_amount_fuelled = self.overall_amount / pitstop_count
|
self.average_amount_fuelled = self.overall_amount / pitstop_count
|
||||||
if pitstop_count > 1:
|
if pitstop_count > 1:
|
||||||
overall_distance = (
|
overall_distance = (
|
||||||
|
|||||||
@@ -41,8 +41,8 @@ class TestingConfig(Config):
|
|||||||
|
|
||||||
|
|
||||||
class ProductionConfig(Config):
|
class ProductionConfig(Config):
|
||||||
SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://root:{h}@database/pitstops'.format(
|
SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://pitstops:{h}@localhost/pitstops'.format(
|
||||||
h=os.environ.get('DATABASE_ENV_MYSQL_ROOT_PASSWORD'))
|
h=os.environ.get('MYSQL_PASSWORD'))
|
||||||
|
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|||||||
@@ -1,9 +1,12 @@
|
|||||||
Flask
|
Flask==2.1.2
|
||||||
Flask-SQLAlchemy
|
Flask-SQLAlchemy==2.5.1
|
||||||
Flask-Security
|
Flask-Security==3.0.0
|
||||||
Flask-WTF
|
Flask-WTF==1.0.1
|
||||||
PyMySQL
|
PyMySQL==1.0.2
|
||||||
markdown
|
markdown
|
||||||
Flask-Limiter
|
Flask-Limiter==2.4.5.1
|
||||||
requests
|
requests==2.27.1
|
||||||
email_validator
|
email-validator==1.2.1
|
||||||
|
gunicorn==20.1.0
|
||||||
|
pytz==2022.1
|
||||||
|
SQLAlchemy==1.4.36
|
||||||
|
|||||||
Reference in New Issue
Block a user