]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
Merge branch 'pull'
[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                 $o.=profile_tabs($a, $is_owner, $a->profile['nickname']);
114
115
116                 if($tab === 'profile') {
117                         require_once('include/profile_advanced.php');
118                         $o .= advanced_profile($a);
119                         call_hooks('profile_advanced',$o);
120                         return $o;
121                 }
122
123
124
125                 if(x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner)
126                         $o .= '<a href="newmember">' . t('Tips for New Members') . '</a>' . EOL;
127
128                 $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
129                 $commvisitor = (($commpage && $remote_contact == true) ? true : false);
130
131                 $celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false);
132
133                 if(can_write_wall($a,$a->profile['profile_uid'])) {
134
135                         $x = array(
136                                 'is_owner' => $is_owner,
137                 'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
138                     'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
139                 'nickname' => $a->profile['nickname'],
140                     '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'),
141                 'acl' => (($is_owner) ? populate_acl($a->user, $celeb) : ''),
142                     'bang' => '',
143                 'visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'),
144                     'profile_uid' => $a->profile['profile_uid']
145                 );
146
147                 $o .= status_editor($a,$x);
148                 }
149
150                 // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
151                 // because browser prefetching might change it on us. We have to deliver it with the page.
152
153                 if($tab === 'posts') {
154                         $o .= '<div id="live-profile"></div>' . "\r\n";
155                         $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] 
156                                 . "; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
157                 }
158         }
159
160         if($is_owner) {
161                 $r = q("UPDATE `item` SET `unseen` = 0 
162                         WHERE `wall` = 1 AND `unseen` = 1 AND `uid` = %d",
163                         intval(local_user())
164                 );
165         }
166
167         /**
168          * Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
169          */
170
171         $sql_extra = permissions_sql($a->profile['profile_uid'],$remote_contact,$groups);
172
173
174         $r = q("SELECT COUNT(*) AS `total`
175                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
176                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
177                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
178                 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
179                 $sql_extra ",
180                 intval($a->profile['profile_uid'])
181
182         );
183
184         if(count($r)) {
185                 $a->set_pager_total($r[0]['total']);
186                 $a->set_pager_itemspage(40);
187         }
188
189         $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
190                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
191                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
192                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
193                 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
194                 $sql_extra
195                 ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
196                 intval($a->profile['profile_uid']),
197                 intval($a->pager['start']),
198                 intval($a->pager['itemspage'])
199
200         );
201
202         $parents_arr = array();
203         $parents_str = '';
204
205         if(count($r)) {
206                 foreach($r as $rr)
207                         $parents_arr[] = $rr['item_id'];
208                 $parents_str = implode(', ', $parents_arr);
209  
210                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
211                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`network`, `contact`.`rel`, 
212                         `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
213                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
214                         FROM `item`, (SELECT `p`.`id`,`p`.`created` FROM `item` AS `p` WHERE `p`.`parent` = `p`.`id`) AS `parentitem`, `contact`
215                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
216                         AND `contact`.`id` = `item`.`contact-id`
217                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
218                         AND `item`.`parent` = `parentitem`.`id` AND `item`.`parent` IN ( %s )
219                         $sql_extra
220                         ORDER BY `parentitem`.`created` DESC, `gravity` ASC, `item`.`created` ASC ",
221                         intval($a->profile['profile_uid']),
222                         dbesc($parents_str)
223                 );
224         }
225
226         if($is_owner && ! $update)
227                 $o .= get_birthdays();
228
229         $o .= conversation($a,$r,'profile',$update);
230
231         if(! $update) {
232                 $o .= paginate($a);
233         }
234
235         return $o;
236 }