]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
participate in public conversations
[friendica.git] / mod / profile.php
1 <?php
2
3 if(! function_exists('profile_load')) {
4 function profile_load(&$a, $username, $profile = 0) {
5         if(remote_user()) {
6                 $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
7                         intval($_SESSION['visitor_id']));
8                 if(count($r))
9                         $profile = $r[0]['profile-id'];
10         } 
11
12         $r = null;
13
14         if($profile) {
15                 $profile_int = intval($profile);
16                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
17                         LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
18                         WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d LIMIT 1",
19                         dbesc($username),
20                         intval($profile_int)
21                 );
22         }
23         if(! count($r)) {       
24                 $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
25                         LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
26                         WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 LIMIT 1",
27                         dbesc($username)
28                 );
29         }
30
31         if(($r === false) || (! count($r))) {
32                 notice( t('No profile') . EOL );
33                 $a->error = 404;
34                 return;
35         }
36
37         $a->profile = $r[0];
38
39         $a->page['template'] = 'profile';
40
41         $a->page['title'] = $a->profile['name'];
42         $_SESSION['theme'] = $a->profile['theme'];
43
44         if(! (x($a->page,'aside')))
45                 $a->page['aside'] = '';
46         $a->page['aside'] .= contact_block();
47
48         return;
49 }}
50
51 function profile_init(&$a) {
52
53         if($a->argc > 1)
54                 $which = $a->argv[1];
55         else {
56                 notice( t('No profile') . EOL );
57                 $a->error = 404;
58                 return;
59         }
60
61         $profile = 0;
62         if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
63                 $which = $a->user['nickname'];
64                 $profile = $a->argv[1];         
65         }
66
67         profile_load($a,$which,$profile);
68
69         $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
70         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
71         $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : ''));
72         $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
73         header('Link: <' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"');
74   
75         
76         $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
77         foreach($dfrn_pages as $dfrn)
78                 $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".$a->get_baseurl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
79
80 }
81
82
83 function profile_content(&$a, $update = 0) {
84
85
86         require_once("include/bbcode.php");
87         require_once('include/security.php');
88
89         $groups = array();
90
91         $tab = 'posts';
92         $o = '';
93
94         if($update) {
95                 // Ensure we've got a profile owner if updating.
96                 $a->profile['profile_uid'] = $update;
97         }
98         else {
99                 if($a->profile['profile_uid'] == local_user())          
100                         $o .= '<script> $(document).ready(function() { $(\'#nav-home-link\').addClass(\'nav-selected\'); });</script>';
101         }
102
103         $contact = null;
104         $remote_contact = false;
105
106         if(remote_user()) {
107                 $contact_id = $_SESSION['visitor_id'];
108                 $groups = init_groups_visitor($contact_id);
109                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
110                         intval($contact_id),
111                         intval($a->profile['profile_uid'])
112                 );
113                 if(count($r)) {
114                         $contact = $r[0];
115                         $remote_contact = true;
116                 }
117         }
118
119         if(! $remote_contact) {
120                 if(local_user()) {
121                         $contact_id = $_SESSION['cid'];
122                         $contact = $a->contact;
123                 }
124         }
125
126         $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
127
128         if(! $update) {
129                 if(x($_GET,'tab'))
130                         $tab = notags(trim($_GET['tab']));
131
132                 $tpl = load_view_file('view/profile_tabs.tpl');
133
134                 $o .= replace_macros($tpl,array(
135                         '$url' => $a->get_baseurl() . '/' . $a->cmd,
136                         '$phototab' => $a->get_baseurl() . '/photos/' . $a->profile['nickname']
137                 ));
138
139
140                 if($tab === 'profile') {
141                         $lang = get_config('system','language');
142                         if($lang && file_exists("view/$lang/profile_advanced.php"))
143                                 require_once("view/$lang/profile_advanced.php");
144                         else
145                                 require_once('view/profile_advanced.php');
146                         return $o;
147                 }
148
149                 $celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false);
150                 if(can_write_wall($a,$a->profile['profile_uid'])) {
151
152
153                         $geotag = (($is_owner && $a->profile['allow_location']) ? load_view_file('view/jot_geotag.tpl') : '');
154
155                         $tpl = load_view_file('view/jot-header.tpl');
156         
157                         $a->page['htmlhead'] .= replace_macros($tpl, array(
158                                 '$baseurl' => $a->get_baseurl(),
159                                 '$geotag'  => $geotag
160                         ));
161
162                         require_once('view/acl_selectors.php');
163
164                         $tpl = load_view_file("view/jot.tpl");
165                         if(is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))
166                                 $lockstate = 'lock';
167                         else
168                                 $lockstate = 'unlock';
169                         $o .= replace_macros($tpl,array(
170                                 '$baseurl' => $a->get_baseurl(),
171                                 '$defloc' => (($is_owner) ? $a->user['default-location'] : ''),
172                                 '$return_path' => $a->cmd,
173                                 '$visitor' => (($is_owner) ? 'block' : 'none'),
174                                 '$lockstate' => $lockstate,
175                                 '$bang' => '',
176                                 '$acl' => (($is_owner) ? populate_acl($a->user, $celeb) : ''),
177                                 '$profile_uid' => $a->profile['profile_uid']
178                         ));
179                 }
180
181                 // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
182                 // because browser prefetching might change it on us. We have to deliver it with the page.
183
184                 if($tab === 'posts' && (! $a->pager['start'])) {
185                         $o .= '<div id="live-profile"></div>' . "\r\n";
186                         $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] . "; </script>\r\n";
187                 }
188
189         }
190
191         // Construct permissions
192
193         // default permissions - anonymous user
194
195         $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' ";
196
197         // Profile owner - everything is visible
198
199         if($is_owner) {
200                 $sql_extra = ''; 
201                 
202                 // Oh - while we're here... reset the Unseen messages
203
204                 $r = q("UPDATE `item` SET `unseen` = 0 
205                         WHERE `type` != 'remote' AND `unseen` = 1 AND `uid` = %d",
206                         intval($_SESSION['uid'])
207                 );
208
209         }
210
211         // authenticated visitor - here lie dragons
212         // If $remotecontact is true, we know that not only is this a remotely authenticated
213         // person, but that it is *our* contact, which is important in multi-user mode.
214
215         elseif($remote_contact) {
216                 $gs = '<<>>'; // should be impossible to match
217                 if(count($groups)) {
218                         foreach($groups as $g)
219                                 $gs .= '|<' . intval($g) . '>';
220                 } 
221                 $sql_extra = sprintf(
222                         " AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' ) 
223                           AND ( `deny_cid`  = '' OR  NOT `deny_cid` REGEXP '<%d>' ) 
224                           AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
225                           AND ( `deny_gid`  = '' OR NOT `deny_gid` REGEXP '%s') ",
226
227                         intval($_SESSION['visitor_id']),
228                         intval($_SESSION['visitor_id']),
229                         dbesc($gs),
230                         dbesc($gs)
231                 );
232         }
233
234         $r = q("SELECT COUNT(*) AS `total`
235                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
236                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
237                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
238                 AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` AND `wall` = 1 )
239                 $sql_extra ",
240                 intval($a->profile['profile_uid'])
241
242         );
243
244         if(count($r))
245                 $a->set_pager_total($r[0]['total']);
246
247         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
248                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`network`, `contact`.`rel`, 
249                 `contact`.`thumb`, `contact`.`self`, 
250                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
251                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
252                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
253                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
254                 AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` AND `wall` = 1 )
255                 $sql_extra
256                 ORDER BY `parent` DESC, `gravity` ASC, `id` ASC LIMIT %d ,%d ",
257                 intval($a->profile['profile_uid']),
258                 intval($a->pager['start']),
259                 intval($a->pager['itemspage'])
260
261         );
262
263         $cmnt_tpl = load_view_file('view/comment_item.tpl');
264
265         $like_tpl = load_view_file('view/like.tpl');
266
267         $tpl = load_view_file('view/wall_item.tpl');
268
269         $droptpl = load_view_file('view/wall_item_drop.tpl');
270         $fakedrop = load_view_file('view/wall_fake_drop.tpl');
271
272         if($update)
273                 $return_url = $_SESSION['return_url'];
274         else
275                 $return_url = $_SESSION['return_url'] = $a->cmd;
276
277         $alike = array();
278         $dlike = array();
279
280         if(count($r)) {
281
282                 foreach($r as $item) {
283                         like_puller($a,$item,$alike,'like');
284                         like_puller($a,$item,$dlike,'dislike');
285                 }
286
287                 foreach($r as $item) {
288
289                         $sparkle = '';          
290                         $comment = '';
291                         $likebuttons = '';
292
293                         $template = $tpl;
294                         
295                         $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
296
297                         if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE))) 
298                                 && ($item['id'] != $item['parent']))
299                                 continue;
300
301                         $lock = (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) 
302                                 || strlen($item['deny_cid']) || strlen($item['deny_gid']))
303                                 ? '<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="' . t('Private Message') . '" onclick="lockview(event,' . $item['id'] . ');" /></div>'
304                                 : '<div class="wall-item-lock"></div>');
305
306                         if(can_write_wall($a,$a->profile['profile_uid'])) {
307                                 if($item['id'] == $item['parent']) {
308                                         $likebuttons = replace_macros($like_tpl,array('$id' => $item['id']));
309                                 }
310                                 if($item['last-child']) {
311                                         $comment = replace_macros($cmnt_tpl,array(
312                                                 '$return_path' => $_SESSION['return_url'],
313                                                 '$type' => 'wall-comment',
314                                                 '$id' => $item['item_id'],
315                                                 '$parent' => $item['parent'],
316                                                 '$profile_uid' =>  $a->profile['profile_uid'],
317                                                 '$mylink' => $contact['url'],
318                                                 '$mytitle' => t('This is you'),
319                                                 '$myphoto' => $contact['thumb'],
320                                                 '$ww' => ''
321                                         ));
322                                 }
323                         }
324
325
326                         $profile_url = $item['url'];
327
328                         // This is my profile but I'm not the author of this post/comment. If it's somebody that's a fan or mutual friend,
329                         // I can go directly to their profile as an authenticated guest.
330
331                         if(local_user() && ($item['contact-uid'] == $_SESSION['uid']) 
332                                 && ($item['network'] === 'dfrn') && (! $item['self'] )) {
333                                 $profile_url = $redirect_url;
334                                 $sparkle = ' sparkle';
335                         }
336                         else
337                                 $sparkle = '';
338
339                         // We received this post via a remote feed. It's either a wall-to-wall or a remote comment. The author is
340                         // known to us and is reflected in the contact-id for this item. We can use the contact url or redirect rather than 
341                         // use the link in the feed. This is different than on the network page where we may not know the author.
342  
343                         $profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']);
344                         $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']);
345                         $profile_link = $profile_url;
346
347                         $drop = '';
348                         $dropping = false;
349
350                         if(($item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
351                                 $dropping = true;
352
353                         $drop = replace_macros((($dropping)? $droptpl : $fakedrop), array('$id' => $item['id']));
354
355
356                         $like    = ((isset($alike[$item['id']])) ? format_like($alike[$item['id']],$alike[$item['id'] . '-l'],'like',$item['id']) : '');
357                         $dislike = ((isset($dlike[$item['id']])) ? format_like($dlike[$item['id']],$dlike[$item['id'] . '-l'],'dislike',$item['id']) : '');
358                         $location = (($item['location']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : '');
359                         $coord = (($item['coord']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['coord']) . '">' . $item['coord'] . '</a>' : '');
360                         if($coord) {
361                                 if($location)
362                                         $location .= '<br /><span class="smalltext">(' . $coord . ')</span>';
363                                 else
364                                         $location = '<span class="smalltext">' . $coord . '</span>';
365                         }
366
367                         $o .= replace_macros($template,array(
368                                 '$id' => $item['item_id'],
369                                 '$profile_url' => $profile_link,
370                                 '$name' => $profile_name,
371                                 '$thumb' => $profile_avatar,
372                                 '$sparkle' => $sparkle,
373                                 '$title' => $item['title'],
374                                 '$body' => bbcode($item['body']),
375                                 '$ago' => relative_date($item['created']),
376                                 '$lock' => $lock,
377                                 '$location' => $location, 
378                                 '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
379                                 '$drop' => $drop,
380                                 '$like' => $like,
381                                 '$vote' => $likebuttons,
382                                 '$dislike' => $dislike,
383                                 '$comment' => $comment
384                         ));
385                         
386                 }
387         }
388
389         if($update) {
390                 return $o;
391         }
392                 
393         $o .= paginate($a);
394
395         return $o;
396 }