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