-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
232 lines (211 loc) · 6.45 KB
/
admin.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
<?php
include_once('header.php');
include_once('db.php');
?>
<h1>Administration</h1>
<?php
if ($_SESSION['rights']=="3")
{
$host = 'localhost';
$dbname = 'samplitek';
$usern = 'root';
$passw = '';
$dsn = "mysql:host=$host;dbname=$dbname";
// get all users
$sql = "SELECT `samples`.*, `users`.`username`
FROM `samples`
LEFT JOIN `users` ON `samples`.`creatorID` = `users`.`id`;";
try {
$pdo = new PDO($dsn, $usern, $passw);
$stmt = $pdo->query($sql);
if ($stmt === false) {
die("Error");
}
} catch (PDOException $e) {
echo $e->getMessage();
}
?>
<h1>Welcome Admin</h1>
<table>
<thead>
<tr>
<th>ID</th>
<th>Sample Name</th>
<th>Genre</th>
<th>Instrument</th>
<th>BPM</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<?php while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) : ?>
<tr>
<td><?php echo htmlspecialchars($row['id']); ?></td>
<td><?php echo htmlspecialchars($row['sampleName']); ?></td>
<td><?php echo htmlspecialchars($row['genre']); ?></td>
<td><?php echo htmlspecialchars($row['instrument']); ?></td>
<td><?php echo htmlspecialchars($row['bpm']); ?></td>
<td><?php echo htmlspecialchars($row['username']); ?></td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
<!--DELETE SAMPLE-->
<p>Sample to delete?(input the id)</p>
<form action="admin.php" method="post">
<input type="text" name="sampleID" id="sampleID" placeholder="Sample ID">
<input type="submit" name="deleteSample" placeholder="Delete the sample">
</form>
<?php
$host = 'localhost';
$dbname = 'samplitek';
$usern = 'root';
$passw = '';
$dsn = "mysql:host=$host;dbname=$dbname";
// get all users
$sql = "SELECT `songs`.*, `users`.`username`
FROM `songs`
LEFT JOIN `users` ON `songs`.`creatorID` = `users`.`id`";
try {
$pdo = new PDO($dsn, $usern, $passw);
$stmt = $pdo->query($sql);
if ($stmt === false) {
die("Error");
}
}
catch (PDOException $e){
echo $e->getMessage();
}
?>
<table>
<thead>
<tr>
<th>ID</th>
<th>Song Name</th>
<th>Genre</th>
<th>BPM</th>
<th>username</th>
</tr>
</thead>
<tbody>
<?php while($row = $stmt->fetch(PDO::FETCH_ASSOC)) : ?>
<tr>
<td><?php echo htmlspecialchars($row['id']); ?></td>
<td><?php echo htmlspecialchars($row['songName']); ?></td>
<td><?php echo htmlspecialchars($row['genre']); ?></td>
<td><?php echo htmlspecialchars($row['bpm']); ?></td>
<td><?php echo htmlspecialchars($row['username']); ?></td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
<p>Song to delete?(input the id)</p>
<form action="admin.php" method="post">
<input type="text" name="songID" id="songID" placeholder="Song ID">
<input type="submit" name="deleteSong" placeholder="Delete the song">
</form>
<?php
if (isset($_POST['deleteSample'])){
if (!empty($_POST['sampleID'])){
header("Location: admin.php");
$sampleId = trim($_POST['sampleID']);
print_r($sampleId);
$stmt = $bd->prepare("DELETE FROM samples WHERE id=:sampleId");
$stmt->bindParam(':sampleId', $sampleId);
$stmt->execute();
exit();
}
}
if (isset($_POST['deleteSong'])){
if (!empty($_POST['songID'])){
header("Location: admin.php");
$songId = trim($_POST['songID']);
print_r($songId);
$stmt = $bd->prepare("DELETE FROM songs WHERE id=:songId");
$stmt->bindParam(':songId', $songId);
$stmt->execute();
exit();
}
}
$host = 'localhost';
$dbname = 'samplitek';
$usern = 'root';
$passw = '';
$dsn = "mysql:host=$host;dbname=$dbname";
// get all users
$sql = "SELECT `users`.*
FROM `users`;";
try {
$pdo = new PDO($dsn, $usern, $passw);
$stmt = $pdo->query($sql);
if ($stmt === false) {
die("Error");
}
} catch (PDOException $e) {
echo $e->getMessage();
}
?>
<h1>Users list</h1>
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Email</th>
<th>Rights</th>
<th>Not banned yet</th>
</tr>
</thead>
<tbody>
<?php while($row = $stmt->fetch(PDO::FETCH_ASSOC)) : ?>
<tr>
<td><?php echo htmlspecialchars($row['id']); ?></td>
<td><?php echo htmlspecialchars($row['username']); ?></td>
<td><?php echo htmlspecialchars($row['email']); ?></td>
<td><?php echo htmlspecialchars($row['rights']); ?></td>
<td><?php echo htmlspecialchars($row['active']); ?></td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
<p>User to delete?(input the id)</p>
<form action="admin.php" method="post">
<input type="text" name="userID" id="userID" placeholder="User ID">
<input type="submit" name="deleteUser" placeholder="Delete the User">
</form>
<?php
if (isset($_POST['deleteUser'])){
if (!empty($_POST['userID'])){
$userId = trim($_POST['userID']);
print_r($userId);
$stmt = $bd->prepare("DELETE FROM users WHERE id=:userId");
$stmt->bindParam(':userId', $userId);
$stmt->execute();
header("Location: admin.php");
exit();
}
}
?>
<p>Who should be the next modo or admin? (input the id and "2" for Modo, "3" for admin)</p>
<form action="admin.php" method="post">
<input type="text" name="userID" id="userID" placeholder="User ID">
<input type="text" name="userRIGHTS" id="userRIGHTS" placeholder="User Rights">
<input type="submit" name="modRightsUser" placeholder="Give new rights to users">
</form>
<?php
if (isset($_POST['modRightsUser'])){
if (!empty($_POST['userID']) and !empty($_POST['userRIGHTS'])){
$userId = trim($_POST['userID']);
$userRights = trim($_POST['userRIGHTS']);
$stmt = $bd->prepare("UPDATE users SET rights=:userRights WHERE id=:userId");
$stmt->bindParam(':userRights', $userRights);
$stmt->bindParam(':userId', $userId);
$stmt->execute();
exit();
}
}
}
else{
echo "Trying to be clever boy ?";
}
?>