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