-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_member.php
471 lines (403 loc) · 14.9 KB
/
admin_member.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<title>QBnB Main User Page</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
</head>
<body>
<?php
//Create a user session or resume an existing one
session_start();
?>
<?php
if(isset($_SESSION['id']) && $_SESSION['type'] == "administrator") {
// include database connection
include_once 'config/connection.php';
// SELECT query
$query = "SELECT member_id,username, password, email FROM member WHERE member_id=?";
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $_SESSION['id']);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
// Row data
$myrow = $result->fetch_assoc();
} else {
//User is not logged in. Redirect the browser to the login index.php page and kill this page.
header("Location: index.php");
echo "Not logged in";
die();
}
?>
<!-- Nav Bar - Same on all pages -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.php">QBnB</a>
</div>
<ul class="nav navbar-nav">
<li><a href="gen_main.php">Home</a></li>
<li><a href="myListings.php">My Listings</a></li>
<li><a href="myBookings.php">My Bookings</a></li>
<?php
if(isset($_SESSION['id'])){
//Redirect the browser to the profile editing page and kill this page.
if ($_SESSION['type'] == "administrator")
{
?> <li><a href="admin_membersearch.php">Admin Member Search</a></li>
<li><a href="admin_propertysearch.php">Admin Property Search</a></li>
<?php
}
}
?>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="userProfile.php"> <?php echo $myrow['username'];?> </a></li>
<li><a href="index.php?logout=1">Log Out</a></li>
</ul>
</div>
</nav>
<br>
<br>
<br>
<div class="page-header">
<h1>Admin: Member Details</h1>
</div>
<?php
// Can only display page if property_id is passed via 'get' parameter
if(isset($_GET['member_id']) && !empty($_GET['member_id'])){
include_once 'config/connection.php';
$member_id = $_GET['member_id'];
} else {
echo "No member specified.";
die();
}
?>
<?php
// Member Delete has been confirmed
if(isset($_GET['confirm_delete_btn'])) {
// Find member_id and property_id of any future bookings
$query = "SELECT booking_id, member_id FROM booking WHERE start_date > curdate() AND
property_id in ( SELECT property_id
FROM supplies
WHERE member_id=?);";
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param('s', $member_id);
// Execute the query
$stmt->execute();
$futureBookings = $stmt->get_result();
if ($futureBookings->num_rows > 0) {
while($booking = $futureBookings->fetch_assoc()) {
// Notify each member:
$query = "INSERT INTO notification VALUES (NULL, ?, ?, FALSE);";
$parm1 = $booking["member_id"];
$parm2 = "Your booking #" . $booking["booking_id"] . " was cancelled.";
$stmt = $con->prepare($query);
$stmt->bind_Param('ss', $parm1, $parm2);
$stmt->execute();
}
}
// Find all properties owned by member and delete them:
$query = "SELECT property_id FROM supplies WHERE member_id=?;";
$stmt = $con->prepare($query);
$stmt->bind_Param('s', $member_id);
$stmt->execute();
$listings = $stmt->get_result();
if($listings->num_rows > 0) {
while($property = $listings->fetch_assoc()) {
$query2 = "DELETE FROM property WHERE property_id=?;";
$stmt2 = $con->prepare($query2);
$stmt2->bind_Param('s', $property['property_id']);
$stmt2->execute();
}
}
// Delete the property and allow deletes to cascade:
$query = "DELETE FROM member WHERE member_id=?;";
$parm1 = $member_id;
$stmt = $con->prepare($query);
$stmt->bind_Param('s', $parm1);
$stmt->execute();
echo "Member # " . $member_id . "sucessfully deleted.";
die();
} elseif(isset($_GET['delete_btn'])) { // 'Delete' has been clicked but not confirmed
?>
<form class="form-inline" action='admin_member.php' method=get>
<label for="confirm_delete_btn">Are you sure you want to delete this member?</label>
<a href="admin_member.php?member_id=<?php echo $member_id ?>" class="btn btn-default" role="button">Cancel</a>
<input type='hidden' name='member_id' id='member_id' value="<?php echo $member_id ?>">
<input class="btn btn-danger" name='confirm_delete_btn' id='confirm_delete_btn' value="Delete" type="submit">
</form>
<?php
} else { // No action has been specified yet
?>
<form class="form-inline" action='admin_member.php' method=get>
<input class="btn btn-danger" name='delete_btn' id='delete_btn' value="Delete Member" type="submit">
<input type='hidden' name='member_id' id='member_id' value="<?php echo $member_id?>">
</form>
<?php
}
?>
<?php
// SELECT query
$query = "SELECT member_id, member_type, first_name, last_name, email, username FROM member WHERE member_id=?;";
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $member_id);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
if ($result->num_rows > 0) {
// output data of each row
$row = $result->fetch_assoc();
echo "<div class=\"table-responsive\">
<table class=\"table \" width=\"50\" >
<tr><th> Member ID </th><td>" . $row["member_id"]. "</td></tr><tr><th> Member Type </th><td>" . $row["member_type"] . "</td></tr><tr><th> First Name </th><td>" . $row["first_name"] . "</td></tr><tr><th> Last Name </th><td>" . $row["last_name"] . "</td></tr><tr><th> Email </th><td>" . $row["email"] . "</td></tr><tr><th> Username </th><td>" . $row["username"] . "</td></tr>";
echo "</table></div>";
} else {
echo "Oops! No details for this member.";
}
?>
<h3>Property Listings:</h3>
<?php
include_once 'config/connection.php';
// SELECT query
$query = "SELECT property_id, district_name, street_number, street_name, apt_number, city, province, postal_code, price, type
FROM property NATURAL JOIN district NATURAL JOIN supplies WHERE
supplies.member_id = ?;";
//AND DATE_ADD(start_date, INTERVAL 7 day) >= CURRENT_DATE;
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $member_id);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
if ($result->num_rows > 0) {
echo
"<div class=\"table-responsive\">
<table class=\"table\">
<thead>
<th>Property ID</th>
<th>District</th>
<th>Street Number</th>
<th>Street</th>
<th>Apt. Number</th>
<th>City</th>
<th>Province</th>
<th>Postal Code</th>
<th>Price ($)</th>
<th>Type</th>
</thead>
<tr>";
while($row = $result->fetch_assoc()) {
echo "<tr>";
echo "<td><a href=admin_property.php?property_id=" . $row["property_id"] . ">" . $row["property_id"]. "</a>" . "</td>";
echo "<td>" . $row["district_name"] . "</td>";
echo "<td>" . $row["street_number"] . "</td>";
echo "<td>" . $row["street_name"] . "</td>";
echo "<td>" . $row["apt_number"] . "</td>";
echo "<td>" . $row["city"] . "</td>";
echo "<td>" . $row["province"] . "</td>";
echo "<td>" . $row["postal_code"] . "</td>";
echo "<td>" . $row["price"] . "</td>";
echo "<td>" . $row["type"] . "</td>";
echo "</tr>";
}
// output data of each row
echo "</table></div>";
} else {
echo "Member has no property listings.";
}
?>
<h3>Property Bookings:</h3>
<!-- By property -->
<?php
// Redo the query from above......This is a huge hack
// SELECT query
$query = "SELECT property_id, district_name, street_number, street_name, apt_number, city, province, postal_code, price, type
FROM property NATURAL JOIN district NATURAL JOIN supplies WHERE
supplies.member_id = ?;";
//AND DATE_ADD(start_date, INTERVAL 7 day) >= CURRENT_DATE;
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $member_id);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo "<h4>" . $row['street_number'] . " " . $row['street_name'] . "</h4>";
// SELECT query
$query = "SELECT booking_id, member_id, start_date, status
FROM booking WHERE
property_id=?;";
//AND DATE_ADD(start_date, INTERVAL 7 day) >= CURRENT_DATE;
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $row['property_id']);
// Execute the query
$stmt->execute();
// results
$result2 = $stmt->get_result();
if ($result2->num_rows > 0) {
echo
"<div class=\"table-responsive\">
<table class=\"table\">
<thead>
<th>Booking ID</th>
<th>Member ID</th>
<th>Start Date</th>
<th>Status</th>
</thead>
<tr>";
while($row2 = $result2->fetch_assoc()) {
echo "<tr>";
//echo "<td><a href=admin_property.php?property_id=" . $row["property_id"] . ">" . $row["property_id"]. "</a>" . "</td>";
echo "<td><a href=admin_booking.php?booking_id=" . $row2["booking_id"] . ">" . $row2["booking_id"]. "</a>" . "</td>";
echo "<td>" . $row2["member_id"] . "</td>";
echo "<td>" . $row2["start_date"] . "</td>";
echo "<td>" . $row2["status"] . "</td>";
echo "</tr>";
}
// output data of each row
echo "</table></div>";
} else {
echo "Property has no bookings.";
}
}
// output data of each row
} else {
echo "Member has no property listings.";
}
?>
<h3>Property Reviews:</h3>
<?php
// Redo the query from above......This is a huge hack
// SELECT query
$query = "SELECT property_id, district_name, street_number, street_name, apt_number, city, province, postal_code, price, type
FROM property NATURAL JOIN district NATURAL JOIN supplies WHERE
supplies.member_id = ?;";
//AND DATE_ADD(start_date, INTERVAL 7 day) >= CURRENT_DATE;
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $member_id);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo "<h4>" . $row['street_number'] . " " . $row['street_name'] . "</h4>";
// SELECT query
$query = "SELECT comment_id, booking_id, rating, text, time
FROM comment NATURAL JOIN booking
WHERE property_id=?;";
//AND DATE_ADD(start_date, INTERVAL 7 day) >= CURRENT_DATE;
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $row["property_id"]);
// Execute the query
$stmt->execute();
// results
$result2 = $stmt->get_result();
if ($result2->num_rows > 0) {
echo "<div class=\"table-responsive\">
<table class=\"table\">
<thead>
<th>Comment ID</th>
<th>Booking ID</th>
<th>Rating</th>
<th>Review</th>
<th>Time</th>
</thead>
<tr>";
while($row2 = $result2->fetch_assoc()) {
//echo "<td><a href=admin_property.php?property_id=" . $row["property_id"] . ">" . $row["property_id"]. "</a>" . "</td>";
echo "<td>" . $row2["comment_id"] . "</td>";
echo "<td>" . $row2["booking_id"] . "</td>";
echo "<td>" . $row2["rating"] . "</td>";
echo "<td>" . $row2["text"] . "</td>";
echo "<td>" . $row2["time"] . "</td>";
echo "</tr>";
}
// output data of each row
echo "</table></div>";
} else {
echo "Property has no reviews.";
}
}
} else {
echo "Member has no property listings.";
}
?>
<h3>Member Bookings:</h3>
<?php
// SELECT query
$query = "SELECT booking_id, property_id, member_id, start_date, status
FROM booking
WHERE member_id=?;";
//AND DATE_ADD(start_date, INTERVAL 7 day) >= CURRENT_DATE;
// prepare query for execution
$stmt = $con->prepare($query);
// bind the parameters. This is the best way to prevent SQL injection hacks.
$stmt->bind_Param("s", $member_id);
// Execute the query
$stmt->execute();
// results
$result = $stmt->get_result();
if ($result->num_rows > 0) {
echo
"<div class=\"table-responsive\">
<table class=\"table\">
<thead>
<th>Booking ID</th>
<th>Property ID</th>
<th>Member ID</th>
<th>Start Date</th>
<th>Status</th>
</thead>
<tr>";
while($row = $result->fetch_assoc()) {
echo "<tr>";
//echo "<td><a href=admin_property.php?property_id=" . $row["property_id"] . ">" . $row["property_id"]. "</a>" . "</td>";
echo "<td><a href=admin_booking.php?booking_id=" . $row["booking_id"] . ">" . $row["booking_id"]. "</a>" . "</td>";
echo "<td>" . $row["property_id"] . "</td>";
echo "<td>" . $row["member_id"] . "</td>";
echo "<td>" . $row["start_date"] . "</td>";
echo "<td>" . $row["status"] . "</td>";
echo "</tr>";
}
// output data of each row
echo "</table></div>";
} else {
echo "Member has no bookings.";
}
?>
</body>
</html>