-
Notifications
You must be signed in to change notification settings - Fork 3
/
albums.php
139 lines (125 loc) · 4.98 KB
/
albums.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
<?php
require ("inc/verify_login.php");
head("Albums");
echo "<body id='seccion_albums'>";
require ("inc/estructura.inc.php");
?>
<div class="barra_full">
<div class="marco">
<?php
//Albums de fotos de ¿?
if (!$_GET['iduser']) {
$_GET['iduser'] = $global_idusuarios;
$user = 'yo';
echo "<h2 style='margin-bottom:0px;'>Mis Albums de imagenes</h2>";
} else {
$usuario = mysqli_query($link,"SELECT * FROM usuarios WHERE idusuarios='" . $_GET['iduser'] . "'");
if (mysqli_num_rows($usuario) > 0) {
$row = mysqli_fetch_assoc($usuario);
echo "<h2 style='margin-bottom:0px;'>Albums de imagenes de " . $row['nombre'] . "</h2>";
}
}
//Subidas
echo "<div class='album'><div class='album_titulo'><a href='album.php?iduser=" . $_GET['iduser'] . "&idalbum=subidas'>Fotos subidas</a></div>";
$fotos = mysqli_query($link,"SELECT * FROM fotos WHERE uploader='" . $_GET['iduser'] . "' ORDER BY idfotos DESC LIMIT 3");
if (mysqli_num_rows($fotos)) {
$bottom = 0;
$left = 0;
while ($row = mysqli_fetch_assoc($fotos)) {
echo "<a href='album.php?iduser=" . $_GET['iduser'] . "&idalbum=subidas'><img class='album_cubierta' style='bottom:" . $bottom . "px;left:" . $left . "px;max-width:" . $width . "px;max-height:" . $height . "px;' alt='cubierta album' src='" . $row['archivo'] . "' /><br></a><br>";
$bottom = $bottom + 90;
$left = $left + 90;
}
} else {
echo "No has subido ninguna foto";
}
echo "</div>";
//Etiquetadas
echo "<div class='album'><div class='album_titulo'><a href='album.php?iduser=" . $_GET['iduser'] . "&idalbum=etiquetadas'>Fotos etiquetadas</a></div>";
$fotos = mysqli_query($link,"SELECT * FROM fotos, etiquetas WHERE usuarios_idusuarios = '" . $_GET['iduser'] . "' AND idfotos = fotos_idfotos ORDER BY idfotos DESC LIMIT 3");
if (mysqli_num_rows($fotos)) {
$bottom = 0;
$left = 0;
while ($row = mysqli_fetch_assoc($fotos)) {
echo "<a href='album.php?iduser=" . $_GET['iduser'] . "&idalbum=etiquetadas'><img class='album_cubierta' style='bottom:" . $bottom . "px;left:" . $left . "px;max-width:" . $width . "px;max-height:" . $height . "px;' alt='cubierta album' src='" . $row['archivo'] . "' /></a><br>";
$bottom = $bottom + 90;
$left = $left + 90;
}
} else {
echo "No estas etiquetado en ninguna foto";
}
echo "</div>";
//Personalizados
echo "<h2 style='clear: both;margin-bottom:0px;'>Albums personales</h2>";
$personalizados = mysqli_query($link,"SELECT * FROM `albums` WHERE usuarios_idusuarios='" . $_GET['iduser'] . "'");
if (mysqli_num_rows($personalizados) > 0) {
while ($row = mysqli_fetch_assoc($personalizados)) {
print("<div class='album'>
<div class='album_titulo'>
<a href='album.php?iduser=" . $_GET['iduser'] . "&idalbum=" . $row['idalbums'] . "'>" . $row['album'] . "</a>
<div class='album_renombrar' onclick=\"album_renombrar('" . $row['idalbums'] . "','" . $row['album'] . "')\"></div>
<div class='album_borrar' onclick=\"album_borrar('" . $row['idalbums'] . "','" . $row['album'] . "')\"></div>
</div>");
$fotos = mysqli_query($link,"SELECT * FROM fotos WHERE albums_idalbums = '" . $row['idalbums'] . "' ORDER BY idfotos LIMIT 3");
if (mysqli_num_rows($fotos)) {
$bottom = 0;
$left = 0;
while ($row2 = mysqli_fetch_assoc($fotos)) {
echo "<a href='album.php?iduser=" . $_GET['iduser'] . "&idalbum=" . $row['idalbums'] . "'><img class='album_cubierta' style='bottom:" . $bottom . "px;left:" . $left . "px;max-width:" . $width . "px;max-height:" . $height . "px;' alt='cubierta album' src='" . $row2['archivo'] . "' /></a><br>";
$bottom = $bottom + 90;
$left = $left + 90;
}
} else {
echo "No hay ninguna foto en este album";
}
echo "</div>";
}
}
//Formulario creacion de albumes
?>
<div style='display: inline-block;margin: 25px;'>
Crea un album personalizado
<hr>
<div class="input">
<span>
<input name="album" id="album_id" type="text" placeholder="Nombre del album">
</span>
</div>
<button type='button' class="azul" onclick="album_crear()"><span><b>Crear album</b></span></button>
</div>
</div>
<script>
$(document).ready(function() {
// Muestra y oculta los menús
$('.album').hover(function(e) {
$(this).find('.album_renombrar,.album_borrar').css("visibility", "visible");
}, function(e) {
$(this).find('.album_renombrar,.album_borrar').css("visibility", "hidden");
});
});
function album_crear() {
var name = $("input[name='album']").val();
if (name != null && name != "") {
ajax_post({
data:'album='+name,
reload:true
});
}
}
function album_renombrar(id, name) {
var name = prompt("Escribe el nombre del album", name);
if (name != null && name != "") {
ajax_post({data:'album_renombrar=' + name + '&album_id=' + id,reload: true});
}
}
function album_borrar(id, name) {
var r = confirm("¿Estás seguro de borrar el album \"" + name + "\" ?");
if (r == true && id != "") {
ajax_post({data:'album_borrar=' + id,reload: true});
}
}
</script>
</div>
<?php
require ("inc/chat.php");
?>