]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
Merge branch 'master' into newui
[friendica.git] / mod / profile.php
1 <?php
2
3 function profile_init(&$a) {
4
5         $blocked = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
6
7         if($a->argc > 1)
8                 $which = $a->argv[1];
9         else {
10                 notice( t('No profile') . EOL );
11                 $a->error = 404;
12                 return;
13         }
14
15         $profile = 0;
16         if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
17                 $which = $a->user['nickname'];
18                 $profile = $a->argv[1];         
19         }
20
21         profile_load($a,$which,$profile);
22
23         if((x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY)) {
24                 $a->page['htmlhead'] .= '<meta name="friendika.community" content="true" />';
25         }
26         if(x($a->profile,'openidserver'))                               
27                 $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
28         if(x($a->profile,'openid')) {
29                 $delegate = ((strstr($a->profile['openid'],'://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']);
30                 $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
31         }
32
33         if(! $blocked) {
34                 $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
35                 $keywords = str_replace(array(',',' ',',,'),array(' ',',',','),$keywords);
36                 if(strlen($keywords))
37                         $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n" ;
38         }
39
40         $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
41         $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
42         $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : ''));
43         $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
44         header('Link: <' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
45         
46         $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
47         foreach($dfrn_pages as $dfrn)
48                 $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".$a->get_baseurl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
49
50 }
51
52
53 function profile_content(&$a, $update = 0) {
54
55         if(get_config('system','block_public') && (! local_user()) && (! remote_user())) {
56                 return login();
57         }
58
59         require_once("include/bbcode.php");
60         require_once('include/security.php');
61         require_once('include/conversation.php');
62         require_once('include/acl_selectors.php');
63         $groups = array();
64
65         $tab = 'posts';
66         $o = '';
67
68         if($update) {
69                 // Ensure we've got a profile owner if updating.
70                 $a->profile['profile_uid'] = $update;
71         }
72         else {
73                 if($a->profile['profile_uid'] == local_user()) {
74                         nav_set_selected('home');
75                 }
76         }
77
78         $contact = null;
79         $remote_contact = false;
80
81         if(remote_user()) {
82                 $contact_id = $_SESSION['visitor_id'];
83                 $groups = init_groups_visitor($contact_id);
84                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
85                         intval($contact_id),
86                         intval($a->profile['profile_uid'])
87                 );
88                 if(count($r)) {
89                         $contact = $r[0];
90                         $remote_contact = true;
91                 }
92         }
93
94         if(! $remote_contact) {
95                 if(local_user()) {
96                         $contact_id = $_SESSION['cid'];
97                         $contact = $a->contact;
98                 }
99         }
100
101         $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
102
103         if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
104                 notice( t('Access to this profile has been restricted.') . EOL);
105                 return;
106         }
107
108         
109         if(! $update) {
110                 if(x($_GET,'tab'))
111                         $tab = notags(trim($_GET['tab']));
112
113                 $tpl = get_markup_template('profile_tabs.tpl');
114
115                 $o .= replace_macros($tpl,array(
116                         '$url' => $a->get_baseurl() . '/' . $a->cmd,
117                         '$phototab' => $a->get_baseurl() . '/photos/' . $a->profile['nickname'],
118                         '$status' => t('Status'),
119                         '$profile' => t('Profile'),
120                         '$photos' => t('Photos'),
121                         '$events' => (($is_owner) ? t('Events') : ''),
122                         '$notes' => (($is_owner) ?      t('Personal Notes') : ''),
123                         '$activetab' => $tab,
124                 ));
125
126
127                 if($tab === 'profile') {
128                         require_once('include/profile_advanced.php');
129                         $o .= advanced_profile($a);
130                         call_hooks('profile_advanced',$o);
131                         return $o;
132                 }
133
134                 if(x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner)
135                         $o .= '<a href="newmember">' . t('Tips for New Members') . '</a>' . EOL;
136
137                 $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
138                 $commvisitor = (($commpage && $remote_contact == true) ? true : false);
139
140                 $celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false);
141
142                 if(can_write_wall($a,$a->profile['profile_uid'])) {
143
144                         $x = array(
145                                 'is_owner' => $is_owner,
146                 'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
147                     'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
148                 'nickname' => $a->profile['nickname'],
149                     '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'),
150                 'acl' => (($is_owner) ? populate_acl($a->user, $celeb) : ''),
151                     'bang' => '',
152                 'visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'),
153                     'profile_uid' => $a->profile['profile_uid']
154                 );
155
156                 $o .= status_editor($a,$x);
157                 }
158
159                 // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
160                 // because browser prefetching might change it on us. We have to deliver it with the page.
161
162                 if($tab === 'posts') {
163                         $o .= '<div id="live-profile"></div>' . "\r\n";
164                         $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] 
165                                 . "; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
166                 }
167         }
168
169         if($is_owner) {
170                 $r = q("UPDATE `item` SET `unseen` = 0 
171                         WHERE `wall` = 1 AND `unseen` = 1 AND `uid` = %d",
172                         intval(local_user())
173                 );
174         }
175
176         /**
177          * Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
178          */
179
180         $sql_extra = permissions_sql($a->profile['profile_uid'],$remote_contact,$groups);
181
182
183         $r = q("SELECT COUNT(*) AS `total`
184                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
185                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
186                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
187                 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
188                 $sql_extra ",
189                 intval($a->profile['profile_uid'])
190
191         );
192
193         if(count($r)) {
194                 $a->set_pager_total($r[0]['total']);
195                 $a->set_pager_itemspage(40);
196         }
197
198         $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
199                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
200                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
201                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
202                 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
203                 $sql_extra
204                 ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
205                 intval($a->profile['profile_uid']),
206                 intval($a->pager['start']),
207                 intval($a->pager['itemspage'])
208
209         );
210
211         $parents_arr = array();
212         $parents_str = '';
213
214         if(count($r)) {
215                 foreach($r as $rr)
216                         $parents_arr[] = $rr['item_id'];
217                 $parents_str = implode(', ', $parents_arr);
218  
219                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
220                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`network`, `contact`.`rel`, 
221                         `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
222                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
223                         FROM `item`, (SELECT `p`.`id`,`p`.`created` FROM `item` AS `p` WHERE `p`.`parent` = `p`.`id`) AS `parentitem`, `contact`
224                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
225                         AND `contact`.`id` = `item`.`contact-id`
226                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
227                         AND `item`.`parent` = `parentitem`.`id` AND `item`.`parent` IN ( %s )
228                         $sql_extra
229                         ORDER BY `parentitem`.`created` DESC, `gravity` ASC, `item`.`created` ASC ",
230                         intval($a->profile['profile_uid']),
231                         dbesc($parents_str)
232                 );
233         }
234
235         if($is_owner && ! $update)
236                 $o .= get_birthdays();
237
238         $o .= conversation($a,$r,'profile',$update);
239
240         if(! $update) {
241                 $o .= paginate($a);
242         }
243
244         return $o;
245 }