]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
allow themes to decide where live updates appear
[friendica.git] / mod / profile.php
1 <?php
2
3 require_once('include/contact_widgets.php');
4
5
6 function profile_init(&$a) {
7
8         if(! x($a->page,'aside'))
9                 $a->page['aside'] = '';
10
11         if($a->argc > 1)
12                 $which = $a->argv[1];
13         else {
14                 $r = q("select nickname from user where blocked = 0 and account_expired = 0 and verified = 1 order by rand() limit 1");
15                 if(count($r)) {
16                         goaway($a->get_baseurl() . '/profile/' . $r[0]['nickname']);
17                 }
18                 else {
19                         logger('profile error: mod_profile ' . $a->query_string, LOGGER_DEBUG);
20                         notice( t('Requested profile is not available.') . EOL );
21                         $a->error = 404;
22                         return;
23                 }
24         }
25
26         $profile = 0;
27         if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
28                 $which = $a->user['nickname'];
29                 $profile = $a->argv[1];         
30         }
31
32         profile_load($a,$which,$profile);
33
34         $blocked = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
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         $contact_id = 0;
119
120         if(is_array($_SESSION['remote'])) {
121                 foreach($_SESSION['remote'] as $v) {
122                         if($v['uid'] == $a->profile['profile_uid']) {
123                                 $contact_id = $v['cid'];
124                                 break;
125                         }
126                 }
127         }
128
129         if($contact_id) {
130                 $groups = init_groups_visitor($contact_id);
131                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
132                         intval($contact_id),
133                         intval($a->profile['profile_uid'])
134                 );
135                 if(count($r)) {
136                         $contact = $r[0];
137                         $remote_contact = true;
138                 }
139         }
140
141         if(! $remote_contact) {
142                 if(local_user()) {
143                         $contact_id = $_SESSION['cid'];
144                         $contact = $a->contact;
145                 }
146         }
147
148         $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
149
150         if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
151                 notice( t('Access to this profile has been restricted.') . EOL);
152                 return;
153         }
154
155         if(! $update) {
156
157
158                 if(x($_GET,'tab'))
159                         $tab = notags(trim($_GET['tab']));
160
161                 $o.=profile_tabs($a, $is_owner, $a->profile['nickname']);
162
163
164                 if($tab === 'profile') {
165                         require_once('include/profile_advanced.php');
166                         $o .= advanced_profile($a);
167                         call_hooks('profile_advanced',$o);
168                         return $o;
169                 }
170
171
172                 $o .= common_friends_visitor_widget($a->profile['profile_uid']);
173
174
175                 if(x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner)
176                         $o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL;
177
178                 $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
179                 $commvisitor = (($commpage && $remote_contact == true) ? true : false);
180
181                 $celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false);
182
183                 $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true); 
184                 $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : ''));
185
186                 if(can_write_wall($a,$a->profile['profile_uid'])) {
187
188                         $x = array(
189                                 'is_owner' => $is_owner,
190                 'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
191                     'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
192                 'nickname' => $a->profile['nickname'],
193                     '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'),
194                 'acl' => (($is_owner) ? populate_acl($a->user, $celeb) : ''),
195                     'bang' => '',
196                 'visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'),
197                     'profile_uid' => $a->profile['profile_uid']
198                 );
199
200                 $o .= status_editor($a,$x);
201                 }
202
203         }
204
205
206         /**
207          * Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
208          */
209
210         $sql_extra = item_permissions_sql($a->profile['profile_uid'],$remote_contact,$groups);
211
212
213         if($update) {
214
215                 $r = q("SELECT distinct(parent) AS `item_id`, `contact`.`uid` AS `contact-uid`
216                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
217                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND
218                         (`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE ."' OR item.verb = '" . ACTIVITY_DISLIKE . "')
219                         and `item`.`moderated` = 0 and `item`.`unseen` = 1
220                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
221                         AND `item`.`wall` = 1
222                         $sql_extra
223                         ORDER BY `item`.`created` DESC",
224                         intval($a->profile['profile_uid'])
225                 );
226
227         }
228         else {
229
230                 if(x($category)) {
231                         $sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category'));
232                 }
233
234                 if($datequery) {
235                         $sql_extra2 .= protect_sprintf(sprintf(" AND item.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
236                 }
237                 if($datequery2) {
238                         $sql_extra2 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
239                 }
240
241                 if(! get_pconfig($a->profile['profile_uid'],'system','alt_pager')) {
242                     $r = q("SELECT COUNT(*) AS `total`
243                             FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
244                             WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
245                             and `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
246                             AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
247                             $sql_extra $sql_extra2 ",
248                             intval($a->profile['profile_uid'])
249                     );
250
251                 if(count($r)) {
252                         $a->set_pager_total($r[0]['total']);
253                         }
254                 }
255
256                 $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
257                 $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
258                 if(($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network))
259                         $itemspage_network = $a->force_max_items;
260
261                 $a->set_pager_itemspage($itemspage_network);
262
263                 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
264
265                 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
266                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
267                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
268                         and `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
269                         AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
270                         $sql_extra $sql_extra2
271                         ORDER BY `item`.`created` DESC $pager_sql ",
272                         intval($a->profile['profile_uid'])
273
274                 );
275
276         }
277
278         $parents_arr = array();
279         $parents_str = '';
280
281         if(count($r)) {
282                 foreach($r as $rr)
283                         $parents_arr[] = $rr['item_id'];
284                 $parents_str = implode(', ', $parents_arr);
285  
286                 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
287                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`, 
288                         `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
289                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
290                         FROM `item`, `contact`
291                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
292                         and `item`.`moderated` = 0
293                         AND `contact`.`id` = `item`.`contact-id`
294                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
295                         AND `item`.`parent` IN ( %s )
296                         $sql_extra ",
297                         intval($a->profile['profile_uid']),
298                         dbesc($parents_str)
299                 );
300                 
301                 $items = conv_sort($items,'created');
302         } else {
303                 $items = array();
304         }
305
306         if($is_owner && (! $update) && (! get_config('theme','hide_eventlist'))) {
307                 $o .= get_birthdays();
308                 $o .= get_events();
309         }
310
311
312         if($is_owner) {
313                 $r = q("UPDATE `item` SET `unseen` = 0 
314                         WHERE `wall` = 1 AND `unseen` = 1 AND `uid` = %d",
315                         intval(local_user())
316                 );
317         }
318
319         $o .= conversation($a,$items,'profile',$update);
320
321         if(! $update) {
322           if(! get_pconfig($a->profile['profile_uid'],'system','alt_pager')) {
323                         $o .= paginate($a);
324                 }
325                 else {
326                         $o .= alt_pager($a,count($items));
327                 }
328         }
329
330         return $o;
331 }