From 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 18 Apr 2016 20:38:38 -0700 Subject: module updates --- Zotlabs/Module/Profile.php | 90 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 Zotlabs/Module/Profile.php (limited to 'Zotlabs/Module/Profile.php') diff --git a/Zotlabs/Module/Profile.php b/Zotlabs/Module/Profile.php new file mode 100644 index 000000000..04a64fe76 --- /dev/null +++ b/Zotlabs/Module/Profile.php @@ -0,0 +1,90 @@ + 1) + $which = argv(1); + else { + notice( t('Requested profile is not available.') . EOL ); + \App::$error = 404; + return; + } + + $profile = ''; + $channel = \App::get_channel(); + + if((local_channel()) && (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_channel()) + ); + if(! $r) + $profile = ''; + $profile = $r[0]['profile_guid']; + } + + \App::$page['htmlhead'] .= '' . "\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) { + \App::$profile = $x[0]; + } + } + + profile_load($a,$which,$profile); + + + } + + function get() { + + if(get_config('system','block_public') && (! get_account_id()) && (! remote_channel())) { + return login(); + } + + $groups = array(); + + $tab = 'profile'; + $o = ''; + + if(! (perm_is_allowed(\App::$profile['profile_uid'],get_observer_hash(), 'view_profile'))) { + notice( t('Permission denied.') . EOL); + return; + } + + + $is_owner = ((local_channel()) && (local_channel() == \App::$profile['profile_uid']) ? true : false); + + if(\App::$profile['hidewall'] && (! $is_owner) && (! remote_channel())) { + notice( t('Permission denied.') . EOL); + return; + } + + $o .= profile_tabs($a, $is_owner, \App::$profile['channel_address']); + + \App::$page['htmlhead'] .= "\r\n" . '' . "\r\n"; + + $o .= advanced_profile($a); + call_hooks('profile_advanced',$o); + return $o; + + } + +} -- cgit v1.2.3