]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
Merge branch 'master' of https://github.com/friendica/friendica into threaded_items
[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
208                         (`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE ."' OR item.verb = '" . ACTIVITY_DISLIKE . "')
209                         and `item`.`moderated` = 0 and `item`.`unseen` = 1
210                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
211                         AND `item`.`wall` = 1
212                         $sql_extra
213                         ORDER BY `item`.`created` DESC",
214                         intval($a->profile['profile_uid'])
215                 );
216
217         }
218         else {
219
220                 if(x($category)) {
221                         $sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category'));
222                 }
223
224                 if($datequery) {
225                         $sql_extra2 .= protect_sprintf(sprintf(" AND item.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
226                 }
227                 if($datequery2) {
228                         $sql_extra2 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
229                 }
230
231                 if(! get_pconfig($a->profile['profile_uid'],'system','alt_pager')) {
232                         $r = q("SELECT COUNT(*) AS `total`
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 `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
236                                 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
237                                 $sql_extra $sql_extra2 ",
238                                 intval($a->profile['profile_uid'])
239                         );
240
241                         if(count($r)) {
242                                 $a->set_pager_total($r[0]['total']);
243                 }
244                 }
245                 $a->set_pager_itemspage(40);
246
247                 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
248
249                 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
250                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
251                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
252                         and `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
253                         AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
254                         $sql_extra $sql_extra2
255                         ORDER BY `item`.`created` DESC $pager_sql ",
256                         intval($a->profile['profile_uid'])
257
258                 );
259
260         }
261
262         $parents_arr = array();
263         $parents_str = '';
264
265         if(count($r)) {
266                 foreach($r as $rr)
267                         $parents_arr[] = $rr['item_id'];
268                 $parents_str = implode(', ', $parents_arr);
269  
270                 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
271                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`, 
272                         `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
273                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
274                         FROM `item`, `contact`
275                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
276                         and `item`.`moderated` = 0
277                         AND `contact`.`id` = `item`.`contact-id`
278                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
279                         AND `item`.`parent` IN ( %s )
280                         $sql_extra ",
281                         intval($a->profile['profile_uid']),
282                         dbesc($parents_str)
283                 );
284                 
285                 $items = conv_sort($items,'created');
286         } else {
287                 $items = array();
288         }
289
290         if($is_owner && ! $update) {
291                 $o .= get_birthdays();
292                 $o .= get_events();
293         }
294
295         if((! $update) && ($tab === 'posts')) {
296
297                 // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
298                 // because browser prefetching might change it on us. We have to deliver it with the page.
299
300                 $o .= '<div id="live-profile"></div>' . "\r\n";
301                 $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] 
302                         . "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
303         }
304
305
306         if($is_owner) {
307                 $r = q("UPDATE `item` SET `unseen` = 0 
308                         WHERE `wall` = 1 AND `unseen` = 1 AND `uid` = %d",
309                         intval(local_user())
310                 );
311         }
312
313         $o .= conversation($a,$items,'profile',$update, false, true);
314
315         if(! $update) {
316           if(! get_pconfig($a->profile['profile_uid'],'system','alt_pager')) {
317                         $o .= paginate($a);
318                 }
319                 else {
320                         $o .= alt_pager($a,count($items));
321                 }
322         }
323
324         return $o;
325 }