forked from filipi/onde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handleUpload.php
285 lines (258 loc) · 11.8 KB
/
handleUpload.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
278
279
280
281
282
283
284
285
<?PHP
//////////////////////// Tratar todos os GET aqui para eviter injecao de codigo
///////////////////////////////////////////////////////////////// Tratando POST
/////////////////////////////////////////////// GET passado para links (action)
///////////////////////////////////////////////////////////////////// Cabecalho
$useSessions = 1;
$ehXML = 1;
$headerTitle = "";
$myPATH = ini_get('include_path') . ':./include:../include:../../include';
ini_set('include_path', $myPATH);
include "page_header.inc";
//$_debug = 1;
//////////////////////////////////////////////////////////////// Funcoes locais
///////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////// Funcoes locais
///////////////////////////////////////////////////////////////////////////////
/**
* Erros:
* => 'Erro ao inserir album newsletter.'
* => 'Erro ao ler informações EXIF.'
* => 'Erro ao criar diretório da sessão.'
* => 'Erro ao criar diretório para arquivos temporários.'
* => 'Erro ao realizar upload para arquivo temporário.'
* => 'Erro redimensionando imagem.'
* => 'Erro gerando thumbnail.'
*
*/
global $_debug, $filename, $conn, $ehXML, $closeDIV, $useSessions, $PHPSESSID, $_theme, $_SESSION;
$PHPSESSID = trim($PHPSESSID);
//var_dump($_SESSION);
if (isset($_FILES['files']['name']) && empty($_FILES['files']['name']) == false) {
if ($_debug > 1) {
$return['FILES'] = array($_FILES);
}
$fileArray['name'] = $_FILES['files']['name'];
$fileArray['type'] = $_FILES['files']['type'];
$type = explode("/", $_FILES['files']['type']); //Pega tipo do arquivo [0] => type[1] = extensão
$file_name = $_FILES['files']['name']; //Pega o nome do arquivo com extensão.
$md5 = md5_file($_FILES['files']['tmp_name']);
if ($_debug > 1) {///////////////////////////////// DEBUG
$return['md5'] = array($md5);
}
$query = "SELECT codigo, \"Nome do arquivo\" FROM arquivos WHERE \"Assinatura MD5\" = '".$md5."'";
$query.= "AND \"Conteúdo\" IS NOT NULL;";
$result = pg_query($conn, $query);
$codigoArq = pg_fetch_row($result);
if ($type[0] == 'image') {
if(!$codigoArq){
if ($type[1] == 'jpeg' || $type[1] == 'jpg' || $type[1] == 'tiff'){ //EXIF da imagem
$exif = exif_read_data($_FILES['files']['tmp_name']);
$exif = json_encode($exif);
if(!$exif){ // Erro ao ler informações EXIF.
//echo json_encode('exif');
}
} else {
$exif = 0;
}
if($_debug > 1){
$return['exif'] = array($exif);
}
/**
* Se não existir o diretório simulation para a sessão do usuário, ele é criado.
* Se não existir o diretório para arquivos temporários, ele é criado.
* @author: Filipi Viana e Gustavo Leal;
*/
$simulation = "simulation" . $PHPSESSID;
$uploadDir = "/upload/";
if($_debug) echo "Verificando existência de diretórios...\n";
if (!file_exists(($useSessions ? "session_files/" : "") . $simulation)) {
if($_debug) echo "Criando diretório de sessão...\n";
if(mkdir("./" . ($useSessions ? "session_files/" : "") . $simulation, 0777)){
if($_debug) echo "Diretório de sessão criado.\n";
} else { // Erro ao criar diretório da sessão.
if($_debug) echo "Erro ao criar diretório de sessão\n";
}
}
if (!file_exists(($useSessions ? "session_files/" : "") . $simulation . $uploadDir)) {
if($_debug) echo "Criando diretório de upload...\n";
if(mkdir("./" . ($useSessions ? "session_files/" : "") . $simulation . $uploadDir, 0777)){
if($_debug) echo "Diretório de upload criado.\n";
} else { // Erro ao criar diretório para arquivos temporários.
if($_debug) echo "Erro ao criar diretório de upload\n";
}
}
/**
* Gera string com o diretório para armazenar as imagens temporariamente;
* Move o arquivo temporário para o diretório gerado;
*/
$abspath = realpath(dirname(__FILE__));
$uploadPath = $abspath . "/session_files/" . $simulation . $uploadDir;
$file_tmp = $_FILES['files']['tmp_name']; //// Nome do arquivo temporário salvo no computador para processamento;
if ($_debug > 1) {
$return['path'] = array($uploadPath);
}
$file = $uploadPath . $file_name;
if ($_debug > 1) {
$return['file'] = array($file);
}
if ($_debug) echo "\$file: " . $file . "<BR></br>\n";
if (move_uploaded_file($file_tmp, $file)){
if ($_debug) echo "SUCESSO ... movido<BR></br>\n";
} else { // Erro ao realizar upload para arquivo temporário.
if ($_debug) echo "FALHA<BR></br>\n";
//echo json_encode('');
}
$filedata = file_get_contents($file); //////// Lê o conteúdo da imagem principal
//$filedata = bin2hex($filedata); ////////////// Converte conteúdo da imagem principal para hexadecimal
$fileArray['contents'] = $filedata;
$filedata = formsEncodeFile($fileArray);
if ($_debug > 1) { ///////////////////////////////// DEBUG
$return['filedata'] = array($filedata);
}
$album = intval(trim($_GET['album']));
if ($_debug > 1) { ///////////////////////////////// DEBUG
$return['album'] = array($album);
}
$mainImage = insertFile($file_name, $filedata, $type, $exif, $md5, $album, null, null, null, $_SESSION['matricula']); // Insere a imagem principal no BD
if(!$mainImage){
$query = "SELECT codigo FROM arquivos WHERE \"Assinatura MD5\" = '".$md5."'";
$query.= "AND \"Conteúdo\" IS NOT NULL;";
$result = pg_query($conn, $query);
$codigoArq = pg_fetch_row($result);
//$codigoArq = $codigoArq[0];
}else{
//echo $mainImage;
$return['error'] = array($mainImage, uploadErrors($mainImage));
echo json_encode($return, JSON_FORCE_OBJECT | JSON_PRETTY_PRINT);;
exit(0);
}
/**
* Gera o nome para versão reduzida da imagem;
* Gera versão reduzida da imagem e a salva no diretório temporário;
* $smallProp => proporção para a imagem reduzida;
*
* Insere imagem reduzida no BD.
* Exclui a imagem do diretório.
*/
$smallProp = 512;
if ($_debug) echo "Reduzindo arquivo....";
$smallFile = resizeImage($file, $type, $smallProp, "small_".$file_name, $uploadPath);
if ($smallFile){
if ($_debug) echo "[ OK ]\n";
}
else{
if ($_debug) echo "[ FAIL ]\n";
}
$md5Small = md5_file($smallFile); //////////////// Assinatura MD5
$filedata = file_get_contents($smallFile);
//$filedata = bin2hex($filedata); ////////////// Converte conteúdo para hexadecimal
$fileArray['contents'] = $filedata;
$filedata = formsEncodeFile($fileArray);
$smallImage = insertFile($file_name, $filedata, $type, null, $md5Small, $album, $codigoArq[0], 1, null, $_SESSION['matricula']);
unlink($smallFile);
if($smallImage){
$return['error'] = array($smallImage, uploadErrors($smallImage));
echo json_encode($return, JSON_FORCE_OBJECT | JSON_PRETTY_PRINT);;
exit(0);
}
/**
* Gera o nome para a thumbnail da imagem;
* Gera thumbnail da imagem e a salva no diretório temporário;
* $thumbProp => proporção para o thumbnail;
*
* Insere a thumbnail no BD.
* Exclui a thumbnail do diretório.
*/
$thumbProp = 80;
if ($_debug) echo "Gerando thumbnail....";
$thumbFile = resizeImage($file, $type, $thumbProp, "thumb_".$file_name, $uploadPath);
echo $thumbFile;
if ($thumbFile){
if ($_debug) echo "[ OK ]\n";
}
else{
if ($_debug) echo "[ FAIL ]\n";
}
$md5Thumb = md5_file($thumbFile); //////////////// Assinatura MD5
$filedata = file_get_contents($thumbFile);
//$filedata = bin2hex($filedata); ////////////// Converte conteúdo para hexadecimal
$fileArray['contents'] = $filedata;
$filedata = formsEncodeFile($fileArray);
$thumbImage = insertFile($file_name, $filedata, $type, null, $md5Thumb, $album, $codigoArq[0], null, 1, $_SESSION['matricula']);
//unlink($thumbFile);
if($thumbImage){
$return['error'] = array($thumbImage, uploadErrors($thumbImage));
echo json_encode($return, JSON_FORCE_OBJECT | JSON_PRETTY_PRINT);;
exit(0);
}
unlink($file);
} else{
//Verifica se a imagem já é relacionada ao album newsletter
//echo "passei";
$query = "SELECT * FROM arquivos_albuns WHERE arquivo = '".$codigoArq[0]."' AND album= '".$album."';";
$result = pg_query($conn, $query);
if(!pg_fetch_all($result)){ // Caso não haja relação entre o arquivo e o album, insere ela
$query = "SELECT codigo FROM arquivos WHERE \"Nome do arquivo\" = '".$codigoArq[1]."'\n";
$query.= " AND \"Conteúdo\" IS NOT NULL \n";
$query.= " AND small = TRUE;";
if($_debug > 1){
$return['querySmallExist'] = $query;
}
$result = pg_query($conn, $query);
$codigoSmall = pg_fetch_row($result);
$query = "SELECT codigo FROM arquivos WHERE \"Nome do arquivo\" = '".$codigoArq[1]."'\n";
$query.= " AND \"Conteúdo\" IS NOT NULL \n";
$query.= " AND thumb = TRUE;";
if($_debug > 1){
$return['queryThumbExist'] = $query;
}
$result = pg_query($conn, $query);
$codigoThumb = pg_fetch_row($result);
if($album > 0){
$query = "INSERT INTO arquivos_albuns(arquivo, album) VALUES (";
$query .= $codigoArq[0] . ", ";
$query .= $album . "); \n";
$query .= "INSERT INTO arquivos_albuns(arquivo, album) VALUES (";
$query .= $codigoSmall[0] . ", ";
$query .= $album . "); \n";
$query .= "INSERT INTO arquivos_albuns(arquivo, album) VALUES (";
$query .= $codigoThumb[0] . ", ";
$query .= $album . "); \n";
if($_debug > 1){
$return['queryInsertAlbuns'] = $query;
}
$result = pg_query($conn, $query);
}
}
}
} else {
if(!$codigoArq){
$filedata = file_get_contents($_FILES['files']["tmp_name"]); /////////// Pega conteúdo do arquivo em binário
//$filedata = bin2hex($filedata); ////////////// Converte conteúdo para hexadecimal
$fileArray['contents'] = $filedata;
$filedata = formsEncodeFile($fileArray);
if ($_debug) {///////////////////////////////// DEBUG
$return['filedata'] = array($filedata);
}
$file = insertFile($file_name, $filedata, $type, null, $md5, null, null, null, null, $_SESSION['matricula']);
if(!$file){
$query = "SELECT codigo FROM arquivos WHERE \"Assinatura MD5\" = '".$md5."'";
$query.= "AND \"Conteúdo\" IS NOT NULL;";
$result = pg_query($conn, $query);
$codigoArq = pg_fetch_row($result);
//$codigoArq = $codigoArq[0];
}
if($file){
$return['error'] = array($file, uploadErrors($file));
echo json_encode($return, JSON_FORCE_OBJECT | JSON_PRETTY_PRINT);
exit(0);
}
}
}
}
$return['arq'] = 1;
echo json_encode($return, JSON_FORCE_OBJECT | JSON_PRETTY_PRINT);
include "page_footer.inc";
if ($_debug) echo "\n________________________________________ FIM ________________________________________\n";
?>