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 | namespace evseevnn\Cassandra; |
||
3 | use evseevnn\Cassandra\Enum\ConsistencyEnum; |
||
4 | use evseevnn\Cassandra\Enum\OpcodeEnum; |
||
5 | use evseevnn\Cassandra\Exception\CassandraException; |
||
6 | use evseevnn\Cassandra\Exception\ConnectionException; |
||
7 | use evseevnn\Cassandra\Exception\QueryException; |
||
8 | use evseevnn\Cassandra\Protocol\RequestFactory; |
||
9 | use evseevnn\Cassandra\Protocol\Response\Rows; |
||
10 | |||
11 | class Database { |
||
12 | |||
13 | const POSTFIX_DUPLICATE_QUERY_VARIABLE = '_prefix'; |
||
14 | |||
15 | /** |
||
16 | * @var Cluster |
||
17 | */ |
||
18 | private $cluster; |
||
19 | |||
20 | /** |
||
21 | * @var Connection |
||
22 | */ |
||
23 | private $connection; |
||
24 | |||
25 | /** |
||
26 | * Connection options |
||
27 | * @var array |
||
28 | */ |
||
29 | private $options = [ |
||
30 | 'CQL_VERSION' => '3.0.0' |
||
31 | ]; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | private $keyspace; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | */ |
||
41 | private $batchQuery = ''; |
||
42 | |||
43 | /** |
||
44 | * @var array |
||
45 | */ |
||
46 | private $batchQueryData = []; |
||
47 | |||
48 | /** |
||
49 | * @param array $nodes |
||
50 | * @param string $keyspace |
||
51 | * @param array $options |
||
52 | */ |
||
53 | public function __construct(array $nodes, $keyspace = '', array $options = []) { |
||
54 | $this->cluster = new Cluster($nodes); |
||
55 | $this->connection = new Connection($this->cluster); |
||
56 | $this->options = array_merge($this->options, $options); |
||
57 | $this->keyspace = $keyspace; |
||
58 | } |
||
59 | |||
60 | /** |
||
61 | * Connect to database |
||
62 | * @throws Exception\ConnectionException |
||
63 | * @throws Exception\CassandraException |
||
64 | * @return bool |
||
65 | */ |
||
66 | public function connect() { |
||
67 | if ($this->connection->isConnected()) return true; |
||
68 | $this->connection->connect(); |
||
69 | $response = $this->connection->sendRequest( |
||
70 | RequestFactory::startup($this->options) |
||
71 | ); |
||
72 | $responseType = $response->getType(); |
||
73 | switch($responseType) { |
||
74 | case OpcodeEnum::ERROR: |
||
75 | throw new ConnectionException($response->getData()); |
||
76 | |||
77 | case OpcodeEnum::AUTHENTICATE: |
||
78 | $nodeOptions = $this->connection->getNode()->getOptions(); |
||
79 | $response = $this->connection->sendRequest( |
||
80 | RequestFactory::credentials( |
||
81 | $nodeOptions['username'], |
||
82 | $nodeOptions['password'] |
||
83 | ) |
||
84 | ); |
||
85 | $responseType = $response->getType(); |
||
86 | } |
||
87 | if ($responseType === OpcodeEnum::ERROR) throw new ConnectionException($response->getData()); |
||
88 | if (!empty($this->keyspace)) $this->setKeyspace($this->keyspace); |
||
89 | |||
90 | return true; |
||
91 | } |
||
92 | |||
93 | /** |
||
94 | * Disconnect to database |
||
95 | * @return bool |
||
96 | */ |
||
97 | public function disconnect() { |
||
98 | if ($this->connection->isConnected()) return $this->connection->disconnect(); |
||
99 | return true; |
||
100 | } |
||
101 | |||
102 | /** |
||
103 | * Start transaction |
||
104 | */ |
||
105 | public function beginBatch() { |
||
106 | if (!$this->batchQuery) { |
||
107 | $this->batchQuery = "BEGIN BATCH\n"; |
||
108 | $this->batchQueryData = []; |
||
109 | } |
||
110 | } |
||
111 | |||
112 | /** |
||
113 | * Start counter transaction |
||
114 | */ |
||
115 | public function beginCounterBatch() { |
||
116 | if (!$this->batchQuery) { |
||
117 | $this->batchQuery = "BEGIN COUNTER BATCH\n"; |
||
118 | $this->batchQueryData = []; |
||
119 | } |
||
120 | } |
||
121 | |||
122 | /** |
||
123 | * Start unlogged transaction |
||
124 | */ |
||
125 | public function beginUnloggedBatch() { |
||
126 | if (!$this->batchQuery) { |
||
127 | $this->batchQuery = "BEGIN UNLOGGED BATCH\n"; |
||
128 | $this->batchQueryData = []; |
||
129 | } |
||
130 | } |
||
131 | |||
132 | /** |
||
133 | * Exec transaction |
||
134 | */ |
||
135 | public function applyBatch($consistency = ConsistencyEnum::CONSISTENCY_QUORUM) { |
||
136 | $this->batchQuery .= 'APPLY BATCH;'; |
||
137 | // exec |
||
138 | $result = $this->query($this->batchQuery, $this->batchQueryData, $consistency); |
||
139 | // cleaning |
||
140 | $this->batchQuery = ''; |
||
141 | $this->batchQueryData = []; |
||
142 | return $result; |
||
143 | } |
||
144 | |||
145 | /** |
||
146 | * @param string $cql |
||
147 | * @param array $values |
||
148 | */ |
||
149 | private function appendQueryToStack($cql, array $values) { |
||
150 | $valuesModified = false; |
||
151 | foreach($values as $key => $value) { |
||
152 | if (is_string($key) && isset($this->batchQueryData[$key])) { |
||
153 | $newFieldName = $key . self::POSTFIX_DUPLICATE_QUERY_VARIABLE; |
||
154 | $cql = str_replace(":{$key}", ":{$newFieldName}", $cql); |
||
155 | unset($values[$key]); |
||
156 | $values[$newFieldName] = $value; |
||
157 | $valuesModified = true; |
||
158 | } |
||
159 | } |
||
160 | if ($valuesModified) { |
||
161 | // Retry |
||
162 | $this->appendQueryToStack($cql, $values); |
||
163 | } else { |
||
164 | $this->batchQuery .= rtrim($cql, ';') . ";\n"; |
||
165 | $this->batchQueryData = array_merge($this->batchQueryData, $values); |
||
166 | } |
||
167 | } |
||
168 | |||
169 | /** |
||
170 | * Send query into database |
||
171 | * @param string $cql |
||
172 | * @param array $values |
||
173 | * @param int $consistency |
||
174 | * @throws Exception\QueryException |
||
175 | * @throws Exception\CassandraException |
||
176 | * @return array|null |
||
177 | */ |
||
178 | public function query($cql, array $values = [], $consistency = ConsistencyEnum::CONSISTENCY_QUORUM) { |
||
179 | if ($this->batchQuery && in_array(substr($cql, 0, 6), ['INSERT', 'UPDATE', 'DELETE'])) { |
||
180 | $this->appendQueryToStack($cql, $values); |
||
181 | return true; |
||
0 ignored issues
–
show
|
|||
182 | } |
||
183 | if (empty($values)) { |
||
184 | $response = $this->connection->sendRequest(RequestFactory::query($cql, $consistency)); |
||
185 | } else { |
||
186 | $response = $this->connection->sendRequest(RequestFactory::prepare($cql)); |
||
187 | $responseType = $response->getType(); |
||
188 | if ($responseType !== OpcodeEnum::RESULT) { |
||
189 | throw new QueryException($response->getData()); |
||
190 | } else { |
||
191 | $preparedData = $response->getData(); |
||
192 | } |
||
193 | $response = $this->connection->sendRequest( |
||
194 | RequestFactory::execute($preparedData, $values, $consistency) |
||
195 | ); |
||
196 | } |
||
197 | |||
198 | if ($response->getType() === OpcodeEnum::ERROR) { |
||
199 | throw new CassandraException($response->getData()); |
||
200 | } else { |
||
201 | $data = $response->getData(); |
||
202 | if ($data instanceof Rows) { |
||
203 | return $data->asArray(); |
||
204 | } |
||
205 | } |
||
206 | |||
207 | return !empty($data) ? $data : $response->getType() === OpcodeEnum::RESULT; |
||
208 | } |
||
209 | |||
210 | /** |
||
211 | * @param string $keyspace |
||
212 | * @throws Exception\CassandraException |
||
213 | */ |
||
214 | public function setKeyspace($keyspace) { |
||
215 | $this->keyspace = $keyspace; |
||
216 | if ($this->connection->isConnected()) { |
||
217 | $response = $this->connection->sendRequest( |
||
218 | RequestFactory::query("USE {$this->keyspace};", ConsistencyEnum::CONSISTENCY_QUORUM) |
||
219 | ); |
||
220 | if ($response->getType() === OpcodeEnum::ERROR) throw new CassandraException($response->getData()); |
||
221 | } |
||
222 | } |
||
223 | } |
||
224 |
If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.
Let’s take a look at an example:
Our function
my_function
expects aPost
object, and outputs the author of the post. The base classPost
returns a simple string and outputting a simple string will work just fine. However, the child classBlogPost
which is a sub-type ofPost
instead decided to return anobject
, and is therefore violating the SOLID principles. If aBlogPost
were passed tomy_function
, PHP would not complain, but ultimately fail when executing thestrtoupper
call in its body.