ddeboer /
data-import
This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Ddeboer\DataImport\Reader; |
||
| 4 | |||
| 5 | use Ddeboer\DataImport\Reader; |
||
| 6 | use Ddeboer\DataImport\Exception\ReaderException; |
||
| 7 | |||
| 8 | /** |
||
| 9 | * Takes multiple readers for processing in the same workflow |
||
| 10 | * |
||
| 11 | * @author Adam Paterson <[email protected]> |
||
| 12 | * @author Aydin Hassan <[email protected]> |
||
| 13 | */ |
||
| 14 | class OneToManyReader implements CountableReader |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var Reader |
||
| 18 | */ |
||
| 19 | protected $leftReader; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var Reader |
||
| 23 | */ |
||
| 24 | protected $rightReader; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $leftJoinField; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $rightJoinField; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Key to nest the rightRows under |
||
| 38 | * |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | protected $nestKey; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param Reader $leftReader |
||
| 45 | * @param Reader $rightReader |
||
| 46 | * @param string $nestKey |
||
| 47 | * @param string $leftJoinField |
||
| 48 | * @param string $rightJoinField |
||
| 49 | */ |
||
| 50 | 9 | public function __construct( |
|
| 51 | Reader $leftReader, |
||
| 52 | Reader $rightReader, |
||
| 53 | $nestKey, |
||
| 54 | $leftJoinField, |
||
| 55 | $rightJoinField = null |
||
| 56 | ) { |
||
| 57 | 9 | if (is_null($rightJoinField)) { |
|
| 58 | 8 | $rightJoinField = $leftJoinField; |
|
| 59 | 8 | } |
|
| 60 | |||
| 61 | 9 | $this->leftJoinField = $leftJoinField; |
|
| 62 | 9 | $this->rightJoinField = $rightJoinField; |
|
| 63 | 9 | $this->leftReader = $leftReader; |
|
| 64 | 9 | $this->rightReader = $rightReader; |
|
| 65 | 9 | $this->nestKey = $nestKey; |
|
| 66 | 9 | } |
|
| 67 | |||
| 68 | /** |
||
| 69 | * Create an array of children in the leftRow, |
||
| 70 | * with the data returned from the right reader |
||
| 71 | * Where the ID fields Match |
||
| 72 | * |
||
| 73 | * @return array |
||
| 74 | * |
||
| 75 | * @throws ReaderException |
||
| 76 | */ |
||
| 77 | 7 | public function current() |
|
| 78 | { |
||
| 79 | 7 | $leftRow = $this->leftReader->current(); |
|
| 80 | |||
| 81 | 7 | if (array_key_exists($this->nestKey, $leftRow)) { |
|
| 82 | 1 | throw new ReaderException( |
|
| 83 | 1 | sprintf( |
|
| 84 | 1 | 'Left Row: "%s" Reader already contains a field named "%s". Please choose a different nest key field', |
|
| 85 | 1 | $this->key(), |
|
| 86 | 1 | $this->nestKey |
|
| 87 | 1 | ) |
|
| 88 | 1 | ); |
|
| 89 | } |
||
| 90 | 6 | $leftRow[$this->nestKey] = []; |
|
| 91 | |||
| 92 | 6 | $leftId = $this->getRowId($leftRow, $this->leftJoinField); |
|
| 93 | 5 | $rightRow = $this->rightReader->current(); |
|
| 94 | 5 | $rightId = $this->getRowId($rightRow, $this->rightJoinField); |
|
| 95 | |||
| 96 | 4 | while ($leftId == $rightId && $this->rightReader->valid()) { |
|
| 97 | |||
| 98 | 3 | $leftRow[$this->nestKey][] = $rightRow; |
|
| 99 | 3 | $this->rightReader->next(); |
|
| 100 | |||
| 101 | 3 | $rightRow = $this->rightReader->current(); |
|
| 102 | |||
| 103 | 3 | if($this->rightReader->valid()) { |
|
| 104 | 3 | $rightId = $this->getRowId($rightRow, $this->rightJoinField); |
|
| 105 | 3 | } |
|
| 106 | 3 | } |
|
| 107 | |||
| 108 | 4 | return $leftRow; |
|
| 109 | } |
||
| 110 | |||
| 111 | /** |
||
| 112 | * @param array $row |
||
| 113 | * @param string $idField |
||
| 114 | * |
||
| 115 | * @return mixed |
||
| 116 | * |
||
| 117 | * @throws ReaderException |
||
| 118 | */ |
||
| 119 | 6 | protected function getRowId(array $row, $idField) |
|
| 120 | { |
||
| 121 | 6 | if (!array_key_exists($idField, $row)) { |
|
| 122 | 2 | throw new ReaderException( |
|
| 123 | 2 | sprintf( |
|
| 124 | 2 | 'Row: "%s" has no field named "%s"', |
|
| 125 | 2 | $this->key(), |
|
| 126 | $idField |
||
| 127 | 2 | ) |
|
| 128 | 2 | ); |
|
| 129 | } |
||
| 130 | |||
| 131 | 5 | return $row[$idField]; |
|
| 132 | } |
||
| 133 | |||
| 134 | /** |
||
| 135 | * {@inheritdoc} |
||
| 136 | */ |
||
| 137 | 4 | public function next() |
|
| 138 | { |
||
| 139 | 4 | $this->leftReader->next(); |
|
| 140 | //right reader is iterated in current() method. |
||
| 141 | 4 | } |
|
| 142 | |||
| 143 | /** |
||
| 144 | * {@inheritdoc} |
||
| 145 | */ |
||
| 146 | 3 | public function key() |
|
| 147 | { |
||
| 148 | 3 | return $this->leftReader->key(); |
|
| 149 | } |
||
| 150 | |||
| 151 | /** |
||
| 152 | * {@inheritdoc} |
||
| 153 | */ |
||
| 154 | 4 | public function valid() |
|
| 155 | { |
||
| 156 | 4 | return $this->leftReader->valid() && $this->rightReader->valid(); |
|
| 157 | } |
||
| 158 | |||
| 159 | /** |
||
| 160 | * {@inheritdoc} |
||
| 161 | */ |
||
| 162 | 7 | public function rewind() |
|
| 163 | { |
||
| 164 | 7 | $this->leftReader->rewind(); |
|
| 165 | 7 | $this->rightReader->rewind(); |
|
| 166 | 7 | } |
|
| 167 | |||
| 168 | /** |
||
| 169 | * {@inheritdoc} |
||
| 170 | */ |
||
| 171 | 1 | public function getFields() |
|
| 172 | { |
||
| 173 | 1 | return array_merge($this->leftReader->getFields(), [$this->nestKey]); |
|
| 174 | } |
||
| 175 | |||
| 176 | /** |
||
| 177 | * {@inheritdoc} |
||
| 178 | */ |
||
| 179 | 1 | public function count() |
|
| 180 | { |
||
| 181 | 1 | return $this->leftReader->count(); |
|
|
0 ignored issues
–
show
|
|||
| 182 | } |
||
| 183 | } |
||
| 184 |
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: