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