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