streams/mod/profile.php

122 lines
2.8 KiB
PHP
Raw Normal View History

2010-07-01 23:48:07 +00:00
<?php
function profile_init(&$a) {
$a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/feed/' . $which .'" />' . "\r\n" ;
}
function profile_aside(&$a) {
require_once('include/contact_widgets.php');
require_once('include/items.php');
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
2010-07-29 04:02:36 +00:00
$profile = 0;
$channel = $a->get_channel();
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);
2010-07-29 04:02:36 +00:00
}
$x = q("select uid as profile_uid from channel where address = '%s' limit 1",
dbesc(argv(1)
);
if($x) {
$a->profile = $x[0];
$channel_display = get_pconfig($a->profile['profile_uid'],'system','channel_format');
if(! $channel_display)
profile_load($a,$which,$profile);
if($channel_display === 'full')
$a->page['template'] = 'full';
else {
$a->set_widget('archive',posted_date_widget($a->get_baseurl(true) . '/channel/' . $a->profile['nickname'],$a->profile['profile_uid'],true));
$a->set_widget('categories',categories_widget($a->get_baseurl(true) . '/channel/' . $a->profile['nickname'],$cat));
}
}
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();
}
2012-10-24 00:14:50 +00:00
2010-07-01 23:48:07 +00:00
require_once("include/bbcode.php");
require_once('include/security.php');
require_once('include/conversation.php');
2011-04-20 12:51:02 +00:00
require_once('include/acl_selectors.php');
2012-06-13 03:46:30 +00:00
require_once('include/items.php');
$groups = array();
$tab = 'profile';
2010-10-30 20:25:37 +00:00
$o = '';
2010-07-11 02:43:55 +00:00
if($a->profile['profile_uid'] == local_user()) {
nav_set_selected('home');
}
2010-08-20 00:23:13 +00:00
$contact = null;
$remote_contact = false;
2012-09-10 04:17:06 +00:00
$contact_id = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $a->profile['profile_uid']) {
$contact_id = $v['cid'];
break;
}
}
}
if($contact_id) {
$groups = init_groups_visitor($contact_id);
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($contact_id),
2010-08-20 00:23:13 +00:00
intval($a->profile['profile_uid'])
);
2010-08-20 00:23:13 +00:00
if(count($r)) {
$contact = $r[0];
2010-08-20 00:23:13 +00:00
$remote_contact = true;
}
}
2010-08-20 00:23:13 +00:00
if(! $remote_contact) {
if(local_user()) {
$contact_id = $_SESSION['cid'];
$contact = $a->contact;
}
}
2010-10-20 03:52:05 +00:00
$is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);
2012-03-27 08:31:47 +00:00
if($a->profile['hidewall'] && (! $is_owner) && (! $remote_contact)) {
notice( t('Access to this profile has been restricted.') . EOL);
return;
}
$o .= profile_tabs($a, $is_owner, $a->profile['channel_address']);
2010-07-01 23:48:07 +00:00
require_once('include/profile_advanced.php');
$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
}