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