|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Obblm\Core\Helper\Rule\Traits; |
|
4
|
|
|
|
|
5
|
|
|
use Doctrine\Common\Collections\Criteria; |
|
6
|
|
|
use Obblm\Core\Entity\Team; |
|
7
|
|
|
use Obblm\Core\Exception\NotFoundRuleKeyExcepion; |
|
8
|
|
|
use Obblm\Core\Helper\CoreTranslation; |
|
9
|
|
|
use Obblm\Core\Helper\Rule\Inducement\Inducement; |
|
10
|
|
|
use Obblm\Core\Helper\Rule\Inducement\InducementType; |
|
11
|
|
|
|
|
12
|
|
|
/********************* |
|
13
|
|
|
* INDUCEMENT METHODS |
|
14
|
|
|
********************/ |
|
15
|
|
|
trait AbstractInducementRuleTrait |
|
16
|
|
|
{ |
|
17
|
|
|
public function getInducementType(string $type):InducementType |
|
18
|
|
|
{ |
|
19
|
|
|
return $this->getInducementTypes()[$type]; |
|
|
|
|
|
|
20
|
|
|
} |
|
21
|
|
|
|
|
22
|
|
|
public function getMaxStarPlayers():int |
|
23
|
|
|
{ |
|
24
|
|
|
return $this->rule['inducements']['star_players']['max']; |
|
25
|
|
|
} |
|
26
|
|
|
|
|
27
|
|
|
public function getInducements():array |
|
28
|
|
|
{ |
|
29
|
|
|
$inducements = []; |
|
30
|
|
|
$rule_key = $this->getAttachedRule()->getRuleKey(); |
|
|
|
|
|
|
31
|
|
|
$available_inducements = $this->rule['inducements']; |
|
32
|
|
|
|
|
33
|
|
|
foreach ($available_inducements as $key => $value) { |
|
34
|
|
|
if ($key !== 'star_players') { |
|
35
|
|
|
$inducement = [ |
|
36
|
|
|
'type' => $this->getInducementType('inducements'), |
|
37
|
|
|
'key' => join(CoreTranslation::TRANSLATION_GLUE, [$rule_key, 'inducements', $key]), |
|
38
|
|
|
'translation_domain' => $this->getAttachedRule()->getRuleKey(), |
|
39
|
|
|
'translation_key' => CoreTranslation::getInducementName($rule_key, $key), |
|
40
|
|
|
'max' => $value['max'] ?? 0, |
|
41
|
|
|
'value' => $value['cost'], |
|
42
|
|
|
]; |
|
43
|
|
|
$inducements[] = new Inducement($inducement); |
|
44
|
|
|
} |
|
45
|
|
|
} |
|
46
|
|
|
return $inducements; |
|
47
|
|
|
} |
|
48
|
|
|
|
|
49
|
|
|
public function getInducementsByTeamOptions(array $options):array |
|
50
|
|
|
{ |
|
51
|
|
|
$inducements = []; |
|
52
|
|
|
$rule_key = $this->getAttachedRule()->getRuleKey(); |
|
53
|
|
|
$available_inducements = $this->rule['inducements']; |
|
54
|
|
|
|
|
55
|
|
|
foreach ($available_inducements as $key => $value) { |
|
56
|
|
|
if ($key !== 'star_players') { |
|
57
|
|
|
if ($options[$key]) { |
|
58
|
|
|
$inducement = [ |
|
59
|
|
|
'type' => $this->getInducementType('inducements'), |
|
60
|
|
|
'key' => join(CoreTranslation::TRANSLATION_GLUE, [$rule_key, 'inducements', $key]), |
|
61
|
|
|
'translation_domain' => $this->getAttachedRule()->getRuleKey(), |
|
62
|
|
|
'translation_key' => CoreTranslation::getInducementName($rule_key, $key), |
|
63
|
|
|
'max' => $value['max'] ?? 0, |
|
64
|
|
|
'value' => ($options[$key] === 'discount') ? $value['discounted_cost'] : $value['cost'], |
|
65
|
|
|
]; |
|
66
|
|
|
$inducements[] = new Inducement($inducement); |
|
67
|
|
|
} |
|
68
|
|
|
} |
|
69
|
|
|
} |
|
70
|
|
|
return $inducements; |
|
71
|
|
|
} |
|
72
|
|
|
|
|
73
|
|
|
public function getStarPlayers():array |
|
74
|
|
|
{ |
|
75
|
|
|
return $this->rule['star_players']; |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
public function getStarPlayer(string $key):array |
|
79
|
|
|
{ |
|
80
|
|
|
if (!isset($this->rule['star_players'][$key])) { |
|
81
|
|
|
throw new NotFoundRuleKeyExcepion($key); |
|
82
|
|
|
} |
|
83
|
|
|
return $this->rule['star_players'][$key]; |
|
84
|
|
|
} |
|
85
|
|
|
} |
|
86
|
|
|
|
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.