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