@@ -44,22 +44,26 @@ |
||
44 | 44 | { |
45 | 45 | $table = trim( $table ); |
46 | 46 | |
47 | - if ( '' === $table ) |
|
48 | - throw new QueryException( 'Table name is empty string!', QueryException::QUERY_ERROR_INVALID_TABLE_STATEMENT ); |
|
47 | + if ( '' === $table ) { |
|
48 | + throw new QueryException( 'Table name is empty string!', QueryException::QUERY_ERROR_INVALID_TABLE_STATEMENT ); |
|
49 | + } |
|
49 | 50 | |
50 | - if ( DbConfig::getInstance()->useTablePrefix() ) |
|
51 | - $table = str_ireplace( '::', DbConfig::getInstance()->getTablePrefix(), $table ); |
|
51 | + if ( DbConfig::getInstance()->useTablePrefix() ) { |
|
52 | + $table = str_ireplace( '::', DbConfig::getInstance()->getTablePrefix(), $table ); |
|
53 | + } |
|
52 | 54 | |
53 | 55 | return $table; |
54 | 56 | } |
55 | 57 | |
56 | 58 | private function validateTableSubQuery( $table ) |
57 | 59 | { |
58 | - if ( $this->statement !== self::QUERY_STATEMENT_SELECT ) |
|
59 | - throw new QueryException( 'Invalid subQuery statement!', QueryException::QUERY_ERROR_INVALID_TABLE_STATEMENT ); |
|
60 | + if ( $this->statement !== self::QUERY_STATEMENT_SELECT ) { |
|
61 | + throw new QueryException( 'Invalid subQuery statement!', QueryException::QUERY_ERROR_INVALID_TABLE_STATEMENT ); |
|
62 | + } |
|
60 | 63 | |
61 | - if ( !is_a( $table, QuerySelect::class ) ) |
|
62 | - throw new QueryException( 'Invalid subQuery statement!', QueryException::QUERY_ERROR_INVALID_TABLE_STATEMENT ); |
|
64 | + if ( !is_a( $table, QuerySelect::class ) ) { |
|
65 | + throw new QueryException( 'Invalid subQuery statement!', QueryException::QUERY_ERROR_INVALID_TABLE_STATEMENT ); |
|
66 | + } |
|
63 | 67 | |
64 | 68 | return $table; |
65 | 69 | } |
@@ -28,8 +28,9 @@ discard block |
||
28 | 28 | { |
29 | 29 | $column = trim( $column ); |
30 | 30 | |
31 | - if ( !$this->validateColumn( $column, $allowedColumns ) ) |
|
32 | - throw new QueryException( 'Invalid column name in GROUP BY clause', QueryException::QUERY_ERROR_INVALID_COLUMN_NAME ); |
|
31 | + if ( !$this->validateColumn( $column, $allowedColumns ) ) { |
|
32 | + throw new QueryException( 'Invalid column name in GROUP BY clause', QueryException::QUERY_ERROR_INVALID_COLUMN_NAME ); |
|
33 | + } |
|
33 | 34 | |
34 | 35 | $this->queryStructure->setElement( QueryStructure::GROUP_BY, $column ); |
35 | 36 | |
@@ -47,8 +48,9 @@ discard block |
||
47 | 48 | { |
48 | 49 | $column = trim( $column ); |
49 | 50 | |
50 | - if ( !$this->validateColumn( $column, $allowedColumns ) ) |
|
51 | - throw new QueryException( 'Invalid column name in GROUP BY clause', QueryException::QUERY_ERROR_INVALID_COLUMN_NAME ); |
|
51 | + if ( !$this->validateColumn( $column, $allowedColumns ) ) { |
|
52 | + throw new QueryException( 'Invalid column name in GROUP BY clause', QueryException::QUERY_ERROR_INVALID_COLUMN_NAME ); |
|
53 | + } |
|
52 | 54 | |
53 | 55 | $this->queryStructure->setElement( QueryStructure::GROUP_BY, $column . ' DESC' ); |
54 | 56 | |
@@ -73,8 +75,9 @@ discard block |
||
73 | 75 | */ |
74 | 76 | private function getGroupBySyntax() |
75 | 77 | { |
76 | - if ( count( $this->queryStructure->getElement( QueryStructure::GROUP_BY ) ) ) |
|
77 | - return 'GROUP BY ' . QueryHelper::implode( $this->queryStructure->getElement( QueryStructure::GROUP_BY ), ', ' ); |
|
78 | + if ( count( $this->queryStructure->getElement( QueryStructure::GROUP_BY ) ) ) { |
|
79 | + return 'GROUP BY ' . QueryHelper::implode( $this->queryStructure->getElement( QueryStructure::GROUP_BY ), ', ' ); |
|
80 | + } |
|
78 | 81 | |
79 | 82 | return ''; |
80 | 83 | } |
@@ -87,7 +87,9 @@ discard block |
||
87 | 87 | $newArray = array(); |
88 | 88 | foreach ( $brutArray as $value ) { |
89 | 89 | $value = trim( $value ); |
90 | - if ( '' !== $value ) $newArray[] = $value; |
|
90 | + if ( '' !== $value ) { |
|
91 | + $newArray[] = $value; |
|
92 | + } |
|
91 | 93 | } |
92 | 94 | |
93 | 95 | return $newArray; |
@@ -137,8 +139,9 @@ discard block |
||
137 | 139 | $characters = 'abcdefghijklmnopqrstuvwxyz'; |
138 | 140 | $charactersLength = strlen( $characters ); |
139 | 141 | $randomString = ''; |
140 | - for ( $i = 0; $i < $length; $i++ ) |
|
141 | - $randomString .= $characters[ rand( 0, $charactersLength - 1 ) ]; |
|
142 | + for ( $i = 0; $i < $length; $i++ ) { |
|
143 | + $randomString .= $characters[ rand( 0, $charactersLength - 1 ) ]; |
|
144 | + } |
|
142 | 145 | |
143 | 146 | return str_shuffle( $randomString ); |
144 | 147 | } |
@@ -146,8 +149,9 @@ discard block |
||
146 | 149 | public static function limitString( $rowCount, $offset = null ) |
147 | 150 | { |
148 | 151 | $rowCount = intval( $rowCount ); |
149 | - if ( is_null( $offset ) ) |
|
150 | - return $rowCount; |
|
152 | + if ( is_null( $offset ) ) { |
|
153 | + return $rowCount; |
|
154 | + } |
|
151 | 155 | $offset = intval( $offset ); |
152 | 156 | |
153 | 157 | return "$offset, $rowCount"; |
@@ -85,8 +85,9 @@ discard block |
||
85 | 85 | { |
86 | 86 | $this->syntaxEL = $this->init(); |
87 | 87 | |
88 | - foreach ( $this->syntaxEL as $name => $value ) |
|
89 | - $this->typeEL[ $name ] = gettype( $value ); |
|
88 | + foreach ( $this->syntaxEL as $name => $value ) { |
|
89 | + $this->typeEL[ $name ] = gettype( $value ); |
|
90 | + } |
|
90 | 91 | |
91 | 92 | } |
92 | 93 | |
@@ -172,16 +173,19 @@ discard block |
||
172 | 173 | */ |
173 | 174 | public function setElement( $name, $value ) |
174 | 175 | { |
175 | - if ( !array_key_exists( $name, $this->syntaxEL ) ) |
|
176 | - throw new QueryException( 'Invalid Query property', QueryException::QUERY_ERROR_ELEMENT_NOT_FOUND ); |
|
176 | + if ( !array_key_exists( $name, $this->syntaxEL ) ) { |
|
177 | + throw new QueryException( 'Invalid Query property', QueryException::QUERY_ERROR_ELEMENT_NOT_FOUND ); |
|
178 | + } |
|
177 | 179 | |
178 | - if ( $name == self::TABLE && is_a( $value, QueryStatement::class ) ) |
|
179 | - return true; |
|
180 | + if ( $name == self::TABLE && is_a( $value, QueryStatement::class ) ) { |
|
181 | + return true; |
|
182 | + } |
|
180 | 183 | |
181 | - if ( $this->typeEL[ $name ] === self::ELEMENT_TYPE_ARRAY ) |
|
182 | - $this->syntaxEL[ $name ][] = $value; |
|
183 | - else |
|
184 | - $this->syntaxEL[ $name ] = $value; |
|
184 | + if ( $this->typeEL[ $name ] === self::ELEMENT_TYPE_ARRAY ) { |
|
185 | + $this->syntaxEL[ $name ][] = $value; |
|
186 | + } else { |
|
187 | + $this->syntaxEL[ $name ] = $value; |
|
188 | + } |
|
185 | 189 | |
186 | 190 | return true; |
187 | 191 | } |
@@ -194,8 +198,9 @@ discard block |
||
194 | 198 | */ |
195 | 199 | public function replaceElement( $elementName, $elementValue ) |
196 | 200 | { |
197 | - if ( !array_key_exists( $elementName, $this->syntaxEL ) ) |
|
198 | - throw new QueryException( 'Invalid Query property', QueryException::QUERY_ERROR_ELEMENT_NOT_FOUND ); |
|
201 | + if ( !array_key_exists( $elementName, $this->syntaxEL ) ) { |
|
202 | + throw new QueryException( 'Invalid Query property', QueryException::QUERY_ERROR_ELEMENT_NOT_FOUND ); |
|
203 | + } |
|
199 | 204 | |
200 | 205 | $this->syntaxEL[ $elementName ] = $elementValue; |
201 | 206 | } |
@@ -243,11 +248,13 @@ discard block |
||
243 | 248 | */ |
244 | 249 | public function bindParamsExpression( $expression, array $params = [], $search = '?' ) |
245 | 250 | { |
246 | - if ( !count( $params ) ) |
|
247 | - return $expression; |
|
251 | + if ( !count( $params ) ) { |
|
252 | + return $expression; |
|
253 | + } |
|
248 | 254 | |
249 | - if ( strpos( $expression, $search ) === false ) |
|
250 | - return $expression; |
|
255 | + if ( strpos( $expression, $search ) === false ) { |
|
256 | + return $expression; |
|
257 | + } |
|
251 | 258 | |
252 | 259 | $params = array_slice( $params, 0, substr_count( $expression, $search ) ); |
253 | 260 |
@@ -173,13 +173,15 @@ discard block |
||
173 | 173 | private function calculateParents( $nodeId ) |
174 | 174 | { |
175 | 175 | |
176 | - if(!array_key_exists($this->flatArray[ $nodeId ][ $this->role[ self::PARENT_ID_NAME ] ], $this->flatArray)) |
|
177 | - return false; |
|
176 | + if(!array_key_exists($this->flatArray[ $nodeId ][ $this->role[ self::PARENT_ID_NAME ] ], $this->flatArray)) { |
|
177 | + return false; |
|
178 | + } |
|
178 | 179 | |
179 | 180 | $parentNode = $this->flatArray[ $nodeId ][ $this->role[ self::PARENT_ID_NAME ] ]; |
180 | 181 | |
181 | - if ( $parentNode != $this->rootValue ) |
|
182 | - $this->parents[] = $parentNode; |
|
182 | + if ( $parentNode != $this->rootValue ) { |
|
183 | + $this->parents[] = $parentNode; |
|
184 | + } |
|
183 | 185 | |
184 | 186 | if ( $parentNode != $this->rootValue ) { |
185 | 187 | $this->calculateParents( $parentNode ); |
@@ -217,13 +219,15 @@ discard block |
||
217 | 219 | */ |
218 | 220 | private function prepareFlatArray() |
219 | 221 | { |
220 | - if ( self::isArrayAssoc( $this->flatArray ) ) |
|
221 | - return true; |
|
222 | + if ( self::isArrayAssoc( $this->flatArray ) ) { |
|
223 | + return true; |
|
224 | + } |
|
222 | 225 | |
223 | 226 | $newFlat = []; |
224 | 227 | |
225 | - foreach ( $this->flatArray as $value ) |
|
226 | - $newFlat[ $value[ $this->role[ self::ID_NAME ] ] ] = $value; |
|
228 | + foreach ( $this->flatArray as $value ) { |
|
229 | + $newFlat[ $value[ $this->role[ self::ID_NAME ] ] ] = $value; |
|
230 | + } |
|
227 | 231 | |
228 | 232 | $this->flatArray = $newFlat; |
229 | 233 | |
@@ -237,7 +241,9 @@ discard block |
||
237 | 241 | */ |
238 | 242 | public static function isArrayAssoc( array $arr ) |
239 | 243 | { |
240 | - if ( array() === $arr ) return false; |
|
244 | + if ( array() === $arr ) { |
|
245 | + return false; |
|
246 | + } |
|
241 | 247 | |
242 | 248 | return array_keys( $arr ) !== range( 0, count( $arr ) - 1 ); |
243 | 249 | } |
@@ -85,12 +85,10 @@ |
||
85 | 85 | $fh = fopen( $log, 'a+' ) or die( "Fatal Error !" ); |
86 | 86 | fwrite( $fh, $messageFormat ); |
87 | 87 | fclose( $fh ); |
88 | - } |
|
89 | - else { |
|
88 | + } else { |
|
90 | 89 | $this->edit( $log, $date, $messageFormat ); |
91 | 90 | } |
92 | - } |
|
93 | - else { |
|
91 | + } else { |
|
94 | 92 | if ( mkdir( $this->path, 0777 ) === true ) { |
95 | 93 | $this->write( $message ); |
96 | 94 | } |
@@ -66,14 +66,12 @@ discard block |
||
66 | 66 | $statement === self::QUERY_TYPE_EXPLAIN |
67 | 67 | ) { |
68 | 68 | return $this->sQuery->fetchAll( $fetchMode ); |
69 | - } |
|
70 | - elseif ( $statement === self::QUERY_TYPE_INSERT || |
|
69 | + } elseif ( $statement === self::QUERY_TYPE_INSERT || |
|
71 | 70 | $statement === self::QUERY_TYPE_UPDATE || |
72 | 71 | $statement === self::QUERY_TYPE_DELETE |
73 | 72 | ) { |
74 | 73 | return $this->sQuery->rowCount(); |
75 | - } |
|
76 | - else { |
|
74 | + } else { |
|
77 | 75 | |
78 | 76 | return NULL; |
79 | 77 | } |
@@ -91,8 +89,9 @@ discard block |
||
91 | 89 | $query = trim( str_replace( "\r", " ", $query ) ); |
92 | 90 | $statement = self::getQueryStatement( $query ); |
93 | 91 | |
94 | - if ( $statement === self::QUERY_TYPE_EXPLAIN ) |
|
95 | - return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
92 | + if ( $statement === self::QUERY_TYPE_EXPLAIN ) { |
|
93 | + return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
94 | + } |
|
96 | 95 | |
97 | 96 | $Columns = $this->sQuery->fetchAll( \PDO::FETCH_NUM ); |
98 | 97 | |
@@ -112,8 +111,9 @@ discard block |
||
112 | 111 | $query = trim( str_replace( "\r", " ", $query ) ); |
113 | 112 | $statement = self::getQueryStatement( $query ); |
114 | 113 | |
115 | - if ( $statement === self::QUERY_TYPE_EXPLAIN ) |
|
116 | - return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
114 | + if ( $statement === self::QUERY_TYPE_EXPLAIN ) { |
|
115 | + return $this->sQuery->fetchAll( \PDO::FETCH_ASSOC ); |
|
116 | + } |
|
117 | 117 | |
118 | 118 | $result = $this->sQuery->fetch( $fetchmode ); |
119 | 119 | $this->sQuery->closeCursor(); // Frees up the connection to the server so that other SQL statements may be issued, |
@@ -150,24 +150,22 @@ discard block |
||
150 | 150 | /** |
151 | 151 | * Add parameters to the parameter array |
152 | 152 | */ |
153 | - if ( self::isArrayAssoc( $parameters ) ) |
|
154 | - $this->bindMore( $parameters ); |
|
155 | - else |
|
156 | - foreach ( $parameters as $key => $val ) |
|
153 | + if ( self::isArrayAssoc( $parameters ) ) { |
|
154 | + $this->bindMore( $parameters ); |
|
155 | + } else { |
|
156 | + foreach ( $parameters as $key => $val ) |
|
157 | 157 | $this->parameters[] = array( $key + 1, $val ); |
158 | + } |
|
158 | 159 | |
159 | 160 | if ( count( $this->parameters ) ) { |
160 | 161 | foreach ( $this->parameters as $param => $value ) { |
161 | 162 | if ( is_int( $value[1] ) ) { |
162 | 163 | $type = \PDO::PARAM_INT; |
163 | - } |
|
164 | - elseif ( is_bool( $value[1] ) ) { |
|
164 | + } elseif ( is_bool( $value[1] ) ) { |
|
165 | 165 | $type = \PDO::PARAM_BOOL; |
166 | - } |
|
167 | - elseif ( is_null( $value[1] ) ) { |
|
166 | + } elseif ( is_null( $value[1] ) ) { |
|
168 | 167 | $type = \PDO::PARAM_NULL; |
169 | - } |
|
170 | - else { |
|
168 | + } else { |
|
171 | 169 | $type = \PDO::PARAM_STR; |
172 | 170 | } |
173 | 171 | $this->sQuery->bindValue( $value[0], $value[1], $type ); |
@@ -253,8 +251,7 @@ discard block |
||
253 | 251 | return self::QUERY_TYPE_OTHER; |
254 | 252 | break; |
255 | 253 | } |
256 | - } |
|
257 | - else { |
|
254 | + } else { |
|
258 | 255 | return self::QUERY_TYPE_OTHER; |
259 | 256 | } |
260 | 257 | } |
@@ -265,7 +262,9 @@ discard block |
||
265 | 262 | */ |
266 | 263 | public static function isArrayAssoc( array $arr ) |
267 | 264 | { |
268 | - if ( array() === $arr ) return false; |
|
265 | + if ( array() === $arr ) { |
|
266 | + return false; |
|
267 | + } |
|
269 | 268 | |
270 | 269 | return array_keys( $arr ) !== range( 0, count( $arr ) - 1 ); |
271 | 270 | } |
@@ -42,8 +42,9 @@ discard block |
||
42 | 42 | */ |
43 | 43 | public function getMasterConnection() |
44 | 44 | { |
45 | - if ( !is_a( $this->pdoMaster, \PDO::class ) ) |
|
46 | - $this->pdoMaster = $this->connect( $this->config->getMasterDataConnect() ); |
|
45 | + if ( !is_a( $this->pdoMaster, \PDO::class ) ) { |
|
46 | + $this->pdoMaster = $this->connect( $this->config->getMasterDataConnect() ); |
|
47 | + } |
|
47 | 48 | |
48 | 49 | return $this->pdoMaster; |
49 | 50 | } |
@@ -53,11 +54,13 @@ discard block |
||
53 | 54 | */ |
54 | 55 | public function getSlaveConnection() |
55 | 56 | { |
56 | - if ( !$this->config->getReplicationEnable() ) |
|
57 | - return $this->getMasterConnection(); |
|
57 | + if ( !$this->config->getReplicationEnable() ) { |
|
58 | + return $this->getMasterConnection(); |
|
59 | + } |
|
58 | 60 | |
59 | - if ( !is_a( $this->pdoSlave, \PDO::class ) ) |
|
60 | - $this->pdoSlave = $this->connect( $this->config->getSlaveDataConnect() ); |
|
61 | + if ( !is_a( $this->pdoSlave, \PDO::class ) ) { |
|
62 | + $this->pdoSlave = $this->connect( $this->config->getSlaveDataConnect() ); |
|
63 | + } |
|
61 | 64 | |
62 | 65 | return $this->pdoSlave; |
63 | 66 | } |
@@ -70,8 +73,9 @@ discard block |
||
70 | 73 | { |
71 | 74 | $statement = trim( strtolower( $statement ) ); |
72 | 75 | |
73 | - if ( $statement === DbService::QUERY_TYPE_SELECT ) |
|
74 | - return $this->getSlaveConnection(); |
|
76 | + if ( $statement === DbService::QUERY_TYPE_SELECT ) { |
|
77 | + return $this->getSlaveConnection(); |
|
78 | + } |
|
75 | 79 | |
76 | 80 | return $this->getMasterConnection(); |
77 | 81 | } |
@@ -60,10 +60,11 @@ discard block |
||
60 | 60 | private function __construct() |
61 | 61 | { |
62 | 62 | $vendorCfg = __DIR__ . '/../../../../../vendor-cfg/qpdb_db_config.php'; |
63 | - if(file_exists($vendorCfg)) |
|
64 | - $this->dbConfig = require $vendorCfg; |
|
65 | - else |
|
66 | - $this->dbConfig = require __DIR__ . '/../../config/qpdb_db_config.php'; |
|
63 | + if(file_exists($vendorCfg)) { |
|
64 | + $this->dbConfig = require $vendorCfg; |
|
65 | + } else { |
|
66 | + $this->dbConfig = require __DIR__ . '/../../config/qpdb_db_config.php'; |
|
67 | + } |
|
67 | 68 | |
68 | 69 | $this->buildConfig(); |
69 | 70 | } |
@@ -146,8 +147,9 @@ discard block |
||
146 | 147 | |
147 | 148 | public function useTablePrefix() |
148 | 149 | { |
149 | - if ( !empty( $this->dbConfig['use_table_prefix'] ) ) |
|
150 | - return $this->dbConfig['use_table_prefix']; |
|
150 | + if ( !empty( $this->dbConfig['use_table_prefix'] ) ) { |
|
151 | + return $this->dbConfig['use_table_prefix']; |
|
152 | + } |
|
151 | 153 | |
152 | 154 | return false; |
153 | 155 | } |
@@ -182,8 +184,9 @@ discard block |
||
182 | 184 | private function readMasterDataConnect() |
183 | 185 | { |
184 | 186 | |
185 | - if ( !isset( $this->dbConfig['master_data_connect'][0] ) ) |
|
186 | - throw new DbException( 'Master data connect is missing', DbException::DB_ERROR_MASTER_DATA_CONNECTION_MISSING ); |
|
187 | + if ( !isset( $this->dbConfig['master_data_connect'][0] ) ) { |
|
188 | + throw new DbException( 'Master data connect is missing', DbException::DB_ERROR_MASTER_DATA_CONNECTION_MISSING ); |
|
189 | + } |
|
187 | 190 | |
188 | 191 | $dataConnection = $this->dbConfig['master_data_connect']; |
189 | 192 |