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