3 function profile_init(&$a) {
5 require_once('include/contact_widgets.php');
7 if(! x($a->page,'aside'))
8 $a->page['aside'] = '';
10 $blocked = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
15 $r = q("select nickname from user where blocked = 0 and account_expired = 0 and verified = 1 order by rand() limit 1");
17 goaway($a->get_baseurl() . '/profile/' . $r[0]['nickname']);
20 logger('profile error: mod_profile ' . $a->query_string, LOGGER_DEBUG);
21 notice( t('Requested profile is not available.') . EOL );
28 if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
29 $which = $a->user['nickname'];
30 $profile = $a->argv[1];
33 profile_load($a,$which,$profile);
35 $userblock = (($a->profile['hidewall'] && (! local_user()) && (! remote_user())) ? true : false);
37 if((x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY)) {
38 $a->page['htmlhead'] .= '<meta name="friendica.community" content="true" />';
40 if(x($a->profile,'openidserver'))
41 $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
42 if(x($a->profile,'openid')) {
43 $delegate = ((strstr($a->profile['openid'],'://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']);
44 $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
47 if((! $blocked) && (! $userblock)) {
48 $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
49 $keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$keywords);
51 $a->page['htmlhead'] .= '<meta name="keywords" content="' . $keywords . '" />' . "\r\n" ;
54 $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
55 $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
56 $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : ''));
57 $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
58 header('Link: <' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
60 $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
61 foreach($dfrn_pages as $dfrn)
62 $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".$a->get_baseurl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
63 $a->page['htmlhead'] .= "<link rel=\"dfrn-poco\" href=\"".$a->get_baseurl()."/poco/{$which}\" />\r\n";
68 function profile_content(&$a, $update = 0) {
70 $category = $datequery = $datequery2 = '';
73 for($x = 2; $x < $a->argc; $x ++) {
74 if(is_a_date_arg($a->argv[$x])) {
76 $datequery2 = escape_tags($a->argv[$x]);
78 $datequery = escape_tags($a->argv[$x]);
81 $category = $a->argv[$x];
86 $category = ((x($_GET,'category')) ? $_GET['category'] : '');
89 if(get_config('system','block_public') && (! local_user()) && (! remote_user())) {
93 require_once("include/bbcode.php");
94 require_once('include/security.php');
95 require_once('include/conversation.php');
96 require_once('include/acl_selectors.php');
97 require_once('include/items.php');
105 // Ensure we've got a profile owner if updating.
106 $a->profile['profile_uid'] = $update;
109 if($a->profile['profile_uid'] == local_user()) {
110 nav_set_selected('home');
116 $remote_contact = false;
119 $contact_id = $_SESSION['visitor_id'];
120 $groups = init_groups_visitor($contact_id);
121 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
123 intval($a->profile['profile_uid'])
127 $remote_contact = true;
131 if(! $remote_contact) {
133 $contact_id = $_SESSION['cid'];
134 $contact = $a->contact;
138 $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
140 if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
141 notice( t('Access to this profile has been restricted.') . EOL);
149 $tab = notags(trim($_GET['tab']));
151 $o.=profile_tabs($a, $is_owner, $a->profile['nickname']);
154 if($tab === 'profile') {
155 require_once('include/profile_advanced.php');
156 $o .= advanced_profile($a);
157 call_hooks('profile_advanced',$o);
162 $o .= common_friends_visitor_widget($a->profile['profile_uid']);
165 if(x($_SESSION,'new_member') && $_SESSION['new_member'] && $is_owner)
166 $o .= '<a href="newmember" id="newmember-tips" style="font-size: 1.2em;"><b>' . t('Tips for New Members') . '</b></a>' . EOL;
168 $commpage = (($a->profile['page-flags'] == PAGE_COMMUNITY) ? true : false);
169 $commvisitor = (($commpage && $remote_contact == true) ? true : false);
171 $celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false);
173 $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true);
174 $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : ''));
176 if(can_write_wall($a,$a->profile['profile_uid'])) {
179 'is_owner' => $is_owner,
180 'allow_location' => ((($is_owner || $commvisitor) && $a->profile['allow_location']) ? true : false),
181 'default_location' => (($is_owner) ? $a->user['default-location'] : ''),
182 'nickname' => $a->profile['nickname'],
183 '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'),
184 'acl' => (($is_owner) ? populate_acl($a->user, $celeb) : ''),
186 'visitor' => (($is_owner || $commvisitor) ? 'block' : 'none'),
187 'profile_uid' => $a->profile['profile_uid']
190 $o .= status_editor($a,$x);
197 * Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
200 $sql_extra = item_permissions_sql($a->profile['profile_uid'],$remote_contact,$groups);
205 $r = q("SELECT distinct(parent) AS `item_id`, `contact`.`uid` AS `contact-uid`
206 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
207 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
208 and `item`.`moderated` = 0 and `item`.`unseen` = 1
209 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
210 AND `item`.`wall` = 1
212 ORDER BY `item`.`created` DESC",
213 intval($a->profile['profile_uid'])
220 $sql_extra .= protect_sprintf(file_tag_file_query('item',$category,'category'));
224 $sql_extra2 .= protect_sprintf(sprintf(" AND item.created <= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery))));
227 $sql_extra2 .= protect_sprintf(sprintf(" AND item.created >= '%s' ", dbesc(datetime_convert(date_default_timezone_get(),'',$datequery2))));
231 $r = q("SELECT COUNT(*) AS `total`
232 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
233 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
234 and `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
235 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 1
236 $sql_extra $sql_extra2 ",
237 intval($a->profile['profile_uid'])
241 $a->set_pager_total($r[0]['total']);
242 $a->set_pager_itemspage(40);
245 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
247 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
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 ORDER BY `item`.`created` DESC $pager_sql ",
254 intval($a->profile['profile_uid'])
260 $parents_arr = array();
265 $parents_arr[] = $rr['item_id'];
266 $parents_str = implode(', ', $parents_arr);
268 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`,
269 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`,
270 `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
271 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
272 FROM `item`, `contact`
273 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
274 and `item`.`moderated` = 0
275 AND `contact`.`id` = `item`.`contact-id`
276 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
277 AND `item`.`parent` IN ( %s )
279 intval($a->profile['profile_uid']),
283 $items = conv_sort($items,'created');
288 if($is_owner && ! $update) {
289 $o .= get_birthdays();
293 if((! $update) && ($tab === 'posts')) {
295 // This is ugly, but we can't pass the profile_uid through the session to the ajax updater,
296 // because browser prefetching might change it on us. We have to deliver it with the page.
298 $o .= '<div id="live-profile"></div>' . "\r\n";
299 $o .= "<script> var profile_uid = " . $a->profile['profile_uid']
300 . "; var netargs = '?f='; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
305 $r = q("UPDATE `item` SET `unseen` = 0
306 WHERE `wall` = 1 AND `unseen` = 1 AND `uid` = %d",
311 $o .= conversation($a,$items,'profile',$update);