-
Notifications
You must be signed in to change notification settings - Fork 0
/
UploadAnexoSuporte.php
109 lines (92 loc) · 3.01 KB
/
UploadAnexoSuporte.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
<?php
include("conexao.php");
include_once("functions.php");
if(ProtegePag() == true){
$mensagem = empty($_POST['mensagem']) ? "" : $_POST['mensagem'];
$assunto = empty($_POST['assunto']) ? "" : $_POST['assunto'];
$anexo = empty($_FILES['anexo']) ? "" : $_FILES['anexo'];
$UserEmissor = $_SESSION['login'];
if(empty($assunto)){
echo MensagemAlerta('Erro', "Assunto é um campo obrigatório.", "danger");
}
elseif(empty($mensagem)){
echo MensagemAlerta('Erro', "Mensagem é um campo obrigatório.", "danger");
}
elseif($mensagem == "<p><br></p>"){
echo MensagemAlerta('Erro', "Mensagem é um campo obrigatório.", "danger");
}
else{
if(!empty($_FILES) && $anexo['tmp_name']){
$error = false;
$ds = DIRECTORY_SEPARATOR;
$storeFolder = 'suporte'.$ds;
$NomeAnexo = '';
// check image type
$tempFile = $anexo['tmp_name'];
$allowedTypes = array(IMAGETYPE_JPEG, IMAGETYPE_GIF, IMAGETYPE_PNG);// list of allowed image types
$detectedType = exif_imagetype($tempFile);
$error = !in_array($detectedType, $allowedTypes);
// end of check
$ex = explode(".",$anexo['name']);
$extensao = end($ex);
$fileName = time().'_'.sha1($anexo['name'].time()).'.'.$extensao;
if( ($extensao == "pdf") || ($extensao == "doc") || ($extensao == "docm") ) $error = false;
if(!$error){
$targetPath = dirname( __FILE__ ) . $ds. $storeFolder . $ds;
$targetFile = $targetPath. $fileName;
if(move_uploaded_file($tempFile,$targetFile)){
$NomeAnexo = $fileName;
}
}
else{
echo MensagemAlerta("Erro", "Permitido anexo apenas nos formatos jpg, png, gif, pdf e doc.", "danger");
exit;
}
}
//Inserir Resposta
$UserReceptor = $_SESSION['id_cad'];
$SQLCad = "SELECT login FROM login WHERE id = :id";
$SQLCad = $banco->prepare($SQLCad);
$SQLCad->bindParam(':id', $UserReceptor, PDO::PARAM_STR);
$SQLCad->execute();
$LnSelectCad = $SQLCad->fetch();
$UserReceptor = $LnSelectCad['login'];
$data = time();
$LidaEmissor = "S";
$SQL = "INSERT INTO suporte (
UserEmissor,
UserReceptor,
Assunto,
data,
anexo,
Mensagem,
LidaEmissor
) VALUES (
:UserEmissor,
:UserReceptor,
:Assunto,
:data,
:anexo,
:Mensagem,
:LidaEmissor
)";
$SQL = $banco->prepare($SQL);
$SQL->bindParam(':UserEmissor', $UserEmissor, PDO::PARAM_STR);
$SQL->bindParam(':UserReceptor', $UserReceptor, PDO::PARAM_STR);
$SQL->bindParam(':Assunto', $assunto, PDO::PARAM_STR);
$SQL->bindParam(':data', $data, PDO::PARAM_STR);
$SQL->bindParam(':anexo', $NomeAnexo, PDO::PARAM_STR);
$SQL->bindParam(':Mensagem', $mensagem, PDO::PARAM_STR);
$SQL->bindParam(':LidaEmissor', $LidaEmissor, PDO::PARAM_STR);
$SQL->execute();
if(empty($SQL)){
echo MensagemAlerta("Erro", "Ocorreu um erro ao processar a solicitação, por favor, tente mais tarde.", "danger");
}
else{
echo MensagemAlerta("Sucesso", "Suporte aberto com sucesso.", "success", "index.php?p=suporte");
}
}
}else{
echo Redirecionar('login.php');
}
?>