-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.php
409 lines (366 loc) · 15.1 KB
/
profile.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
<?php
/**
* profile
*
*
*
*/
// fetch bootloader
require('bootloader.php');
// user access
if ($user->_logged_in || !$system['system_public']) {
user_access();
}
// check username
if (is_empty($_GET['username']) || !valid_username($_GET['username'])) {
_error(404);
}
try {
// [1] get main profile info
$get_profile = $db->query(sprintf("SELECT users.*, picture_photo.source as user_picture_full, picture_photo_post.privacy as user_picture_privacy, cover_photo.source as user_cover_full, cover_photo_post.privacy as cover_photo_privacy, packages.name as package_name, packages.color as package_color FROM users LEFT JOIN posts_photos as picture_photo ON users.user_picture_id = picture_photo.photo_id LEFT JOIN posts as picture_photo_post ON picture_photo.post_id = picture_photo_post.post_id LEFT JOIN posts_photos as cover_photo ON users.user_cover_id = cover_photo.photo_id LEFT JOIN posts as cover_photo_post ON cover_photo.post_id = cover_photo_post.post_id LEFT JOIN packages ON users.user_subscribed = '1' AND users.user_package = packages.package_id WHERE users.user_name = %s", secure($_GET['username']))) or _error('SQL_ERROR_THROWEN');
if ($get_profile->num_rows == 0) {
_error(404);
}
$profile = $get_profile->fetch_assoc();
/* check if banned by the system */
if ($user->banned($profile['user_id'])) {
if ($profile['user_banned_message']) {
_error("BANNED_USER", $profile['user_banned_message']);
} else {
_error(404);
}
}
/* check if blocked by the viewer */
if ($user->blocked($profile['user_id'])) {
_error(404);
}
/* check username case */
if (strtolower($_GET['username']) == strtolower($profile['user_name']) && $_GET['username'] != $profile['user_name']) {
redirect('/' . $profile['user_name']);
}
/* get profile name */
$profile['name'] = ($system['show_usernames_enabled']) ? $profile['user_name'] : $profile['user_firstname'] . " " . $profile['user_lastname'];
/* get profile picture */
$profile['user_picture_default'] = ($profile['user_picture']) ? false : true;
$profile['user_picture'] = get_picture($profile['user_picture'], $profile['user_gender']);
$profile['user_picture_full'] = ($profile['user_picture_full']) ? $system['system_uploads'] . '/' . $profile['user_picture_full'] : $profile['user_picture_full'];
$profile['user_picture_lightbox'] = $user->check_privacy($profile['user_picture_privacy'], $profile['user_id']);
/* get profile cover */
$profile['user_cover_default'] = ($profile['user_cover']) ? false : true;
$profile['user_cover'] = ($profile['user_cover']) ? $system['system_uploads'] . '/' . $profile['user_cover'] : $profile['user_cover'];
$profile['user_cover_full'] = ($profile['user_cover_full']) ? $system['system_uploads'] . '/' . $profile['user_cover_full'] : $profile['user_cover_full'];
$profile['user_cover_lightbox'] = $user->check_privacy($profile['cover_photo_privacy'], $profile['user_id']);
/* get user gender */
$profile['user_gender'] = $user->get_gender($profile['user_gender']);
/* get profile background */
$profile['user_profile_background'] = ($profile['user_profile_background']) ? $system['system_uploads'] . '/' . $profile['user_profile_background'] : $profile['user_profile_background'];
/* get profile friends count */
$friends_count = $user->get_friends_count($profile['user_id']);
/* get the connection & mutual friends */
if ($user->_logged_in && $profile['user_id'] != $user->_data['user_id']) {
/* get the connection */
$profile['we_friends'] = $user->friendship_approved($profile['user_id']);
$profile['he_request'] = $user->is_friend_request($profile['user_id']);
$profile['i_request'] = $user->is_friend_request_sent($profile['user_id']);
$profile['i_follow'] = $user->is_following($profile['user_id']);
$profile['friendship_declined'] = $user->friendship_declined($profile['user_id']);
$profile['i_poked'] = $user->is_poked($profile['user_id']);
/* get mutual friends */
if ($friends_count <= 500) {
$profile['mutual_friends_count'] = $user->get_mutual_friends_count($profile['user_id']);
$profile['mutual_friends'] = $user->get_mutual_friends($profile['user_id']);
}
}
/* get profile posts count */
$profile['posts_count'] = $user->get_posts_count($profile['user_id'], 'user');
/* get profile photos count */
$profile['photos_count'] = $user->get_photos_count($profile['user_id'], 'user');
/* get profile videos count */
if ($system['videos_enabled']) {
$profile['videos_count'] = $user->get_videos_count($profile['user_id'], 'user');
}
/* check if can sell products */
$profile['can_sell_products'] = $system['market_enabled'] && $user->check_user_permission($profile['user_id'], 'market_permission');
/* check if can receivce tips */
$profile['can_receive_tips'] = $system['tips_enabled'] && $user->check_user_permission($profile['user_id'], 'tips_permission');
/* check if profile can monetize content */
$profile['can_monetize_content'] = $system['monetization_enabled'] && $user->check_user_permission($profile['user_id'], 'monetization_permission');
/* check if profile has monetization enabled && subscriptions plans */
$profile['has_subscriptions_plans'] = $profile['can_monetize_content'] && $profile['user_monetization_enabled'] && $profile['user_monetization_plans'] > 0;
/* check if the profile needs subscription (exclude: admins & mods & profile owner) */
$profile['needs_subscription'] = false;
if ($profile['has_subscriptions_plans']) {
if ($user->_logged_in) {
if ($user->_data['user_group'] == 3 && $profile['user_id'] != $user->_data['user_id']) {
if (!$user->is_subscribed($profile['user_id'])) {
$profile['needs_subscription'] = true;
}
}
} else {
$profile['needs_subscription'] = true;
}
}
// update profile
// [2] get view content
switch ($_GET['view']) {
case '':
/* profile completion */
/* get the step value */
if ($profile['user_id'] == $user->_data['user_id']) {
$steps_missed = 0;
$steps_requried = 3; /* there is 3 required fields already */
/* [1] check profile picture */
if ($profile['user_picture_default']) {
$steps_missed++;
}
/* [2] check profile cover */
if ($profile['user_cover_default']) {
$steps_missed++;
}
/* [3] check birthdate */
if (!$profile['user_birthdate']) {
$steps_missed++;
}
/* [4] check biography */
if ($system['biography_info_enabled']) {
$steps_requried++;
if (!$profile['user_biography']) {
$steps_missed++;
}
}
/* [5] check relationship */
if ($system['relationship_info_enabled']) {
$steps_requried++;
if (!$profile['user_relationship']) {
$steps_missed++;
}
}
/* [6] check work */
if ($system['work_info_enabled']) {
$steps_requried++;
if (!$profile['user_work_title'] || !$profile['user_work_place']) {
$steps_missed++;
}
}
/* [7] check location */
if ($system['location_info_enabled']) {
$steps_requried++;
if (!$profile['user_current_city'] || !$profile['user_hometown']) {
$steps_missed++;
}
}
/* [8] check education */
if ($system['education_info_enabled']) {
$steps_requried++;
if (!$profile['user_edu_major'] || !$profile['user_edu_school']) {
$steps_missed++;
}
}
$profile['profile_completion'] = round(100 - ($steps_missed * (100 / $steps_requried)));
}
/* get followers count */
$profile['followers_count'] = $user->get_followers_count($profile['user_id']);
/* get custom fields */
$smarty->assign('custom_fields', $user->get_custom_fields(array("for" => "user", "get" => "profile", "node_id" => $profile['user_id'])));
/* gifts system */
if ($system['gifts_enabled']) {
/* get gifts */
$gifts = $user->get_gifts();
/* assign variables */
$smarty->assign('gifts', $gifts);
/* get gift */
if (isset($_GET['gift']) && is_numeric($_GET['gift'])) {
$gift = $user->get_gift($_GET['gift']);
/* assign variables */
$smarty->assign('gift', $gift);
}
}
/* get friends */
/* check top friends first */
$profile['friends'] = $user->get_top_friends($profile['user_id']);
if ($profile['friends']) {
$profile['friends_count'] = $friends_count;
} else {
/* no top friends, get all friends */
$profile['friends'] = $user->get_friends($profile['user_id']);
if ($profile['friends']) {
$profile['friends_count'] = $friends_count;
}
}
/* get subscribers */
if ($profile['has_subscriptions_plans']) {
/* get subscribers count */
$profile['subscribers_count'] = $user->get_subscribers_count($profile['user_id']);
/* get subscribers */
if ($profile['subscribers_count'] > 0) {
$profile['subscribers'] = $user->get_subscribers($profile['user_id']);
}
}
/* get pages */
if ($system['pages_enabled']) {
$profile['pages'] = $user->get_pages(array('user_id' => $profile['user_id'], 'results' => $system['min_results_even']));
}
/* get groups */
if ($system['groups_enabled']) {
$profile['groups'] = $user->get_groups(array('user_id' => $profile['user_id'], 'results' => $system['min_results_even']));
}
/* get events */
if ($system['events_enabled']) {
$profile['events'] = $user->get_events(array('user_id' => $profile['user_id'], 'results' => $system['min_results_even']));
}
/* get photos */
if (!$profile['needs_subscription']) {
$profile['photos'] = $user->get_photos($profile['user_id'], 'user', 0, true, true);
}
/* get pinned post */
$pinned_post = $user->get_post($profile['user_pinned_post'], true, false, true);
$smarty->assign('pinned_post', $pinned_post);
/* prepare publisher */
$smarty->assign('feelings', get_feelings());
$smarty->assign('feelings_types', get_feelings_types());
if ($system['colored_posts_enabled']) {
$smarty->assign('colored_patterns', $user->get_posts_colored_patterns());
}
if ($user->_data['can_upload_videos']) {
$smarty->assign('videos_categories', $user->get_categories("posts_videos_categories"));
}
/* get posts */
$posts = $user->get_posts(array('get' => 'posts_profile', 'id' => $profile['user_id']));
/* assign variables */
$smarty->assign('posts', $posts);
break;
case 'friends':
/* get friends */
$profile['friends'] = $user->get_friends($profile['user_id']);
if ($profile['friends']) {
$profile['friends_count'] = $friends_count;
}
break;
case 'followers':
/* get followers */
$profile['followers'] = $user->get_followers($profile['user_id']);
if ($profile['followers']) {
$profile['followers_count'] = $user->get_followers_count($profile['user_id']);
}
break;
case 'followings':
/* get followings */
$profile['followings'] = $user->get_followings($profile['user_id']);
if ($profile['followings']) {
$profile['followings_count'] = $user->get_followings_count($profile['user_id']);
}
break;
case 'subscribers':
/* check if has subscriptions plans */
if (!$profile['has_subscriptions_plans']) {
_error(404);
}
/* get subscribers */
$profile['subscribers'] = $user->get_subscribers($profile['user_id']);
if ($profile['subscribers']) {
$profile['subscribers_count'] = $user->get_subscribers_count($profile['user_id']);
}
break;
case 'subscriptions':
/* check if monetization enabled */
if (!$system['monetization_enabled']) {
_error(404);
}
/* get subscriptions */
$profile['subscriptions'] = $user->get_subscriptions($profile['user_id']);
if ($profile['subscriptions']) {
$profile['subscriptions_count'] = $user->get_subscriptions_count($profile['user_id']);
}
break;
case 'photos':
/* get content */
if (!$profile['needs_subscription']) {
/* get photos */
$profile['photos'] = $user->get_photos($profile['user_id']);
}
break;
case 'albums':
/* get content */
if (!$profile['needs_subscription']) {
/* get albums */
$profile['albums'] = $user->get_albums($profile['user_id']);
}
break;
case 'album':
/* get content */
if (!$profile['needs_subscription']) {
/* get album */
$album = $user->get_album($_GET['id']);
if (!$album || $album['in_group'] || $album['user_type'] == "page" || ($album['user_type'] == "user" && $album['user_id'] != $profile['user_id'])) {
_error(404);
}
/* assign variables */
$smarty->assign('album', $album);
}
break;
case 'videos':
/* check if videos enabled */
if (!$system['videos_enabled']) {
_error(404);
}
/* get content */
if (!$profile['needs_subscription']) {
/* get videos */
$profile['videos'] = $user->get_videos($profile['user_id']);
}
break;
case 'products':
/* get content */
if (!$profile['needs_subscription']) {
/* get posts (products) */
$posts = $user->get_posts(array('get' => 'posts_profile', 'id' => $profile['user_id'], 'filter' => 'product'));
/* assign variables */
$smarty->assign('posts', $posts);
}
break;
case 'likes':
/* check if pages disabled */
if (!$system['pages_enabled']) {
_error(404);
}
/* get pages */
$profile['pages'] = $user->get_pages(array('user_id' => $profile['user_id']));
break;
case 'groups':
/* check if groups disabled */
if (!$system['groups_enabled']) {
_error(404);
}
/* get groups */
$profile['groups'] = $user->get_groups(array('user_id' => $profile['user_id']));
break;
case 'events':
/* check if events disabled */
if (!$system['events_enabled']) {
_error(404);
}
/* get events */
$profile['events'] = $user->get_events(array('user_id' => $profile['user_id']));
break;
default:
_error(404);
break;
}
// [3] profile visit notification
if ($_GET['view'] == "" && $user->_logged_in && $system['profile_notification_enabled']) {
$user->post_notification(array('to_user_id' => $profile['user_id'], 'action' => 'profile_visit'));
}
// recent rearches
if (isset($_GET['ref']) && $_GET['ref'] == "qs") {
$user->set_search_log($profile['user_id'], 'user');
}
} catch (Exception $e) {
_error(__("Error"), $e->getMessage());
}
// page header
page_header($profile['name'], $profile['user_biography'], $profile['user_picture']);
// assign variables
$smarty->assign('profile', $profile);
$smarty->assign('view', $_GET['view']);
// page footer
page_footer('profile');