@@ -11,78 +11,78 @@ discard block |
||
| 11 | 11 | abstract class AbstractAdapter |
| 12 | 12 | { |
| 13 | 13 | |
| 14 | - protected $arrConfig = array ( |
|
| 14 | + protected $arrConfig = array( |
|
| 15 | 15 | ############################# DATABASE |
| 16 | 16 | //Driver do banco de dados |
| 17 | - 'driver' => null , |
|
| 17 | + 'driver' => null, |
|
| 18 | 18 | //Nome do banco de dados |
| 19 | - 'database' => null , |
|
| 19 | + 'database' => null, |
|
| 20 | 20 | //Host do banco |
| 21 | - 'host' => 'localhost' , |
|
| 21 | + 'host' => 'localhost', |
|
| 22 | 22 | //Port do banco |
| 23 | - 'port' => '' , |
|
| 23 | + 'port' => '', |
|
| 24 | 24 | //usuario do banco |
| 25 | - 'username' => null , |
|
| 25 | + 'username' => null, |
|
| 26 | 26 | //senha do banco |
| 27 | - 'password' => null , |
|
| 27 | + 'password' => null, |
|
| 28 | 28 | // lista de schemas do banco de dados |
| 29 | - 'schema' => array () , |
|
| 29 | + 'schema' => array(), |
|
| 30 | 30 | |
| 31 | - 'socket' => null , |
|
| 31 | + 'socket' => null, |
|
| 32 | 32 | |
| 33 | 33 | ########################### DOCS |
| 34 | 34 | // autor que gerou o script |
| 35 | - 'author' => "Pedro" , |
|
| 36 | - 'license' => "New BSD License" , |
|
| 37 | - 'copyright' => "DAO Generator-Pedro151" , |
|
| 38 | - 'link' => 'https://github.com/pedro151' , |
|
| 35 | + 'author' => "Pedro", |
|
| 36 | + 'license' => "New BSD License", |
|
| 37 | + 'copyright' => "DAO Generator-Pedro151", |
|
| 38 | + 'link' => 'https://github.com/pedro151', |
|
| 39 | 39 | // data que foi gerado o script |
| 40 | - 'last_modify' => null , |
|
| 40 | + 'last_modify' => null, |
|
| 41 | 41 | |
| 42 | 42 | ########################## Ambiente/Arquivos |
| 43 | 43 | |
| 44 | 44 | // Nome do framework para o adapter |
| 45 | - 'framework' => null , |
|
| 45 | + 'framework' => null, |
|
| 46 | 46 | // namespace das classes |
| 47 | - 'namespace' => "" , |
|
| 47 | + 'namespace' => "", |
|
| 48 | 48 | // caminho onde os arquivos devem ser criados |
| 49 | - 'path' => 'models' , |
|
| 49 | + 'path' => 'models', |
|
| 50 | 50 | // flag para gerar pasta com o nome do driver do banco de dados |
| 51 | - 'folder-database' => 0 , |
|
| 51 | + 'folder-database' => 0, |
|
| 52 | 52 | |
| 53 | 53 | ############################## Comandos adicionais |
| 54 | 54 | //flag para mostrar o status da execução ao termino do processo |
| 55 | - 'status' => false , |
|
| 55 | + 'status' => false, |
|
| 56 | 56 | // flags para criar todas as tabelas ou nao |
| 57 | - 'allTables' => true , |
|
| 57 | + 'allTables' => true, |
|
| 58 | 58 | //Lista de tabelas a serem ignoradas |
| 59 | - 'ignoreTable' => array () , |
|
| 59 | + 'ignoreTable' => array(), |
|
| 60 | 60 | ); |
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | 63 | * @var string[] um array com todos os campos obrigatorios |
| 64 | 64 | */ |
| 65 | - protected $attRequered = array ( |
|
| 66 | - 'driver' => true , |
|
| 67 | - 'database' => true , |
|
| 68 | - 'host' => true , |
|
| 69 | - 'username' => true , |
|
| 65 | + protected $attRequered = array( |
|
| 66 | + 'driver' => true, |
|
| 67 | + 'database' => true, |
|
| 68 | + 'host' => true, |
|
| 69 | + 'username' => true, |
|
| 70 | 70 | // 'password' => true , |
| 71 | 71 | 'path' => true |
| 72 | 72 | ); |
| 73 | 73 | |
| 74 | - protected $arrFunc = array (); |
|
| 74 | + protected $arrFunc = array(); |
|
| 75 | 75 | |
| 76 | - private $framworkFiles = array (); |
|
| 76 | + private $framworkFiles = array(); |
|
| 77 | 77 | |
| 78 | 78 | /** |
| 79 | 79 | * verifica se todos valores obrigatorios tem valor |
| 80 | 80 | * |
| 81 | 81 | * @return bool |
| 82 | 82 | */ |
| 83 | - protected function checkConfig () |
|
| 83 | + protected function checkConfig() |
|
| 84 | 84 | { |
| 85 | - if ( array_diff_key ( $this->attRequered , array_filter ( $this->arrConfig ) ) ) |
|
| 85 | + if (array_diff_key($this->attRequered, array_filter($this->arrConfig))) |
|
| 86 | 86 | { |
| 87 | 87 | return false; |
| 88 | 88 | } |
@@ -95,47 +95,47 @@ discard block |
||
| 95 | 95 | * |
| 96 | 96 | * @return array |
| 97 | 97 | */ |
| 98 | - abstract protected function getParams (); |
|
| 98 | + abstract protected function getParams(); |
|
| 99 | 99 | |
| 100 | 100 | /** |
| 101 | 101 | * Popula as config do generater com as configuraçoes do framework |
| 102 | 102 | * |
| 103 | 103 | * @return mixed |
| 104 | 104 | */ |
| 105 | - abstract protected function parseFrameworkConfig (); |
|
| 105 | + abstract protected function parseFrameworkConfig(); |
|
| 106 | 106 | |
| 107 | 107 | /** |
| 108 | 108 | * @param \Classes\Db\DbTable|\Classes\Db\Constrant $table |
| 109 | 109 | * |
| 110 | 110 | * @return mixed |
| 111 | 111 | */ |
| 112 | - abstract public function createClassNamespace ( $table ); |
|
| 112 | + abstract public function createClassNamespace($table); |
|
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | 115 | * Cria Instancias dos arquivos que devem ser gerados |
| 116 | 116 | * |
| 117 | 117 | * @return \Classes\AdapterMakerFile\AbstractAdapter[] |
| 118 | 118 | */ |
| 119 | - abstract public function getMakeFileInstances (); |
|
| 119 | + abstract public function getMakeFileInstances(); |
|
| 120 | 120 | |
| 121 | - abstract protected function init (); |
|
| 121 | + abstract protected function init(); |
|
| 122 | 122 | |
| 123 | - public function __construct ( $array ) |
|
| 123 | + public function __construct($array) |
|
| 124 | 124 | { |
| 125 | - $array += array ( |
|
| 126 | - 'author' => ucfirst ( get_current_user () ) , |
|
| 127 | - 'last_modify' => date ( "d-m-Y H:i:s." ) |
|
| 125 | + $array += array( |
|
| 126 | + 'author' => ucfirst(get_current_user()), |
|
| 127 | + 'last_modify' => date("d-m-Y H:i:s.") |
|
| 128 | 128 | ); |
| 129 | 129 | |
| 130 | - $this->setFrameworkFiles ( $array ); |
|
| 131 | - $this->parseFrameworkConfig (); |
|
| 132 | - $this->setParams ( $this->getParams () ); |
|
| 133 | - $this->setParams ( $array ); |
|
| 134 | - $this->init (); |
|
| 135 | - if ( ! $this->isValid () ) |
|
| 130 | + $this->setFrameworkFiles($array); |
|
| 131 | + $this->parseFrameworkConfig(); |
|
| 132 | + $this->setParams($this->getParams()); |
|
| 133 | + $this->setParams($array); |
|
| 134 | + $this->init(); |
|
| 135 | + if ( ! $this->isValid()) |
|
| 136 | 136 | { |
| 137 | - $var = array_diff_key ( $this->attRequered , array_filter ( $this->arrConfig ) ); |
|
| 138 | - throw new Exception( $var ); |
|
| 137 | + $var = array_diff_key($this->attRequered, array_filter($this->arrConfig)); |
|
| 138 | + throw new Exception($var); |
|
| 139 | 139 | } |
| 140 | 140 | } |
| 141 | 141 | |
@@ -144,47 +144,47 @@ discard block |
||
| 144 | 144 | * |
| 145 | 145 | * @param $array |
| 146 | 146 | */ |
| 147 | - public function setFrameworkFiles ( $array ) |
|
| 147 | + public function setFrameworkFiles($array) |
|
| 148 | 148 | { |
| 149 | - $this->framworkFiles[ 'library' ] = isset( $array[ 'framework-path-library' ] ) |
|
| 150 | - ? $array[ 'framework-path-library' ] |
|
| 149 | + $this->framworkFiles['library'] = isset($array['framework-path-library']) |
|
| 150 | + ? $array['framework-path-library'] |
|
| 151 | 151 | : null; |
| 152 | 152 | |
| 153 | - $this->framworkFiles[ 'ini' ] = isset( $array[ 'framework-ini' ] ) |
|
| 154 | - ? $array[ 'framework-ini' ] |
|
| 153 | + $this->framworkFiles['ini'] = isset($array['framework-ini']) |
|
| 154 | + ? $array['framework-ini'] |
|
| 155 | 155 | : null; |
| 156 | 156 | |
| 157 | - $this->framworkFiles[ 'environment' ] = isset( $array[ 'environment' ] ) |
|
| 158 | - ? $array[ 'environment' ] |
|
| 157 | + $this->framworkFiles['environment'] = isset($array['environment']) |
|
| 158 | + ? $array['environment'] |
|
| 159 | 159 | : 'production'; |
| 160 | 160 | |
| 161 | 161 | } |
| 162 | 162 | |
| 163 | - protected function isValidFrameworkFiles () |
|
| 163 | + protected function isValidFrameworkFiles() |
|
| 164 | 164 | { |
| 165 | - if ( ! is_file ( $this->framworkFiles[ 'ini' ] ) ) |
|
| 165 | + if ( ! is_file($this->framworkFiles['ini'])) |
|
| 166 | 166 | { |
| 167 | 167 | return false; |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - if ( ! is_dir ( $this->framworkFiles[ 'library' ] ) ) |
|
| 170 | + if ( ! is_dir($this->framworkFiles['library'])) |
|
| 171 | 171 | { |
| 172 | 172 | return false; |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | 175 | |
| 176 | - if ( ! isset ( $this->framworkFiles[ 'environment' ] ) |
|
| 177 | - or empty( $this->framworkFiles[ 'environment' ] ) |
|
| 176 | + if ( ! isset ($this->framworkFiles['environment']) |
|
| 177 | + or empty($this->framworkFiles['environment']) |
|
| 178 | 178 | ) |
| 179 | 179 | { |
| 180 | 180 | return false; |
| 181 | 181 | } |
| 182 | - set_include_path ( |
|
| 183 | - implode ( |
|
| 184 | - PATH_SEPARATOR , |
|
| 185 | - array ( |
|
| 186 | - realpath ( $this->framworkFiles[ 'library' ] ) , |
|
| 187 | - get_include_path () , |
|
| 182 | + set_include_path( |
|
| 183 | + implode( |
|
| 184 | + PATH_SEPARATOR, |
|
| 185 | + array( |
|
| 186 | + realpath($this->framworkFiles['library']), |
|
| 187 | + get_include_path(), |
|
| 188 | 188 | ) |
| 189 | 189 | ) |
| 190 | 190 | ); |
@@ -192,120 +192,120 @@ discard block |
||
| 192 | 192 | return true; |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | - protected function getFrameworkIni () |
|
| 195 | + protected function getFrameworkIni() |
|
| 196 | 196 | { |
| 197 | - return $this->framworkFiles[ 'ini' ]; |
|
| 197 | + return $this->framworkFiles['ini']; |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | - protected function getEnvironment () |
|
| 200 | + protected function getEnvironment() |
|
| 201 | 201 | { |
| 202 | - return $this->framworkFiles[ 'environment' ]; |
|
| 202 | + return $this->framworkFiles['environment']; |
|
| 203 | 203 | } |
| 204 | 204 | |
| 205 | 205 | /** |
| 206 | 206 | * Popula as variaveis de acordo com o arquivo de configuração do seu framework |
| 207 | 207 | */ |
| 208 | - protected function isValid () |
|
| 208 | + protected function isValid() |
|
| 209 | 209 | { |
| 210 | - return $this->checkConfig (); |
|
| 210 | + return $this->checkConfig(); |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - private function setParams ( $array ) |
|
| 213 | + private function setParams($array) |
|
| 214 | 214 | { |
| 215 | - if ( count ( $array ) > 0 ) |
|
| 215 | + if (count($array) > 0) |
|
| 216 | 216 | { |
| 217 | - $this->arrConfig = array_filter ( $array ) + $this->arrConfig; |
|
| 217 | + $this->arrConfig = array_filter($array) + $this->arrConfig; |
|
| 218 | 218 | } |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | /** |
| 222 | 222 | * @return string |
| 223 | 223 | */ |
| 224 | - public function getDatabase () |
|
| 224 | + public function getDatabase() |
|
| 225 | 225 | { |
| 226 | - return $this->arrConfig[ 'database' ]; |
|
| 226 | + return $this->arrConfig['database']; |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | /** |
| 230 | 230 | * @return bool |
| 231 | 231 | */ |
| 232 | - public function hasSchemas () |
|
| 232 | + public function hasSchemas() |
|
| 233 | 233 | { |
| 234 | - return ! empty ( $this->arrConfig[ 'schema' ] ); |
|
| 234 | + return ! empty ($this->arrConfig['schema']); |
|
| 235 | 235 | } |
| 236 | 236 | |
| 237 | 237 | /** |
| 238 | 238 | * @return string[] |
| 239 | 239 | */ |
| 240 | - public function getSchemas () |
|
| 240 | + public function getSchemas() |
|
| 241 | 241 | { |
| 242 | - if ( is_string ( $this->arrConfig[ 'schema' ] ) ) |
|
| 242 | + if (is_string($this->arrConfig['schema'])) |
|
| 243 | 243 | { |
| 244 | - return array ( $this->arrConfig[ 'schema' ] ); |
|
| 244 | + return array($this->arrConfig['schema']); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - return $this->arrConfig[ 'schema' ]; |
|
| 247 | + return $this->arrConfig['schema']; |
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | - public function setSchema ( $schema ) |
|
| 250 | + public function setSchema($schema) |
|
| 251 | 251 | { |
| 252 | - $this->arrConfig[ 'schema' ] = $schema; |
|
| 252 | + $this->arrConfig['schema'] = $schema; |
|
| 253 | 253 | } |
| 254 | 254 | |
| 255 | 255 | /** |
| 256 | 256 | * @return string |
| 257 | 257 | */ |
| 258 | - public function getHost () |
|
| 258 | + public function getHost() |
|
| 259 | 259 | { |
| 260 | - return $this->arrConfig[ 'host' ]; |
|
| 260 | + return $this->arrConfig['host']; |
|
| 261 | 261 | } |
| 262 | 262 | |
| 263 | 263 | /** |
| 264 | 264 | * @return int |
| 265 | 265 | */ |
| 266 | - public function getPort () |
|
| 266 | + public function getPort() |
|
| 267 | 267 | { |
| 268 | - return $this->arrConfig[ 'port' ]; |
|
| 268 | + return $this->arrConfig['port']; |
|
| 269 | 269 | } |
| 270 | 270 | |
| 271 | 271 | /** |
| 272 | 272 | * @return boolean |
| 273 | 273 | */ |
| 274 | - public function hasPort () |
|
| 274 | + public function hasPort() |
|
| 275 | 275 | { |
| 276 | - return ! empty( $this->arrConfig[ 'port' ] ); |
|
| 276 | + return ! empty($this->arrConfig['port']); |
|
| 277 | 277 | } |
| 278 | 278 | |
| 279 | 279 | /** |
| 280 | 280 | * @return string |
| 281 | 281 | */ |
| 282 | - public function getSocket () |
|
| 282 | + public function getSocket() |
|
| 283 | 283 | { |
| 284 | - return $this->arrConfig[ 'socket' ]; |
|
| 284 | + return $this->arrConfig['socket']; |
|
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | /** |
| 288 | 288 | * @return string |
| 289 | 289 | */ |
| 290 | - public function getUser () |
|
| 290 | + public function getUser() |
|
| 291 | 291 | { |
| 292 | - return $this->arrConfig[ 'username' ]; |
|
| 292 | + return $this->arrConfig['username']; |
|
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | /** |
| 296 | 296 | * @return string |
| 297 | 297 | */ |
| 298 | - public function getPassword () |
|
| 298 | + public function getPassword() |
|
| 299 | 299 | { |
| 300 | - return $this->arrConfig[ 'password' ]; |
|
| 300 | + return $this->arrConfig['password']; |
|
| 301 | 301 | } |
| 302 | 302 | |
| 303 | 303 | /** |
| 304 | 304 | * @return bool |
| 305 | 305 | */ |
| 306 | - public function isStatusEnabled () |
|
| 306 | + public function isStatusEnabled() |
|
| 307 | 307 | { |
| 308 | - return (bool) $this->arrConfig[ 'status' ]; |
|
| 308 | + return (bool) $this->arrConfig['status']; |
|
| 309 | 309 | } |
| 310 | 310 | |
| 311 | 311 | /** |
@@ -313,23 +313,23 @@ discard block |
||
| 313 | 313 | * |
| 314 | 314 | * @return string |
| 315 | 315 | */ |
| 316 | - public function __get ( $str ) |
|
| 316 | + public function __get($str) |
|
| 317 | 317 | { |
| 318 | - $arr = array ( |
|
| 319 | - 'namespace' , |
|
| 320 | - 'framework' , |
|
| 321 | - 'author' , |
|
| 322 | - 'license' , |
|
| 323 | - 'copyright' , |
|
| 324 | - 'link' , |
|
| 325 | - 'last_modify' , |
|
| 326 | - 'path' , |
|
| 318 | + $arr = array( |
|
| 319 | + 'namespace', |
|
| 320 | + 'framework', |
|
| 321 | + 'author', |
|
| 322 | + 'license', |
|
| 323 | + 'copyright', |
|
| 324 | + 'link', |
|
| 325 | + 'last_modify', |
|
| 326 | + 'path', |
|
| 327 | 327 | 'folder-database' |
| 328 | 328 | ); |
| 329 | 329 | |
| 330 | - if ( in_array ( $str , $arr ) ) |
|
| 330 | + if (in_array($str, $arr)) |
|
| 331 | 331 | { |
| 332 | - return $this->arrConfig[ strtolower ( $str ) ]; |
|
| 332 | + return $this->arrConfig[strtolower($str)]; |
|
| 333 | 333 | } |
| 334 | 334 | |
| 335 | 335 | return; |
@@ -11,29 +11,29 @@ discard block |
||
| 11 | 11 | /** |
| 12 | 12 | * @type AbstractAdapter[] |
| 13 | 13 | */ |
| 14 | - private static $_instance = array (); |
|
| 14 | + private static $_instance = array(); |
|
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | 17 | * |
| 18 | 18 | */ |
| 19 | - final private function __construct () |
|
| 19 | + final private function __construct() |
|
| 20 | 20 | { |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | /** |
| 24 | 24 | * @return \Classes\AdapterMakerFile\AbstractAdapter |
| 25 | 25 | */ |
| 26 | - public static function getInstance () |
|
| 26 | + public static function getInstance() |
|
| 27 | 27 | { |
| 28 | - $class = get_called_class (); |
|
| 29 | - $arr = explode ( '\\', $class ); |
|
| 30 | - $classEnd = end ( $arr ); |
|
| 31 | - if ( !isset( self::$_instance[ $classEnd ] ) ) |
|
| 28 | + $class = get_called_class(); |
|
| 29 | + $arr = explode('\\', $class); |
|
| 30 | + $classEnd = end($arr); |
|
| 31 | + if ( ! isset(self::$_instance[$classEnd])) |
|
| 32 | 32 | { |
| 33 | - self::$_instance[ $classEnd ] = new $class(); |
|
| 33 | + self::$_instance[$classEnd] = new $class(); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | - return self::$_instance[ $classEnd ]; |
|
| 36 | + return self::$_instance[$classEnd]; |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | * |
| 43 | 43 | * @return array |
| 44 | 44 | */ |
| 45 | - abstract public function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable ); |
|
| 45 | + abstract public function parseRelation(\Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable); |
|
| 46 | 46 | |
| 47 | 47 | /** |
| 48 | 48 | * @type string |
@@ -74,15 +74,15 @@ discard block |
||
| 74 | 74 | * |
| 75 | 75 | * @return bool |
| 76 | 76 | */ |
| 77 | - public function hasDiretory () |
|
| 77 | + public function hasDiretory() |
|
| 78 | 78 | { |
| 79 | - return !empty( $this->pastName ); |
|
| 79 | + return ! empty($this->pastName); |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
| 83 | 83 | * @return string |
| 84 | 84 | */ |
| 85 | - public function getParentClass () |
|
| 85 | + public function getParentClass() |
|
| 86 | 86 | { |
| 87 | 87 | return $this->parentClass; |
| 88 | 88 | } |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | /** |
| 92 | 92 | * @return string |
| 93 | 93 | */ |
| 94 | - public function getFileTpl () |
|
| 94 | + public function getFileTpl() |
|
| 95 | 95 | { |
| 96 | 96 | return $this->fileTpl; |
| 97 | 97 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | /** |
| 100 | 100 | * @return string |
| 101 | 101 | */ |
| 102 | - public function getParentFileTpl () |
|
| 102 | + public function getParentFileTpl() |
|
| 103 | 103 | { |
| 104 | 104 | return $this->parentFileTpl; |
| 105 | 105 | } |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | /** |
| 108 | 108 | * @return string |
| 109 | 109 | */ |
| 110 | - public function getPastName () |
|
| 110 | + public function getPastName() |
|
| 111 | 111 | { |
| 112 | 112 | return $this->pastName; |
| 113 | 113 | } |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | /** |
| 116 | 116 | * @return bool |
| 117 | 117 | */ |
| 118 | - public function isOverwrite () |
|
| 118 | + public function isOverwrite() |
|
| 119 | 119 | { |
| 120 | 120 | return $this->overwrite; |
| 121 | 121 | } |