@@ -24,13 +24,13 @@ discard block |
||
| 24 | 24 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 25 | 25 | */ |
| 26 | 26 | |
| 27 | - class DatabaseQueryResult{ |
|
| 27 | + class DatabaseQueryResult { |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * The database query result |
| 31 | 31 | * @var mixed |
| 32 | 32 | */ |
| 33 | - private $result = null; |
|
| 33 | + private $result = null; |
|
| 34 | 34 | |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | * @param mixed $result the query result |
| 46 | 46 | * @param int $numRows the number of rows returned by the query |
| 47 | 47 | */ |
| 48 | - public function __construct($result = null, $numRows = 0){ |
|
| 48 | + public function __construct($result = null, $numRows = 0) { |
|
| 49 | 49 | $this->result = $result; |
| 50 | 50 | $this->numRows = $numRows; |
| 51 | 51 | } |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | * |
| 57 | 57 | * @return mixed |
| 58 | 58 | */ |
| 59 | - public function getResult(){ |
|
| 59 | + public function getResult() { |
|
| 60 | 60 | return $this->result; |
| 61 | 61 | } |
| 62 | 62 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * |
| 67 | 67 | * @return object DatabaseQueryResult |
| 68 | 68 | */ |
| 69 | - public function setResult($result){ |
|
| 69 | + public function setResult($result) { |
|
| 70 | 70 | $this->result = $result; |
| 71 | 71 | return $this; |
| 72 | 72 | } |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | * |
| 77 | 77 | * @return int |
| 78 | 78 | */ |
| 79 | - public function getNumRows(){ |
|
| 79 | + public function getNumRows() { |
|
| 80 | 80 | return $this->numRows; |
| 81 | 81 | } |
| 82 | 82 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | * |
| 87 | 87 | * @return object DatabaseQueryResult |
| 88 | 88 | */ |
| 89 | - public function setNumRows($numRows){ |
|
| 89 | + public function setNumRows($numRows) { |
|
| 90 | 90 | $this->numRows = $numRows; |
| 91 | 91 | return $this; |
| 92 | 92 | } |
@@ -23,19 +23,19 @@ discard block |
||
| 23 | 23 | * along with this program; if not, write to the Free Software |
| 24 | 24 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 25 | 25 | */ |
| 26 | - class DatabaseQueryRunner{ |
|
| 26 | + class DatabaseQueryRunner { |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * The logger instance |
| 30 | 30 | * @var object |
| 31 | 31 | */ |
| 32 | - private $logger = null; |
|
| 32 | + private $logger = null; |
|
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * The last query result |
| 36 | 36 | * @var object |
| 37 | 37 | */ |
| 38 | - private $queryResult = null; |
|
| 38 | + private $queryResult = null; |
|
| 39 | 39 | |
| 40 | 40 | /** |
| 41 | 41 | * The benchmark instance |
@@ -47,45 +47,45 @@ discard block |
||
| 47 | 47 | * The SQL query statment to execute |
| 48 | 48 | * @var string |
| 49 | 49 | */ |
| 50 | - private $query = null; |
|
| 50 | + private $query = null; |
|
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | 53 | * Indicate if we need return result as list (boolean) |
| 54 | 54 | * or the data used to replace the placeholder (array) |
| 55 | 55 | * @var array|boolean |
| 56 | 56 | */ |
| 57 | - private $returnAsList = true; |
|
| 57 | + private $returnAsList = true; |
|
| 58 | 58 | |
| 59 | 59 | |
| 60 | 60 | /** |
| 61 | 61 | * Indicate if we need return result as array or not |
| 62 | 62 | * @var boolean |
| 63 | 63 | */ |
| 64 | - private $returnAsArray = true; |
|
| 64 | + private $returnAsArray = true; |
|
| 65 | 65 | |
| 66 | 66 | /** |
| 67 | 67 | * The last PDOStatment instance |
| 68 | 68 | * @var object |
| 69 | 69 | */ |
| 70 | - private $pdoStatment = null; |
|
| 70 | + private $pdoStatment = null; |
|
| 71 | 71 | |
| 72 | 72 | /** |
| 73 | 73 | * The error returned for the last query |
| 74 | 74 | * @var string |
| 75 | 75 | */ |
| 76 | - private $error = null; |
|
| 76 | + private $error = null; |
|
| 77 | 77 | |
| 78 | 78 | /** |
| 79 | 79 | * The PDO instance |
| 80 | 80 | * @var object |
| 81 | 81 | */ |
| 82 | - private $pdo = null; |
|
| 82 | + private $pdo = null; |
|
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * The database driver name used |
| 86 | 86 | * @var string |
| 87 | 87 | */ |
| 88 | - private $driver = null; |
|
| 88 | + private $driver = null; |
|
| 89 | 89 | |
| 90 | 90 | |
| 91 | 91 | |
@@ -96,8 +96,8 @@ discard block |
||
| 96 | 96 | * @param boolean $returnAsList if need return as list or just one row |
| 97 | 97 | * @param boolean $returnAsArray whether to return the result as array or not |
| 98 | 98 | */ |
| 99 | - public function __construct(PDO $pdo = null, $query = null, $returnAsList = true, $returnAsArray = false){ |
|
| 100 | - if (is_object($pdo)){ |
|
| 99 | + public function __construct(PDO $pdo = null, $query = null, $returnAsList = true, $returnAsArray = false) { |
|
| 100 | + if (is_object($pdo)) { |
|
| 101 | 101 | $this->pdo = $pdo; |
| 102 | 102 | } |
| 103 | 103 | $this->query = $query; |
@@ -112,13 +112,13 @@ discard block |
||
| 112 | 112 | * |
| 113 | 113 | * @return object|void |
| 114 | 114 | */ |
| 115 | - public function execute(){ |
|
| 115 | + public function execute() { |
|
| 116 | 116 | //reset instance |
| 117 | 117 | $this->reset(); |
| 118 | 118 | |
| 119 | 119 | //for database query execution time |
| 120 | 120 | $benchmarkMarkerKey = $this->getBenchmarkKey(); |
| 121 | - if (! is_object($this->benchmarkInstance)){ |
|
| 121 | + if (!is_object($this->benchmarkInstance)) { |
|
| 122 | 122 | $this->benchmarkInstance = & class_loader('Benchmark'); |
| 123 | 123 | } |
| 124 | 124 | |
@@ -134,19 +134,19 @@ discard block |
||
| 134 | 134 | 'DATABASE_QUERY_END(' . $benchmarkMarkerKey . ')' |
| 135 | 135 | ); |
| 136 | 136 | //TODO use the configuration value for the high response time currently is 1 second |
| 137 | - if ($responseTime >= 1 ){ |
|
| 137 | + if ($responseTime >= 1) { |
|
| 138 | 138 | $this->logger->warning( |
| 139 | 139 | 'High response time while processing database query [' . $this->query . ']. |
| 140 | - The response time is [' .$responseTime. '] sec.' |
|
| 140 | + The response time is [' .$responseTime . '] sec.' |
|
| 141 | 141 | ); |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - if ($this->pdoStatment !== false){ |
|
| 144 | + if ($this->pdoStatment !== false) { |
|
| 145 | 145 | $isSqlSELECTQuery = stristr($this->query, 'SELECT') !== false; |
| 146 | - if($isSqlSELECTQuery){ |
|
| 146 | + if ($isSqlSELECTQuery) { |
|
| 147 | 147 | $this->setResultForSelect(); |
| 148 | 148 | } |
| 149 | - else{ |
|
| 149 | + else { |
|
| 150 | 150 | $this->setResultForNonSelect(); |
| 151 | 151 | } |
| 152 | 152 | return $this->queryResult; |
@@ -158,28 +158,28 @@ discard block |
||
| 158 | 158 | * Return the result for SELECT query |
| 159 | 159 | * @see DatabaseQueryRunner::execute |
| 160 | 160 | */ |
| 161 | - protected function setResultForSelect(){ |
|
| 161 | + protected function setResultForSelect() { |
|
| 162 | 162 | //if need return all result like list of record |
| 163 | 163 | $result = null; |
| 164 | 164 | $numRows = 0; |
| 165 | 165 | $fetchMode = PDO::FETCH_OBJ; |
| 166 | - if($this->returnAsArray){ |
|
| 166 | + if ($this->returnAsArray) { |
|
| 167 | 167 | $fetchMode = PDO::FETCH_ASSOC; |
| 168 | 168 | } |
| 169 | - if ($this->returnAsList){ |
|
| 169 | + if ($this->returnAsList) { |
|
| 170 | 170 | $result = $this->pdoStatment->fetchAll($fetchMode); |
| 171 | 171 | } |
| 172 | - else{ |
|
| 172 | + else { |
|
| 173 | 173 | $result = $this->pdoStatment->fetch($fetchMode); |
| 174 | 174 | } |
| 175 | 175 | //Sqlite and pgsql always return 0 when using rowCount() |
| 176 | - if (in_array($this->driver, array('sqlite', 'pgsql'))){ |
|
| 176 | + if (in_array($this->driver, array('sqlite', 'pgsql'))) { |
|
| 177 | 177 | $numRows = count($result); |
| 178 | 178 | } |
| 179 | - else{ |
|
| 179 | + else { |
|
| 180 | 180 | $numRows = $this->pdoStatment->rowCount(); |
| 181 | 181 | } |
| 182 | - if(! is_object($this->queryResult)){ |
|
| 182 | + if (!is_object($this->queryResult)) { |
|
| 183 | 183 | $this->queryResult = & class_loader('DatabaseQueryResult', 'classes/database'); |
| 184 | 184 | } |
| 185 | 185 | $this->queryResult->setResult($result); |
@@ -190,20 +190,20 @@ discard block |
||
| 190 | 190 | * Return the result for non SELECT query |
| 191 | 191 | * @see DatabaseQueryRunner::execute |
| 192 | 192 | */ |
| 193 | - protected function setResultForNonSelect(){ |
|
| 193 | + protected function setResultForNonSelect() { |
|
| 194 | 194 | //Sqlite and pgsql always return 0 when using rowCount() |
| 195 | 195 | $result = false; |
| 196 | 196 | $numRows = 0; |
| 197 | - if (in_array($this->driver, array('sqlite', 'pgsql'))){ |
|
| 197 | + if (in_array($this->driver, array('sqlite', 'pgsql'))) { |
|
| 198 | 198 | $result = true; //to test the result for the query like UPDATE, INSERT, DELETE |
| 199 | 199 | $numRows = 1; //TODO use the correct method to get the exact affected row |
| 200 | 200 | } |
| 201 | - else{ |
|
| 201 | + else { |
|
| 202 | 202 | //to test the result for the query like UPDATE, INSERT, DELETE |
| 203 | 203 | $result = $this->pdoStatment->rowCount() >= 0; |
| 204 | 204 | $numRows = $this->pdoStatment->rowCount(); |
| 205 | 205 | } |
| 206 | - if(! is_object($this->queryResult)){ |
|
| 206 | + if (!is_object($this->queryResult)) { |
|
| 207 | 207 | $this->queryResult = & class_loader('DatabaseQueryResult', 'classes/database'); |
| 208 | 208 | } |
| 209 | 209 | $this->queryResult->setResult($result); |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | * Return the benchmark instance |
| 216 | 216 | * @return Benchmark |
| 217 | 217 | */ |
| 218 | - public function getBenchmark(){ |
|
| 218 | + public function getBenchmark() { |
|
| 219 | 219 | return $this->benchmarkInstance; |
| 220 | 220 | } |
| 221 | 221 | |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | * @param Benchmark $benchmark the benchmark object |
| 225 | 225 | * @return object DatabaseQueryRunner |
| 226 | 226 | */ |
| 227 | - public function setBenchmark($benchmark){ |
|
| 227 | + public function setBenchmark($benchmark) { |
|
| 228 | 228 | $this->benchmarkInstance = $benchmark; |
| 229 | 229 | return $this; |
| 230 | 230 | } |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | * |
| 235 | 235 | * @return object DatabaseQueryResult |
| 236 | 236 | */ |
| 237 | - public function getQueryResult(){ |
|
| 237 | + public function getQueryResult() { |
|
| 238 | 238 | return $this->queryResult; |
| 239 | 239 | } |
| 240 | 240 | |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | * |
| 245 | 245 | * @return object DatabaseQueryRunner |
| 246 | 246 | */ |
| 247 | - public function setQueryResult(DatabaseQueryResult $queryResult){ |
|
| 247 | + public function setQueryResult(DatabaseQueryResult $queryResult) { |
|
| 248 | 248 | $this->queryResult = $queryResult; |
| 249 | 249 | return $this; |
| 250 | 250 | } |
@@ -253,7 +253,7 @@ discard block |
||
| 253 | 253 | * Return the Log instance |
| 254 | 254 | * @return Log |
| 255 | 255 | */ |
| 256 | - public function getLogger(){ |
|
| 256 | + public function getLogger() { |
|
| 257 | 257 | return $this->logger; |
| 258 | 258 | } |
| 259 | 259 | |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | * @param Log $logger the log object |
| 263 | 263 | * @return object DatabaseQueryRunner |
| 264 | 264 | */ |
| 265 | - public function setLogger($logger){ |
|
| 265 | + public function setLogger($logger) { |
|
| 266 | 266 | $this->logger = $logger; |
| 267 | 267 | return $this; |
| 268 | 268 | } |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | * Return the current query SQL string |
| 272 | 272 | * @return string |
| 273 | 273 | */ |
| 274 | - public function getQuery(){ |
|
| 274 | + public function getQuery() { |
|
| 275 | 275 | return $this->query; |
| 276 | 276 | } |
| 277 | 277 | |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | * @param string $query the SQL query to set |
| 281 | 281 | * @return object DatabaseQueryRunner |
| 282 | 282 | */ |
| 283 | - public function setQuery($query){ |
|
| 283 | + public function setQuery($query) { |
|
| 284 | 284 | $this->query = $query; |
| 285 | 285 | return $this; |
| 286 | 286 | } |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | * @param boolean $returnType |
| 291 | 291 | * @return object DatabaseQueryRunner |
| 292 | 292 | */ |
| 293 | - public function setReturnType($returnType){ |
|
| 293 | + public function setReturnType($returnType) { |
|
| 294 | 294 | $this->returnAsList = $returnType; |
| 295 | 295 | return $this; |
| 296 | 296 | } |
@@ -300,7 +300,7 @@ discard block |
||
| 300 | 300 | * @param boolean $status the status if true will return as array |
| 301 | 301 | * @return object DatabaseQueryRunner |
| 302 | 302 | */ |
| 303 | - public function setReturnAsArray($status = true){ |
|
| 303 | + public function setReturnAsArray($status = true) { |
|
| 304 | 304 | $this->returnAsArray = $status; |
| 305 | 305 | return $this; |
| 306 | 306 | } |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | * Return the error for last query execution |
| 310 | 310 | * @return string |
| 311 | 311 | */ |
| 312 | - public function getQueryError(){ |
|
| 312 | + public function getQueryError() { |
|
| 313 | 313 | return $this->error; |
| 314 | 314 | } |
| 315 | 315 | |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | * Return the PDO instance |
| 318 | 318 | * @return object |
| 319 | 319 | */ |
| 320 | - public function getPdo(){ |
|
| 320 | + public function getPdo() { |
|
| 321 | 321 | return $this->pdo; |
| 322 | 322 | } |
| 323 | 323 | |
@@ -326,7 +326,7 @@ discard block |
||
| 326 | 326 | * @param PDO $pdo the pdo object |
| 327 | 327 | * @return object DatabaseQueryRunner |
| 328 | 328 | */ |
| 329 | - public function setPdo(PDO $pdo = null){ |
|
| 329 | + public function setPdo(PDO $pdo = null) { |
|
| 330 | 330 | $this->pdo = $pdo; |
| 331 | 331 | return $this; |
| 332 | 332 | } |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | * Return the database driver |
| 336 | 336 | * @return string |
| 337 | 337 | */ |
| 338 | - public function getDriver(){ |
|
| 338 | + public function getDriver() { |
|
| 339 | 339 | return $this->driver; |
| 340 | 340 | } |
| 341 | 341 | |
@@ -344,7 +344,7 @@ discard block |
||
| 344 | 344 | * @param string $driver the new driver |
| 345 | 345 | * @return object DatabaseQueryRunner |
| 346 | 346 | */ |
| 347 | - public function setDriver($driver){ |
|
| 347 | + public function setDriver($driver) { |
|
| 348 | 348 | $this->driver = $driver; |
| 349 | 349 | return $this; |
| 350 | 350 | } |
@@ -354,14 +354,14 @@ discard block |
||
| 354 | 354 | * |
| 355 | 355 | * @return string |
| 356 | 356 | */ |
| 357 | - protected function getBenchmarkKey(){ |
|
| 357 | + protected function getBenchmarkKey() { |
|
| 358 | 358 | return md5($this->query . $this->returnAsList . $this->returnAsArray); |
| 359 | 359 | } |
| 360 | 360 | |
| 361 | 361 | /** |
| 362 | 362 | * Set error for database query execution |
| 363 | 363 | */ |
| 364 | - protected function setQueryRunnerError(){ |
|
| 364 | + protected function setQueryRunnerError() { |
|
| 365 | 365 | $error = $this->pdo->errorInfo(); |
| 366 | 366 | $this->error = isset($error[2]) ? $error[2] : ''; |
| 367 | 367 | $this->logger->error('The database query execution got an error: ' . stringfy_vars($error)); |
@@ -373,12 +373,12 @@ discard block |
||
| 373 | 373 | * Set the Log instance using argument or create new instance |
| 374 | 374 | * @param object $logger the Log instance if not null |
| 375 | 375 | */ |
| 376 | - protected function setLoggerFromParamOrCreateNewInstance(Log $logger = null){ |
|
| 377 | - if ($logger !== null){ |
|
| 376 | + protected function setLoggerFromParamOrCreateNewInstance(Log $logger = null) { |
|
| 377 | + if ($logger !== null) { |
|
| 378 | 378 | $this->logger = $logger; |
| 379 | 379 | } |
| 380 | - else{ |
|
| 381 | - $this->logger =& class_loader('Log', 'classes'); |
|
| 380 | + else { |
|
| 381 | + $this->logger = & class_loader('Log', 'classes'); |
|
| 382 | 382 | $this->logger->setLogger('Library::DatabaseQueryRunner'); |
| 383 | 383 | } |
| 384 | 384 | } |
@@ -387,7 +387,7 @@ discard block |
||
| 387 | 387 | /** |
| 388 | 388 | * Reset the instance before run each query |
| 389 | 389 | */ |
| 390 | - private function reset(){ |
|
| 390 | + private function reset() { |
|
| 391 | 391 | $this->error = null; |
| 392 | 392 | $this->pdoStatment = null; |
| 393 | 393 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | |
| 43 | 43 | |
| 44 | - if(! function_exists('get_ip')){ |
|
| 44 | + if (!function_exists('get_ip')) { |
|
| 45 | 45 | /** |
| 46 | 46 | * Retrieves the user's IP address |
| 47 | 47 | * |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | * |
| 51 | 51 | * @return string the IP address. |
| 52 | 52 | */ |
| 53 | - function get_ip(){ |
|
| 53 | + function get_ip() { |
|
| 54 | 54 | $ip = '127.0.0.1'; |
| 55 | 55 | $ipServerVars = array( |
| 56 | 56 | 'REMOTE_ADDR', |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | 'HTTP_FORWARDED' |
| 62 | 62 | ); |
| 63 | 63 | foreach ($ipServerVars as $var) { |
| 64 | - if(isset($_SERVER[$var])){ |
|
| 64 | + if (isset($_SERVER[$var])) { |
|
| 65 | 65 | $ip = $_SERVER[$var]; |
| 66 | 66 | break; |
| 67 | 67 | } |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | * @since 1.0.0 |
| 39 | 39 | * @filesource |
| 40 | 40 | */ |
| 41 | - class Assets{ |
|
| 41 | + class Assets { |
|
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | 44 | * The logger instance |
@@ -50,10 +50,10 @@ discard block |
||
| 50 | 50 | * The signleton of the logger |
| 51 | 51 | * @return Object the Log instance |
| 52 | 52 | */ |
| 53 | - private static function getLogger(){ |
|
| 54 | - if(self::$logger == null){ |
|
| 53 | + private static function getLogger() { |
|
| 54 | + if (self::$logger == null) { |
|
| 55 | 55 | //can't assign reference to static variable |
| 56 | - self::$logger[0] =& class_loader('Log', 'classes'); |
|
| 56 | + self::$logger[0] = & class_loader('Log', 'classes'); |
|
| 57 | 57 | self::$logger[0]->setLogger('Library::Assets'); |
| 58 | 58 | } |
| 59 | 59 | return self::$logger[0]; |
@@ -72,13 +72,13 @@ discard block |
||
| 72 | 72 | * @param string $asset the name of the assets file path with the extension. |
| 73 | 73 | * @return string|null the absolute path of the assets file, if it exists otherwise returns null if the file does not exist. |
| 74 | 74 | */ |
| 75 | - public static function path($asset){ |
|
| 75 | + public static function path($asset) { |
|
| 76 | 76 | $logger = self::getLogger(); |
| 77 | 77 | $path = ASSETS_PATH . $asset; |
| 78 | 78 | |
| 79 | 79 | $logger->debug('Including the Assets file [' . $path . ']'); |
| 80 | 80 | //Check if the file exists |
| 81 | - if(file_exists($path)){ |
|
| 81 | + if (file_exists($path)) { |
|
| 82 | 82 | $logger->info('Assets file [' . $path . '] included successfully'); |
| 83 | 83 | return Url::base_url($path); |
| 84 | 84 | } |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | * @param string $path the name of the css file without the extension. |
| 99 | 99 | * @return string|null the absolute path of the css file, if it exists otherwise returns null if the file does not exist. |
| 100 | 100 | */ |
| 101 | - public static function css($path){ |
|
| 101 | + public static function css($path) { |
|
| 102 | 102 | $logger = self::getLogger(); |
| 103 | 103 | /* |
| 104 | 104 | * if the file name contains the ".css" extension, replace it with |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | |
| 110 | 110 | $logger->debug('Including the Assets file [' . $path . '] for CSS'); |
| 111 | 111 | //Check if the file exists |
| 112 | - if(file_exists($path)){ |
|
| 112 | + if (file_exists($path)) { |
|
| 113 | 113 | $logger->info('Assets file [' . $path . '] for CSS included successfully'); |
| 114 | 114 | return Url::base_url($path); |
| 115 | 115 | } |
@@ -129,12 +129,12 @@ discard block |
||
| 129 | 129 | * @param string $path the name of the javascript file without the extension. |
| 130 | 130 | * @return string|null the absolute path of the javascript file, if it exists otherwise returns null if the file does not exist. |
| 131 | 131 | */ |
| 132 | - public static function js($path){ |
|
| 132 | + public static function js($path) { |
|
| 133 | 133 | $logger = self::getLogger(); |
| 134 | 134 | $path = str_ireplace('.js', '', $path); |
| 135 | 135 | $path = ASSETS_PATH . 'js/' . $path . '.js'; |
| 136 | 136 | $logger->debug('Including the Assets file [' . $path . '] for javascript'); |
| 137 | - if(file_exists($path)){ |
|
| 137 | + if (file_exists($path)) { |
|
| 138 | 138 | $logger->info('Assets file [' . $path . '] for Javascript included successfully'); |
| 139 | 139 | return Url::base_url($path); |
| 140 | 140 | } |
@@ -154,11 +154,11 @@ discard block |
||
| 154 | 154 | * @param string $path the name of the image file with the extension. |
| 155 | 155 | * @return string|null the absolute path of the image file, if it exists otherwise returns null if the file does not exist. |
| 156 | 156 | */ |
| 157 | - public static function img($path){ |
|
| 157 | + public static function img($path) { |
|
| 158 | 158 | $logger = self::getLogger(); |
| 159 | 159 | $path = ASSETS_PATH . 'images/' . $path; |
| 160 | 160 | $logger->debug('Including the Assets file [' . $path . '] for image'); |
| 161 | - if(file_exists($path)){ |
|
| 161 | + if (file_exists($path)) { |
|
| 162 | 162 | $logger->info('Assets file [' . $path . '] for image included successfully'); |
| 163 | 163 | return Url::base_url($path); |
| 164 | 164 | } |
@@ -25,15 +25,15 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | |
| 27 | 27 | |
| 28 | - class Url{ |
|
| 28 | + class Url { |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * Return the link using base_url config without front controller "index.php" |
| 32 | 32 | * @param string $path the link path or full URL |
| 33 | 33 | * @return string the full link URL |
| 34 | 34 | */ |
| 35 | - public static function base_url($path = ''){ |
|
| 36 | - if(is_url($path)){ |
|
| 35 | + public static function base_url($path = '') { |
|
| 36 | + if (is_url($path)) { |
|
| 37 | 37 | return $path; |
| 38 | 38 | } |
| 39 | 39 | return get_config('base_url') . $path; |
@@ -44,26 +44,26 @@ discard block |
||
| 44 | 44 | * @param string $path the link path or full URL |
| 45 | 45 | * @return string the full link URL |
| 46 | 46 | */ |
| 47 | - public static function site_url($path = ''){ |
|
| 48 | - if(is_url($path)){ |
|
| 47 | + public static function site_url($path = '') { |
|
| 48 | + if (is_url($path)) { |
|
| 49 | 49 | return $path; |
| 50 | 50 | } |
| 51 | 51 | $path = rtrim($path, '/'); |
| 52 | 52 | $baseUrl = get_config('base_url'); |
| 53 | 53 | $frontController = get_config('front_controller'); |
| 54 | 54 | $url = $baseUrl; |
| 55 | - if($frontController){ |
|
| 55 | + if ($frontController) { |
|
| 56 | 56 | $url .= $frontController . '/'; |
| 57 | 57 | } |
| 58 | - if(($suffix = get_config('url_suffix')) && $path){ |
|
| 59 | - if(strpos($path, '?') !== false){ |
|
| 58 | + if (($suffix = get_config('url_suffix')) && $path) { |
|
| 59 | + if (strpos($path, '?') !== false) { |
|
| 60 | 60 | $query = explode('?', $path); |
| 61 | 61 | $query[0] = str_ireplace($suffix, '', $query[0]); |
| 62 | 62 | $query[0] = rtrim($query[0], '/'); |
| 63 | 63 | $query[0] .= $suffix; |
| 64 | 64 | $path = implode('?', $query); |
| 65 | 65 | } |
| 66 | - else{ |
|
| 66 | + else { |
|
| 67 | 67 | $path .= $suffix; |
| 68 | 68 | } |
| 69 | 69 | } |
@@ -74,10 +74,10 @@ discard block |
||
| 74 | 74 | * Return the current site URL |
| 75 | 75 | * @return string |
| 76 | 76 | */ |
| 77 | - public static function current(){ |
|
| 77 | + public static function current() { |
|
| 78 | 78 | $current = '/'; |
| 79 | 79 | $requestUri = get_instance()->request->requestUri(); |
| 80 | - if($requestUri){ |
|
| 80 | + if ($requestUri) { |
|
| 81 | 81 | $current = $requestUri; |
| 82 | 82 | } |
| 83 | 83 | return static::domain() . $current; |
@@ -90,18 +90,18 @@ discard block |
||
| 90 | 90 | * @param boolean $lowercase whether to set the final text to lowe case or not |
| 91 | 91 | * @return string the friendly generated text |
| 92 | 92 | */ |
| 93 | - public static function title($str = null, $separator = '-', $lowercase = true){ |
|
| 93 | + public static function title($str = null, $separator = '-', $lowercase = true) { |
|
| 94 | 94 | $str = trim($str); |
| 95 | - $from = array('ç','À','Á','Â','Ã','Ä','Å','à','á','â','ã','ä','å','Ò','Ó','Ô','Õ','Ö','Ø','ò','ó','ô','õ','ö','ø','È','É','Ê','Ë','è','é','ê','ë','Ç','ç','Ì','Í','Î','Ï','ì','í','î','ï','Ù','Ú','Û','Ü','ù','ú','û','ü','ÿ','Ñ','ñ'); |
|
| 96 | - $to = array('c','a','a','a','a','a','a','a','a','a','a','a','a','o','o','o','o','o','o','o','o','o','o','o','o','e','e','e','e','e','e','e','e','e','e','i','i','i','i','i','i','i','i','u','u','u','u','u','u','u','u','y','n','n'); |
|
| 95 | + $from = array('ç', 'À', 'Á', 'Â', 'Ã', 'Ä', 'Å', 'à', 'á', 'â', 'ã', 'ä', 'å', 'Ò', 'Ó', 'Ô', 'Õ', 'Ö', 'Ø', 'ò', 'ó', 'ô', 'õ', 'ö', 'ø', 'È', 'É', 'Ê', 'Ë', 'è', 'é', 'ê', 'ë', 'Ç', 'ç', 'Ì', 'Í', 'Î', 'Ï', 'ì', 'í', 'î', 'ï', 'Ù', 'Ú', 'Û', 'Ü', 'ù', 'ú', 'û', 'ü', 'ÿ', 'Ñ', 'ñ'); |
|
| 96 | + $to = array('c', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'o', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'e', 'i', 'i', 'i', 'i', 'i', 'i', 'i', 'i', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'u', 'y', 'n', 'n'); |
|
| 97 | 97 | $str = str_replace($from, $to, $str); |
| 98 | 98 | $str = preg_replace('#([^a-z0-9]+)#i', $separator, $str); |
| 99 | 99 | $str = str_replace('--', $separator, $str); |
| 100 | 100 | //if after process we get something like one-two-three-, need truncate the last separator "-" |
| 101 | - if(substr($str, -1) == $separator){ |
|
| 101 | + if (substr($str, -1) == $separator) { |
|
| 102 | 102 | $str = substr($str, 0, -1); |
| 103 | 103 | } |
| 104 | - if($lowercase){ |
|
| 104 | + if ($lowercase) { |
|
| 105 | 105 | $str = strtolower($str); |
| 106 | 106 | } |
| 107 | 107 | return $str; |
@@ -111,11 +111,11 @@ discard block |
||
| 111 | 111 | * Get the current application domain with protocol |
| 112 | 112 | * @return string the domain name |
| 113 | 113 | */ |
| 114 | - public static function domain(){ |
|
| 114 | + public static function domain() { |
|
| 115 | 115 | $domain = 'localhost'; |
| 116 | 116 | $port = get_instance()->request->server('SERVER_PORT'); |
| 117 | 117 | $protocol = 'http'; |
| 118 | - if(is_https()){ |
|
| 118 | + if (is_https()) { |
|
| 119 | 119 | $protocol = 'https'; |
| 120 | 120 | } |
| 121 | 121 | |
@@ -127,23 +127,23 @@ discard block |
||
| 127 | 127 | |
| 128 | 128 | foreach ($domainserverVars as $var) { |
| 129 | 129 | $value = get_instance()->request->server($var); |
| 130 | - if($value){ |
|
| 130 | + if ($value) { |
|
| 131 | 131 | $domain = $value; |
| 132 | 132 | break; |
| 133 | 133 | } |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - if($port && ((is_https() && $port != 443) || (!is_https() && $port != 80))){ |
|
| 137 | - $domain .= ':'.$port; |
|
| 136 | + if ($port && ((is_https() && $port != 443) || (!is_https() && $port != 80))) { |
|
| 137 | + $domain .= ':' . $port; |
|
| 138 | 138 | } |
| 139 | - return $protocol.'://'.$domain; |
|
| 139 | + return $protocol . '://' . $domain; |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | /** |
| 143 | 143 | * Get the current request query string |
| 144 | 144 | * @return string |
| 145 | 145 | */ |
| 146 | - public static function queryString(){ |
|
| 146 | + public static function queryString() { |
|
| 147 | 147 | return get_instance()->request->server('QUERY_STRING'); |
| 148 | 148 | } |
| 149 | 149 | } |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 25 | 25 | */ |
| 26 | 26 | |
| 27 | - class FileCache implements CacheInterface{ |
|
| 27 | + class FileCache implements CacheInterface { |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * Whether to enable compression of the cache data file. |
@@ -39,23 +39,23 @@ discard block |
||
| 39 | 39 | private $logger; |
| 40 | 40 | |
| 41 | 41 | |
| 42 | - public function __construct(Log $logger = null){ |
|
| 43 | - if(! $this->isSupported()){ |
|
| 42 | + public function __construct(Log $logger = null) { |
|
| 43 | + if (!$this->isSupported()) { |
|
| 44 | 44 | show_error('The cache for file system is not available. Check the cache directory if is exists or is writable.'); |
| 45 | 45 | } |
| 46 | 46 | /** |
| 47 | 47 | * instance of the Log class |
| 48 | 48 | */ |
| 49 | - if(is_object($logger)){ |
|
| 49 | + if (is_object($logger)) { |
|
| 50 | 50 | $this->logger = $logger; |
| 51 | 51 | } |
| 52 | - else{ |
|
| 53 | - $this->logger =& class_loader('Log', 'classes'); |
|
| 52 | + else { |
|
| 53 | + $this->logger = & class_loader('Log', 'classes'); |
|
| 54 | 54 | $this->logger->setLogger('Library::FileCache'); |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | //if Zlib extension is not loaded set compressCacheData to false |
| 58 | - if(! extension_loaded('zlib')){ |
|
| 58 | + if (!extension_loaded('zlib')) { |
|
| 59 | 59 | $this->logger->warning('The zlib extension is not loaded set cache compress data to FALSE'); |
| 60 | 60 | $this->compressCacheData = false; |
| 61 | 61 | } |
@@ -66,17 +66,17 @@ discard block |
||
| 66 | 66 | * @param string $key the key to identify the cache data |
| 67 | 67 | * @return mixed the cache data if exists else return false |
| 68 | 68 | */ |
| 69 | - public function get($key){ |
|
| 70 | - $this->logger->debug('Getting cache data for key ['. $key .']'); |
|
| 69 | + public function get($key) { |
|
| 70 | + $this->logger->debug('Getting cache data for key [' . $key . ']'); |
|
| 71 | 71 | $filePath = $this->getFilePath($key); |
| 72 | - if(! file_exists($filePath)){ |
|
| 73 | - $this->logger->info('No cache file found for the key ['. $key .'], return false'); |
|
| 72 | + if (!file_exists($filePath)) { |
|
| 73 | + $this->logger->info('No cache file found for the key [' . $key . '], return false'); |
|
| 74 | 74 | return false; |
| 75 | 75 | } |
| 76 | - $this->logger->info('The cache file [' .$filePath. '] for the key ['. $key .'] exists, check if the cache data is valid'); |
|
| 77 | - $handle = fopen($filePath,'r'); |
|
| 78 | - if(! is_resource($handle)){ |
|
| 79 | - $this->logger->error('Can not open the file cache [' .$filePath. '] for the key ['. $key .'], return false'); |
|
| 76 | + $this->logger->info('The cache file [' . $filePath . '] for the key [' . $key . '] exists, check if the cache data is valid'); |
|
| 77 | + $handle = fopen($filePath, 'r'); |
|
| 78 | + if (!is_resource($handle)) { |
|
| 79 | + $this->logger->error('Can not open the file cache [' . $filePath . '] for the key [' . $key . '], return false'); |
|
| 80 | 80 | return false; |
| 81 | 81 | } |
| 82 | 82 | // Getting a shared lock |
@@ -84,20 +84,20 @@ discard block |
||
| 84 | 84 | $data = file_get_contents($filePath); |
| 85 | 85 | fclose($handle); |
| 86 | 86 | $data = @unserialize($this->compressCacheData ? gzinflate($data) : $data); |
| 87 | - if (! $data) { |
|
| 88 | - $this->logger->error('Can not unserialize the cache data for the key ['. $key .'], return false'); |
|
| 87 | + if (!$data) { |
|
| 88 | + $this->logger->error('Can not unserialize the cache data for the key [' . $key . '], return false'); |
|
| 89 | 89 | // If unserializing somehow didn't work out, we'll delete the file |
| 90 | 90 | unlink($filePath); |
| 91 | 91 | return false; |
| 92 | 92 | } |
| 93 | 93 | if (time() > $data['expire']) { |
| 94 | - $this->logger->info('The cache data for the key ['. $key .'] already expired delete the cache file [' .$filePath. ']'); |
|
| 94 | + $this->logger->info('The cache data for the key [' . $key . '] already expired delete the cache file [' . $filePath . ']'); |
|
| 95 | 95 | // Unlinking when the file was expired |
| 96 | 96 | unlink($filePath); |
| 97 | 97 | return false; |
| 98 | 98 | } |
| 99 | - else{ |
|
| 100 | - $this->logger->info('The cache not yet expire, now return the cache data for key ['. $key .'], the cache will expire at [' . date('Y-m-d H:i:s', $data['expire']) . ']'); |
|
| 99 | + else { |
|
| 100 | + $this->logger->info('The cache not yet expire, now return the cache data for key [' . $key . '], the cache will expire at [' . date('Y-m-d H:i:s', $data['expire']) . ']'); |
|
| 101 | 101 | return $data['data']; |
| 102 | 102 | } |
| 103 | 103 | } |
@@ -110,13 +110,13 @@ discard block |
||
| 110 | 110 | * @param integer $ttl the cache life time |
| 111 | 111 | * @return boolean true if success otherwise will return false |
| 112 | 112 | */ |
| 113 | - public function set($key, $data, $ttl = 0){ |
|
| 113 | + public function set($key, $data, $ttl = 0) { |
|
| 114 | 114 | $expire = time() + $ttl; |
| 115 | - $this->logger->debug('Setting cache data for key ['. $key .'], time to live [' .$ttl. '], expire at [' . date('Y-m-d H:i:s', $expire) . ']'); |
|
| 115 | + $this->logger->debug('Setting cache data for key [' . $key . '], time to live [' . $ttl . '], expire at [' . date('Y-m-d H:i:s', $expire) . ']'); |
|
| 116 | 116 | $filePath = $this->getFilePath($key); |
| 117 | - $handle = fopen($filePath,'w'); |
|
| 118 | - if(! is_resource($handle)){ |
|
| 119 | - $this->logger->error('Can not open the file cache [' .$filePath. '] for the key ['. $key .'], return false'); |
|
| 117 | + $handle = fopen($filePath, 'w'); |
|
| 118 | + if (!is_resource($handle)) { |
|
| 119 | + $this->logger->error('Can not open the file cache [' . $filePath . '] for the key [' . $key . '], return false'); |
|
| 120 | 120 | return false; |
| 121 | 121 | } |
| 122 | 122 | flock($handle, LOCK_EX); // exclusive lock, will get released when the file is closed |
@@ -129,13 +129,13 @@ discard block |
||
| 129 | 129 | ) |
| 130 | 130 | ); |
| 131 | 131 | $result = fwrite($handle, $this->compressCacheData ? gzdeflate($cacheData, 9) : $cacheData); |
| 132 | - if(! $result){ |
|
| 133 | - $this->logger->error('Can not write cache data into file [' .$filePath. '] for the key ['. $key .'], return false'); |
|
| 132 | + if (!$result) { |
|
| 133 | + $this->logger->error('Can not write cache data into file [' . $filePath . '] for the key [' . $key . '], return false'); |
|
| 134 | 134 | fclose($handle); |
| 135 | 135 | return false; |
| 136 | 136 | } |
| 137 | - else{ |
|
| 138 | - $this->logger->info('Cache data saved into file [' .$filePath. '] for the key ['. $key .']'); |
|
| 137 | + else { |
|
| 138 | + $this->logger->info('Cache data saved into file [' . $filePath . '] for the key [' . $key . ']'); |
|
| 139 | 139 | fclose($handle); |
| 140 | 140 | chmod($filePath, 0640); |
| 141 | 141 | return true; |
@@ -149,16 +149,16 @@ discard block |
||
| 149 | 149 | * @return boolean true if the cache is delete, false if can't delete |
| 150 | 150 | * the cache or the cache with the given key not exist |
| 151 | 151 | */ |
| 152 | - public function delete($key){ |
|
| 153 | - $this->logger->debug('Deleting of cache data for key [' .$key. ']'); |
|
| 152 | + public function delete($key) { |
|
| 153 | + $this->logger->debug('Deleting of cache data for key [' . $key . ']'); |
|
| 154 | 154 | $filePath = $this->getFilePath($key); |
| 155 | - $this->logger->info('The file path for the key [' .$key. '] is [' .$filePath. ']'); |
|
| 156 | - if(! file_exists($filePath)){ |
|
| 155 | + $this->logger->info('The file path for the key [' . $key . '] is [' . $filePath . ']'); |
|
| 156 | + if (!file_exists($filePath)) { |
|
| 157 | 157 | $this->logger->info('This cache file does not exists skipping'); |
| 158 | 158 | return false; |
| 159 | 159 | } |
| 160 | - else{ |
|
| 161 | - $this->logger->info('Found cache file [' .$filePath. '] remove it'); |
|
| 160 | + else { |
|
| 161 | + $this->logger->info('Found cache file [' . $filePath . '] remove it'); |
|
| 162 | 162 | unlink($filePath); |
| 163 | 163 | return true; |
| 164 | 164 | } |
@@ -172,23 +172,23 @@ discard block |
||
| 172 | 172 | * 'expire' => expiration time of the cache (Unix timestamp), |
| 173 | 173 | * 'ttl' => the time to live of the cache in second |
| 174 | 174 | */ |
| 175 | - public function getInfo($key){ |
|
| 176 | - $this->logger->debug('Getting of cache info for key [' .$key. ']'); |
|
| 175 | + public function getInfo($key) { |
|
| 176 | + $this->logger->debug('Getting of cache info for key [' . $key . ']'); |
|
| 177 | 177 | $filePath = $this->getFilePath($key); |
| 178 | - $this->logger->info('The file path for the key [' .$key. '] is [' .$filePath. ']'); |
|
| 179 | - if(! file_exists($filePath)){ |
|
| 178 | + $this->logger->info('The file path for the key [' . $key . '] is [' . $filePath . ']'); |
|
| 179 | + if (!file_exists($filePath)) { |
|
| 180 | 180 | $this->logger->info('This cache file does not exists skipping'); |
| 181 | 181 | return false; |
| 182 | 182 | } |
| 183 | - $this->logger->info('Found cache file [' .$filePath. '] check the validity'); |
|
| 183 | + $this->logger->info('Found cache file [' . $filePath . '] check the validity'); |
|
| 184 | 184 | $data = file_get_contents($filePath); |
| 185 | 185 | $data = @unserialize($this->compressCacheData ? gzinflate($data) : $data); |
| 186 | - if(! $data){ |
|
| 186 | + if (!$data) { |
|
| 187 | 187 | $this->logger->warning('Can not unserialize the cache data for file [' . $filePath . ']'); |
| 188 | 188 | return false; |
| 189 | 189 | } |
| 190 | 190 | $this->logger->info('This cache data is OK check for expire'); |
| 191 | - if(isset($data['expire']) && $data['expire'] > time()){ |
|
| 191 | + if (isset($data['expire']) && $data['expire'] > time()) { |
|
| 192 | 192 | $this->logger->info('This cache not yet expired return cache informations'); |
| 193 | 193 | $info = array( |
| 194 | 194 | 'mtime' => $data['mtime'], |
@@ -205,26 +205,26 @@ discard block |
||
| 205 | 205 | /** |
| 206 | 206 | * Used to delete expired cache data |
| 207 | 207 | */ |
| 208 | - public function deleteExpiredCache(){ |
|
| 208 | + public function deleteExpiredCache() { |
|
| 209 | 209 | $this->logger->debug('Deleting of expired cache files'); |
| 210 | 210 | $list = glob(CACHE_PATH . '*.cache'); |
| 211 | - if(! $list){ |
|
| 211 | + if (!$list) { |
|
| 212 | 212 | $this->logger->info('No cache files were found skipping'); |
| 213 | 213 | } |
| 214 | - else{ |
|
| 214 | + else { |
|
| 215 | 215 | $this->logger->info('Found [' . count($list) . '] cache files to remove if expired'); |
| 216 | 216 | foreach ($list as $file) { |
| 217 | 217 | $this->logger->debug('Processing the cache file [' . $file . ']'); |
| 218 | 218 | $data = file_get_contents($file); |
| 219 | 219 | $data = @unserialize($this->compressCacheData ? gzinflate($data) : $data); |
| 220 | - if(! $data){ |
|
| 220 | + if (!$data) { |
|
| 221 | 221 | $this->logger->warning('Can not unserialize the cache data for file [' . $file . ']'); |
| 222 | 222 | } |
| 223 | - else if(time() > $data['expire']){ |
|
| 223 | + else if (time() > $data['expire']) { |
|
| 224 | 224 | $this->logger->info('The cache data for file [' . $file . '] already expired remove it'); |
| 225 | 225 | unlink($file); |
| 226 | 226 | } |
| 227 | - else{ |
|
| 227 | + else { |
|
| 228 | 228 | $this->logger->info('The cache data for file [' . $file . '] not yet expired skip it'); |
| 229 | 229 | } |
| 230 | 230 | } |
@@ -234,13 +234,13 @@ discard block |
||
| 234 | 234 | /** |
| 235 | 235 | * Remove all file from cache folder |
| 236 | 236 | */ |
| 237 | - public function clean(){ |
|
| 237 | + public function clean() { |
|
| 238 | 238 | $this->logger->debug('Deleting of all cache files'); |
| 239 | 239 | $list = glob(CACHE_PATH . '*.cache'); |
| 240 | - if(! $list){ |
|
| 240 | + if (!$list) { |
|
| 241 | 241 | $this->logger->info('No cache files were found skipping'); |
| 242 | 242 | } |
| 243 | - else{ |
|
| 243 | + else { |
|
| 244 | 244 | $this->logger->info('Found [' . count($list) . '] cache files to remove'); |
| 245 | 245 | foreach ($list as $file) { |
| 246 | 246 | $this->logger->debug('Processing the cache file [' . $file . ']'); |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | /** |
| 253 | 253 | * @return boolean |
| 254 | 254 | */ |
| 255 | - public function isCompressCacheData(){ |
|
| 255 | + public function isCompressCacheData() { |
|
| 256 | 256 | return $this->compressCacheData; |
| 257 | 257 | } |
| 258 | 258 | |
@@ -261,14 +261,14 @@ discard block |
||
| 261 | 261 | * |
| 262 | 262 | * @return object |
| 263 | 263 | */ |
| 264 | - public function setCompressCacheData($status = true){ |
|
| 264 | + public function setCompressCacheData($status = true) { |
|
| 265 | 265 | //if Zlib extension is not loaded set compressCacheData to false |
| 266 | - if($status === true && ! extension_loaded('zlib')){ |
|
| 266 | + if ($status === true && !extension_loaded('zlib')) { |
|
| 267 | 267 | |
| 268 | 268 | $this->logger->warning('The zlib extension is not loaded set cache compress data to FALSE'); |
| 269 | 269 | $this->compressCacheData = false; |
| 270 | 270 | } |
| 271 | - else{ |
|
| 271 | + else { |
|
| 272 | 272 | $this->compressCacheData = $status; |
| 273 | 273 | } |
| 274 | 274 | return $this; |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | * |
| 280 | 280 | * @return bool |
| 281 | 281 | */ |
| 282 | - public function isSupported(){ |
|
| 282 | + public function isSupported() { |
|
| 283 | 283 | return CACHE_PATH && is_dir(CACHE_PATH) && is_writable(CACHE_PATH); |
| 284 | 284 | } |
| 285 | 285 | |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | * Return the Log instance |
| 288 | 288 | * @return object |
| 289 | 289 | */ |
| 290 | - public function getLogger(){ |
|
| 290 | + public function getLogger() { |
|
| 291 | 291 | return $this->logger; |
| 292 | 292 | } |
| 293 | 293 | |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | * Set the log instance |
| 296 | 296 | * @param Log $logger the log object |
| 297 | 297 | */ |
| 298 | - public function setLogger(Log $logger){ |
|
| 298 | + public function setLogger(Log $logger) { |
|
| 299 | 299 | $this->logger = $logger; |
| 300 | 300 | return $this; |
| 301 | 301 | } |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | * @param string $key the cache item key |
| 307 | 307 | * @return string the full cache file path for this key |
| 308 | 308 | */ |
| 309 | - private function getFilePath($key){ |
|
| 309 | + private function getFilePath($key) { |
|
| 310 | 310 | return CACHE_PATH . md5($key) . '.cache'; |
| 311 | 311 | } |
| 312 | 312 | } |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 25 | 25 | */ |
| 26 | 26 | |
| 27 | - class Security{ |
|
| 27 | + class Security { |
|
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * The logger instance |
@@ -36,9 +36,9 @@ discard block |
||
| 36 | 36 | * Get the logger singleton instance |
| 37 | 37 | * @return Log the logger instance |
| 38 | 38 | */ |
| 39 | - private static function getLogger(){ |
|
| 40 | - if(self::$logger == null){ |
|
| 41 | - self::$logger[0] =& class_loader('Log', 'classes'); |
|
| 39 | + private static function getLogger() { |
|
| 40 | + if (self::$logger == null) { |
|
| 41 | + self::$logger[0] = & class_loader('Log', 'classes'); |
|
| 42 | 42 | self::$logger[0]->setLogger('Library::Security'); |
| 43 | 43 | } |
| 44 | 44 | return self::$logger[0]; |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | * This method is used to generate the CSRF token |
| 50 | 50 | * @return string the generated CSRF token |
| 51 | 51 | */ |
| 52 | - public static function generateCSRF(){ |
|
| 52 | + public static function generateCSRF() { |
|
| 53 | 53 | $logger = self::getLogger(); |
| 54 | 54 | $logger->debug('Generation of CSRF ...'); |
| 55 | 55 | |
@@ -57,14 +57,14 @@ discard block |
||
| 57 | 57 | $expire = get_config('csrf_expire', 60); |
| 58 | 58 | $keyExpire = 'csrf_expire'; |
| 59 | 59 | $currentTime = time(); |
| 60 | - if(Session::exists($key) && Session::exists($keyExpire) && Session::get($keyExpire) > $currentTime){ |
|
| 60 | + if (Session::exists($key) && Session::exists($keyExpire) && Session::get($keyExpire) > $currentTime) { |
|
| 61 | 61 | $logger->info('The CSRF token not yet expire just return it'); |
| 62 | 62 | return Session::get($key); |
| 63 | 63 | } |
| 64 | - else{ |
|
| 64 | + else { |
|
| 65 | 65 | $newTime = $currentTime + $expire; |
| 66 | 66 | $token = sha1(uniqid()) . sha1(uniqid()); |
| 67 | - $logger->info('The CSRF informations are listed below: key [' .$key. '], key expire [' .$keyExpire. '], expire time [' .$expire. '], token [' .$token. ']'); |
|
| 67 | + $logger->info('The CSRF informations are listed below: key [' . $key . '], key expire [' . $keyExpire . '], expire time [' . $expire . '], token [' . $token . ']'); |
|
| 68 | 68 | Session::set($keyExpire, $newTime); |
| 69 | 69 | Session::set($key, $token); |
| 70 | 70 | return Session::get($key); |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * This method is used to check the CSRF if is valid, not yet expire, etc. |
| 76 | 76 | * @return boolean true if valid, false if not valid |
| 77 | 77 | */ |
| 78 | - public static function validateCSRF(){ |
|
| 78 | + public static function validateCSRF() { |
|
| 79 | 79 | $logger = self::getLogger(); |
| 80 | 80 | $logger->debug('Validation of CSRF ...'); |
| 81 | 81 | |
@@ -83,8 +83,8 @@ discard block |
||
| 83 | 83 | $expire = get_config('csrf_expire', 60); |
| 84 | 84 | $keyExpire = 'csrf_expire'; |
| 85 | 85 | $currentTime = time(); |
| 86 | - $logger->info('The CSRF informations are listed below: key [' .$key. '], key expire [' .$keyExpire. '], expire time [' .$expire. ']'); |
|
| 87 | - if(! Session::exists($key) || Session::get($keyExpire) <= $currentTime){ |
|
| 86 | + $logger->info('The CSRF informations are listed below: key [' . $key . '], key expire [' . $keyExpire . '], expire time [' . $expire . ']'); |
|
| 87 | + if (!Session::exists($key) || Session::get($keyExpire) <= $currentTime) { |
|
| 88 | 88 | $logger->warning('The CSRF session data is not valide'); |
| 89 | 89 | return false; |
| 90 | 90 | } |
@@ -93,11 +93,11 @@ discard block |
||
| 93 | 93 | //super instance |
| 94 | 94 | $obj = & get_instance(); |
| 95 | 95 | $token = $obj->request->query($key); |
| 96 | - if(! $token || $token !== Session::get($key) || Session::get($keyExpire) <= $currentTime){ |
|
| 97 | - $logger->warning('The CSRF data [' .$token. '] is not valide may be attacker do his job'); |
|
| 96 | + if (!$token || $token !== Session::get($key) || Session::get($keyExpire) <= $currentTime) { |
|
| 97 | + $logger->warning('The CSRF data [' . $token . '] is not valide may be attacker do his job'); |
|
| 98 | 98 | return false; |
| 99 | 99 | } |
| 100 | - $logger->info('The CSRF data [' .$token. '] is valide the form data is safe continue'); |
|
| 100 | + $logger->info('The CSRF data [' . $token . '] is valide the form data is safe continue'); |
|
| 101 | 101 | //remove the token from session |
| 102 | 102 | Session::clear($key); |
| 103 | 103 | Session::clear($keyExpire); |
@@ -107,24 +107,24 @@ discard block |
||
| 107 | 107 | /** |
| 108 | 108 | * This method is used to check the whitelist IP address access |
| 109 | 109 | */ |
| 110 | - public static function checkWhiteListIpAccess(){ |
|
| 110 | + public static function checkWhiteListIpAccess() { |
|
| 111 | 111 | $logger = self::getLogger(); |
| 112 | 112 | $logger->debug('Validation of the IP address access ...'); |
| 113 | 113 | $logger->debug('Check if whitelist IP access is enabled in the configuration ...'); |
| 114 | 114 | $isEnable = get_config('white_list_ip_enable', false); |
| 115 | - if($isEnable){ |
|
| 115 | + if ($isEnable) { |
|
| 116 | 116 | $logger->info('Whitelist IP access is enabled in the configuration'); |
| 117 | 117 | $list = get_config('white_list_ip_addresses', array()); |
| 118 | - if(! empty($list)){ |
|
| 118 | + if (!empty($list)) { |
|
| 119 | 119 | //Can't use Loader::functions() at this time because teh "Loader" library is loader after the security prossessing |
| 120 | 120 | require_once CORE_FUNCTIONS_PATH . 'function_user_agent.php'; |
| 121 | 121 | $ip = get_ip(); |
| 122 | - if((count($list) == 1 && $list[0] == '*') || in_array($ip, $list)){ |
|
| 122 | + if ((count($list) == 1 && $list[0] == '*') || in_array($ip, $list)) { |
|
| 123 | 123 | $logger->info('IP address ' . $ip . ' allowed using the wildcard "*" or the full IP'); |
| 124 | 124 | //wildcard to access all ip address |
| 125 | 125 | return; |
| 126 | 126 | } |
| 127 | - else{ |
|
| 127 | + else { |
|
| 128 | 128 | // go through all whitelisted ips |
| 129 | 129 | foreach ($list as $ipaddr) { |
| 130 | 130 | // find the wild card * in whitelisted ip (f.e. find position in "127.0.*" or "127*") |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | } |
| 151 | 151 | } |
| 152 | 152 | } |
| 153 | - else{ |
|
| 153 | + else { |
|
| 154 | 154 | $logger->info('Whitelist IP access is not enabled in the configuration, ignore checking'); |
| 155 | 155 | } |
| 156 | 156 | } |
@@ -25,13 +25,13 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | |
| 27 | 27 | |
| 28 | - class FormValidation{ |
|
| 28 | + class FormValidation { |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * The form validation status |
| 32 | 32 | * @var boolean |
| 33 | 33 | */ |
| 34 | - protected $_success = false; |
|
| 34 | + protected $_success = false; |
|
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | 37 | * The list of errors messages |
@@ -40,31 +40,31 @@ discard block |
||
| 40 | 40 | protected $_errorsMessages = array(); |
| 41 | 41 | |
| 42 | 42 | // Array of rule sets, fieldName => PIPE seperated ruleString |
| 43 | - protected $_rules = array(); |
|
| 43 | + protected $_rules = array(); |
|
| 44 | 44 | |
| 45 | 45 | // Array of errors, niceName => Error Message |
| 46 | - protected $_errors = array(); |
|
| 46 | + protected $_errors = array(); |
|
| 47 | 47 | |
| 48 | 48 | // Array of post Key => Nice name labels |
| 49 | - protected $_labels = array(); |
|
| 49 | + protected $_labels = array(); |
|
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * The errors delimiters |
| 53 | 53 | * @var array |
| 54 | 54 | */ |
| 55 | - protected $_allErrorsDelimiter = array('<div class="error">', '</div>'); |
|
| 55 | + protected $_allErrorsDelimiter = array('<div class="error">', '</div>'); |
|
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | 58 | * The each error delimiter |
| 59 | 59 | * @var array |
| 60 | 60 | */ |
| 61 | - protected $_eachErrorDelimiter = array('<p class="error">', '</p>'); |
|
| 61 | + protected $_eachErrorDelimiter = array('<p class="error">', '</p>'); |
|
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * Indicated if need force the validation to be failed |
| 65 | 65 | * @var boolean |
| 66 | 66 | */ |
| 67 | - protected $_forceFail = false; |
|
| 67 | + protected $_forceFail = false; |
|
| 68 | 68 | |
| 69 | 69 | /** |
| 70 | 70 | * The list of the error messages overrides by the original |
@@ -97,13 +97,13 @@ discard block |
||
| 97 | 97 | * @return void |
| 98 | 98 | */ |
| 99 | 99 | public function __construct() { |
| 100 | - $this->logger =& class_loader('Log', 'classes'); |
|
| 100 | + $this->logger = & class_loader('Log', 'classes'); |
|
| 101 | 101 | $this->logger->setLogger('Library::FormValidation'); |
| 102 | 102 | |
| 103 | 103 | //Load form validation language message |
| 104 | 104 | Loader::lang('form_validation'); |
| 105 | 105 | $obj = & get_instance(); |
| 106 | - $this->_errorsMessages = array( |
|
| 106 | + $this->_errorsMessages = array( |
|
| 107 | 107 | 'required' => $obj->lang->get('fv_required'), |
| 108 | 108 | 'min_length' => $obj->lang->get('fv_min_length'), |
| 109 | 109 | 'max_length' => $obj->lang->get('fv_max_length'), |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | * Set the database instance |
| 134 | 134 | * @param object $database the database instance |
| 135 | 135 | */ |
| 136 | - public function setDatabase(Database $database){ |
|
| 136 | + public function setDatabase(Database $database) { |
|
| 137 | 137 | $this->databaseInstance = $database; |
| 138 | 138 | return $this; |
| 139 | 139 | } |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | * Get the database instance |
| 143 | 143 | * @return object the database instance |
| 144 | 144 | */ |
| 145 | - public function getDatabase(){ |
|
| 145 | + public function getDatabase() { |
|
| 146 | 146 | return $this->databaseInstance; |
| 147 | 147 | } |
| 148 | 148 | |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | * |
| 166 | 166 | * @return FormValidation Current instance of object. |
| 167 | 167 | */ |
| 168 | - public function setData(array $data){ |
|
| 168 | + public function setData(array $data) { |
|
| 169 | 169 | $this->logger->debug('Setting the form validation data, the values are: ' . stringfy_vars($data)); |
| 170 | 170 | $this->data = $data; |
| 171 | 171 | return $this; |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | * Get the form validation data |
| 176 | 176 | * @return array the form validation data to be validated |
| 177 | 177 | */ |
| 178 | - public function getData(){ |
|
| 178 | + public function getData() { |
|
| 179 | 179 | return $this->data; |
| 180 | 180 | } |
| 181 | 181 | |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | * |
| 185 | 185 | * @return string the function name |
| 186 | 186 | */ |
| 187 | - protected function _toCallCase($funcName, $prefix='_validate') { |
|
| 187 | + protected function _toCallCase($funcName, $prefix = '_validate') { |
|
| 188 | 188 | $funcName = strtolower($funcName); |
| 189 | 189 | $finalFuncName = $prefix; |
| 190 | 190 | foreach (explode('_', $funcName) as $funcNamePart) { |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | * @return boolean Whether or not the form has been submitted or the data is available for validation. |
| 209 | 209 | */ |
| 210 | 210 | public function canDoValidation() { |
| 211 | - return get_instance()->request->method() === 'POST' || ! empty($this->data); |
|
| 211 | + return get_instance()->request->method() === 'POST' || !empty($this->data); |
|
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | /** |
@@ -228,14 +228,14 @@ discard block |
||
| 228 | 228 | * Validate the CSRF |
| 229 | 229 | * @return void |
| 230 | 230 | */ |
| 231 | - protected function validateCSRF(){ |
|
| 232 | - if(get_instance()->request->method() == 'POST'){ |
|
| 231 | + protected function validateCSRF() { |
|
| 232 | + if (get_instance()->request->method() == 'POST') { |
|
| 233 | 233 | $this->logger->debug('Check if CSRF is enabled in configuration'); |
| 234 | 234 | //first check for CSRF |
| 235 | - if (get_config('csrf_enable', false) && ! Security::validateCSRF()){ |
|
| 235 | + if (get_config('csrf_enable', false) && !Security::validateCSRF()) { |
|
| 236 | 236 | show_error('Invalide data, Cross Site Request Forgery do his job, the data to validate is corrupted.'); |
| 237 | 237 | } |
| 238 | - else{ |
|
| 238 | + else { |
|
| 239 | 239 | $this->logger->info('CSRF is not enabled in configuration or not set manully, no need to check it'); |
| 240 | 240 | } |
| 241 | 241 | } |
@@ -253,10 +253,10 @@ discard block |
||
| 253 | 253 | $this->_forceFail = false; |
| 254 | 254 | |
| 255 | 255 | foreach ($this->getData() as $inputName => $inputVal) { |
| 256 | - if(is_array($this->data[$inputName])){ |
|
| 256 | + if (is_array($this->data[$inputName])) { |
|
| 257 | 257 | $this->data[$inputName] = array_map('trim', $this->data[$inputName]); |
| 258 | 258 | } |
| 259 | - else{ |
|
| 259 | + else { |
|
| 260 | 260 | $this->data[$inputName] = trim($this->data[$inputName]); |
| 261 | 261 | } |
| 262 | 262 | |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | } |
| 267 | 267 | } |
| 268 | 268 | } |
| 269 | - $this->_success = empty($this->_errors) && $this->_forceFail === false; |
|
| 269 | + $this->_success = empty($this->_errors) && $this->_forceFail === false; |
|
| 270 | 270 | } |
| 271 | 271 | |
| 272 | 272 | /** |
@@ -280,7 +280,7 @@ discard block |
||
| 280 | 280 | public function setRule($inputField, $inputLabel, $ruleSets) { |
| 281 | 281 | $this->_rules[$inputField] = $ruleSets; |
| 282 | 282 | $this->_labels[$inputField] = $inputLabel; |
| 283 | - $this->logger->info('Set the field rule: name [' .$inputField. '], label [' .$inputLabel. '], rules [' .$ruleSets. ']'); |
|
| 283 | + $this->logger->info('Set the field rule: name [' . $inputField . '], label [' . $inputLabel . '], rules [' . $ruleSets . ']'); |
|
| 284 | 284 | return $this; |
| 285 | 285 | } |
| 286 | 286 | |
@@ -444,7 +444,7 @@ discard block |
||
| 444 | 444 | } |
| 445 | 445 | $errorOutput .= $errorsEnd; |
| 446 | 446 | echo ($echo) ? $errorOutput : ''; |
| 447 | - return (! $echo) ? $errorOutput : null; |
|
| 447 | + return (!$echo) ? $errorOutput : null; |
|
| 448 | 448 | } |
| 449 | 449 | |
| 450 | 450 | /** |
@@ -469,25 +469,25 @@ discard block |
||
| 469 | 469 | /* |
| 470 | 470 | //////////////// hack for regex rule that can contain "|" |
| 471 | 471 | */ |
| 472 | - if(strpos($ruleString, 'regex') !== false){ |
|
| 472 | + if (strpos($ruleString, 'regex') !== false) { |
|
| 473 | 473 | $regexRule = array(); |
| 474 | 474 | $rule = '#regex\[\/(.*)\/([a-zA-Z0-9]?)\]#'; |
| 475 | 475 | preg_match($rule, $ruleString, $regexRule); |
| 476 | 476 | $ruleStringTemp = preg_replace($rule, '', $ruleString); |
| 477 | - if(!empty($regexRule[0])){ |
|
| 477 | + if (!empty($regexRule[0])) { |
|
| 478 | 478 | $ruleSets[] = $regexRule[0]; |
| 479 | 479 | } |
| 480 | 480 | $ruleStringRegex = explode('|', $ruleStringTemp); |
| 481 | 481 | foreach ($ruleStringRegex as $rule) { |
| 482 | 482 | $rule = trim($rule); |
| 483 | - if($rule){ |
|
| 483 | + if ($rule) { |
|
| 484 | 484 | $ruleSets[] = $rule; |
| 485 | 485 | } |
| 486 | 486 | } |
| 487 | 487 | |
| 488 | 488 | } |
| 489 | 489 | /***********************************/ |
| 490 | - else{ |
|
| 490 | + else { |
|
| 491 | 491 | if (strpos($ruleString, '|') !== FALSE) { |
| 492 | 492 | $ruleSets = explode('|', $ruleString); |
| 493 | 493 | } else { |
@@ -519,7 +519,7 @@ discard block |
||
| 519 | 519 | * @return void |
| 520 | 520 | */ |
| 521 | 521 | protected function _validateRule($inputName, $inputVal, $ruleName) { |
| 522 | - $this->logger->debug('Rule validation of field [' .$inputName. '], value [' .$inputVal. '], rule [' .$ruleName. ']'); |
|
| 522 | + $this->logger->debug('Rule validation of field [' . $inputName . '], value [' . $inputVal . '], rule [' . $ruleName . ']'); |
|
| 523 | 523 | // Array to store args |
| 524 | 524 | $ruleArgs = array(); |
| 525 | 525 | |
@@ -564,7 +564,7 @@ discard block |
||
| 564 | 564 | $key = $i - 1; |
| 565 | 565 | $rulePhrase = str_replace('%' . $i, $replacements[$key], $rulePhrase); |
| 566 | 566 | } |
| 567 | - if (! array_key_exists($inputName, $this->_errors)) { |
|
| 567 | + if (!array_key_exists($inputName, $this->_errors)) { |
|
| 568 | 568 | $this->_errors[$inputName] = $rulePhrase; |
| 569 | 569 | } |
| 570 | 570 | } |
@@ -616,13 +616,13 @@ discard block |
||
| 616 | 616 | */ |
| 617 | 617 | protected function _validateRequired($inputName, $ruleName, array $ruleArgs) { |
| 618 | 618 | $inputVal = $this->post($inputName); |
| 619 | - if(array_key_exists(1, $ruleArgs) && function_exists($ruleArgs[1])) { |
|
| 619 | + if (array_key_exists(1, $ruleArgs) && function_exists($ruleArgs[1])) { |
|
| 620 | 620 | $callbackReturn = $this->_runEmptyCallback($ruleArgs[1]); |
| 621 | 621 | if ($inputVal == '' && $callbackReturn == true) { |
| 622 | 622 | $this->_setError($inputName, $ruleName, $this->_getLabel($inputName)); |
| 623 | 623 | } |
| 624 | 624 | } |
| 625 | - else if($inputVal == '') { |
|
| 625 | + else if ($inputVal == '') { |
|
| 626 | 626 | $this->_setError($inputName, $ruleName, $this->_getLabel($inputName)); |
| 627 | 627 | } |
| 628 | 628 | } |
@@ -648,7 +648,7 @@ discard block |
||
| 648 | 648 | protected function _validateCallback($inputName, $ruleName, array $ruleArgs) { |
| 649 | 649 | if (function_exists($ruleArgs[1]) && !empty($this->data[$inputName])) { |
| 650 | 650 | $result = $this->_runCallback($this->data[$inputName], $ruleArgs[1]); |
| 651 | - if(! $result){ |
|
| 651 | + if (!$result) { |
|
| 652 | 652 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName))); |
| 653 | 653 | } |
| 654 | 654 | } |
@@ -682,7 +682,7 @@ discard block |
||
| 682 | 682 | continue; |
| 683 | 683 | } |
| 684 | 684 | } |
| 685 | - else{ |
|
| 685 | + else { |
|
| 686 | 686 | if ($inputVal == $doNotEqual) { |
| 687 | 687 | $this->_setError($inputName, $ruleName . ',string', array($this->_getLabel($inputName), $doNotEqual)); |
| 688 | 688 | continue; |
@@ -712,8 +712,8 @@ discard block |
||
| 712 | 712 | */ |
| 713 | 713 | protected function _validateValidEmail($inputName, $ruleName, array $ruleArgs) { |
| 714 | 714 | $inputVal = $this->post($inputName); |
| 715 | - if (! preg_match("/^([\w\!\#$\%\&\'\*\+\-\/\=\?\^\`{\|\}\~]+\.)*[\w\!\#$\%\&\'\*\+\-\/\=\?\^\`{\|\}\~]+@((((([a-z0-9]{1}[a-z0-9\-]{0,62}[a-z0-9]{1})|[a-z])\.)+[a-z]{2,6})|(\d{1,3}\.){3}\d{1,3}(\:\d{1,5})?)$/i", $inputVal)) { |
|
| 716 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 715 | + if (!preg_match("/^([\w\!\#$\%\&\'\*\+\-\/\=\?\^\`{\|\}\~]+\.)*[\w\!\#$\%\&\'\*\+\-\/\=\?\^\`{\|\}\~]+@((((([a-z0-9]{1}[a-z0-9\-]{0,62}[a-z0-9]{1})|[a-z])\.)+[a-z]{2,6})|(\d{1,3}\.){3}\d{1,3}(\:\d{1,5})?)$/i", $inputVal)) { |
|
| 716 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 717 | 717 | return; |
| 718 | 718 | } |
| 719 | 719 | $this->_setError($inputName, $ruleName, $this->_getLabel($inputName)); |
@@ -729,7 +729,7 @@ discard block |
||
| 729 | 729 | protected function _validateExactLength($inputName, $ruleName, array $ruleArgs) { |
| 730 | 730 | $inputVal = $this->post($inputName); |
| 731 | 731 | if (strlen($inputVal) != $ruleArgs[1]) { // $ruleArgs[0] is [length] $rulesArgs[1] is just length |
| 732 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 732 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 733 | 733 | return; |
| 734 | 734 | } |
| 735 | 735 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName), $this->_getLabel($ruleArgs[1]))); |
@@ -745,7 +745,7 @@ discard block |
||
| 745 | 745 | protected function _validateMaxLength($inputName, $ruleName, array $ruleArgs) { |
| 746 | 746 | $inputVal = $this->post($inputName); |
| 747 | 747 | if (strlen($inputVal) > $ruleArgs[1]) { // $ruleArgs[0] is [length] $rulesArgs[1] is just length |
| 748 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 748 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 749 | 749 | return; |
| 750 | 750 | } |
| 751 | 751 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName), $this->_getLabel($ruleArgs[1]))); |
@@ -761,7 +761,7 @@ discard block |
||
| 761 | 761 | protected function _validateMinLength($inputName, $ruleName, array $ruleArgs) { |
| 762 | 762 | $inputVal = $this->post($inputName); |
| 763 | 763 | if (strlen($inputVal) < $ruleArgs[1]) { // $ruleArgs[0] is [length] $rulesArgs[1] is just length |
| 764 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 764 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 765 | 765 | return; |
| 766 | 766 | } |
| 767 | 767 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName), $this->_getLabel($ruleArgs[1]))); |
@@ -777,7 +777,7 @@ discard block |
||
| 777 | 777 | protected function _validateLessThan($inputName, $ruleName, array $ruleArgs) { |
| 778 | 778 | $inputVal = $this->post($inputName); |
| 779 | 779 | if ($inputVal >= $ruleArgs[1]) { |
| 780 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 780 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 781 | 781 | return; |
| 782 | 782 | } |
| 783 | 783 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName), $this->_getLabel($ruleArgs[1]))); |
@@ -793,7 +793,7 @@ discard block |
||
| 793 | 793 | protected function _validateGreaterThan($inputName, $ruleName, array $ruleArgs) { |
| 794 | 794 | $inputVal = $this->post($inputName); |
| 795 | 795 | if ($inputVal <= $ruleArgs[1]) { |
| 796 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 796 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 797 | 797 | return; |
| 798 | 798 | } |
| 799 | 799 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName), $this->_getLabel($ruleArgs[1]))); |
@@ -808,8 +808,8 @@ discard block |
||
| 808 | 808 | */ |
| 809 | 809 | protected function _validateNumeric($inputName, $ruleName, array $ruleArgs) { |
| 810 | 810 | $inputVal = $this->post($inputName); |
| 811 | - if (! is_numeric($inputVal)) { |
|
| 812 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 811 | + if (!is_numeric($inputVal)) { |
|
| 812 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 813 | 813 | return; |
| 814 | 814 | } |
| 815 | 815 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName))); |
@@ -824,9 +824,9 @@ discard block |
||
| 824 | 824 | */ |
| 825 | 825 | protected function _validateExists($inputName, $ruleName, array $ruleArgs) { |
| 826 | 826 | $inputVal = $this->post($inputName); |
| 827 | - if (! is_object($this->databaseInstance)){ |
|
| 827 | + if (!is_object($this->databaseInstance)) { |
|
| 828 | 828 | $obj = & get_instance(); |
| 829 | - if(isset($obj->database)){ |
|
| 829 | + if (isset($obj->database)) { |
|
| 830 | 830 | $this->databaseInstance = $obj->database; |
| 831 | 831 | } |
| 832 | 832 | } |
@@ -835,7 +835,7 @@ discard block |
||
| 835 | 835 | ->where($column, $inputVal); |
| 836 | 836 | $this->databaseInstance->get(); |
| 837 | 837 | if ($this->databaseInstance->numRows() <= 0) { |
| 838 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 838 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 839 | 839 | return; |
| 840 | 840 | } |
| 841 | 841 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName))); |
@@ -850,9 +850,9 @@ discard block |
||
| 850 | 850 | */ |
| 851 | 851 | protected function _validateIsUnique($inputName, $ruleName, array $ruleArgs) { |
| 852 | 852 | $inputVal = $this->post($inputName); |
| 853 | - if (! is_object($this->databaseInstance)){ |
|
| 853 | + if (!is_object($this->databaseInstance)) { |
|
| 854 | 854 | $obj = & get_instance(); |
| 855 | - if(isset($obj->database)){ |
|
| 855 | + if (isset($obj->database)) { |
|
| 856 | 856 | $this->databaseInstance = $obj->database; |
| 857 | 857 | } |
| 858 | 858 | } |
@@ -861,7 +861,7 @@ discard block |
||
| 861 | 861 | ->where($column, $inputVal); |
| 862 | 862 | $this->databaseInstance->get(); |
| 863 | 863 | if ($this->databaseInstance->numRows() > 0) { |
| 864 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 864 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 865 | 865 | return; |
| 866 | 866 | } |
| 867 | 867 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName))); |
@@ -876,14 +876,14 @@ discard block |
||
| 876 | 876 | */ |
| 877 | 877 | protected function _validateIsUniqueUpdate($inputName, $ruleName, array $ruleArgs) { |
| 878 | 878 | $inputVal = $this->post($inputName); |
| 879 | - if (! is_object($this->databaseInstance)){ |
|
| 879 | + if (!is_object($this->databaseInstance)) { |
|
| 880 | 880 | $obj = & get_instance(); |
| 881 | - if(isset($obj->database)){ |
|
| 881 | + if (isset($obj->database)) { |
|
| 882 | 882 | $this->databaseInstance = $obj->database; |
| 883 | 883 | } |
| 884 | 884 | } |
| 885 | 885 | $data = explode(',', $ruleArgs[1]); |
| 886 | - if(count($data) < 2){ |
|
| 886 | + if (count($data) < 2) { |
|
| 887 | 887 | return; |
| 888 | 888 | } |
| 889 | 889 | list($table, $column) = explode('.', $data[0]); |
@@ -893,7 +893,7 @@ discard block |
||
| 893 | 893 | ->where($field, '!=', trim($val)); |
| 894 | 894 | $this->databaseInstance->get(); |
| 895 | 895 | if ($this->databaseInstance->numRows() > 0) { |
| 896 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 896 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 897 | 897 | return; |
| 898 | 898 | } |
| 899 | 899 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName))); |
@@ -910,8 +910,8 @@ discard block |
||
| 910 | 910 | $inputVal = $this->post($inputName); |
| 911 | 911 | $list = explode(',', $ruleArgs[1]); |
| 912 | 912 | $list = array_map('trim', $list); |
| 913 | - if (! in_array($inputVal, $list)) { |
|
| 914 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 913 | + if (!in_array($inputVal, $list)) { |
|
| 914 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 915 | 915 | return; |
| 916 | 916 | } |
| 917 | 917 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName), $this->_getLabel($ruleArgs[1]))); |
@@ -927,8 +927,8 @@ discard block |
||
| 927 | 927 | protected function _validateRegex($inputName, $ruleName, array $ruleArgs) { |
| 928 | 928 | $inputVal = $this->post($inputName); |
| 929 | 929 | $regex = $ruleArgs[1]; |
| 930 | - if (! preg_match($regex, $inputVal)) { |
|
| 931 | - if (! $this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 930 | + if (!preg_match($regex, $inputVal)) { |
|
| 931 | + if (!$this->_fieldIsRequired($inputName) && empty($this->data[$inputName])) { |
|
| 932 | 932 | return; |
| 933 | 933 | } |
| 934 | 934 | $this->_setError($inputName, $ruleName, array($this->_getLabel($inputName))); |
@@ -916,27 +916,27 @@ discard block |
||
| 916 | 916 | if (isset($aresult[1])) { |
| 917 | 917 | $this->setBrowser(self::BROWSER_IE); |
| 918 | 918 | $this->setVersion(str_replace(array('(', ')', ';'), '', $aresult[1])); |
| 919 | - if(preg_match('#trident/([0-9\.]+);#i', $this->_agent, $aresult)){ |
|
| 920 | - if($aresult[1] == '3.1'){ |
|
| 919 | + if (preg_match('#trident/([0-9\.]+);#i', $this->_agent, $aresult)) { |
|
| 920 | + if ($aresult[1] == '3.1') { |
|
| 921 | 921 | $this->setVersion('7.0'); |
| 922 | 922 | } |
| 923 | - else if($aresult[1] == '4.0'){ |
|
| 923 | + else if ($aresult[1] == '4.0') { |
|
| 924 | 924 | $this->setVersion('8.0'); |
| 925 | 925 | } |
| 926 | - else if($aresult[1] == '5.0'){ |
|
| 926 | + else if ($aresult[1] == '5.0') { |
|
| 927 | 927 | $this->setVersion('9.0'); |
| 928 | 928 | } |
| 929 | - else if($aresult[1] == '6.0'){ |
|
| 929 | + else if ($aresult[1] == '6.0') { |
|
| 930 | 930 | $this->setVersion('10.0'); |
| 931 | 931 | } |
| 932 | - else if($aresult[1] == '7.0'){ |
|
| 932 | + else if ($aresult[1] == '7.0') { |
|
| 933 | 933 | $this->setVersion('11.0'); |
| 934 | 934 | } |
| 935 | - else if($aresult[1] == '8.0'){ |
|
| 935 | + else if ($aresult[1] == '8.0') { |
|
| 936 | 936 | $this->setVersion('11.0'); |
| 937 | 937 | } |
| 938 | 938 | } |
| 939 | - if(stripos($this->_agent, 'IEMobile') !== false) { |
|
| 939 | + if (stripos($this->_agent, 'IEMobile') !== false) { |
|
| 940 | 940 | $this->setBrowser(self::BROWSER_POCKET_IE); |
| 941 | 941 | $this->setMobile(true); |
| 942 | 942 | } |
@@ -1676,7 +1676,7 @@ discard block |
||
| 1676 | 1676 | 'mac' => self::PLATFORM_APPLE, |
| 1677 | 1677 | 'android' => self::PLATFORM_ANDROID, |
| 1678 | 1678 | 'Silk' => self::PLATFORM_FIRE_OS, |
| 1679 | - 'linux_smarttv' => self::PLATFORM_LINUX .'/'.self::PLATFORM_SMART_TV, |
|
| 1679 | + 'linux_smarttv' => self::PLATFORM_LINUX . '/' . self::PLATFORM_SMART_TV, |
|
| 1680 | 1680 | 'linux' => self::PLATFORM_LINUX, |
| 1681 | 1681 | 'Nokia' => self::PLATFORM_NOKIA, |
| 1682 | 1682 | 'BlackBerry' => self::PLATFORM_BLACKBERRY, |
@@ -1700,9 +1700,9 @@ discard block |
||
| 1700 | 1700 | ); |
| 1701 | 1701 | |
| 1702 | 1702 | foreach ($platformMaps as $name => $value) { |
| 1703 | - if($name == 'linux_smarttv' |
|
| 1703 | + if ($name == 'linux_smarttv' |
|
| 1704 | 1704 | && stripos($this->_agent, 'linux') !== false |
| 1705 | - && stripos($this->_agent, 'SMART-TV') !== false ){ |
|
| 1705 | + && stripos($this->_agent, 'SMART-TV') !== false) { |
|
| 1706 | 1706 | $this->_platform = $value; |
| 1707 | 1707 | break; |
| 1708 | 1708 | } elseif (stripos($this->_agent, $name) !== false) { |