streams/mod/profile.php

84 lines
1.8 KiB
PHP
Raw Normal View History

<?php /** @file */
require_once('include/contact_widgets.php');
require_once('include/items.php');
require_once("include/bbcode.php");
require_once('include/security.php');
require_once('include/conversation.php');
require_once('include/acl_selectors.php');
2010-07-01 23:48:07 +00:00
function profile_init(&$a) {
2012-08-28 08:55:18 +00:00
if(argc() > 1)
$which = argv(1);
2010-07-01 23:48:07 +00:00
else {
2012-08-28 08:55:18 +00:00
notice( t('Requested profile is not available.') . EOL );
$a->error = 404;
return;
2010-07-01 23:48:07 +00:00
}
2012-08-28 08:55:18 +00:00
2013-07-03 09:47:36 +00:00
$profile = '';
$channel = $a->get_channel();
2013-07-03 10:19:58 +00:00
2012-08-30 06:03:03 +00:00
if((local_user()) && (argc() > 2) && (argv(2) === 'view')) {
$which = $channel['channel_address'];
2012-08-30 06:03:03 +00:00
$profile = argv(1);
2013-07-03 09:47:36 +00:00
$r = q("select profile_guid from profile where id = %d and uid = %d limit 1",
intval($profile),
intval(local_user())
);
if(! $r)
$profile = '';
$profile = $r[0]['profile_guid'];
2010-07-29 04:02:36 +00:00
}
2013-01-06 21:42:51 +00:00
$a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/feed/' . $which .'" />' . "\r\n" ;
2013-07-03 09:47:36 +00:00
if(! $profile) {
$x = q("select channel_id as profile_uid from channel where channel_address = '%s' limit 1",
dbesc(argv(1))
);
if($x) {
$a->profile = $x[0];
}
}
2013-01-06 21:42:51 +00:00
profile_load($a,$which,$profile);
2013-01-06 21:42:51 +00:00
2010-07-01 23:48:07 +00:00
}
function profile_content(&$a, $update = 0) {
2012-08-30 06:03:03 +00:00
if(get_config('system','block_public') && (! get_account_id()) && (! remote_user())) {
return login();
}
$groups = array();
$tab = 'profile';
2010-10-30 20:25:37 +00:00
$o = '';
2010-07-11 02:43:55 +00:00
if(! (perm_is_allowed($a->profile['profile_uid'],get_observer_hash(), 'view_profile'))) {
notice( t('Permission denied.') . EOL);
return;
}
2010-08-20 00:23:13 +00:00
2010-10-20 03:52:05 +00:00
$is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
if($a->profile['hidewall'] && (! $is_owner) && (! remote_user())) {
notice( t('Permission denied.') . EOL);
return;
}
$o .= profile_tabs($a, $is_owner, $a->profile['channel_address']);
2010-07-01 23:48:07 +00:00
$o .= advanced_profile($a);
call_hooks('profile_advanced',$o);
2010-07-01 23:48:07 +00:00
return $o;
2010-12-23 20:32:13 +00:00
}