-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
159 lines (146 loc) · 6.77 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<?php
include_once 'class/SQL.php';
$sql = new SQL();
$dados['TABLE_NAME'] = '';
foreach ($sql->executaSQL($dados, "TABLES", "SELECT", "TABLE_SCHEMA = 'colegioMetodo'") as $tabelas) {
$dados['COLUMN_NAME'] = '';
$dados['DATA_TYPE'] = '';
$dados['CHARACTER_MAXIMUM_LENGTH'] = '';
$dados['COLUMN_TYPE'] = '';
foreach ($sql->executaSQL($dados, 'COLUMNS', 'SELECT', 'TABLE_SCHEMA = "colegioMetodo" AND TABLE_NAME = "' . $tabelas['TABLE_NAME'] . '"') as $result) {
$array['atributos'][] = $result['COLUMN_NAME'];
$array['tipo'][] = $result['DATA_TYPE'];
$array['tamanho'][] = $result['CHARACTER_MAXIMUM_LENGTH'];
$array['resulno'][] = $result['COLUMN_TYPE'];
}
//Criando a class
//Inicio da class
$incial = 'include_once "DAO.php";
include_once "../funcoes/Data.php";
/**
* Gerada automaticamente pelo sistema.<br>
* Description of ' . $tabelas['TABLE_NAME'] . '
*
* @author João Paulo
*/
class ' . ucfirst($tabelas['TABLE_NAME']) . ' extends DAO {
';
$total = count($array['atributos']);
for ($i = 0; $i < $total; $i++) {
$atributos = $array['atributos'][$i];
$tipo = $array['tipo'][$i];
$tamanho = $array['tamanho'][$i];
$resuno = $array['resulno'][$i];
$private .= '/**
* Valor adequado para a varivel deve ser ' . $resuno . '
* @var ' . $tipo . '
*/
';
$private .= 'private $' . $atributos . ';
';
$set .= '/**
* Setando um novo valor para ' . $resuno . '
* @param ' . $tipo . ' $' . $atributos . '
*/';
$set .= 'public function set' . ucfirst($atributos) . '($' . $atributos . ') {
if(!empty($' . $atributos . ')){
$this->' . $atributos . ' = $' . $atributos . ';
}
}';
$set .= '/**
* Valor do atributo ' . $atributos . '
* @return ' . $tipo . '
*/
';
$set .= 'public function get' . ucfirst($atributos) . '() {
return $this->' . $atributos . ';
}';
}
unset ($array);
$final .= '/**
* Instancia o objeto
*/
public function __construct() {
parent::__construct("' . $tabelas['TABLE_NAME'] . '");
$this->idUsuario = 2;
}';
$final .= '/**
* Colocar todos os dados dentro de um objeto. passando um Array com a possição e o seu valor
* @param array $array
*/
public function todosDados($array) {
parent::todosDados($array, $this);
}';
$final .= '/**
* Grava os dados do objeto na tabela.
*/
public function gravar() {
try {
if (!$this->validar()) {
throw new Exception("Campos Obrigatoris não preenchidos.");
}
converteData($this->dataCadastro);
return parent::gravar($this->buscarTodos());
} catch (Exception $erro) {
echo $erro->getMessage();
}
}';
$final .= '/**
* Altera os dados
*/
public function alterar() {
if (!$this->validar()) {
throw new Exception("Campos Obrigatoris não preenchidos.");
}
parent::alterar($this->buscarTodos());
}';
$final .= '/**
* Seleciona o dado passado
*
* @param int $id
*/
public function seleciona($id) {
parent::seleciona($id, $this);
desConverteData($this->dataCadastro);
}';
$final .= '/**
* Seleciona o dado passado
*
* @param int $id
*/
private function buscarTodos() {
$reflector = new ReflectionClass($this);
//Now get all the properties from class A in to $properties array
$properties = $reflector->getProperties();
//Now go through the $properties array and populate each property
foreach ($properties as $property) {
$nome = $property->getName();
$dados[$nome] = $this->$nome;
}
return $dados;
}';
$final .= '/**
* Valida a função para saber se esta tudo correto para ser gravado.
*/
private function validar() { return true;}';
$fp = fopen('classGeradas/'.ucfirst($tabelas['TABLE_NAME']).".php", "a");
$escrito = fwrite($fp, "<?\n");
$escrito = fwrite($fp, $incial);
$escrito = fwrite($fp, $private);
$escrito = fwrite($fp, $set);
$escrito = fwrite($fp, $final);
$escrito = fwrite($fp, "\n} ?>");
fclose($fp);
echo "Arquivo ".ucfirst($tabelas['TABLE_NAME'])." escrito com sucesso.<br>";
$incial = $private = $set = $final = "";
}
?>
</body>
</html>