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