clean up scheduled commands

also add comments to each command
This commit is contained in:
hackerESQ
2024-09-05 21:21:18 -05:00
parent 6f63ac7067
commit 8511cc833d
12 changed files with 51 additions and 35 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ class CaptureDailyChange extends Command
return $holding->market_data->market_value * $holding->quantity;
});
$portfolio->daily_changes()->create([
$portfolio->daily_change()->create([
'date' => now(),
'total_market_value' => $total_market_value,
'total_cost_basis' => $total_cost_basis,
+1 -2
View File
@@ -39,8 +39,7 @@ class RefreshDividendData extends Command
*/
public function handle()
{
// $holdings = Holding::where('quantity', '>', 0)->distinct()->get(['symbol']);
$holdings = Holding::distinct()->get(['symbol']);
$holdings = Holding::where('quantity', '>', 0)->distinct()->get(['symbol']);
foreach ($holdings as $holding) {
$this->line('Refreshing ' . $holding->symbol);
+5 -6
View File
@@ -41,16 +41,15 @@ class RefreshMarketData extends Command
public function handle()
{
// get all symbols from market data
$symbols = Holding::where('quantity', '>', 0)
$holdings = Holding::where('quantity', '>', 0)
->select(['symbol'])
->distinct()
->get()
->pluck('symbol');
->get();
foreach ($symbols as $symbol) {
$this->line('Refreshing ' . $symbol);
foreach ($holdings as $holding) {
$this->line('Refreshing ' . $holding->symbol);
MarketData::getMarketData($symbol);
MarketData::getMarketData($holding->symbol);
}
}
}
+1 -1
View File
@@ -40,7 +40,7 @@ class RefreshSplitData extends Command
*/
public function handle()
{
$holdings = Holding::distinct()->get(['symbol']);
$holdings = Holding::where('quantity', '>', 0)->distinct()->get(['symbol']);
foreach ($holdings as $holding) {
$this->line('Refreshing ' . $holding->symbol);
+2 -2
View File
@@ -12,14 +12,14 @@ class SyncHoldingData extends Command
*
* @var string
*/
protected $signature = 'holding-data:refresh';
protected $signature = 'holding-data:sync';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Refresh holdings';
protected $description = 'Syncs holdings with transactions and dividends';
/**
* Create a new command instance.
+1 -1
View File
@@ -25,7 +25,7 @@ class PortfolioController extends Controller
$portfolio->load(['transactions', 'holdings']);
// get portfolio metrics
$metrics = cache()->tags(['metrics', 'portfolio', auth()->user()->id, $portfolio->id])->remember(
$metrics = cache()->tags(['metrics', 'portfolio', $portfolio->id])->remember(
'portfolio-metrics-' . $portfolio->id,
60,
function () use ($portfolio) {
-1
View File
@@ -22,7 +22,6 @@ class Dividend extends Model
protected $casts = [
'date' => 'datetime',
'first_date' => 'datetime',
'last_date' => 'datetime',
];
-2
View File
@@ -25,12 +25,10 @@ class Holding extends Model
'realized_gain_dollars',
'dividends_earned',
'splits_synced_at',
'dividends_synced_at'
];
protected $casts = [
'splits_synced_at' => 'datetime',
'dividends_synced_at' => 'datetime',
];
protected $attributes = [
+9 -9
View File
@@ -24,7 +24,6 @@ class Split extends Model
protected $casts = [
'date' => 'datetime',
'first_date' => 'datetime',
'last_date' => 'datetime',
];
@@ -48,7 +47,6 @@ class Split extends Model
// dates for split data
$splits_meta = self::where(['symbol' => $symbol])
->selectRaw('COUNT(symbol) as total_splits')
->selectRaw('MIN(date) as first_date')
->selectRaw('MAX(date) as last_date')
->get()
->first();
@@ -76,8 +74,6 @@ class Split extends Model
// sync to transactions
self::syncToTransactions($symbol);
return $split_data;
}
/**
@@ -92,7 +88,7 @@ class Split extends Model
$splits = self::where([
'splits.symbol' => $symbol,
])
->whereDate('transactions.date', '>', DB::raw('IFNULL(market_data.splits_synced_to_holdings_at, "0000-00-00")'))
->whereDate('transactions.date', '>', DB::raw('IFNULL(holdings.splits_synced_at, "0000-00-00")'))
->select([
'splits.date',
'splits.symbol',
@@ -100,7 +96,7 @@ class Split extends Model
'transactions.portfolio_id'
])
->join('transactions', 'transactions.symbol', 'splits.symbol')
->join('market_data', 'transactions.symbol', 'market_data.symbol')
->join('holdings', 'transactions.symbol', 'holdings.symbol')
->orderBy('splits.date', 'ASC')
->get();
@@ -126,11 +122,15 @@ class Split extends Model
'created_at' => now(),
'updated_at' => now()
]);
Holding::where([
'symbol' => $split->symbol,
'portfolio_id' => $split->portfolio_id
])->update([
'splits_synced_at' => now()
]);
}
}
// // update market data with latest date
// MarketData::setSplitsHoldingSynced($symbol);
}
+3 -2
View File
@@ -17,6 +17,7 @@ class Transaction extends Model
protected $fillable = [
'symbol',
'date',
'portfolio_id',
'transaction_type',
'quantity',
'cost_basis',
@@ -48,14 +49,14 @@ class Transaction extends Model
$transaction->refreshMarketData();
cache()->tags(['metrics', auth()->user()->id])->flush();
cache()->tags(['metrics', $transaction->portfolio_id])->flush();
});
static::deleted(function ($transaction) {
$transaction->syncToHolding();
cache()->tags(['metrics', auth()->user()->id])->flush();
cache()->tags(['metrics', $transaction->portfolio_id])->flush();
});
}