StageStatsQuery.php
1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
namespace FootyRoom\Queries;
use FootyRoom\Http\Models\StageStats;
use FootyRoom\Support\MongoClient;
class StageStatsQuery
{
/**
* @var \FootyRoom\Support\MongoClient
*/
protected $mongo;
/**
* Constructor.
*
* @param \FootyRoom\Support\MongoClient $mongo
*/
public function __construct(MongoClient $mongo)
{
$this->mongo = $mongo->footyroom;
}
/**
* Find stage stats by stage id.
*
* @param int $stageId
*
* @return \FootyRoom\Http\Models\StageStats|null
*/
public function findByStageId($stageId)
{
$options = [
'projection' => [
'_id' => 0,
'goalsByPlayer' => 1,
'assistsByPlayer' => 1,
'yellowCardsByPlayer' => 1,
'redCardsByPlayer' => 1,
],
];
$statsData = $this->mongo->stages->findOne(['stageId' => $stageId], $options);
if (!$statsData) {
return null;
}
$stats = new StageStats();
$empty = true;
foreach ($statsData as $key => $value) {
$stats->{$key} = $value;
if ($empty && count($value) > 0) {
$empty = false;
}
}
if ($empty) {
return null;
}
return $stats;
}
}