-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarregaLivros.php
217 lines (170 loc) · 7.8 KB
/
carregaLivros.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<?php
include_once "conexao.php";
include_once "Usuario.php";
if(!isset($_SESSION)) session_start();
$conexao = conexao::getConexao();
if(!isset($_SESSION["usuario"])){
header("location: index.php");
}
$dadosUsuario = $_SESSION["usuario"];
$nivelAcesso = $dadosUsuario->getNivelAcesso();
if($nivelAcesso != "A"){
header("location: index.php");
}
//Código acima - verificação de login
if(isset($_POST["min"]) && isset($_POST["txt"])){
$conexao = conexao::getConexao();
try{
$min = trim(addslashes($_POST["min"]));
$txt = htmlspecialchars(trim(addslashes($_POST["txt"])));
$tipo = trim(addslashes($_POST["tipo"]));
$genero = (trim(addslashes($_POST["genero"])) != "T") ? "AND gl.id_genero_tombo = " . trim(addslashes($_POST["genero"])) : "";
$livros = explode(',', $_POST["livros"]);
$instituicao = trim(addslashes($_POST["instituicao"]));
$comando = null;
if($tipo == "T"){
$comando = $conexao->prepare("SELECT l.cod_livro, l.tombo, l.titulo, l.insercao, l.isbn, l.img_livro, (e.quantidade - (SELECT COUNT(*) FROM locacao AS al WHERE al.id_exemplares = e.id_exemplares)), e.id_exemplares FROM livro AS l LEFT JOIN exemplares AS e ON e.livro_tombo_exemplares = l.cod_livro INNER JOIN genero_livro AS gl ON gl.id_livro_tombo = l.cod_livro WHERE (e.id_instituicao = :id OR l.tombo IS NULL) AND l.titulo LIKE :txt $genero GROUP BY e.id_exemplares ORDER BY l.titulo LIMIT $min, 10");
$comando->bindValue(":id", $instituicao);
$comando->bindValue(":txt", "%$txt%");
}else if($tipo == "TO"){
$comando = $conexao->prepare("SELECT l.cod_livro, l.tombo, l.titulo, l.insercao, l.isbn, l.img_livro, (e.quantidade - (SELECT COUNT(*) FROM locacao AS al WHERE al.id_exemplares = e.id_exemplares)), e.id_exemplares FROM livro AS l LEFT JOIN exemplares AS e ON e.livro_tombo_exemplares = l.cod_livro INNER JOIN genero_livro AS gl ON gl.id_livro_tombo = l.cod_livro WHERE e.id_instituicao = :id AND l.tombo LIKE :txt $genero GROUP BY e.id_exemplares ORDER BY l.titulo LIMIT $min, 10");
$comando->bindValue(":id", $instituicao);
$comando->bindValue(":txt", "%$txt%");
}else{
$comando = $conexao->prepare("SELECT l.cod_livro, l.tombo, l.titulo, l.insercao, l.isbn, l.img_livro, (e.quantidade - (SELECT COUNT(*) FROM locacao AS al WHERE al.id_exemplares = e.id_exemplares)), e.id_exemplares FROM livro AS l LEFT JOIN exemplares AS e ON e.livro_tombo_exemplares = l.cod_livro INNER JOIN genero_livro AS gl ON gl.id_livro_tombo = l.cod_livro WHERE e.id_instituicao = :id AND l.isbn LIKE :txt $genero GROUP BY e.id_exemplares ORDER BY l.titulo LIMIT $min, 10");
$comando->bindValue(":id", $instituicao);
$comando->bindValue(":txt", "%$txt%");
}
$comando->execute();
$dados = $comando->fetchAll();
$html = null;
if(count($dados) > 0){
foreach($dados as $valor){
$generos = null;
$autores = null;
$codigo = htmlspecialchars($valor[0]);
//Pegando os generos do livro
$comando = $conexao->prepare("SELECT g.nome_genero FROM genero AS g INNER JOIN genero_livro AS gl ON gl.id_genero_tombo = g.id_genero WHERE gl.id_livro_tombo = :id");
$comando->bindParam(":id", $codigo);
$comando->execute();
$dadosG = $comando->fetchAll();
foreach($dadosG as $valorG){
$generos .= htmlspecialchars($valorG[0]) . ", ";
}
//Pegando os autores do livro
$comando = $conexao->prepare("SELECT a.nome_autor FROM autor AS a INNER JOIN autor_livro AS al ON al.id_autor_tombo = a.id_autor WHERE al.id_livro_tombo = :id");
$comando->bindParam(":id", $codigo);
$comando->execute();
$dadosA = $comando->fetchAll();
foreach($dadosA as $valorA){
$autores .= htmlspecialchars($valorA[0]) . ", ";
}
//Carregando os dados
$tombo = htmlspecialchars($valor[1]);
$titulo = htmlspecialchars($valor[2]);
$insercao = explode("-", htmlspecialchars($valor[3]));
$insercao = $insercao[2] . "/" . $insercao[1] . "/" . $insercao[0];
$isbn = htmlspecialchars($valor[4]);
$img = base64_encode($valor[5]);
$qtde = htmlspecialchars($valor[6]);
$codigoExemplar = htmlspecialchars($valor[7]);
$generos = substr($generos, 0, strlen($generos) - 2);
$autores = substr($autores, 0, strlen($autores) - 2);
//Verificando instituições no sistema
$opcoes = null;
$comando = $conexao->prepare("SELECT * FROM instituicao LIMIT 2");
$comando->execute();
if(count($comando->fetchAll()) > 1){
$opcoes = "<a href='exportarExemplares.php?codL=$codigo&codE=$codigoExemplar'><i class='fas fa-file-export' title='Exportar exemplares'></i></a>
<i class='fas fa-trash-alt' title='Excluir' onclick='abreMoldalSenha($codigoExemplar, $codigo)'></i>
<a href='editLivro.php?codL=$codigo&codE=$codigoExemplar'><i class='fas fa-pencil-alt' title='Editar'></i></a>";
}else{
$opcoes = "<i class='fas fa-trash-alt' title='Excluir' onclick='abreMoldalSenha($codigoExemplar, $codigo)'></i>
<a href='editLivro.php?codL=$codigo&codE=$codigoExemplar'><i class='fas fa-pencil-alt' title='Editar'></i></a>";
}
if(strlen($tombo) > 0){
if(in_array($codigoExemplar, $livros)){
$html .= "<tr class='dadoInfo'>
<td><input type='checkbox' checked onchange='selecionaLivro($codigoExemplar)'></td>
<td><img src='data:image/jpg;base64,$img'></td>
<td>$tombo</td>
<td>$titulo</td>
<td>$autores</td>
<td>$generos</td>
<td>$qtde</td>
<td>$insercao</td>
<td>$isbn</td>
<td>
$opcoes
</td>
<tr>";
}else{
$html .= "<tr class='dadoInfo'>
<td><input type='checkbox' onchange='selecionaLivro($codigoExemplar)'></td>
<td><img src='data:image/jpg;base64,$img'></td>
<td>$tombo</td>
<td>$titulo</td>
<td>$autores</td>
<td>$generos</td>
<td>$qtde</td>
<td>$insercao</td>
<td>$isbn</td>
<td>
$opcoes
</td>
<tr>";
}
}else{
$html .= "<tr class='dadoInfo'>
<td>Opção inacessível</td>
<td><img src='data:image/jpg;base64,$img'></td>
<td>$tombo</td>
<td>$titulo</td>
<td>$autores</td>
<td>$generos</td>
<td>$qtde</td>
<td>$insercao</td>
<td>$isbn</td>
<td>
<i class='fas fa-trash-alt' title='Excluir' onclick='abreMoldalSenha(0, $codigo)'></i>
<a href='editLivroPDF.php?codL=$codigo'><i class='fas fa-pencil-alt' title='Editar'></i></a>
</td>
<tr>";
}
}
if(count($dados) >= 10){
$html .= "<tr id='carregarMaisTable'>
<td colspan='12'><button class='btnCarr' onclick='carregaLivro(this)'><i class='fas fa-plus'></i></button></td>
</tr>";
}
}else{
if($min == 0 && strlen($txt) == 0){
$html .= "<tr>
<td colspan='12'><h4>Não foi possivel localizar nenhum livro cadastrado com o filtros requisitados!</h4></td>
</tr>";
}else if(strlen($txt) > 0){
if($tipo == "T"){
$html .= "<tr>
<td colspan='12'><h4>Não foi possivel localizar nenhum livro cadastrado com o titulo '$txt'</h4></td>
</tr>";
}else if($tipo == "TO"){
$html .= "<tr>
<td colspan='12'><h4>Não foi possivel localizar nenhum livro cadastrado com o tombo '$txt'</h4></td>
</tr>";
}else{
$html .= "<tr>
<td colspan='12'><h4>Não foi possivel localizar nenhum livro cadastrado com o ISBN '$txt'</h4></td>
</tr>";
}
}
}
echo $html;
}catch(Exception $ex){
echo "<tr id='carregarMaisTable'>
<td colspan='12'><button class='btnCarr' onclick='carregaLivro(this)'><i class='fas fa-plus'></i></button></td>
</tr>";
}
}else{
header("location: alunos.php");
}
?>