-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproblema.php
242 lines (161 loc) · 7.4 KB
/
problema.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
<?php
require("config/config.php");
require("config/db.php");
session_start();
$_SESSION["IdProblema"] = mysqli_real_escape_string($conn,$_GET["id"]); //mi faccio passarel'id del problema che l'utente ha selezionato tramite il metodo GET
//in questo caso lo salvo nella variabile di sessione perchè devo riutilizzarlo in una parte successiva dello script che va fuori dallo scope del primo
//recupera l'id
$id = mysqli_real_escape_string($conn,$_GET["id"]);
//query per prelvare problemi e segnalazioni
$query1 = "SELECT * FROM Segnalazioni WHERE idProblema = ".$id;
$query2 = "SELECT * FROM Problemi WHERE idProblema =".$id;
//Prendi il risultato
$ris1 = mysqli_query($conn, $query1);
$ris2 = mysqli_query($conn, $query2);
//inserisco i risultati delle due query in due array associativi necessari per mostrare il problema e recuperare le informazioni sull'utente se necessario
$segnalazioni = mysqli_fetch_all($ris1, MYSQLI_ASSOC);
$problemi= mysqli_fetch_assoc($ris2);
//query per identificare l'utente
$query3 ="SELECT * FROM Utenti WHERE Utenti.secretID = ". $problemi ["secretID"].";"; //" SELECT Nome, Cognome FROM Utenti WHERE Utenti.secretID =".$segnalazioni["secretID"];
$ris3 = mysqli_query($conn, $query3);
$utenti = mysqli_fetch_assoc($ris3);
$qt = "SELECT descrizione FROM DizionarioTag WHERE idTag IN (SELECT idTag FROM tagBridge WHERE idProblema =".$problemi["idProblema"].");";
$risqt = mysqli_query($conn, $qt);
$aTag = [];
$i= 0;
?>
<!DOCTYPE <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Titolo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="http://localhost/PROblemSolver/css/main.css"
>
<link rel="stylesheet" type="text/css" href="http://localhost/PROblemSolver/css/report.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
</head>
<body>
<!-- navbar -->
<nav class="navbar">
<span class="open-slide">
<a href="#" onclick="openSlideMenu()">
<svg width="30" height="30">
<path d = "M0,5 30,5" stroke="#fff" stroke-width="5"/>
<path d = "M0,14 30,14" stroke="#fff" stroke-width="5"/>
<path d = "M0,23 30,23" stroke="#fff" stroke-width="5"/>
</svg>
</a>
</span>
<ul class="navbar-nav">
<li> <a href="http://localhost/PROblemSolver/index.php">Home</a></li>
<li> <a href="http://localhost/PROblemSolver/prova.php">Naviga Problemi</a></li>
<li> <a href="http://localhost/PROblemSolver/report.php">Riporta Problema</a></li>
<li> <a href="http://localhost/PROblemSolver/login.php">Login/Registrati</a></li>
<li><a href="http://localhost/PROblemSolver/cerca.php"> Cerca Problemi</a><li>
</ul>
</nav>
<!--Menu a scomparsa-->
<div id="side-menu" class="side-nav">
<a href="#" class="btn-close" onclick="closeSlideMenu()">×</a>
<a href="http://localhost/PROblemSolver/index.php">Home</a>
<a href="http://localhost/PROblemSolver/prova.php">Naviga Problemi</a></a>
<a href="http://localhost/PROblemSolver/report.php">Riporta Problema</a>
<a href="http://localhost/PROblemSolver/login.php">Login/Registrati</a>
<li><a href="http://localhost/PROblemSolver/cerca.php"> Cerca Problemi</a><li>
</div>
<!--Descrizione problema -->
<div class="stripe" style="opacity:0.95;">
<div><p> id Problema:</p> <p id="idProblema"> <?php echo $problemi["idProblema"]; ?> </p> </div>
<h1><?php echo $problemi["titolo"];?></h1>
<h5 style="color: black;"> <?php echo $problemi["descrizione"];?> </h5>
<p> <?php
if ($problemi["boolAnonimo"] == 0) {
echo'<p> codice utente: ';echo $utenti["secretID"]; echo'</p>';
echo ("che corrisponde all'utente: ".$utenti["Nome"]." " . $utenti[ "Cognome"]);
}
else if($problemi["boolAnonimo"] == 1){
echo "<b> L'utente ha deciso di effetturare la segnalazione in modo anonimo </b> ";
}
$qt = "SELECT descrizione FROM DizionarioTag WHERE idTag IN (SELECT idTag FROM tagBridge WHERE idProblema =".$problemi["idProblema"].");";
$risqt = mysqli_query($conn, $qt);
$aTag = [];
$i= 0;
echo'<p> <b> Tags: </b>';
while($row = mysqli_fetch_assoc($risqt)){
echo$row['descrizione']." ";
} echo'</p>';
?>
</div>
<!--Sezione inserimento commenti-->
<div style="width: 100%; overflow: hidden;">
<div style="width: 600px;float: left;">
<form id="getForm">
<label for="commento" style=> <b>Commenta il problema!</b> </label><br>
<input type="submit" id="button" value="Submit" style="background-color:#3b5998; color:white; float: left; margin-left:30px;"></button>
<textarea id="commento" class="descrizione" placeholder="Esprimi una tua opinione riguardo al problema" > </textarea><br>
</form>
</div>
<div style="margin-left: 640px; " >
<?php
require("config/config.php");
require("config/db.php");
session_start();
$_SESSION["IdProblema"] = mysqli_real_escape_string($conn,$_GET["id"]);
$query4= "SELECT idCommento,descrizione,secretId FROM Commenti WHERE idProblema=".$id;
$ris4 = mysqli_query($conn, $query4);
$commenti= mysqli_fetch_all($ris4,MYSQLI_ASSOC);
for($i=0;$i<count($commenti);$i++): ?>
<div style="opacity:0.95; background: #f4f4f4; margin: auto; width:1000px; border-radius: 20px; text-align: center; color: #3b5998; ">
<?php echo("<h3> id commento: ".$commenti[$i]["idCommento"]." </h3>");?>
<p> <?php echo $commenti[$i]["descrizione"];?></p>
<p><small>creato dall' utente: <?php
$query5= "SELECT Nome, Cognome FROM Utenti WHERE secretID = ". $commenti[$i]["secretId"];
$ris5= mysqli_query($conn, $query5);
$utente= mysqli_fetch_assoc($ris5);
echo ($utente["Nome"]." ". $utente["Cognome"]) ;
?></small></p>
</div>
<?php endfor;?>
</div>
</div>
<script>
document.getElementById('button').addEventListener('click', comment);
function createJson(){
var myObj = {
secretIdUtente: <?php echo $_SESSION["secretID"];?>,
commento: document.getElementById("commento").value,
idProblema: document.getElementById("idProblema").innerHTML
};
return myObj;
}
document.getElementById('getForm').addEventListener('submit', comment);
// funzione per effetturare la richiesta asincrona
function comment(e){
e.preventDefault();
var json = createJson();
console.log(json);
var xhr = new XMLHttpRequest();
xhr.open("POST","comment.php",true);
xhr.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
xhr.onload = function(){
console.log(this.responseText);
}
xhr.send(JSON.stringify(json));
if(this.responseText === "inserimento avvenuto con successo"){
location.reload();
}
}
//script per aprire e chiudere il menù a scomparsa in modalità mobile
function openSlideMenu(){
document.getElementById("side-menu").style.width="250px"
document.getElementById("main.").style.marginLeft="250px"
}
function closeSlideMenu(){
document.getElementById("side-menu").style.width="0px"
document.getElementById("main.").style.marginLeft="0px"
}
</script>
</body>
</html>