-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.php
293 lines (276 loc) · 14.9 KB
/
dashboard.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
<?php
include 'connection.php';
include 'headerlogged.php';
?>
<div class="centered">
<button type='button' class='button' data-open='postModal'>Make a post!</button>
<div class="reveal" id="postModal" data-reveal>
<form action="postCreate.php" name='createPost' onsubmit='return checkCreatePost(this)' method="post">
<div class="grid-container">
<div class="grid-x grid-padding-x">
<div class="medium-4 cell">
<input type="text" name="title" placeholder="Title (required)">
</div>
<div class="medium-12 cell">
<label> Date (required)
<input type="datetime-local" name="date">
</label>
</div>
<div class="medium-12 cell">
<input type="text" name="location" placeholder="Location (required)">
</div>
<div class="medium-12 cell">
<textarea name="description" placeholder="Description (required)"></textarea>
</div>
</div>
<button class="submit button">Create</button>
</div>
</form>
</div>
</div>
<?php
$userID = $_SESSION['id'];
echo "<h2>Posts you created</h2>";
$sql_CreatedPosts = "SELECT p.* from posts p where p.creator_id = $userID order by p.creation_date desc";
$resultviewCreated = mysqli_query($db, $sql_CreatedPosts);
if (!$resultviewCreated)
die('Action failed');
else {
echo
"<div class='grid-container'>
<div class='grid-x grid-margin-x small-up-1 medium-up-2'>";
while ($rowCreated = mysqli_fetch_array($resultviewCreated, MYSQLI_ASSOC)) {
$idPostCreated = $rowCreated["id"];
$postCreatorID = $rowCreated['creator_id'];
$sql_PostCreator = "SELECT u.username from users u where u.id = $postCreatorID";
$resultPostCreator = mysqli_query($db, $sql_PostCreator);
$rowPostCreator = mysqli_fetch_array($resultPostCreator, MYSQLI_ASSOC);
echo
"<div class='cell'>
<div class='card'>
<div class='card-section'>
<h2>" . $rowCreated["title"] . "</h2>
<h4>Posted by: " . $rowPostCreator["username"] . "</h4>
<button type='button' class='tiny button' data-open='editPostModal" . $idPostCreated . "'>Edit</button>
<button type='button' class='tiny secondary button' data-open='deletePostModal" . $idPostCreated . "'>Delete</button>
<h5>Date: " . $rowCreated["date"] . "</h5>
<h5>Location: " . $rowCreated["location"] . "</h5>
<p>" . $rowCreated["description"] . "</p>
<div>
<button type='button' class='button' data-open='commentModalCreated" . $idPostCreated . "'>Comment</button>
</div>
</div>";
$sql_CreatedPostsComments = "SELECT c.* from comments c join posts p on c.post_id = $idPostCreated group by c.id order by p.creation_date desc";
$resultviewCreatedPostsComments = mysqli_query($db, $sql_CreatedPostsComments);
if (!$resultviewCreatedPostsComments)
die('Action failed');
else {
echo "<div class='card-section'>";
while ($rowCreatedPostsComments = mysqli_fetch_array($resultviewCreatedPostsComments, MYSQLI_ASSOC)) {
$commentID = $rowCreatedPostsComments['id'];
$commentCreatorID = $rowCreatedPostsComments['creator_id'];
$sql_CommentCreator = "SELECT u.username from users u where u.id = $commentCreatorID";
$resultCommentCreator = mysqli_query($db, $sql_CommentCreator);
$rowCommentCreator = mysqli_fetch_array($resultCommentCreator, MYSQLI_ASSOC);
echo "<p><b>" . $rowCommentCreator['username'] . "</b>: " . $rowCreatedPostsComments['body_text'] . "<button type='button' class='tiny secondary button' data-open='commentDeleteModal" . $commentID . "' style='float: right'>Delete</button></p><br>";
echo
"<div class='tiny reveal' id='commentDeleteModal" . $commentID . "' data-reveal>
<form action='commentDelete.php' method='post'>
<div class='grid-container'>
<p>Are you sure you want to delete this comment: \"" . $rowCreatedPostsComments['body_text'] . "\"?</p>
<button class='alert button' name='idComment' value=" . $commentID . " style='float: left'>Delete comment</button>
<button type='button' class='button' data-close style='float: right'>Cancel</button>
</div>
</form>
</div>";
}
echo "</div>";
}
echo "</div>
</div>";
echo
"<div class='reveal' id='editPostModal" . $idPostCreated . "' data-reveal>
<form action='postModify.php' name='modifyPost' onsubmit='return checkModifyPost(this)' method='post'>
<div class='grid-container'>
<div class='grid-x grid-padding-x'>
<div class='medium-4 cell'>
<textarea name='title'>" . $rowCreated["title"] . "</textarea>
</div>
<div class='medium-12 cell'>
<input type='datetime-local' name='date' value='" . $rowCreated["date"] . "'>
</div>
<div class='medium-12 cell'>
<textarea name='location'>" . $rowCreated["location"] . "</textarea>
</div>
<div class='medium-12 cell'>
<textarea name='description'>" . $rowCreated["description"] . "</textarea>
</div>
</div>
<button class='submit button' name='idPostCreated' value='$idPostCreated'>Save</button>
</div>
</form>
</div>";
echo
"<div class='reveal' id='commentModalCreated" . $idPostCreated . "' data-reveal>
<form action='commentCreate.php' method='post'>
<div class='grid-container'>
<div class='grid-x grid-padding-x'>
<div class='medium-12 cell'>
<textarea name='text' placeholder='Write your comment here! Only the post creator will be able to delete it.' required></textarea>
</div>
</div>
<button class='submit button' name='idPost' value='$idPostCreated'>Post comment</button>
</div>
</form>
</div>";
echo
"<div class='tiny reveal' id='deletePostModal" . $idPostCreated . "' data-reveal>
<form action='postDelete.php' method='post'>
<div class='grid-container'>
<p>Are you sure you want to delete this post: \"" . $rowCreated['title'] . "\"?</p>
<button class='alert button' name='idPost' value=" . $idPostCreated . " style='float: left'>Delete comment</button>
<button type='button' class='button' data-close style='float: right'>Cancel</button>
</div>
</form>
</div>";
}
echo "</div>
</div>";
}
echo "<h2>Posts you follow</h2>";
$sql_FollowedPosts = "SELECT p.* from posts p join follow f on p.id = f.post_followed join users u on f.user_following = u.id where u.id = $userID group by p.id order by p.creation_date desc";
$resultviewFollowed = mysqli_query($db, $sql_FollowedPosts);
if (!$resultviewFollowed)
die('Action failed');
else {
echo
"<div class='grid-container'>
<div class='grid-x grid-margin-x small-up-1 medium-up-2'>";
while ($rowFollowed = mysqli_fetch_array($resultviewFollowed, MYSQLI_ASSOC)) {
$idPostFollowed = $rowFollowed["id"];
$postCreatorID = $rowFollowed['creator_id'];
$sql_PostCreator = "SELECT u.username from users u where u.id = $postCreatorID";
$resultPostCreator = mysqli_query($db, $sql_PostCreator);
$rowPostCreator = mysqli_fetch_array($resultPostCreator, MYSQLI_ASSOC);
echo
"<div class='cell'>
<div class='card'>
<div class='card-section'>
<h2>" . $rowFollowed["title"] . "</h2>
<h4>Posted by: " . $rowPostCreator["username"] . "</h4>
<h5>Date: " . $rowFollowed["date"] . "</h5>
<h5>Location: " . $rowFollowed["location"] . "</h5>
<p>" . $rowFollowed["description"] . "</p>
<div>
<form action=unfollow.php method=post>
<button class='submit button' name='idPost' value='$idPostFollowed'>Unfollow</button>
</form>
<button type='button' class='button' data-open='commentModalFollowed" . $idPostFollowed . "'>Comment</button>
</div>
</div>";
$sql_FollowedPostsComments = "SELECT c.* from comments c join posts p on c.post_id = $idPostFollowed join follow f on p.id = f.post_followed join users u on f.user_following = u.id where u.id = $userID group by c.id order by p.creation_date desc";
$resultviewFollowedPostsComments = mysqli_query($db, $sql_FollowedPostsComments);
if (!$resultviewFollowedPostsComments)
die('Action failed');
else {
echo "<div class='card-section'>";
while ($rowFollowedPostsComments = mysqli_fetch_array($resultviewFollowedPostsComments, MYSQLI_ASSOC)) {
$commentCreatorID = $rowFollowedPostsComments['creator_id'];
$sql_CommentCreator = "SELECT u.username from users u where u.id = $commentCreatorID";
$resultCommentCreator = mysqli_query($db, $sql_CommentCreator);
$rowCommentCreator = mysqli_fetch_array($resultCommentCreator, MYSQLI_ASSOC);
echo "<p><b>" . $rowCommentCreator['username'] . "</b>: " . $rowFollowedPostsComments['body_text'] . "</p>";
}
echo "</div>";
}
echo "</div>
</div>";
echo
"<div class='reveal' id='commentModalFollowed" . $idPostFollowed . "' data-reveal>
<form action='commentCreate.php' method='post'>
<div class='grid-container'>
<div class='grid-x grid-padding-x'>
<div class='medium-12 cell'>
<textarea name='text' placeholder='Write your comment here! Only the post creator will be able to delete it.' required></textarea>
</div>
</div>
<button class='submit button' name='idPost' value='$idPostFollowed'>Post comment</button>
</div>
</form>
</div>";
}
echo "</div>
</div>";
}
echo "<h2>Recent posts</h2>";
$sql_UnfPosts = "SELECT p.* from posts p
where p.id not in (SELECT p.id from posts p join follow f on p.id = f.post_followed
join users u on f.user_following = u.id where u.id = $userID group by p.id)
and p.creator_id != $userID group by p.id order by p.creation_date desc";
$resultviewUnf = mysqli_query($db, $sql_UnfPosts);
if (!$resultviewUnf)
die('Action failed');
else {
echo
"<div class='grid-container'>
<div class='grid-x grid-margin-x small-up-1 medium-up-2'>";
while ($rowUnf = mysqli_fetch_array($resultviewUnf, MYSQLI_ASSOC)) {
$idPostUnfollowed = $rowUnf["id"];
$postCreatorID = $rowUnf['creator_id'];
$sql_PostCreator = "SELECT u.username from users u where u.id = $postCreatorID";
$resultPostCreator = mysqli_query($db, $sql_PostCreator);
$rowPostCreator = mysqli_fetch_array($resultPostCreator, MYSQLI_ASSOC);
echo
"<div class='cell'>
<div class='card'>
<div class='card-section'>
<h2>" . $rowUnf["title"] . "</h2>
<h4>Posted by: " . $rowPostCreator["username"] . "</h4>
<h5>Date: " . $rowUnf["date"] . "</h5>
<h5>Location: " . $rowUnf["location"] . "</h5>
<p>" . $rowUnf["description"] . "</p>
<div>
<form action=follow.php method=post>
<button class='submit button' name='idPost' value='$idPostUnfollowed'>Follow</button>
</form>
<button type='button' class='button' data-open='commentModalUnfollowed" . $idPostUnfollowed . "'>Comment</button>
</div>
</div>";
$sql_UnfollowedPostsComments = "SELECT c.* from comments c join posts p on c.post_id = $idPostUnfollowed
where p.id not in (SELECT p.id from posts p join follow f on p.id = f.post_followed
join users u on f.user_following = u.id where u.id = $userID group by p.id)
and p.creator_id != $userID group by c.id order by p.creation_date desc";
$resultviewUnfollowedPostsComments = mysqli_query($db, $sql_UnfollowedPostsComments);
if (!$resultviewUnfollowedPostsComments)
die('Action failed');
else {
echo "<div class='card-section'>";
while ($rowUnfollowedPostsComments = mysqli_fetch_array($resultviewUnfollowedPostsComments, MYSQLI_ASSOC)) {
$commentCreatorID = $rowUnfollowedPostsComments['creator_id'];
$sql_CommentCreator = "SELECT u.username from users u where u.id = $commentCreatorID";
$resultCommentCreator = mysqli_query($db, $sql_CommentCreator);
$rowCommentCreator = mysqli_fetch_array($resultCommentCreator, MYSQLI_ASSOC);
echo "<p><b>" . $rowCommentCreator['username'] . "</b>: " . $rowUnfollowedPostsComments['body_text'] . "</p>";
}
echo "</div>";
}
echo "</div>
</div>";
echo
"<div class='reveal' id='commentModalUnfollowed" . $idPostUnfollowed . "' data-reveal>
<form action='commentCreate.php' method='post'>
<div class='grid-container'>
<div class='grid-x grid-padding-x'>
<div class='medium-12 cell'>
<textarea name='text' placeholder='Write your comment here! Only the post creator will be able to delete it.' required></textarea>
</div>
</div>
<button class='submit button' name='idPost' value='$idPostUnfollowed'>Post comment</button>
</div>
</form>
</div>";
}
echo "</div>
</div>";
}
include 'footer.php';