-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcargarLibro.php
277 lines (241 loc) · 7.01 KB
/
cargarLibro.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<?php
/**
* @author iberlot
* @version 20151223
* @package Mytthos
* @category Admin
*
* Encargado de la carga de libros
*
*/
require_once ("Config/includes.php");
$idSaga = $_REQUEST ["idSaga"];
$retTotal = $_REQUEST ["retTotal"];
echo "<table>\n";
$directorio = "Biblioteca";
$archivo = scandir ($directorio);
?>
<html>
<HEAD>
<TITLE>Carga de Libros</TITLE>
</HEAD>
<BODY>
<div id='content'>
<div id="separadorh"></div>
<legend>
<h3>Carga de Libros</h3>
</legend>
<div id="separadorh"></div>
<div id='cuerpo' align='center'>
<fieldset>
<form method="POST" action="#" enctype="multipart/form-data">
Orden: <br>
<input type="number" name="orden">
<br>
<br> Titulo: <br>
<input type="text" name="titulo">
<br>
<br> Saga: <br>
<div class="ui-widget">
<select name='idSaga' id='idSaga'>
<?php
$sqlSaga = "SELECT * FROM Saga";
$result = mysqli_query ($link, $sqlSaga) or die ('Query error: ' . mysqli_error ($link));
while ($row2 = mysqli_fetch_array ($result, MYSQLI_ASSOC))
{
if ($idSaga == $row2 ['idSaga'])
{
$sel = ' selected="selected" ';
}
else
{
$sel = '';
}
$combobit2 = ' <option value=' . $row2 ['idSaga'] . $sel . '>' . substr ($row2 ['titulo'], 0, 50) . ' </option>'; // concatenamos el los options para luego ser insertado en el HTML
echo $combobit2;
}
?>
</select>
</div>
<br>
<br> Cantidad de Capitulos: <br>
<input type="number" name="cantCapitulos">
<br>
<br> Año: <br>
<input type="number" min="1400" max="2016" name="anioEdicion">
<br>
<br> Reseña: <br>
<textarea name="descripcion" rows="10" cols="40">Descripcion</textarea>
<br>
<br> Imagen: <br>
<input type=file name="imagen">
<br>
<br> Direccion YouTube: <br> <input type="text" name="Youtube">
<br>
<br>
<input type='hidden' name='retTotal' value='<?php echo $retTotal; ?>'>
<input type='hidden' name='darDeAlta' value='1'>
<input type="Submit" value="Dar de Alta">
</form>
</fieldset>
</div>
</div>
</BODY>
</html>
<script>
$(document).ready(function() { $("#idSaga").select2(); });
</script>
<?php
/**
* inciamos el prosesamiento de datos en caso de que reciva el parametro "darDeAlta" en 1
*/
if ((isset ($_REQUEST ['darDeAlta'])) and ($_REQUEST ['darDeAlta'] == 1))
{
if (isset ($_REQUEST ['orden']))
{
$orden = trim ($_REQUEST ['orden']);
}
if (isset ($_REQUEST ['titulo']))
{
$titulo = trim ($_REQUEST ['titulo']);
$titulo = ucfirst (strtolower ($titulo));
}
if (isset ($_REQUEST ['idSaga']))
{
$idSaga = trim ($_REQUEST ['idSaga']);
$sqlSaga = "SELECT * FROM Saga WHERE idSaga = $idSaga";
$result = mysqli_query ($link, $sqlSaga) or die ('Query error: ' . mysqli_error ($link));
$row2 = mysqli_fetch_array ($result, MYSQLI_ASSOC);
$tituloSaga = trim ($row2 ['titulo']);
$idAutor = trim ($row2 ['idAutor']);
}
if (isset ($_REQUEST ['cantCapitulos']))
{
$cantCapitulos = trim ($_REQUEST ['cantCapitulos']);
}
if (isset ($_REQUEST ['anioEdicion']))
{
$anioEdicion = trim ($_REQUEST ['anioEdicion']);
}
if (isset ($_REQUEST ['descripcion']))
{
$descripcion = trim ($_REQUEST ['descripcion']);
$descripcion = htmlentities ($descripcion, ENT_QUOTES);
$descripcion = htmlspecialchars ($descripcion, ENT_QUOTES);
}
if (isset ($_REQUEST ['Youtube']))
{
$codigoYouTube = trim ($_REQUEST ['Youtube']);
}
if (isset ($_FILES ['imagen']) and $_FILES ['imagen'] ['size'] > 1)
{
$nombre_tmp = $_FILES ['imagen'] ['tmp_name'];
$nombre = $_FILES ['imagen'] ['name'];
$tipo = $_FILES ['imagen'] ['type'];
$tamano = $_FILES ['imagen'] ['size'];
$ext_permitidas = array (
'pjpeg|jpeg|gif|png'
);
$partes_nombre = explode ('.', $nombre);
$extension = end ($partes_nombre);
$ext_correcta = in_array ($extension, $ext_permitidas);
$tipo_correcto = preg_match ('/^image\/(pjpeg|jpeg|gif|png|txt|doc|pdf|xls|sql|html|htm|php|sql)$/', $tipo);
$limite = 50000 * 1024;
if ($tamano <= $limite)
{
if ($_FILES ['imagen'] ['error'] > 0)
{
echo 'Error: ' . $_FILES ['imagen'] ['error'] . '<br/>' . var_dump ($_FILES) . " en linea " . __LINE__;
}
else
{
if (file_exists ($nombre))
{
echo '<br/>El archivo ya existe: ' . $nombre;
}
else
{
$estructura = "fotosLibros";
if (file_exists ($estructura))
{
move_uploaded_file ($nombre_tmp, $estructura . "/" . str_replace (' ', '_', $titulo) . "." . $extension) or die (" Error en move_uploaded_file " . var_dump (move_uploaded_file) . " en linea " . __LINE__);
chmod ($estructura . "/" . str_replace (' ', '_', $titulo . "." . $extension), 0775);
}
else
{
mkdir ($estructura, 0777, true);
move_uploaded_file ($nombre_tmp, $estructura . "/" . str_replace (' ', '_', $titulo) . "." . $extension) or die (" Error en move_uploaded_file " . var_dump (move_uploaded_file) . " en linea " . __LINE__);
chmod ($estructura . "/" . str_replace (' ', '_', $titulo . "." . $extension), 0775);
}
}
}
$imagen = str_replace (' ', '_', $titulo);
$imagen = $imagen . "." . $extension;
}
else
{
echo 'Archivo inválido';
}
}
if ($imagen == "")
{
$imagen = " ";
}
$sqlAutor = "SELECT * FROM Autor WHERE idAutor = $idAutor";
$result = mysqli_query ($link, $sqlAutor) or die ('Query error: ' . mysqli_error ($link));
$row2 = mysqli_fetch_array ($result, MYSQLI_ASSOC);
$apellido = trim ($row2 ['apellido']);
$realname = trim ($row2 ['nombre']);
$segname = trim ($row2 ['segNombre']);
if ($segname != "")
{
$direCarpeta = $apellido . "_" . $realname . "_" . $segname;
}
else
{
$direCarpeta = $apellido . "_" . $realname;
}
$tituloCarpetaSaga = str_replace (' ', '_', $tituloSaga);
$tituloCarpeta = str_replace (' ', '_', $titulo);
$tituloCarpeta = $direCarpeta . "/" . $tituloCarpetaSaga . "/" . str_pad ($orden, 2, "0", STR_PAD_LEFT) . "-" . $tituloCarpeta;
// print($tituloCarpeta);
if (! file_exists ("Biblioteca/" . $tituloCarpeta))
{
mkdir ("Biblioteca/" . $tituloCarpeta, 0775, true);
}
$sqlInsertLibro = "INSERT INTO Libro(
titulo,
idAutor,
idSaga,
ordenSaga,
cantCap,
anio,
resenia,
imagen,
ListaDeRepr)
VALUES (
'$titulo',
'$idAutor',
'$idSaga',
'$orden',
'$cantCapitulos',
'$anioEdicion',
'$descripcion',
'$imagen',
'$codigoYouTube'
)";
if (mysqli_query ($link, $sqlInsertLibro) or die ('Query error: ' . mysqli_error ($link) . ' - ' .$sqlInsertLibro))
{
echo '<div id="dialog" title="Correcto" style="display: none;"><p>Datos Guardados!!!</p>';
echo '</div>';
if($retTotal == 1)
{
header("location:Total.php");
}
}
}
/* liberar la serie de resultados */
@mysqli_free_result ($result);
/* cerrar la conexión */
mysqli_close ($link);
?>