]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
Merge branch 'master' of https://github.com/friendica/friendica into threaded_items
[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         $contact_id = 0;
120
121         if(is_array($_SESSION['remote'])) {
122                 foreach($_SESSION['remote'] as $v) {
123                         if($v['uid'] == $a->profile['profile_uid']) {
124                                 $contact_id = $v['cid'];
125                                 break;
126                         }
127                 }
128         }
129
130         if($contact_id) {
131                 $groups = init_groups_visitor($contact_id);
132                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
133                         intval($contact_id),
134                         intval($a->profile['profile_uid'])
135                 );
136                 if(count($r)) {
137                         $contact = $r[0];
138                         $remote_contact = true;
139                 }
140         }
141
142         if(! $remote_contact) {
143                 if(local_user()) {
144                         $contact_id = $_SESSION['cid'];
145                         $contact = $a->contact;
146                 }
147         }
148
149         $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
150
151         if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
152                 notice( t('Access to this profile has been restricted.') . EOL);
153                 return;
154         }
155
156         if(! $update) {
157
158
159                 if(x($_GET,'tab'))
160                         $tab = notags(trim($_GET['tab']));
161
162                 $o.=profile_tabs($a, $is_owner, $a->profile['nickname']);
163
164
165                 if($tab === 'profile') {
166                         require_once('include/profile_advanced.php');
167                         $o .= advanced_profile($a);
168                         call_hooks('profile_advanced',$o);
169                         return $o;
170                 }
171
172
173                 $o .= common_friends_visitor_widget($a->profile['profile_uid']);
174
175
176                 if(x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner)
177                         $o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL;
178
179                 $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
180                 $commvisitor = (($commpage && $remote_contact == true) ? true : false);
181
182                 $celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false);
183
184                 $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true); 
185                 $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : ''));
186
187                 if(can_write_wall($a,$a->profile['profile_uid'])) {
188
189                         $x = array(
190                                 'is_owner' => $is_owner,
191                 'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
192                     'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
193                 'nickname' => $a->profile['nickname'],
194                     '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'),
195                 'acl' => (($is_owner) ? populate_acl($a->user, $celeb) : ''),
196                     'bang' => '',
197                 'visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'),
198                     'profile_uid' => $a->profile['profile_uid']
199                 );
200
201                 $o .= status_editor($a,$x);
202                 }
203
204         }
205
206
207         /**
208          * Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
209          */
210
211         $sql_extra = item_permissions_sql($a->profile['profile_uid'],$remote_contact,$groups);
212
213
214         if($update) {
215
216                 $r = q("SELECT distinct(parent) AS `item_id`, `contact`.`uid` AS `contact-uid`
217                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
218                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND
219                         (`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE ."' OR item.verb = '" . ACTIVITY_DISLIKE . "')
220                         and `item`.`moderated` = 0 and `item`.`unseen` = 1
221                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
222                         AND `item`.`wall` = 1
223                         $sql_extra
224                         ORDER BY `item`.`created` DESC",
225                         intval($a->profile['profile_uid'])
226                 );
227
228         }
229         else {
230
231                 if(x($category)) {
232                         $sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category'));
233                 }
234
235                 if($datequery) {
236                         $sql_extra2 .= protect_sprintf(sprintf(" AND item.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
237                 }
238                 if($datequery2) {
239                         $sql_extra2 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
240                 }
241
242                 if(! get_pconfig($a->profile['profile_uid'],'system','alt_pager')) {
243                     $r = q("SELECT COUNT(*) AS `total`
244                             FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
245                             WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
246                             and `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
247                             AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
248                             $sql_extra $sql_extra2 ",
249                             intval($a->profile['profile_uid'])
250                     );
251
252                 if(count($r)) {
253                         $a->set_pager_total($r[0]['total']);
254                         }
255                 }
256
257                 $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
258                 $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
259                 if(($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network))
260                         $itemspage_network = $a->force_max_items;
261
262                 $a->set_pager_itemspage($itemspage_network);
263
264                 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
265
266                 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
267                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
268                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
269                         and `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
270                         AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
271                         $sql_extra $sql_extra2
272                         ORDER BY `item`.`created` DESC $pager_sql ",
273                         intval($a->profile['profile_uid'])
274
275                 );
276
277         }
278
279         $parents_arr = array();
280         $parents_str = '';
281
282         if(count($r)) {
283                 foreach($r as $rr)
284                         $parents_arr[] = $rr['item_id'];
285                 $parents_str = implode(', ', $parents_arr);
286  
287                 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
288                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`, 
289                         `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
290                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
291                         FROM `item`, `contact`
292                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
293                         and `item`.`moderated` = 0
294                         AND `contact`.`id` = `item`.`contact-id`
295                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
296                         AND `item`.`parent` IN ( %s )
297                         $sql_extra ",
298                         intval($a->profile['profile_uid']),
299                         dbesc($parents_str)
300                 );
301                 
302                 $items = conv_sort($items,'created');
303         } else {
304                 $items = array();
305         }
306
307         if($is_owner && ! $update) {
308                 $o .= get_birthdays();
309                 $o .= get_events();
310         }
311
312         if((! $update) && ($tab === 'posts')) {
313
314                 // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
315                 // because browser prefetching might change it on us. We have to deliver it with the page.
316
317                 $o .= '<div id="live-profile"></div>' . "\r\n";
318                 $o .= "<script> var profile_uid = " . $a->profile['profile_uid'] 
319                         . "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
320         }
321
322
323         if($is_owner) {
324                 $r = q("UPDATE `item` SET `unseen` = 0 
325                         WHERE `wall` = 1 AND `unseen` = 1 AND `uid` = %d",
326                         intval(local_user())
327                 );
328         }
329
330         $o .= conversation($a,$items,'profile',$update);
331
332         if(! $update) {
333           if(! get_pconfig($a->profile['profile_uid'],'system','alt_pager')) {
334                         $o .= paginate($a);
335                 }
336                 else {
337                         $o .= alt_pager($a,count($items));
338                 }
339         }
340
341         return $o;
342 }