@@ -15,13 +15,13 @@ class ModelsCount extends BaseCommand
15
15
{
16
16
use BuildPeriod, DateArgument, GatherModels, HasVerbose, ModelsOption, PrepareMetricsData, SendMetricsData;
17
17
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=} ' ;
19
19
20
20
protected $ description = 'Send to Eloquentize the counts of all models for a given date and event. ' ;
21
21
22
22
protected $ verbose = false ;
23
23
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 )
25
25
{
26
26
$ metrics = [];
27
27
foreach ($ models as $ model ) {
@@ -30,8 +30,21 @@ public function performModelCount(array $models, CarbonPeriod $period, string $e
30
30
if (! $ this ->isModelValid ($ modelClass , $ event )) {
31
31
continue ;
32
32
}
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
+ }
33
46
34
- $ count = $ modelClass :: whereBetween ( $ event , [ $ period -> getStartDate (), $ period -> getEndDate ()]) ->count ();
47
+ $ count = $ query ->count ();
35
48
$ this ->verbose ("Counting $ model - count: " .$ count );
36
49
$ metrics [] = (object ) ['label ' => $ model , 'count ' => $ count ];
37
50
@@ -48,8 +61,22 @@ public function handle()
48
61
$ periodType = $ this ->option ('periodType ' ) ?? 'daily ' ;
49
62
$ dateFormat = $ this ->option ('dateFormat ' ) ?? $ this ->defaultDateFormat ;
50
63
$ modelsPath = $ this ->option ('modelsPath ' );
64
+ $ scope = $ this ->option ('scope ' );
65
+ $ scopeValue = $ this ->option ('scopeValue ' );
51
66
$ filteredModels = $ this ->parseModelsOption ($ this ->option ('models ' ));
52
67
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
+
53
80
$ period = $ this ->buildPeriod ($ date , $ periodType , $ dateFormat );
54
81
$ models = $ this ->gatherModels ($ filteredModels , $ modelsPath );
55
82
@@ -59,7 +86,7 @@ public function handle()
59
86
return 1 ;
60
87
}
61
88
62
- $ metrics = $ this ->performModelCount ($ models , $ period , $ event , $ modelsPath );
89
+ $ metrics = $ this ->performModelCount ($ models , $ period , $ event , $ modelsPath, $ scope , $ scopeValue );
63
90
$ metricsData = $ this ->prepareMetricsData ($ metrics , $ period , $ event );
64
91
65
92
$ this ->verbose ('Sending models count data to eloquentize... ' .config ('eloquentize.api_url ' ).'/api/metrics/models ' );
0 commit comments