Skip to content

Commit 49bef3c

Browse files
committed
add scope for models-count
1 parent 9c1e874 commit 49bef3c

File tree

2 files changed

+36
-4
lines changed

2 files changed

+36
-4
lines changed

src/Commands/ModelsCount.php

+31-4
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ class ModelsCount extends BaseCommand
1515
{
1616
use BuildPeriod, DateArgument, GatherModels, HasVerbose, ModelsOption, PrepareMetricsData, SendMetricsData;
1717

18-
protected $signature = 'eloquentize:models-count {date?} {--event=created_at} {--periodType=daily} {--dateFormat=} {--M|models=} {--modelsPath=}';
18+
protected $signature = 'eloquentize:models-count {date?} {--event=created_at} {--periodType=daily} {--dateFormat=} {--M|models=} {--modelsPath=} {--scope=} {--scopeValue=} ';
1919

2020
protected $description = 'Send to Eloquentize the counts of all models for a given date and event.';
2121

2222
protected $verbose = false;
2323

24-
public function performModelCount(array $models, CarbonPeriod $period, string $event, ?string $modelsPath = null)
24+
public function performModelCount(array $models, CarbonPeriod $period, string $event, ?string $modelsPath = null, ?string $scope = null, ?string $scopeValue = null)
2525
{
2626
$metrics = [];
2727
foreach ($models as $model) {
@@ -30,8 +30,21 @@ public function performModelCount(array $models, CarbonPeriod $period, string $e
3030
if (! $this->isModelValid($modelClass, $event)) {
3131
continue;
3232
}
33+
$query = $modelClass::whereBetween($event, [$period->getStartDate(), $period->getEndDate()]);
34+
// check if the model has corresponding scope and apply it
35+
if ($scope) {
36+
if (method_exists($modelClass, 'scope'.$scope)) {
37+
if ($scope && $scopeValue) {
38+
$query = $query->$scope($scopeValue);
39+
} elseif ($scope) {
40+
$query = $query->$scope();
41+
}
42+
} else {
43+
$this->line("Scope $scope does not exist on model $model");
44+
}
45+
}
3346

34-
$count = $modelClass::whereBetween($event, [$period->getStartDate(), $period->getEndDate()])->count();
47+
$count = $query->count();
3548
$this->verbose("Counting $model - count: ".$count);
3649
$metrics[] = (object) ['label' => $model, 'count' => $count];
3750

@@ -48,8 +61,22 @@ public function handle()
4861
$periodType = $this->option('periodType') ?? 'daily';
4962
$dateFormat = $this->option('dateFormat') ?? $this->defaultDateFormat;
5063
$modelsPath = $this->option('modelsPath');
64+
$scope = $this->option('scope');
65+
$scopeValue = $this->option('scopeValue');
5166
$filteredModels = $this->parseModelsOption($this->option('models'));
5267

68+
if ($scope && ! $filteredModels) {
69+
$this->error('"scope" option requires "--models" option to be set. models provided should have a corresponding scope.');
70+
71+
return 1;
72+
}
73+
74+
if ($scopeValue && ! $scope) {
75+
$this->error('"--scopeValue" option requires "--scope" option to be set.');
76+
77+
return 1;
78+
}
79+
5380
$period = $this->buildPeriod($date, $periodType, $dateFormat);
5481
$models = $this->gatherModels($filteredModels, $modelsPath);
5582

@@ -59,7 +86,7 @@ public function handle()
5986
return 1;
6087
}
6188

62-
$metrics = $this->performModelCount($models, $period, $event, $modelsPath);
89+
$metrics = $this->performModelCount($models, $period, $event, $modelsPath, $scope, $scopeValue);
6390
$metricsData = $this->prepareMetricsData($metrics, $period, $event);
6491

6592
$this->verbose('Sending models count data to eloquentize...'.config('eloquentize.api_url').'/api/metrics/models');

src/app/Testing/Models/Bill.php

+5
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,9 @@ class Bill extends Model
1010
protected $guarded = [];
1111

1212
use HasFactory;
13+
14+
public function scopePriceOver($query, $price)
15+
{
16+
return $query->where('price', '>', $price);
17+
}
1318
}

0 commit comments

Comments
 (0)