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