-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
149 lines (133 loc) · 6.32 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
<?php
ini_set('max_execution_time', 99999); //300 seconds = 5 minutes
header("Content-Type: text/html; charset=UTF-8");
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
include 'phpQuery.php';
include 'funciones.php';
// include 'evento.php';
include 'bitly.php';
include 'ImageResize.php';
/*LOCAL
$ruta_destino = "/home/fermin/Escritorio/htdocs/espectaculos_crawler/imagen_eventos_convertidas/";
*/
$ruta_destino = "/var/www/vhosts/espectaculospamplona.com/httpdocs/crawler/imagen_eventos_convertidas/";
$ruta_destino_ftp_imagen_principal = "/httpdocs/images/eventos/principal/";
$ruta_destino_ftp_imagen_peque = "/httpdocs/images/eventos/principal/thumbs/";
try {
$tiempo_inicio=time();
$funciones = new Funciones();
//1) Obtengo todos los eventos
//2) Por cada evento
//2.0) Compruebo si existe ya ese evento
//2.1) Genero imagen grande y pequeña
//2.2) Subo imagenes al ftp
//2.3) Guardo evento en bbdd
$link = $funciones->connect_db();
// 1º Baluarte
$eventosBaluarte = $funciones->traerEventosBaluarte();
foreach ($eventosBaluarte as $key => $evento) {
if(!$funciones->existeEvento($link,$evento)){
//Si no está ya incluido
$nombre_imagen = $funciones->generateRandomString() . $funciones->slug($evento[0]);
if(strpos($evento[10], '.jpg') !== false || strpos($evento[10], '.png') !== false ){
$tipoImagen = $funciones->guardarImagenBaluarte($evento[10],$ruta_destino,$nombre_imagen);
//Imagen Grande
$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Baluarte586x196'.$tipoImagen,$ruta_destino_ftp_imagen_principal);
//Imagen Pequeña
$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Baluarte80x80'.$tipoImagen,$ruta_destino_ftp_imagen_peque);
//Guardar evento
$funciones->insertarEvento($link,$evento,$nombre_imagen.'Baluarte586x196'.$tipoImagen,$nombre_imagen.'Baluarte80x80'.$tipoImagen);
}else{
$evento[10] = "";
$funciones->insertarEvento($link,$evento,'586x196_no_foto.png','80x80_no_foto.png');
}
}
}
// 2º Barañain
$eventosBaranain = $funciones->traerEventosBaranain();
foreach ($eventosBaranain as $key => $evento) {
if(!$funciones->existeEvento($link,$evento)){
//Si no está ya incluido
$nombre_imagen = $funciones->generateRandomString() . $funciones->slug($evento[0]);
if(strpos($evento[10], '.jpg') !== false || strpos($evento[10], '.png') !== false ){
$tipoImagen = $funciones->guardarImagenBaranain($evento[10],$ruta_destino,$nombre_imagen);
//Imagen Grande
$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Baranain586x196'.$tipoImagen,$ruta_destino_ftp_imagen_principal);
//Imagen Pequeña
$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Baranain80x80'.$tipoImagen,$ruta_destino_ftp_imagen_peque);
//Guardar evento
$funciones->insertarEvento($link,$evento,$nombre_imagen.'Baranain586x196'.$tipoImagen,$nombre_imagen.'Baranain80x80'.$tipoImagen);
}else{
$evento[10] = "";
$funciones->insertarEvento($link,$evento,'586x196_no_foto.png','80x80_no_foto.png');
}
}
}
//3º Gayarre
$eventosGayarre = $funciones->traerEventosGayarre();
foreach ($eventosGayarre as $key => $evento) {
if(!$funciones->existeEvento($link,$evento)){
//Si no está ya incluido
$nombre_imagen = $funciones->generateRandomString() . $funciones->slug($evento[0]);
// if(strpos($evento[10], '.jpg') !== false || strpos($evento[10], '.png') !== false ){
// $tipoImagen = $funciones->guardarImagenGayarre($evento[10],$ruta_destino,$nombre_imagen);
// //Imagen Grande
// //$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Gayarre586x196'.$tipoImagen,$ruta_destino_ftp_imagen_principal);
// //Imagen Pequeña
// //$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Gayarre80x80'.$tipoImagen,$ruta_destino_ftp_imagen_peque);
// //Guardar evento
// $funciones->insertarEvento($link,$evento,$nombre_imagen.'Gayarre586x196'.$tipoImagen,$nombre_imagen.'Gayarre80x80'.$tipoImagen);
// }else{
$evento[10] = "";
$funciones->insertarEvento($link,$evento,'586x196_no_foto.png','80x80_no_foto.png');
// }
}
}
//4º Museo
$eventosMuseo = $funciones->traerEventosMuseo();
foreach ($eventosMuseo as $key => $evento) {
if(!$funciones->existeEvento($link,$evento)){
//Si no está ya incluido
$nombre_imagen = $funciones->generateRandomString() . $funciones->slug($evento[0]);
if(strpos($evento[10], '.jpg') !== false || strpos($evento[10], '.png') !== false ){
$tipoImagen = $funciones->guardarImagenMuseo($evento[10],$ruta_destino,$nombre_imagen);
//Imagen Grande
$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Museo586x196'.$tipoImagen,$ruta_destino_ftp_imagen_principal);
//Imagen Pequeña
$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Museo80x80'.$tipoImagen,$ruta_destino_ftp_imagen_peque);
//Guardar evento
$funciones->insertarEvento($link,$evento,$nombre_imagen.'Museo586x196'.$tipoImagen,$nombre_imagen.'Museo80x80'.$tipoImagen);
}else{
$evento[10] = "";
$funciones->insertarEvento($link,$evento,'586x196_no_foto.png','80x80_no_foto.png');
}
}
}
//5º Zentral
$eventosZentral = $funciones->traerEventosZentral();
foreach ($eventosZentral as $key => $evento) {
if(!$funciones->existeEvento($link,$evento)){
//Si no está ya incluido
$nombre_imagen = $funciones->generateRandomString() . $funciones->slug($evento[0]);
if(strpos($evento[10], '.jpg') !== false || strpos($evento[10], '.png') !== false ){
$tipoImagen = $funciones->guardarImagenZentral($evento[10],$ruta_destino,$nombre_imagen);
//Imagen Grande
$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Zentral586x196'.$tipoImagen,$ruta_destino_ftp_imagen_principal);
//Imagen Pequeña
$funciones->subir_ftp($ruta_destino,$nombre_imagen.'Zentral80x80'.$tipoImagen,$ruta_destino_ftp_imagen_peque);
//Guardar evento
$funciones->insertarEvento($link,$evento,$nombre_imagen.'Zentral586x196'.$tipoImagen,$nombre_imagen.'Zentral80x80'.$tipoImagen);
}else{
$evento[10] = "";
$funciones->insertarEvento($link,$evento,'586x196_no_foto.png','80x80_no_foto.png');
}
}
}
$tiempo_fin=time();
echo $funciones->time_lapsed($tiempo_inicio,$tiempo_fin)." minutos.";
} catch (Exception $e) {
echo $e->getMessage();
}
?>