-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller.php
More file actions
276 lines (227 loc) · 8.67 KB
/
controller.php
File metadata and controls
276 lines (227 loc) · 8.67 KB
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
<?php
if (empty($_POST['page'])) { // When no page is sent from the client; The initial display
// You may use if (!isset($_POST['page'])) instead of empty(...).
$display_type = 'none'; // This variable will be used in 'view_startpage.php'.
// It will display the start page without any box, i.e., no SignIn box, no Join box, ...
$error_message_username = "";
$error_message_password = "";
include ('startpage.php');
exit();
}
require('model.php'); // This file includes some routines to use DB.
session_start();
// When commands come from StartPage
if ($_POST['page'] == 'StartPage')
{
$command = $_POST['command'];
switch($command) { // When a command is sent from the client
case 'SignIn': // With username and password
// if (there is an error in username and password) {
if (!check_validity($_POST['username'], $_POST['password'])) {
$result = "Wrong username or password. Try again.";
$display_type = 'signin';
include('startpage.php');
}
else {
$_SESSION['SignIn'] = 'Yes';
$_SESSION['username'] = $_POST['username'];
$_SESSION['email'] = get_user_email($_POST['username']);
$_SESSION['biography'] = get_user_bio($_POST['username']);
$_SESSION['followers'] = get_followers($_POST['username']);
$_SESSION['following'] = get_following($_POST['username']);
include('mainpage.php');
}
exit();
case 'SignUp':
if (check_username_existence($_POST['username'])) {
$result = 'Username already exists';
$display_type = 'signup';
include('startpage.php');
}
else if (check_email_existence($_POST['email'])) {
$result = 'Email already exists';
$display_type = 'signup';
include('startpage.php');
}
else if (!filter_var( $_POST['email'], FILTER_VALIDATE_EMAIL)) {
$result = 'Invalid Email';
$display_type = 'signup';
include('startpage.php');
}
else if (join_a_user($_POST['username'], $_POST['password'], $_POST['email'])) {
$result = 'Accounted created';
$display_type = 'signin';
include('startpage.php');
}
else {
$result = 'Something went wrong';
$display_type = 'signup';
include('startpage.php');
}
exit();
//...
}
}
else if ($_POST['page'] == 'MainPage')
{
if (!isset($_SESSION['SignIn'])) {
$display_type = 'none';
include('startpage.php');
exit();
}
$command = $_POST['command'];
switch($command) {
case 'PostATweet':
$result = post_a_tweet($_POST['tweet'], $_SESSION['username']);
if ($result) {
$result = "Tweet Posted!";
} else {
$result = "Tweet not Posted!";
}
echo json_encode($result);
break;
case 'SearchTweet':
$data = search_tweet($_SESSION['username'], $_POST['searchTweet']);
echo json_encode($data);
break;
case 'ShowTweets':
$data = show_tweets($_SESSION['username']);
echo json_encode($data);
break;
case 'ShowUsers':
$data = show_users($_SESSION['username']);
echo json_encode($data);
break;
case 'FollowUser':
if (check_follow($_SESSION['username'], $_POST['follow'])) {
unfollow_user($_SESSION['username'], $_POST['follow']);
$result = "User unfollowed";
echo json_encode($result);
break;
} else {
follow_user($_SESSION['username'], $_POST['follow']);
$result = "User Followed";
echo json_encode($result);
break;
}
case 'LikePost':
if (check_like($_SESSION['username'], $_POST['like'])) {
unlike_post($_SESSION['username'], $_POST['like']);
$result = "Post Unliked";
echo json_encode($result);
break;
} else {
like_post($_SESSION['username'], $_POST['like']);
$result = "Post Liked";
echo json_encode($result);
break;
}
case 'UserButton':
include ('profile.php');
break;
case 'HomeButton':
include ('mainpage.php');
break;
case 'ProfileButton':
include ('profile.php');
break;
case 'SignOut':
session_unset();
session_destroy();
$display_type = 'none';
include ('startpage.php');
break;
}
}
else if ($_POST['page'] == 'Profile')
{
if (!isset($_SESSION['SignIn'])) {
$display_type = 'none';
include('startpage.php');
exit();
}
$command = $_POST['command'];
switch($command) {
case 'ShowUserTweets':
$data = show_user_tweets($_SESSION['username']);
echo json_encode($data);
break;
case 'PostATweet':
$result = post_a_tweet($_POST['tweet'], $_SESSION['username']);
if ($result) {
$result = "Tweet Posted";
} else {
$result = "Tweet not Posted";
}
echo json_encode($result);
break;
case 'DeleteTweet':
$result = delete_tweet($_POST['delete']);
if ($result) {
$result = "Tweet Deleted";
} else {
$result = "Tweet not Deleted";
}
echo json_encode($result);
break;
case 'ChangeProfile':
if (empty($_POST['username'])) {
$name = $_SESSION['username'];
} else if (check_username_existence($_POST['username'])) {
$name = $_SESSION['username'];
$result = "Name already taken";
echo json_encode($result);
} else {
$name = $_POST['username'];
}
if (empty($_POST['email'])) {
$email = $_SESSION['email'];
} else if (check_email_existence($_POST['email'])) {
$email = $_SESSION['email'];
$result = "Email already taken";
echo json_encode($result);
} else if (!filter_var( $_POST['email'], FILTER_VALIDATE_EMAIL)) {
$email = $_SESSION['email'];
$result = 'Invalid Email';
echo json_encode($result);
}else {
$email = $_POST['email'];
}
if (empty($_POST['userBio']) ) {
$bio = $_SESSION['biography'];
} else {
$bio = $_POST['userBio'];
}
$result = change_profile($_SESSION['username'], $name, $_POST['password'], $email, $bio);
$_SESSION['username'] = $name;
$_SESSION['email'] = get_user_email($name);
$_SESSION['biography'] = get_user_bio($name);
$result = "Profile Changed";
echo json_encode($result);
break;
case 'Unsubscribe':
$result = unsubscribe($_SESSION['username']);
if ($result) {
$result = "Profile Deleted";
} else {
$result = "Profile not Deleted";
}
session_unset();
session_destroy();
$display_type = 'none';
include ('startpage.php');
break;
case 'HomeButton':
include ('mainpage.php');
break;
case 'ProfileButton':
include ('profile.php');
break;
case 'SignOut':
session_unset();
session_destroy();
$display_type = 'none';
include ('startpage.php');
break;
}
}