]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
quattro: in post display page, scroll to and flash selected comment
[friendica.git] / mod / profile.php
1 <?php
2
3 function profile_init(&$a) {
4
5         require_once('include/contact_widgets.php');
6
7         if(! x($a->page,'aside'))
8                 $a->page['aside'] = '';
9
10         $blocked = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
11
12         if($a->argc > 1)
13                 $which = $a->argv[1];
14         else {
15                 $r = q("select nickname from user where blocked = 0 and account_expired = 0 and verified = 1 order by rand() limit 1");
16                 if(count($r)) {
17                         goaway($a->get_baseurl() . '/profile/' . $r[0]['nickname']);
18                 }
19                 else {
20                         logger('profile error: mod_profile ' . $a->query_string, LOGGER_DEBUG);
21                         notice( t('Requested profile is not available.') . EOL );
22                         $a->error = 404;
23                         return;
24                 }
25         }
26
27         $profile = 0;
28         if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
29                 $which = $a->user['nickname'];
30                 $profile = $a->argv[1];         
31         }
32
33         profile_load($a,$which,$profile);
34
35         $userblock = (($a->profile['hidewall'] && (! local_user()) && (! remote_user())) ? true : false);
36
37         if((x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY)) {
38                 $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
39         }
40         if(x($a->profile,'openidserver'))                               
41                 $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
42         if(x($a->profile,'openid')) {
43                 $delegate = ((strstr($a->profile['openid'],'://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']);
44                 $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
45         }
46         // site block
47         if((! $blocked) && (! $userblock)) {
48                 $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
49                 $keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$keywords);
50                 if(strlen($keywords))
51                         $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n" ;
52         }
53
54         $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
55         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
56         $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : ''));
57         $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
58         header('Link: <' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
59         
60         $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
61         foreach($dfrn_pages as $dfrn)
62                 $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".$a->get_baseurl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
63         $a->page['htmlhead'] .= "<link rel=\"dfrn-poco\" href=\"".$a->get_baseurl()."/poco/{$which}\" />\r\n";
64
65 }
66
67
68 function profile_content(&$a, $update = 0) {
69
70         $category = $datequery = $datequery2 = '';
71
72         if($a->argc > 2) {
73                 for($x = 2; $x < $a->argc; $x ++) {
74                         if(is_a_date_arg($a->argv[$x])) {
75                                 if($datequery)
76                                         $datequery2 = escape_tags($a->argv[$x]);
77                                 else
78                                         $datequery = escape_tags($a->argv[$x]);
79                         }
80                         else
81                                 $category = $a->argv[$x];
82                 }
83         }
84
85         if(! x($category)) {
86                 $category = ((x($_GET,'category')) ? $_GET['category'] : '');
87         }
88
89         if(get_config('system','block_public') && (! local_user()) && (! remote_user())) {
90                 return login();
91         }
92
93         require_once("include/bbcode.php");
94         require_once('include/security.php');
95         require_once('include/conversation.php');
96         require_once('include/acl_selectors.php');
97         require_once('include/items.php');
98
99         $groups = array();
100
101         $tab = 'posts';
102         $o = '';
103
104         if($update) {
105                 // Ensure we've got a profile owner if updating.
106                 $a->profile['profile_uid'] = $update;
107         }
108         else {
109                 if($a->profile['profile_uid'] == local_user()) {
110                         nav_set_selected('home');
111                 }
112         }
113
114
115         $contact = null;
116         $remote_contact = false;
117
118         if(remote_user()) {
119                 $contact_id = $_SESSION['visitor_id'];
120                 $groups = init_groups_visitor($contact_id);
121                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
122                         intval($contact_id),
123                         intval($a->profile['profile_uid'])
124                 );
125                 if(count($r)) {
126                         $contact = $r[0];
127                         $remote_contact = true;
128                 }
129         }
130
131         if(! $remote_contact) {
132                 if(local_user()) {
133                         $contact_id = $_SESSION['cid'];
134                         $contact = $a->contact;
135                 }
136         }
137
138         $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
139
140         if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
141                 notice( t('Access to this profile has been restricted.') . EOL);
142                 return;
143         }
144
145         if(! $update) {
146
147
148                 if(x($_GET,'tab'))
149                         $tab = notags(trim($_GET['tab']));
150
151                 $o.=profile_tabs($a, $is_owner, $a->profile['nickname']);
152
153
154                 if($tab === 'profile') {
155                         require_once('include/profile_advanced.php');
156                         $o .= advanced_profile($a);
157                         call_hooks('profile_advanced',$o);
158                         return $o;
159                 }
160
161
162                 $o .= common_friends_visitor_widget($a->profile['profile_uid']);
163
164
165                 if(x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner)
166                         $o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL;
167
168                 $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
169                 $commvisitor = (($commpage && $remote_contact == true) ? true : false);
170
171                 $celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false);
172
173                 $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true); 
174                 $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : ''));
175
176                 if(can_write_wall($a,$a->profile['profile_uid'])) {
177
178                         $x = array(
179                                 'is_owner' => $is_owner,
180                 'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
181                     'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
182                 'nickname' => $a->profile['nickname'],
183                     'lockstate' => (((is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))) ? 'lock' : 'unlock'),
184                 'acl' => (($is_owner) ? populate_acl($a->user, $celeb) : ''),
185                     'bang' => '',
186                 'visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'),
187                     'profile_uid' => $a->profile['profile_uid']
188                 );
189
190                 $o .= status_editor($a,$x);
191                 }
192
193         }
194
195
196         /**
197          * Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
198          */
199
200         $sql_extra = item_permissions_sql($a->profile['profile_uid'],$remote_contact,$groups);
201
202
203         if($update) {
204
205                 $r = q("SELECT distinct(parent) AS `item_id`, `contact`.`uid` AS `contact-uid`
206                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
207                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
208                         and `item`.`moderated` = 0 and `item`.`unseen` = 1
209                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
210                         AND `item`.`wall` = 1
211                         $sql_extra
212                         ORDER BY `item`.`created` DESC",
213                         intval($a->profile['profile_uid'])
214                 );
215
216         }
217         else {
218
219                 if(x($category)) {
220                         $sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category'));
221                 }
222
223                 if($datequery) {
224                         $sql_extra2 .= protect_sprintf(sprintf(" AND item.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
225                 }
226                 if($datequery2) {
227                         $sql_extra2 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
228                 }
229
230
231                 $r = q("SELECT COUNT(*) AS `total`
232                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
233                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
234                         and `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
235                         AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
236                         $sql_extra $sql_extra2 ",
237                         intval($a->profile['profile_uid'])
238                 );
239
240                 if(count($r)) {
241                         $a->set_pager_total($r[0]['total']);
242                         $a->set_pager_itemspage(40);
243                 }
244
245                 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
246
247                 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
248                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
249                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
250                         and `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
251                         AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
252                         $sql_extra $sql_extra2
253                         ORDER BY `item`.`created` DESC $pager_sql ",
254                         intval($a->profile['profile_uid'])
255
256                 );
257
258         }
259
260         $parents_arr = array();
261         $parents_str = '';
262
263         if(count($r)) {
264                 foreach($r as $rr)
265                         $parents_arr[] = $rr['item_id'];
266                 $parents_str = implode(', ', $parents_arr);
267  
268                 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
269                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`, 
270                         `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
271                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
272                         FROM `item`, `contact`
273                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
274                         and `item`.`moderated` = 0
275                         AND `contact`.`id` = `item`.`contact-id`
276                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
277                         AND `item`.`parent` IN ( %s )
278                         $sql_extra ",
279                         intval($a->profile['profile_uid']),
280                         dbesc($parents_str)
281                 );
282                 
283                 $items = conv_sort($items,'created');
284         } else {
285                 $items = array();
286         }
287
288         if($is_owner && ! $update) {
289                 $o .= get_birthdays();
290                 $o .= get_events();
291         }
292
293         if((! $update) && ($tab === 'posts')) {
294
295                 // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
296                 // because browser prefetching might change it on us. We have to deliver it with the page.
297
298                 $o .= '<div id="live-profile"></div>' . "\r\n";
299                 $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] 
300                         . "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
301         }
302
303
304         if($is_owner) {
305                 $r = q("UPDATE `item` SET `unseen` = 0 
306                         WHERE `wall` = 1 AND `unseen` = 1 AND `uid` = %d",
307                         intval(local_user())
308                 );
309         }
310
311         $o .= conversation($a,$items,'profile',$update);
312
313         if(! $update) {
314                 $o .= paginate($a);
315         }
316
317         return $o;
318 }