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