]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
Merge pull request #3991 from MrPetovan/bug/undefined-variables
[friendica.git] / mod / profile.php
1 <?php
2
3 use Friendica\App;
4 use Friendica\Core\Config;
5 use Friendica\Core\PConfig;
6 use Friendica\Core\System;
7 use Friendica\Database\DBM;
8
9 require_once('include/contact_widgets.php');
10 require_once('include/redir.php');
11
12 function profile_init(App $a) {
13
14         if(! x($a->page,'aside'))
15                 $a->page['aside'] = '';
16
17         if($a->argc > 1)
18                 $which = htmlspecialchars($a->argv[1]);
19         else {
20                 $r = q("select nickname from user where blocked = 0 and account_expired = 0 and account_removed = 0 and verified = 1 order by rand() limit 1");
21                 if (DBM::is_result($r)) {
22                         goaway(System::baseUrl() . '/profile/' . $r[0]['nickname']);
23                 }
24                 else {
25                         logger('profile error: mod_profile ' . $a->query_string, LOGGER_DEBUG);
26                         notice( t('Requested profile is not available.') . EOL );
27                         $a->error = 404;
28                         return;
29                 }
30         }
31
32         $profile = 0;
33         if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
34                 $which = $a->user['nickname'];
35                 $profile = htmlspecialchars($a->argv[1]);
36         }
37         else {
38                 auto_redir($a, $which);
39         }
40
41         profile_load($a,$which,$profile);
42
43         $blocked = (((Config::get('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
44         $userblock = (($a->profile['hidewall'] && (! local_user()) && (! remote_user())) ? true : false);
45
46         if((x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY)) {
47                 $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
48         }
49         if (x($a->profile,'openidserver')) {
50                 $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
51         }
52         if (x($a->profile,'openid')) {
53                 $delegate = ((strstr($a->profile['openid'],'://')) ? $a->profile['openid'] : 'https://' . $a->profile['openid']);
54                 $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
55         }
56         // site block
57         if ((! $blocked) && (! $userblock)) {
58                 $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
59                 $keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$keywords);
60                 if(strlen($keywords))
61                         $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n" ;
62         }
63
64         $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
65         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
66         $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : ''));
67         $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . System::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
68         header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
69
70         $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
71         foreach ($dfrn_pages as $dfrn) {
72                 $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".System::baseUrl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
73         }
74         $a->page['htmlhead'] .= "<link rel=\"dfrn-poco\" href=\"".System::baseUrl()."/poco/{$which}\" />\r\n";
75
76 }
77
78
79 function profile_content(App $a, $update = 0) {
80
81         $category = $datequery = $datequery2 = '';
82
83         if ($a->argc > 2) {
84                 for ($x = 2; $x < $a->argc; $x ++) {
85                         if (is_a_date_arg($a->argv[$x])) {
86                                 if ($datequery) {
87                                         $datequery2 = escape_tags($a->argv[$x]);
88                                 } else {
89                                         $datequery = escape_tags($a->argv[$x]);
90                                 }
91                         } else {
92                                 $category = $a->argv[$x];
93                         }
94                 }
95         }
96
97         if (! x($category)) {
98                 $category = ((x($_GET,'category')) ? $_GET['category'] : '');
99         }
100
101         $hashtags = (x($_GET, 'tag') ? $_GET['tag'] : '');
102
103         if (Config::get('system','block_public') && (! local_user()) && (! remote_user())) {
104                 return login();
105         }
106
107         require_once("include/bbcode.php");
108         require_once('include/security.php');
109         require_once('include/conversation.php');
110         require_once('include/acl_selectors.php');
111         require_once('include/items.php');
112
113         $groups = array();
114
115         $tab = 'posts';
116         $o = '';
117
118         if ($update) {
119                 // Ensure we've got a profile owner if updating.
120                 $a->profile['profile_uid'] = $update;
121         } elseif ($a->profile['profile_uid'] == local_user()) {
122                 nav_set_selected('home');
123         }
124
125         $contact = null;
126         $remote_contact = false;
127
128         $contact_id = 0;
129
130         if (is_array($_SESSION['remote'])) {
131                 foreach ($_SESSION['remote'] as $v) {
132                         if ($v['uid'] == $a->profile['profile_uid']) {
133                                 $contact_id = $v['cid'];
134                                 break;
135                         }
136                 }
137         }
138
139         if ($contact_id) {
140                 $groups = init_groups_visitor($contact_id);
141                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
142                         intval($contact_id),
143                         intval($a->profile['profile_uid'])
144                 );
145                 if (DBM::is_result($r)) {
146                         $contact = $r[0];
147                         $remote_contact = true;
148                 }
149         }
150
151         if (! $remote_contact) {
152                 if (local_user()) {
153                         $contact_id = $_SESSION['cid'];
154                         $contact = $a->contact;
155                 }
156         }
157
158         $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
159         $last_updated_key = "profile:" . $a->profile['profile_uid'] . ":" . local_user() . ":" . remote_user();
160
161         if ($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
162                 notice( t('Access to this profile has been restricted.') . EOL);
163                 return;
164         }
165
166         if (! $update) {
167                 if (x($_GET,'tab')) {
168                         $tab = notags(trim($_GET['tab']));
169                 }
170
171                 $o.=profile_tabs($a, $is_owner, $a->profile['nickname']);
172
173                 if ($tab === 'profile') {
174                         $o .= advanced_profile($a);
175                         call_hooks('profile_advanced',$o);
176                         return $o;
177                 }
178
179                 $o .= common_friends_visitor_widget($a->profile['profile_uid']);
180
181                 if (x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner) {
182                         $o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL;
183                 }
184
185                 $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
186                 $commvisitor = (($commpage && $remote_contact == true) ? true : false);
187
188                 $a->page['aside'] .= posted_date_widget(System::baseUrl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true);
189                 $a->page['aside'] .= categories_widget(System::baseUrl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : ''));
190                 $a->page['aside'] .= tagcloud_wall_widget();
191
192                 if (can_write_wall($a,$a->profile['profile_uid'])) {
193
194                         $x = array(
195                                 'is_owner' => $is_owner,
196                                 'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
197                                 'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
198                                 'nickname' => $a->profile['nickname'],
199                                 'lockstate' => (((is_array($a->user) && ((strlen($a->user['allow_cid'])) ||
200                                                 (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) ||
201                                                 (strlen($a->user['deny_gid']))))) ? 'lock' : 'unlock'),
202                                 'acl' => (($is_owner) ? populate_acl($a->user, true) : ''),
203                                 'bang' => '',
204                                 'visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'),
205                                 'profile_uid' => $a->profile['profile_uid'],
206                                 'acl_data' => ( $is_owner ? construct_acl_data($a, $a->user) : '' ), // For non-Javascript ACL selector
207                         );
208
209                         $o .= status_editor($a,$x);
210                 }
211         }
212
213
214         /**
215          * Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
216          */
217         $sql_extra = item_permissions_sql($a->profile['profile_uid'],$remote_contact,$groups);
218
219
220         if ($update) {
221                 $last_updated = (x($_SESSION['last_updated'], $last_updated_key) ? $_SESSION['last_updated'][$last_updated_key] : 0);
222
223                 // If the page user is the owner of the page we should query for unseen
224                 // items. Otherwise use a timestamp of the last succesful update request.
225                 if ($is_owner || !$last_updated) {
226                         $sql_extra4 = " AND `item`.`unseen`";
227                 } else {
228                         $gmupdate = gmdate("Y-m-d H:i:s", $last_updated);
229                         $sql_extra4 = " AND `item`.`received` > '" . $gmupdate . "'";
230                 }
231
232                 $r = q("SELECT distinct(parent) AS `item_id`, `item`.`network` AS `item_network`, `item`.`created`
233                         FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
234                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
235                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND
236                         (`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE ."'
237                         OR item.verb = '" . ACTIVITY_DISLIKE . "' OR item.verb = '" . ACTIVITY_ATTEND . "'
238                         OR item.verb = '" . ACTIVITY_ATTENDNO . "' OR item.verb = '" . ACTIVITY_ATTENDMAYBE . "')
239                         AND `item`.`moderated` = 0
240                         AND `item`.`wall` = 1
241                         $sql_extra4
242                         $sql_extra
243                         ORDER BY `item`.`created` DESC",
244                         intval($a->profile['profile_uid'])
245                 );
246
247                 if (!DBM::is_result($r)) {
248                         return '';
249                 }
250
251         } else {
252                 $sql_post_table = "";
253
254                 if (x($category)) {
255                         $sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
256                                 dbesc(protect_sprintf($category)), intval(TERM_OBJ_POST), intval(TERM_CATEGORY), intval($a->profile['profile_uid']));
257                         //$sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category'));
258                 }
259
260                 if (x($hashtags)) {
261                         $sql_post_table .= sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
262                                 dbesc(protect_sprintf($hashtags)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval($a->profile['profile_uid']));
263                 }
264
265                 if ($datequery) {
266                         $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
267                 }
268                 if ($datequery2) {
269                         $sql_extra2 .= protect_sprintf(sprintf(" AND `thread`.`created` >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
270                 }
271
272                 // Belongs the profile page to a forum?
273                 // If not then we can improve the performance with an additional condition
274                 $r = q("SELECT `uid` FROM `user` WHERE `uid` = %d AND `page-flags` IN (%d, %d)",
275                         intval($a->profile['profile_uid']),
276                         intval(PAGE_COMMUNITY),
277                         intval(PAGE_PRVGROUP));
278
279                 if (!DBM::is_result($r)) {
280                         $sql_extra3 = sprintf(" AND `thread`.`contact-id` = %d ", intval(intval($a->profile['contact_id'])));
281                 }
282
283                 //  check if we serve a mobile device and get the user settings
284                 //  accordingly
285                 if ($a->is_mobile) {
286                         $itemspage_network = PConfig::get(local_user(),'system','itemspage_mobile_network');
287                         $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 10);
288                 } else {
289                         $itemspage_network = PConfig::get(local_user(),'system','itemspage_network');
290                         $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
291                 }
292                 //  now that we have the user settings, see if the theme forces
293                 //  a maximum item number which is lower then the user choice
294                 if(($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network))
295                         $itemspage_network = $a->force_max_items;
296
297                 $a->set_pager_itemspage($itemspage_network);
298
299                 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
300
301                 $r = q("SELECT `thread`.`iid` AS `item_id`, `thread`.`network` AS `item_network`
302                         FROM `thread`
303                         STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
304                         $sql_post_table
305                         STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
306                                 AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
307                         WHERE `thread`.`uid` = %d AND `thread`.`visible`
308                                 AND NOT `thread`.`deleted`
309                                 AND NOT `thread`.`moderated`
310                                 AND `thread`.`wall`
311                                 $sql_extra3 $sql_extra $sql_extra2
312                         ORDER BY `thread`.`created` DESC $pager_sql",
313                         intval($a->profile['profile_uid'])
314                 );
315
316         }
317
318         $parents_arr = array();
319         $parents_str = '';
320
321         // Set a time stamp for this page. We will make use of it when we
322         // search for new items (update routine)
323         $_SESSION['last_updated'][$last_updated_key] = time();
324
325         if (DBM::is_result($r)) {
326                 foreach($r as $rr)
327                         $parents_arr[] = $rr['item_id'];
328                 $parents_str = implode(', ', $parents_arr);
329
330                 $items = q(item_query()." AND `item`.`uid` = %d
331                         AND `item`.`parent` IN (%s)
332                         $sql_extra ",
333                         intval($a->profile['profile_uid']),
334                         dbesc($parents_str)
335                 );
336
337                 $items = conv_sort($items,'created');
338         } else {
339                 $items = array();
340         }
341
342         if($is_owner && (! $update) && (! Config::get('theme','hide_eventlist'))) {
343                 $o .= get_birthdays();
344                 $o .= get_events();
345         }
346
347
348         if ($is_owner) {
349                 $unseen = dba::exists('item', array('wall' => true, 'unseen' => true, 'uid' => local_user()));
350                 if ($unseen) {
351                         $r = dba::update('item', array('unseen' => false),
352                                         array('wall' => true, 'unseen' => true, 'uid' => local_user()));
353                 }
354         }
355
356         $o .= conversation($a, $items, 'profile', $update);
357
358         if (!$update) {
359                 $o .= alt_pager($a, count($items));
360         }
361
362         return $o;
363 }