aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profile.php
blob: fca7c8f9fb7ba410213584baa4e90eb2bdbeba36 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?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');


function profile_init(&$a) {

	if(argc() > 1)
		$which = argv(1);
	else {
		notice( t('Requested profile is not available.') . EOL );
		$a->error = 404;
		return;
	}

	$profile = '';
	$channel = $a->get_channel();

	if((local_user()) && (argc() > 2) && (argv(2) === 'view')) {
		$which = $channel['channel_address'];
		$profile = argv(1);		
		$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'];
	}

	$a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/feed/' . $which .'" />' . "\r\n" ;

	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];
		}
	}

	profile_load($a,$which,$profile);


}

function profile_content(&$a, $update = 0) {

	if(get_config('system','block_public') && (! get_account_id()) && (! remote_user())) {
			return login();
	}

	$groups = array();

	$tab = 'profile';
	$o = '';

	if(! (perm_is_allowed($a->profile['profile_uid'],get_observer_hash(), 'view_profile'))) {
		notice( t('Access to this profile has been restricted.') . EOL);
		return;
	}


	$is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false);

	if($a->profile['hidewall'] && (! $is_owner) && (! remote_user())) {
		notice( t('Access to this profile has been restricted.') . EOL);
		return;
	}


	$o .= profile_tabs($a, $is_owner, $a->profile['channel_address']);


	$o .= advanced_profile($a);
	call_hooks('profile_advanced',$o);
	return $o;

}