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