diff --git a/app.py b/app.py index ed9ed86..6d3c4c2 100644 --- a/app.py +++ b/app.py @@ -497,22 +497,7 @@ def _results(station_crs, slug, travel_date, journey_type, return_date): ) fare_direction = "to_paddington" if direction == "outbound" else "from_paddington" - gwr_fares = get_cached(gwr_cache_key, ttl=30 * 24 * 3600) - if gwr_fares is not None: - from_cache_parts.append(gwr_cache_key) - elif nr_provisional or es_provisional: - gwr_fares = {} - else: - gwr_fares = cached_fetch( - gwr_cache_key, - 30 * 24 * 3600, - ( - (lambda: gwr_fares_scraper.fetch(station_crs, section_date)) - if fare_direction == "to_paddington" - else (lambda: gwr_fares_scraper.fetch(station_crs, section_date, direction=fare_direction)) - ), - "GWR fares", - ) + gwr_fares = {} cached_advance = get_cached(advance_cache_key, ttl=24 * 3600) if direction == "outbound": diff --git a/templates/results.html b/templates/results.html index 2b39f46..e98d6f4 100644 --- a/templates/results.html +++ b/templates/results.html @@ -351,9 +351,21 @@ }); } + function loadWalkonFares() { + for (var sectionId in WALKON_API_URLS) { + (function(id, url) { + fetch(url).then(function(r) { return r.json(); }).then(function(fares) { + mergeWalkonFares(id, fares); + updateDisplay(); + }); + })(sectionId, WALKON_API_URLS[sectionId]); + } + } + function initialiseResultsPage() { if (currentNrClass === 'advance_std' || currentNrClass === 'advance_1st') loadMissingAdvanceFares(); updateDisplay(); + loadWalkonFares(); startTimetableRefresh(); } @@ -500,7 +512,6 @@ {% set row_class = '' %} {% endif %}