basic model scaffolding

This commit is contained in:
hackerESQ
2024-08-10 13:30:19 -05:00
parent a7acb2f346
commit 94c8850cd5
6 changed files with 732 additions and 0 deletions
+74
View File
@@ -0,0 +1,74 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Interfaces\MarketData\MarketDataInterface;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class MarketData extends Model
{
use HasFactory;
protected $primaryKey = 'symbol';
protected $keyType = 'string';
public $incrementing = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'symbol',
'name',
'market_value',
'fifty_two_week_high',
'fifty_two_week_low',
];
public static function setSplitsHoldingSynced($symbol)
{
$market_data = self::where('symbol', $symbol)->get()->first();
$market_data->splits_synced_to_holdings_at = now();
$market_data->save();
}
public function refreshMarketData()
{
return static::getMarketData($this->attributes['symbol']);
}
public static function getMarketData($symbol)
{
$market_data = self::firstOrNew(['symbol' => $symbol]);
// check if new or stale
if (!$market_data->exists || now()->diffInMinutes($market_data->updated_at) >= config('market_data.refresh')) {
// get quote
$quote = app(MarketDataInterface::class)->quote($symbol);
// fill data
$market_data->fill($quote->toArray());
// save with timestamps updated
$market_data->touch();
}
return $market_data;
}
public function holdings()
{
return $this->hasMany(Holding::class, 'symbol', 'symbol');
}
public function scopeSymbol($query, $symbol)
{
return $query->where('symbol', $symbol);
}
}