feat: add Station, StationPrice, StationPriceCurrent, StationPriceArchive models and factories

This commit is contained in:
Ovidiu U
2026-04-03 18:46:53 +01:00
parent ec3a2bf848
commit 7f153fb08d
7 changed files with 258 additions and 0 deletions

56
app/Models/Station.php Normal file
View File

@@ -0,0 +1,56 @@
<?php
namespace App\Models;
use App\Enums\FuelType;
use Database\Factories\StationFactory;
use Illuminate\Database\Eloquent\Attributes\Fillable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
#[Fillable([
'node_id', 'trading_name', 'brand_name', 'is_same_trading_and_brand',
'is_supermarket', 'is_motorway_service_station', 'is_supermarket_service_station',
'temporary_closure', 'permanent_closure', 'permanent_closure_date',
'public_phone_number', 'address_line_1', 'address_line_2', 'city',
'county', 'country', 'postcode', 'lat', 'lng',
'amenities', 'opening_times', 'fuel_types', 'last_seen_at',
])]
class Station extends Model
{
/** @use HasFactory<StationFactory> */
use HasFactory;
public $timestamps = false;
protected $primaryKey = 'node_id';
public $incrementing = false;
protected $keyType = 'string';
protected function casts(): array
{
return [
'is_same_trading_and_brand' => 'boolean',
'is_supermarket' => 'boolean',
'is_motorway_service_station' => 'boolean',
'is_supermarket_service_station' => 'boolean',
'temporary_closure' => 'boolean',
'permanent_closure' => 'boolean',
'permanent_closure_date' => 'date',
'amenities' => 'array',
'opening_times' => 'array',
'fuel_types' => 'array',
'last_seen_at' => 'datetime',
];
}
public function currentPrices(): HasMany
{
return $this->hasMany(StationPriceCurrent::class, 'station_id', 'node_id');
}
public function prices(): HasMany
{
return $this->hasMany(StationPrice::class, 'station_id', 'node_id');
}
}

View File

@@ -0,0 +1,34 @@
<?php
namespace App\Models;
use App\Enums\FuelType;
use Database\Factories\StationPriceFactory;
use Illuminate\Database\Eloquent\Attributes\Fillable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
#[Fillable(['station_id', 'fuel_type', 'price_pence', 'price_effective_at', 'price_reported_at', 'recorded_at'])]
class StationPrice extends Model
{
/** @use HasFactory<StationPriceFactory> */
use HasFactory;
public $timestamps = false;
protected function casts(): array
{
return [
'fuel_type' => FuelType::class,
'price_effective_at' => 'datetime',
'price_reported_at' => 'datetime',
'recorded_at' => 'datetime',
];
}
public function station(): BelongsTo
{
return $this->belongsTo(Station::class, 'station_id', 'node_id');
}
}

View File

@@ -0,0 +1,29 @@
<?php
namespace App\Models;
use App\Enums\FuelType;
use Illuminate\Database\Eloquent\Attributes\Fillable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
#[Fillable(['station_id', 'fuel_type', 'price_pence', 'price_effective_at', 'price_reported_at', 'recorded_at'])]
class StationPriceArchive extends Model
{
public $timestamps = false;
protected function casts(): array
{
return [
'fuel_type' => FuelType::class,
'price_effective_at' => 'datetime',
'price_reported_at' => 'datetime',
'recorded_at' => 'datetime',
];
}
public function station(): BelongsTo
{
return $this->belongsTo(Station::class, 'station_id', 'node_id');
}
}

View File

@@ -0,0 +1,41 @@
<?php
namespace App\Models;
use App\Enums\FuelType;
use Database\Factories\StationPriceCurrentFactory;
use Illuminate\Database\Eloquent\Attributes\Fillable;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
#[Fillable(['station_id', 'fuel_type', 'price_pence', 'price_effective_at', 'price_reported_at', 'recorded_at'])]
class StationPriceCurrent extends Model
{
/** @use HasFactory<StationPriceCurrentFactory> */
use HasFactory;
public $timestamps = false;
protected $primaryKey = null;
public $incrementing = false;
protected function casts(): array
{
return [
'fuel_type' => FuelType::class,
'price_effective_at' => 'datetime',
'price_reported_at' => 'datetime',
'recorded_at' => 'datetime',
];
}
public function station(): BelongsTo
{
return $this->belongsTo(Station::class, 'station_id', 'node_id');
}
public function priceInPence(): float
{
return $this->price_pence / 100;
}
}