Each search now stores an `area_label` (district/town) reverse-geocoded from its coarsened ~1km lat/lng bucket via postcodes.io, surfaced in the Filament Searches admin as a sortable/searchable column plus an area filter. Geocoding is cached 30 days per bucket, queries a 2km radius so low-density buckets still match the default 100m miss, and fails gracefully to null. Adds `searches:backfill-areas` (scheduled hourly) to label existing rows and retry stragglers. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
93 lines
3.1 KiB
PHP
93 lines
3.1 KiB
PHP
<?php
|
|
|
|
use App\Jobs\SendScheduledWhatsAppJob;
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
// Poll for price changes every 30 minutes — API updates within 30 min of any
|
|
// change. The command auto-refreshes station metadata once per day on the
|
|
// first poll after midnight, and uses incremental fetch thereafter.
|
|
Schedule::command('fuel:poll')
|
|
->everyThirtyMinutes()
|
|
->withoutOverlapping()
|
|
->onOneServer()
|
|
->runInBackground();
|
|
|
|
// Safety-net full station + price refresh at 3am in case the auto-refresh
|
|
// staleness check is skipped for any reason.
|
|
Schedule::command('fuel:poll --full')
|
|
->dailyAt('03:00')
|
|
->withoutOverlapping()
|
|
->onOneServer()
|
|
->runInBackground();
|
|
|
|
// Phase 7: Brent crude refresh at 06:30 UK so the 07:00 LLM overlay has
|
|
// fresh context.
|
|
Schedule::command('oil:fetch')
|
|
->dailyAt('06:30')
|
|
->withoutOverlapping()
|
|
->onOneServer()
|
|
->runInBackground();
|
|
|
|
// Phase 8: news-aware overlay on the calibrated ridge forecast.
|
|
Schedule::command('forecast:llm-overlay')
|
|
->dailyAt('07:00')
|
|
->withoutOverlapping()
|
|
->onOneServer()
|
|
->runInBackground();
|
|
|
|
// Pull the latest BEIS Weekly Road Fuel Prices CSV from gov.uk every
|
|
// Monday at 09:30 UK. The publication usually lands earlier in the
|
|
// morning, so 09:30 is a safe buffer. Re-running on the same week is
|
|
// idempotent (upsert keyed on `date`).
|
|
Schedule::command('beis:import')
|
|
->mondays()
|
|
->at('09:30')
|
|
->withoutOverlapping()
|
|
->onOneServer()
|
|
->runInBackground();
|
|
|
|
// Phase 6: pair past forecasts with actual outcomes after BEIS
|
|
// publishes. Runs after `beis:import` so the new ULSP row is in DB.
|
|
Schedule::command('forecast:resolve-outcomes')
|
|
->mondays()
|
|
->at('10:00')
|
|
->withoutOverlapping()
|
|
->onOneServer()
|
|
->runInBackground();
|
|
|
|
// Phase 9: hourly volatility regime check (Brent moves, LLM events,
|
|
// station churn (gated), watched events).
|
|
Schedule::command('forecast:evaluate-volatility')
|
|
->hourly()
|
|
->withoutOverlapping()
|
|
->onOneServer()
|
|
->runInBackground();
|
|
|
|
// Move station_prices rows older than 12 months into station_prices_archive
|
|
// once a month. Keeps the partitioned hot table bounded.
|
|
Schedule::command('fuel:archive')
|
|
->monthlyOn(1, '04:00')
|
|
->withoutOverlapping()
|
|
->onOneServer()
|
|
->runInBackground();
|
|
|
|
// Retry area labels that failed to reverse-geocode at search time (transient
|
|
// postcodes.io blip, or a genuinely remote point). Searches normally get their
|
|
// area_label inline; this just mops up stragglers. Cached per bucket, so it
|
|
// only calls the API for buckets it hasn't resolved yet.
|
|
Schedule::command('searches:backfill-areas')
|
|
->hourly()
|
|
->withoutOverlapping()
|
|
->onOneServer()
|
|
->runInBackground();
|
|
|
|
// Scheduled WhatsApp updates — morning and evening
|
|
Schedule::job(new SendScheduledWhatsAppJob('morning'))->dailyAt('07:30')->onOneServer();
|
|
Schedule::job(new SendScheduledWhatsAppJob('evening'))->dailyAt('18:00')->onOneServer();
|