2015-06-26 18:57:20 +02:00
|
|
|
<?php
|
2015-11-11 22:41:44 +01:00
|
|
|
/**
|
2015-11-10 19:23:45 +01:00
|
|
|
* @file include/identity.php
|
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
|
|
|
|
2016-02-04 14:51:54 +01:00
|
|
|
require_once('include/ForumManager.php');
|
2015-12-14 23:53:35 +01:00
|
|
|
require_once('include/bbcode.php');
|
|
|
|
require_once("mod/proxy.php");
|
2017-01-13 18:31:10 +01:00
|
|
|
require_once('include/cache.php');
|
2015-06-26 18:57:20 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2015-12-25 17:26:04 +01:00
|
|
|
* @brief Loads a profile into the page sidebar.
|
2015-06-26 18:57:20 +02:00
|
|
|
*
|
|
|
|
* The function requires a writeable copy of the main App structure, and the nickname
|
|
|
|
* of a registered local account.
|
|
|
|
*
|
|
|
|
* If the viewer is an authenticated remote viewer, the profile displayed is the
|
|
|
|
* one that has been configured for his/her viewing in the Contact manager.
|
|
|
|
* Passing a non-zero profile ID can also allow a preview of a selected profile
|
|
|
|
* by the owner.
|
|
|
|
*
|
|
|
|
* Profile information is placed in the App structure for later retrieval.
|
|
|
|
* Honours the owner's chosen theme for display.
|
|
|
|
*
|
2015-12-25 17:26:04 +01:00
|
|
|
* @attention Should only be run in the _init() functions of a module. That ensures that
|
|
|
|
* the theme is chosen before the _init() function of a theme is run, which will usually
|
|
|
|
* load a lot of theme-specific content
|
2015-06-26 18:57:20 +02:00
|
|
|
*
|
2015-12-25 17:26:04 +01:00
|
|
|
* @param App $a
|
|
|
|
* @param string $nickname
|
|
|
|
* @param int $profile
|
|
|
|
* @param array $profiledata
|
2015-06-26 18:57:20 +02:00
|
|
|
*/
|
2017-01-09 13:09:01 +01:00
|
|
|
function profile_load(App $a, $nickname, $profile = 0, $profiledata = array()) {
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$user = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
|
|
|
|
dbesc($nickname)
|
|
|
|
);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (!$user && count($user) && !count($profiledata)) {
|
2015-12-25 17:26:04 +01:00
|
|
|
logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
|
|
|
|
notice( t('Requested account is not available.') . EOL );
|
|
|
|
$a->error = 404;
|
|
|
|
return;
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$pdata = get_profiledata_by_nick($nickname, $user[0]['uid'], $profile);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (($pdata === false) || (!count($pdata)) && !count($profiledata)) {
|
2015-12-25 17:26:04 +01:00
|
|
|
logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
|
|
|
|
notice( t('Requested profile is not available.') . EOL );
|
|
|
|
$a->error = 404;
|
|
|
|
return;
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
// fetch user tags if this isn't the default profile
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (!$pdata['is-default']) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$x = q("SELECT `pub_keywords` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
|
|
|
|
intval($pdata['profile_uid'])
|
|
|
|
);
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($x && count($x))
|
2015-12-25 17:26:04 +01:00
|
|
|
$pdata['pub_keywords'] = $x[0]['pub_keywords'];
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$a->profile = $pdata;
|
|
|
|
$a->profile_uid = $pdata['profile_uid'];
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$a->profile['mobile-theme'] = get_pconfig($a->profile['profile_uid'], 'system', 'mobile_theme');
|
|
|
|
$a->profile['network'] = NETWORK_DFRN;
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-08-31 13:49:24 +02:00
|
|
|
if (!$profiledata && !get_pconfig(local_user(),'system','always_my_theme'))
|
|
|
|
$_SESSION['theme'] = $a->profile['theme'];
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$_SESSION['mobile-theme'] = $a->profile['mobile-theme'];
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
/*
|
|
|
|
* load/reload current theme info
|
|
|
|
*/
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$theme_info_file = "view/theme/".current_theme()."/theme.php";
|
|
|
|
if (file_exists($theme_info_file)){
|
|
|
|
require_once($theme_info_file);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (! (x($a->page,'aside')))
|
2015-12-25 17:26:04 +01:00
|
|
|
$a->page['aside'] = '';
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (local_user() && local_user() == $a->profile['uid'] && $profiledata) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$a->page['aside'] .= replace_macros(get_markup_template('profile_edlink.tpl'),array(
|
|
|
|
'$editprofile' => t('Edit profile'),
|
|
|
|
'$profid' => $a->profile['id']
|
|
|
|
));
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
/**
|
|
|
|
* @todo
|
|
|
|
* By now, the contact block isn't shown, when a different profile is given
|
|
|
|
* But: When this profile was on the same server, then we could display the contacts
|
|
|
|
*/
|
|
|
|
if ($profiledata)
|
|
|
|
$a->page['aside'] .= profile_sidebar($profiledata, true);
|
|
|
|
else
|
|
|
|
$a->page['aside'] .= profile_sidebar($a->profile, $block);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
/*if (! $block)
|
2015-12-25 17:26:04 +01:00
|
|
|
$a->page['aside'] .= contact_block();*/
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
return;
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-01 18:31:08 +01:00
|
|
|
/**
|
|
|
|
* @brief Get all profil data of a local user
|
2017-01-09 13:09:01 +01:00
|
|
|
*
|
2015-12-25 17:26:04 +01:00
|
|
|
* If the viewer is an authenticated remote viewer, the profile displayed is the
|
|
|
|
* one that has been configured for his/her viewing in the Contact manager.
|
|
|
|
* Passing a non-zero profile ID can also allow a preview of a selected profile
|
|
|
|
* by the owner
|
2017-01-09 13:09:01 +01:00
|
|
|
*
|
2015-12-01 18:31:08 +01:00
|
|
|
* @param string $nickname
|
|
|
|
* @param int $uid
|
|
|
|
* @param int $profile
|
|
|
|
* ID of the profile
|
|
|
|
* @returns array
|
|
|
|
* Includes all available profile data
|
|
|
|
*/
|
|
|
|
function get_profiledata_by_nick($nickname, $uid = 0, $profile = 0) {
|
2017-04-04 19:47:45 +02:00
|
|
|
if (remote_user() && count($_SESSION['remote'])) {
|
|
|
|
foreach ($_SESSION['remote'] as $visitor) {
|
|
|
|
if ($visitor['uid'] == $uid) {
|
2015-12-01 18:31:08 +01:00
|
|
|
$r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($visitor['cid'])
|
|
|
|
);
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r))
|
2015-12-01 18:31:08 +01:00
|
|
|
$profile = $r[0]['profile-id'];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$r = null;
|
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($profile) {
|
2015-12-01 18:31:08 +01:00
|
|
|
$profile_int = intval($profile);
|
2016-10-23 23:59:40 +02:00
|
|
|
$r = q("SELECT `contact`.`id` AS `contact_id`, `profile`.`uid` AS `profile_uid`, `profile`.*,
|
|
|
|
`contact`.`avatar-date` AS picdate, `contact`.`addr`, `user`.*
|
|
|
|
FROM `profile`
|
|
|
|
INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
|
|
|
|
INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
|
|
|
WHERE `user`.`nickname` = '%s' AND `profile`.`id` = %d LIMIT 1",
|
2015-12-01 18:31:08 +01:00
|
|
|
dbesc($nickname),
|
|
|
|
intval($profile_int)
|
|
|
|
);
|
|
|
|
}
|
2016-12-14 09:42:36 +01:00
|
|
|
if (!dbm::is_result($r)) {
|
2016-10-23 23:59:40 +02:00
|
|
|
$r = q("SELECT `contact`.`id` AS `contact_id`, `profile`.`uid` AS `profile_uid`, `profile`.*,
|
|
|
|
`contact`.`avatar-date` AS picdate, `contact`.`addr`, `user`.*
|
|
|
|
FROM `profile`
|
|
|
|
INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
|
|
|
|
INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
|
|
|
WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` LIMIT 1",
|
2015-12-01 18:31:08 +01:00
|
|
|
dbesc($nickname)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $r[0];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-26 18:57:20 +02:00
|
|
|
/**
|
2015-12-25 17:26:04 +01:00
|
|
|
* @brief Formats a profile for display in the sidebar.
|
2017-01-09 13:09:01 +01:00
|
|
|
*
|
2015-06-26 18:57:20 +02:00
|
|
|
* It is very difficult to templatise the HTML completely
|
|
|
|
* because of all the conditional logic.
|
2017-01-09 13:09:01 +01:00
|
|
|
*
|
2015-12-25 17:26:04 +01:00
|
|
|
* @param array $profile
|
|
|
|
* @param int $block
|
2017-01-09 13:09:01 +01:00
|
|
|
*
|
2015-12-25 17:26:04 +01:00
|
|
|
* @return HTML string stuitable for sidebar inclusion
|
2017-01-09 13:09:01 +01:00
|
|
|
*
|
2015-12-25 17:26:04 +01:00
|
|
|
* @note Returns empty string if passed $profile is wrong type or not populated
|
2017-01-09 13:09:01 +01:00
|
|
|
*
|
2015-12-25 18:36:13 +01:00
|
|
|
* @hooks 'profile_sidebar_enter'
|
|
|
|
* array $profile - profile data
|
|
|
|
* @hooks 'profile_sidebar'
|
|
|
|
* array $arr
|
2015-06-26 18:57:20 +02:00
|
|
|
*/
|
2015-12-25 17:26:04 +01:00
|
|
|
function profile_sidebar($profile, $block = 0) {
|
|
|
|
$a = get_app();
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$o = '';
|
|
|
|
$location = false;
|
|
|
|
$address = false;
|
2017-04-04 19:47:45 +02:00
|
|
|
// $pdesc = true;
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-20 03:58:33 +02:00
|
|
|
// This function can also use contact information in $profile
|
|
|
|
$is_contact = x($profile, 'cid');
|
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if ((! is_array($profile)) && (! count($profile))) {
|
2015-12-25 17:26:04 +01:00
|
|
|
return $o;
|
2017-04-04 19:47:45 +02:00
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$profile['picdate'] = urlencode($profile['picdate']);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
if (($profile['network'] != "") AND ($profile['network'] != NETWORK_DFRN)) {
|
2017-04-04 19:47:45 +02:00
|
|
|
$profile['network_name'] = format_network_name($profile['network'], $profile['url']);
|
|
|
|
} else {
|
2015-12-25 17:26:04 +01:00
|
|
|
$profile['network_name'] = "";
|
2017-04-04 19:47:45 +02:00
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
call_hooks('profile_sidebar_enter', $profile);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
// don't show connect link to yourself
|
|
|
|
$connect = (($profile['uid'] != local_user()) ? t('Connect') : False);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
// don't show connect link to authenticated visitors either
|
2017-04-04 19:47:45 +02:00
|
|
|
if (remote_user() && count($_SESSION['remote'])) {
|
|
|
|
foreach ($_SESSION['remote'] as $visitor) {
|
|
|
|
if ($visitor['uid'] == $profile['uid']) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$connect = false;
|
|
|
|
break;
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
|
|
|
}
|
2015-12-25 17:26:04 +01:00
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
// Is the local user already connected to that user?
|
|
|
|
if ($connect AND local_user()) {
|
2016-12-20 10:35:28 +01:00
|
|
|
if (isset($profile["url"])) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$profile_url = normalise_link($profile["url"]);
|
2016-12-19 14:26:13 +01:00
|
|
|
} else {
|
2016-12-19 14:26:13 +01:00
|
|
|
$profile_url = normalise_link(App::get_baseurl()."/profile/".$profile["nickname"]);
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE NOT `pending` AND `uid` = %d AND `nurl` = '%s'",
|
|
|
|
local_user(), $profile_url);
|
2016-12-20 10:35:28 +01:00
|
|
|
|
2016-12-13 10:44:13 +01:00
|
|
|
if (dbm::is_result($r))
|
2015-11-28 18:11:34 +01:00
|
|
|
$connect = false;
|
2015-12-25 17:26:04 +01:00
|
|
|
}
|
2015-11-28 18:11:34 +01:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
if ($connect AND ($profile['network'] != NETWORK_DFRN) AND !isset($profile['remoteconnect']))
|
|
|
|
$connect = false;
|
2015-11-29 12:02:14 +01:00
|
|
|
|
2016-03-01 14:36:23 +01:00
|
|
|
$remoteconnect = NULL;
|
2015-12-25 17:26:04 +01:00
|
|
|
if (isset($profile['remoteconnect']))
|
|
|
|
$remoteconnect = $profile['remoteconnect'];
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
if ($connect AND ($profile['network'] == NETWORK_DFRN) AND !isset($remoteconnect))
|
|
|
|
$subscribe_feed = t("Atom feed");
|
|
|
|
else
|
|
|
|
$subscribe_feed = false;
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-05-29 22:02:31 +02:00
|
|
|
if (remote_user() OR (get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user()))) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$wallmessage = t('Message');
|
2016-05-29 22:02:31 +02:00
|
|
|
$wallmessage_link = "wallmessage/".$profile["nickname"];
|
|
|
|
|
|
|
|
if (remote_user()) {
|
|
|
|
$r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `id` = '%s' AND `rel` = %d",
|
|
|
|
intval($profile['uid']),
|
|
|
|
intval(remote_user()),
|
|
|
|
intval(CONTACT_IS_FRIEND));
|
|
|
|
} else {
|
|
|
|
$r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `rel` = %d",
|
|
|
|
intval($profile['uid']),
|
|
|
|
dbesc(normalise_link(get_my_url())),
|
|
|
|
intval(CONTACT_IS_FRIEND));
|
|
|
|
}
|
2016-05-29 21:29:26 +02:00
|
|
|
if ($r) {
|
2016-05-29 22:02:31 +02:00
|
|
|
$remote_url = $r[0]["url"];
|
|
|
|
$message_path = preg_replace("=(.*)/profile/(.*)=ism", "$1/message/new/", $remote_url);
|
2016-05-29 22:13:08 +02:00
|
|
|
$wallmessage_link = $message_path.base64_encode($profile["addr"]);
|
2016-05-29 22:02:31 +02:00
|
|
|
}
|
2016-05-29 21:29:26 +02:00
|
|
|
} else {
|
2015-12-25 17:26:04 +01:00
|
|
|
$wallmessage = false;
|
2016-05-29 21:29:26 +02:00
|
|
|
$wallmessage_link = false;
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
// show edit profile to yourself
|
2017-04-20 03:58:33 +02:00
|
|
|
if (!$is_contact && $profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
|
2016-12-19 14:26:13 +01:00
|
|
|
$profile['edit'] = array(App::get_baseurl(). '/profiles', t('Profiles'),"", t('Manage/edit profiles'));
|
2015-12-25 17:26:04 +01:00
|
|
|
$r = q("SELECT * FROM `profile` WHERE `uid` = %d",
|
|
|
|
local_user());
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$profile['menu'] = array(
|
|
|
|
'chg_photo' => t('Change profile photo'),
|
|
|
|
'cr_new' => t('Create New Profile'),
|
|
|
|
'entries' => array(),
|
|
|
|
);
|
|
|
|
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-20 21:13:50 +01:00
|
|
|
foreach ($r as $rr) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$profile['menu']['entries'][] = array(
|
|
|
|
'photo' => $rr['thumb'],
|
|
|
|
'id' => $rr['id'],
|
|
|
|
'alt' => t('Profile Image'),
|
|
|
|
'profile_name' => $rr['profile-name'],
|
|
|
|
'isdefault' => $rr['is-default'],
|
|
|
|
'visibile_to_everybody' => t('visible to everybody'),
|
|
|
|
'edit_visibility' => t('Edit visibility'),
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
);
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
|
|
|
|
2015-12-01 18:31:08 +01:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
}
|
|
|
|
}
|
2017-04-20 03:58:33 +02:00
|
|
|
if (!$is_contact && $profile['uid'] == local_user() && !feature_enabled(local_user(),'multi_profiles')) {
|
2016-12-19 14:26:13 +01:00
|
|
|
$profile['edit'] = array(App::get_baseurl(). '/profiles/'.$profile['id'], t('Edit profile'),"", t('Edit profile'));
|
2015-12-25 17:26:04 +01:00
|
|
|
$profile['menu'] = array(
|
|
|
|
'chg_photo' => t('Change profile photo'),
|
|
|
|
'cr_new' => null,
|
|
|
|
'entries' => array(),
|
|
|
|
);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-10-01 22:03:27 +02:00
|
|
|
// Fetch the account type
|
|
|
|
$account_type = account_type($profile);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if ((x($profile,'address') == 1)
|
2016-01-10 09:19:00 +01:00
|
|
|
|| (x($profile,'location') == 1)
|
2015-12-25 17:26:04 +01:00
|
|
|
|| (x($profile,'locality') == 1)
|
|
|
|
|| (x($profile,'region') == 1)
|
|
|
|
|| (x($profile,'postal-code') == 1)
|
|
|
|
|| (x($profile,'country-name') == 1))
|
|
|
|
$location = t('Location:');
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$marital = ((x($profile,'marital') == 1) ? t('Status:') : False);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$about = ((x($profile,'about') == 1) ? t('About:') : False);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-09-25 17:28:00 +02:00
|
|
|
$xmpp = ((x($profile,'xmpp') == 1) ? t('XMPP:') : False);
|
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (($profile['hidewall'] || $block) && (! local_user()) && (! remote_user())) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$location = $pdesc = $gender = $marital = $homepage = $about = False;
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$firstname = ((strpos($profile['name'],' '))
|
|
|
|
? trim(substr($profile['name'],0,strpos($profile['name'],' '))) : $profile['name']);
|
|
|
|
$lastname = (($firstname === $profile['name']) ? '' : trim(substr($profile['name'],strlen($firstname))));
|
|
|
|
|
2016-06-05 21:17:55 +02:00
|
|
|
if ($profile['guid'] != "")
|
|
|
|
$diaspora = array(
|
|
|
|
'guid' => $profile['guid'],
|
2016-12-19 14:26:13 +01:00
|
|
|
'podloc' => App::get_baseurl(),
|
2016-06-05 21:17:55 +02:00
|
|
|
'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
|
|
|
|
'nickname' => $profile['nickname'],
|
|
|
|
'fullname' => $profile['name'],
|
|
|
|
'firstname' => $firstname,
|
|
|
|
'lastname' => $lastname,
|
2016-12-19 14:26:13 +01:00
|
|
|
'photo300' => App::get_baseurl() . '/photo/custom/300/' . $profile['uid'] . '.jpg',
|
|
|
|
'photo100' => App::get_baseurl() . '/photo/custom/100/' . $profile['uid'] . '.jpg',
|
|
|
|
'photo50' => App::get_baseurl() . '/photo/custom/50/' . $profile['uid'] . '.jpg',
|
2016-06-05 21:17:55 +02:00
|
|
|
);
|
|
|
|
else
|
|
|
|
$diaspora = false;
|
2015-12-25 17:26:04 +01:00
|
|
|
|
|
|
|
if (!$block){
|
|
|
|
$contact_block = contact_block();
|
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (is_array($a->profile) AND !$a->profile['hide-friends']) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
|
|
|
|
intval($a->profile['uid']));
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r))
|
2015-12-25 17:26:04 +01:00
|
|
|
$updated = date("c", strtotime($r[0]['updated']));
|
|
|
|
|
2017-02-10 03:51:01 +01:00
|
|
|
$r = q("SELECT COUNT(*) AS `total` FROM `contact`
|
|
|
|
WHERE `uid` = %d
|
|
|
|
AND NOT `self` AND NOT `blocked` AND NOT `pending`
|
|
|
|
AND NOT `hidden` AND NOT `archive`
|
2015-12-25 17:26:04 +01:00
|
|
|
AND `network` IN ('%s', '%s', '%s', '')",
|
|
|
|
intval($profile['uid']),
|
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc(NETWORK_DIASPORA),
|
|
|
|
dbesc(NETWORK_OSTATUS)
|
|
|
|
);
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r))
|
2015-12-25 17:26:04 +01:00
|
|
|
$contacts = intval($r[0]['total']);
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
2015-12-25 17:26:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$p = array();
|
2017-04-04 19:47:45 +02:00
|
|
|
foreach ($profile as $k => $v) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$k = str_replace('-','_',$k);
|
|
|
|
$p[$k] = $v;
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
if (isset($p["about"]))
|
|
|
|
$p["about"] = bbcode($p["about"]);
|
2015-12-14 23:53:35 +01:00
|
|
|
|
2015-12-25 18:36:13 +01:00
|
|
|
if (isset($p["address"]))
|
|
|
|
$p["address"] = bbcode($p["address"]);
|
2016-01-10 09:19:00 +01:00
|
|
|
else
|
|
|
|
$p["address"] = bbcode($p["location"]);
|
2015-12-14 23:53:35 +01:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
if (isset($p["photo"]))
|
|
|
|
$p["photo"] = proxy_url($p["photo"], false, PROXY_SIZE_SMALL);
|
2015-12-14 23:53:35 +01:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($a->theme['template_engine'] === 'internal')
|
2015-12-25 17:26:04 +01:00
|
|
|
$location = template_escape($location);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$tpl = get_markup_template('profile_vcard.tpl');
|
|
|
|
$o .= replace_macros($tpl, array(
|
|
|
|
'$profile' => $p,
|
2016-09-25 17:28:00 +02:00
|
|
|
'$xmpp' => $xmpp,
|
2015-12-25 17:26:04 +01:00
|
|
|
'$connect' => $connect,
|
|
|
|
'$remoteconnect' => $remoteconnect,
|
|
|
|
'$subscribe_feed' => $subscribe_feed,
|
|
|
|
'$wallmessage' => $wallmessage,
|
2016-05-29 21:29:26 +02:00
|
|
|
'$wallmessage_link' => $wallmessage_link,
|
2015-12-25 17:26:04 +01:00
|
|
|
'$account_type' => $account_type,
|
|
|
|
'$location' => $location,
|
|
|
|
'$gender' => $gender,
|
2015-12-01 19:47:23 +01:00
|
|
|
// '$pdesc' => $pdesc,
|
2015-12-25 17:26:04 +01:00
|
|
|
'$marital' => $marital,
|
|
|
|
'$homepage' => $homepage,
|
|
|
|
'$about' => $about,
|
|
|
|
'$network' => t('Network:'),
|
|
|
|
'$contacts' => $contacts,
|
|
|
|
'$updated' => $updated,
|
|
|
|
'$diaspora' => $diaspora,
|
|
|
|
'$contact_block' => $contact_block,
|
|
|
|
));
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$arr = array('profile' => &$profile, 'entry' => &$o);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
call_hooks('profile_sidebar', $arr);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
return $o;
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
function get_birthdays() {
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$a = get_app();
|
|
|
|
$o = '';
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (! local_user() || $a->is_mobile || $a->is_tablet)
|
2015-12-25 17:26:04 +01:00
|
|
|
return $o;
|
2015-06-26 18:57:20 +02:00
|
|
|
|
|
|
|
// $mobile_detect = new Mobile_Detect();
|
|
|
|
// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
// if ($is_mobile)
|
2015-06-26 18:57:20 +02:00
|
|
|
// return $o;
|
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$bd_format = t('g A l F d') ; // 8 AM Friday January 18
|
|
|
|
$bd_short = t('F d');
|
|
|
|
|
2017-01-13 18:31:10 +01:00
|
|
|
$cachekey = "get_birthdays:".local_user();
|
|
|
|
$r = Cache::get($cachekey);
|
|
|
|
if (is_null($r)) {
|
|
|
|
$r = q("SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
|
|
|
|
INNER JOIN `contact` ON `contact`.`id` = `event`.`cid`
|
|
|
|
WHERE `event`.`uid` = %d AND `type` = 'birthday' AND `start` < '%s' AND `finish` > '%s'
|
|
|
|
ORDER BY `start` ASC ",
|
|
|
|
intval(local_user()),
|
|
|
|
dbesc(datetime_convert('UTC','UTC','now + 6 days')),
|
|
|
|
dbesc(datetime_convert('UTC','UTC','now'))
|
|
|
|
);
|
|
|
|
if (dbm::is_result($r)) {
|
|
|
|
Cache::set($cachekey, $r, CACHE_HOUR);
|
|
|
|
}
|
|
|
|
}
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$total = 0;
|
|
|
|
$now = strtotime('now');
|
|
|
|
$cids = array();
|
|
|
|
|
|
|
|
$istoday = false;
|
2016-12-20 21:13:50 +01:00
|
|
|
foreach ($r as $rr) {
|
2017-04-04 19:47:45 +02:00
|
|
|
if (strlen($rr['name']))
|
2015-12-25 17:26:04 +01:00
|
|
|
$total ++;
|
2017-04-04 19:47:45 +02:00
|
|
|
if ((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now))
|
2015-12-25 17:26:04 +01:00
|
|
|
$istoday = true;
|
|
|
|
}
|
|
|
|
$classtoday = $istoday ? ' birthday-today ' : '';
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($total) {
|
|
|
|
foreach ($r as &$rr) {
|
|
|
|
if (! strlen($rr['name']))
|
2015-12-25 17:26:04 +01:00
|
|
|
continue;
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
// avoid duplicates
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (in_array($rr['cid'],$cids))
|
2015-12-25 17:26:04 +01:00
|
|
|
continue;
|
|
|
|
$cids[] = $rr['cid'];
|
|
|
|
|
|
|
|
$today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
|
|
|
|
$sparkle = '';
|
|
|
|
$url = $rr['url'];
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($rr['network'] === NETWORK_DFRN) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$sparkle = " sparkle";
|
2016-12-19 14:26:13 +01:00
|
|
|
$url = App::get_baseurl() . '/redir/' . $rr['cid'];
|
2015-12-25 17:26:04 +01:00
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$rr['link'] = $url;
|
|
|
|
$rr['title'] = $rr['name'];
|
|
|
|
$rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '');
|
|
|
|
$rr['startime'] = Null;
|
|
|
|
$rr['today'] = $today;
|
2015-06-26 18:57:20 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-25 17:26:04 +01:00
|
|
|
$tpl = get_markup_template("birthdays_reminder.tpl");
|
|
|
|
return replace_macros($tpl, array(
|
2016-12-19 14:26:13 +01:00
|
|
|
'$baseurl' => App::get_baseurl(),
|
2015-12-25 17:26:04 +01:00
|
|
|
'$classtoday' => $classtoday,
|
|
|
|
'$count' => $total,
|
|
|
|
'$event_reminders' => t('Birthday Reminders'),
|
|
|
|
'$event_title' => t('Birthdays this week:'),
|
|
|
|
'$events' => $r,
|
|
|
|
'$lbr' => '{', // raw brackets mess up if/endif macro processing
|
|
|
|
'$rbr' => '}'
|
|
|
|
|
|
|
|
));
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
function get_events() {
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
require_once('include/bbcode.php');
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$a = get_app();
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (! local_user() || $a->is_mobile || $a->is_tablet)
|
2015-12-25 17:26:04 +01:00
|
|
|
return $o;
|
2015-06-26 18:57:20 +02:00
|
|
|
|
|
|
|
|
|
|
|
// $mobile_detect = new Mobile_Detect();
|
|
|
|
// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
// if ($is_mobile)
|
2015-06-26 18:57:20 +02:00
|
|
|
// return $o;
|
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$bd_format = t('g A l F d') ; // 8 AM Friday January 18
|
|
|
|
$bd_short = t('F d');
|
|
|
|
|
|
|
|
$r = q("SELECT `event`.* FROM `event`
|
|
|
|
WHERE `event`.`uid` = %d AND `type` != 'birthday' AND `start` < '%s' AND `start` >= '%s'
|
|
|
|
ORDER BY `start` ASC ",
|
|
|
|
intval(local_user()),
|
|
|
|
dbesc(datetime_convert('UTC','UTC','now + 7 days')),
|
|
|
|
dbesc(datetime_convert('UTC','UTC','now - 1 days'))
|
|
|
|
);
|
|
|
|
|
2016-12-14 09:42:36 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$now = strtotime('now');
|
|
|
|
$istoday = false;
|
2016-12-20 21:13:50 +01:00
|
|
|
foreach ($r as $rr) {
|
2017-04-04 19:47:45 +02:00
|
|
|
if (strlen($rr['name']))
|
2015-12-25 17:26:04 +01:00
|
|
|
$total ++;
|
|
|
|
|
|
|
|
$strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start'],'Y-m-d');
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
|
2015-12-25 17:26:04 +01:00
|
|
|
$istoday = true;
|
|
|
|
}
|
|
|
|
$classtoday = (($istoday) ? 'event-today' : '');
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$skip = 0;
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
foreach ($r as &$rr) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$title = strip_tags(html_entity_decode(bbcode($rr['summary']),ENT_QUOTES,'UTF-8'));
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (strlen($title) > 35)
|
2015-12-25 17:26:04 +01:00
|
|
|
$title = substr($title,0,32) . '... ';
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$description = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
|
2017-04-04 19:47:45 +02:00
|
|
|
if (! $description)
|
2015-12-25 17:26:04 +01:00
|
|
|
$description = t('[No description]');
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (substr($strt,0,10) < datetime_convert('UTC',$a->timezone,'now','Y-m-d')) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$skip++;
|
|
|
|
continue;
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$rr['title'] = $title;
|
|
|
|
$rr['description'] = $desciption;
|
|
|
|
$rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '');
|
|
|
|
$rr['startime'] = $strt;
|
|
|
|
$rr['today'] = $today;
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
|
|
|
}
|
2015-12-25 17:26:04 +01:00
|
|
|
|
|
|
|
$tpl = get_markup_template("events_reminder.tpl");
|
|
|
|
return replace_macros($tpl, array(
|
2016-12-19 14:26:13 +01:00
|
|
|
'$baseurl' => App::get_baseurl(),
|
2015-12-25 17:26:04 +01:00
|
|
|
'$classtoday' => $classtoday,
|
|
|
|
'$count' => count($r) - $skip,
|
|
|
|
'$event_reminders' => t('Event Reminders'),
|
|
|
|
'$event_title' => t('Events this week:'),
|
|
|
|
'$events' => $r,
|
|
|
|
));
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
|
|
|
|
2017-01-09 13:09:01 +01:00
|
|
|
function advanced_profile(App $a) {
|
2015-06-26 18:57:20 +02:00
|
|
|
|
|
|
|
$o = '';
|
2015-11-09 15:56:20 +01:00
|
|
|
$uid = $a->profile['uid'];
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-11-10 20:31:13 +01:00
|
|
|
$o .= replace_macros(get_markup_template('section_title.tpl'),array(
|
2015-06-26 18:57:20 +02:00
|
|
|
'$title' => t('Profile')
|
|
|
|
));
|
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($a->profile['name']) {
|
2015-06-26 18:57:20 +02:00
|
|
|
|
|
|
|
$tpl = get_markup_template('profile_advanced.tpl');
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2015-06-26 18:57:20 +02:00
|
|
|
$profile = array();
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2015-06-26 18:57:20 +02:00
|
|
|
$profile['fullname'] = array( t('Full Name:'), $a->profile['name'] ) ;
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($a->profile['gender']) $profile['gender'] = array( t('Gender:'), $a->profile['gender'] );
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if (($a->profile['dob']) && ($a->profile['dob'] > '0001-01-01')) {
|
2015-06-26 18:57:20 +02:00
|
|
|
$year_bd_format = t('j F, Y');
|
|
|
|
$short_bd_format = t('j F');
|
|
|
|
|
2015-09-30 18:50:44 +02:00
|
|
|
|
|
|
|
$val = ((intval($a->profile['dob']))
|
2015-06-26 18:57:20 +02:00
|
|
|
? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00',$year_bd_format))
|
|
|
|
: day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],5) . ' 00:00 +00:00',$short_bd_format)));
|
|
|
|
|
|
|
|
$profile['birthday'] = array( t('Birthday:'), $val);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($age = age($a->profile['dob'],$a->profile['timezone'],'')) $profile['age'] = array( t('Age:'), $age );
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($a->profile['marital']) $profile['marital'] = array( t('Status:'), $a->profile['marital']);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
/// @TODO Maybe use x() here, plus below?
|
|
|
|
if ($a->profile['with']) {
|
|
|
|
$profile['marital']['with'] = $a->profile['with'];
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2017-02-28 00:37:15 +01:00
|
|
|
if (strlen($a->profile['howlong']) && $a->profile['howlong'] >= NULL_DATE) {
|
2016-12-19 14:26:13 +01:00
|
|
|
$profile['howlong'] = relative_date($a->profile['howlong'], t('for %1$d %2$s'));
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($a->profile['sexual']) {
|
|
|
|
$profile['sexual'] = array( t('Sexual Preference:'), $a->profile['sexual'] );
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($a->profile['homepage']) {
|
|
|
|
$profile['homepage'] = array( t('Homepage:'), linkify($a->profile['homepage']) );
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($a->profile['hometown']) {
|
|
|
|
$profile['hometown'] = array( t('Hometown:'), linkify($a->profile['hometown']) );
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($a->profile['pub_keywords']) {
|
|
|
|
$profile['pub_keywords'] = array( t('Tags:'), $a->profile['pub_keywords']);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($a->profile['politic']) {
|
|
|
|
$profile['politic'] = array( t('Political Views:'), $a->profile['politic']);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($a->profile['religion']) {
|
|
|
|
$profile['religion'] = array( t('Religion:'), $a->profile['religion']);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['about'])) {
|
|
|
|
$profile['about'] = array( t('About:'), $txt );
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['interest'])) {
|
|
|
|
$profile['interest'] = array( t('Hobbies/Interests:'), $txt);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['likes'])) {
|
|
|
|
$profile['likes'] = array( t('Likes:'), $txt);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['dislikes'])) {
|
|
|
|
$profile['dislikes'] = array( t('Dislikes:'), $txt);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['contact'])) {
|
|
|
|
$profile['contact'] = array( t('Contact information and Social Networks:'), $txt);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['music'])) {
|
|
|
|
$profile['music'] = array( t('Musical interests:'), $txt);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['book'])) {
|
|
|
|
$profile['book'] = array( t('Books, literature:'), $txt);
|
|
|
|
}
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['tv'])) {
|
|
|
|
$profile['tv'] = array( t('Television:'), $txt);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['film'])) {
|
|
|
|
$profile['film'] = array( t('Film/dance/culture/entertainment:'), $txt);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['romance'])) {
|
|
|
|
$profile['romance'] = array( t('Love/Romance:'), $txt);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['work'])) {
|
|
|
|
$profile['work'] = array( t('Work/employment:'), $txt);
|
|
|
|
}
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if ($txt = prepare_text($a->profile['education'])) {
|
|
|
|
$profile['education'] = array( t('School/education:'), $txt );
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-11-09 15:56:20 +01:00
|
|
|
//show subcribed forum if it is enabled in the usersettings
|
|
|
|
if (feature_enabled($uid,'forumlist_profile')) {
|
2016-02-04 14:51:54 +01:00
|
|
|
$profile['forumlist'] = array( t('Forums:'), ForumManager::profile_advanced($uid));
|
2015-11-09 15:56:20 +01:00
|
|
|
}
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2016-12-20 10:35:28 +01:00
|
|
|
if ($a->profile['uid'] == local_user()) {
|
2016-12-19 14:26:13 +01:00
|
|
|
$profile['edit'] = array(App::get_baseurl(). '/profiles/'.$a->profile['id'], t('Edit profile'),"", t('Edit profile'));
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2015-09-30 18:50:44 +02:00
|
|
|
|
2015-06-26 18:57:20 +02:00
|
|
|
return replace_macros($tpl, array(
|
|
|
|
'$title' => t('Profile'),
|
2016-06-25 12:21:13 +02:00
|
|
|
'$basic' => t('Basic'),
|
|
|
|
'$advanced' => t('Advanced'),
|
2015-06-26 18:57:20 +02:00
|
|
|
'$profile' => $profile
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
function profile_tabs($a, $is_owner=False, $nickname=Null){
|
|
|
|
//echo "<pre>"; var_dump($a->user); killme();
|
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if (is_null($nickname)) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$nickname = $a->user['nickname'];
|
2016-12-19 14:26:13 +01:00
|
|
|
}
|
2015-12-25 17:26:04 +01:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if (x($_GET,'tab')) {
|
2015-12-25 17:26:04 +01:00
|
|
|
$tab = notags(trim($_GET['tab']));
|
2016-12-19 14:26:13 +01:00
|
|
|
}
|
2015-12-25 17:26:04 +01:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
$url = App::get_baseurl() . '/profile/' . $nickname;
|
2015-12-25 17:26:04 +01:00
|
|
|
|
|
|
|
$tabs = array(
|
|
|
|
array(
|
|
|
|
'label'=>t('Status'),
|
|
|
|
'url' => $url,
|
2017-01-09 13:09:01 +01:00
|
|
|
'sel' => ((!isset($tab) && $a->argv[0]=='profile')?'active':''),
|
2015-12-25 17:26:04 +01:00
|
|
|
'title' => t('Status Messages and Posts'),
|
|
|
|
'id' => 'status-tab',
|
|
|
|
'accesskey' => 'm',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'label' => t('Profile'),
|
|
|
|
'url' => $url.'/?tab=profile',
|
|
|
|
'sel' => ((isset($tab) && $tab=='profile')?'active':''),
|
|
|
|
'title' => t('Profile Details'),
|
|
|
|
'id' => 'profile-tab',
|
|
|
|
'accesskey' => 'r',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'label' => t('Photos'),
|
2016-12-19 14:26:13 +01:00
|
|
|
'url' => App::get_baseurl() . '/photos/' . $nickname,
|
2017-01-09 13:09:01 +01:00
|
|
|
'sel' => ((!isset($tab) && $a->argv[0]=='photos')?'active':''),
|
2015-12-25 17:26:04 +01:00
|
|
|
'title' => t('Photo Albums'),
|
|
|
|
'id' => 'photo-tab',
|
|
|
|
'accesskey' => 'h',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'label' => t('Videos'),
|
2016-12-19 14:26:13 +01:00
|
|
|
'url' => App::get_baseurl() . '/videos/' . $nickname,
|
2017-01-09 13:09:01 +01:00
|
|
|
'sel' => ((!isset($tab) && $a->argv[0]=='videos')?'active':''),
|
2015-12-25 17:26:04 +01:00
|
|
|
'title' => t('Videos'),
|
|
|
|
'id' => 'video-tab',
|
|
|
|
'accesskey' => 'v',
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2016-06-19 22:04:34 +02:00
|
|
|
// the calendar link for the full featured events calendar
|
|
|
|
if ($is_owner && $a->theme_events_in_profile) {
|
2015-06-26 18:57:20 +02:00
|
|
|
$tabs[] = array(
|
2015-12-25 17:26:04 +01:00
|
|
|
'label' => t('Events'),
|
2016-12-19 14:26:13 +01:00
|
|
|
'url' => App::get_baseurl() . '/events',
|
2017-01-09 13:09:01 +01:00
|
|
|
'sel' =>((!isset($tab) && $a->argv[0]=='events')?'active':''),
|
2015-12-25 17:26:04 +01:00
|
|
|
'title' => t('Events and Calendar'),
|
|
|
|
'id' => 'events-tab',
|
|
|
|
'accesskey' => 'e',
|
2015-06-26 18:57:20 +02:00
|
|
|
);
|
2016-06-19 22:04:34 +02:00
|
|
|
// if the user is not the owner of the calendar we only show a calendar
|
|
|
|
// with the public events of the calendar owner
|
|
|
|
} elseif (! $is_owner) {
|
|
|
|
$tabs[] = array(
|
|
|
|
'label' => t('Events'),
|
2016-12-19 14:26:13 +01:00
|
|
|
'url' => App::get_baseurl() . '/cal/' . $nickname,
|
2017-01-09 13:09:01 +01:00
|
|
|
'sel' =>((!isset($tab) && $a->argv[0]=='cal')?'active':''),
|
2016-06-19 22:04:34 +02:00
|
|
|
'title' => t('Events and Calendar'),
|
|
|
|
'id' => 'events-tab',
|
|
|
|
'accesskey' => 'e',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($is_owner){
|
2015-12-25 17:26:04 +01:00
|
|
|
$tabs[] = array(
|
|
|
|
'label' => t('Personal Notes'),
|
2016-12-19 14:26:13 +01:00
|
|
|
'url' => App::get_baseurl() . '/notes',
|
2017-01-09 13:09:01 +01:00
|
|
|
'sel' =>((!isset($tab) && $a->argv[0]=='notes')?'active':''),
|
2015-12-25 17:26:04 +01:00
|
|
|
'title' => t('Only You Can See This'),
|
|
|
|
'id' => 'notes-tab',
|
|
|
|
'accesskey' => 't',
|
|
|
|
);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
if ((! $is_owner) && ((count($a->profile)) || (! $a->profile['hide-friends']))) {
|
|
|
|
$tabs[] = array(
|
|
|
|
'label' => t('Contacts'),
|
2016-12-19 14:26:13 +01:00
|
|
|
'url' => App::get_baseurl() . '/viewcontacts/' . $nickname,
|
2017-01-09 13:09:01 +01:00
|
|
|
'sel' => ((!isset($tab) && $a->argv[0]=='viewcontacts')?'active':''),
|
2015-12-25 17:26:04 +01:00
|
|
|
'title' => t('Contacts'),
|
|
|
|
'id' => 'viewcontacts-tab',
|
|
|
|
'accesskey' => 'k',
|
|
|
|
);
|
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs);
|
|
|
|
call_hooks('profile_tabs', $arr);
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
$tpl = get_markup_template('common_tabs.tpl');
|
2015-06-26 18:57:20 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
return replace_macros($tpl,array('$tabs' => $arr['tabs']));
|
2015-06-26 18:57:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_my_url() {
|
2017-04-04 19:47:45 +02:00
|
|
|
if (x($_SESSION,'my_url'))
|
2015-06-26 18:57:20 +02:00
|
|
|
return $_SESSION['my_url'];
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-09 13:09:01 +01:00
|
|
|
function zrl_init(App $a) {
|
2015-06-26 18:57:20 +02:00
|
|
|
$tmp_str = get_my_url();
|
2017-04-04 19:47:45 +02:00
|
|
|
if (validate_url($tmp_str)) {
|
2015-06-26 18:57:20 +02:00
|
|
|
|
|
|
|
// Is it a DDoS attempt?
|
|
|
|
// The check fetches the cached value from gprobe to reduce the load for this system
|
|
|
|
$urlparts = parse_url($tmp_str);
|
|
|
|
|
|
|
|
$result = Cache::get("gprobe:".$urlparts["host"]);
|
|
|
|
if (!is_null($result)) {
|
2015-10-04 00:28:15 +02:00
|
|
|
if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) {
|
2015-06-26 18:57:20 +02:00
|
|
|
logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-01 07:48:43 +02:00
|
|
|
proc_run(PRIORITY_LOW, 'include/gprobe.php',bin2hex($tmp_str));
|
2015-06-26 18:57:20 +02:00
|
|
|
$arr = array('zrl' => $tmp_str, 'url' => $a->cmd);
|
|
|
|
call_hooks('zrl_init',$arr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function zrl($s,$force = false) {
|
2017-04-04 19:47:45 +02:00
|
|
|
if (! strlen($s)) {
|
2015-06-26 18:57:20 +02:00
|
|
|
return $s;
|
2017-04-04 19:47:45 +02:00
|
|
|
}
|
|
|
|
if ((! strpos($s,'/profile/')) && (! $force)) {
|
2015-06-26 18:57:20 +02:00
|
|
|
return $s;
|
2017-04-04 19:47:45 +02:00
|
|
|
}
|
|
|
|
if ($force && substr($s,-1,1) !== '/') {
|
2015-06-26 18:57:20 +02:00
|
|
|
$s = $s . '/';
|
2017-04-04 19:47:45 +02:00
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
$achar = strpos($s,'?') ? '&' : '?';
|
|
|
|
$mine = get_my_url();
|
2017-04-04 19:47:45 +02:00
|
|
|
if ($mine and ! link_compare($mine,$s)) {
|
2015-06-26 18:57:20 +02:00
|
|
|
return $s . $achar . 'zrl=' . urlencode($mine);
|
2017-04-04 19:47:45 +02:00
|
|
|
}
|
2015-06-26 18:57:20 +02:00
|
|
|
return $s;
|
|
|
|
}
|
2015-06-27 14:10:43 +02:00
|
|
|
|
2015-12-25 17:26:04 +01:00
|
|
|
/**
|
|
|
|
* @brief Get the user ID of the page owner
|
|
|
|
*
|
|
|
|
* Used from within PCSS themes to set theme parameters. If there's a
|
|
|
|
* puid request variable, that is the "page owner" and normally their theme
|
|
|
|
* settings take precedence; unless a local user sets the "always_my_theme"
|
|
|
|
* system pconfig, which means they don't want to see anybody else's theme
|
|
|
|
* settings except their own while on this site.
|
|
|
|
*
|
|
|
|
* @return int user ID
|
2017-01-09 13:09:01 +01:00
|
|
|
*
|
2015-12-25 17:26:04 +01:00
|
|
|
* @note Returns local_user instead of user ID if "always_my_theme"
|
|
|
|
* is set to true
|
|
|
|
*/
|
2015-06-27 14:10:43 +02:00
|
|
|
function get_theme_uid() {
|
|
|
|
$uid = (($_REQUEST['puid']) ? intval($_REQUEST['puid']) : 0);
|
2017-04-04 19:47:45 +02:00
|
|
|
if (local_user()) {
|
|
|
|
if ((get_pconfig(local_user(),'system','always_my_theme')) || (! $uid)) {
|
2015-06-27 14:10:43 +02:00
|
|
|
return local_user();
|
2017-04-04 19:47:45 +02:00
|
|
|
}
|
2015-06-27 14:10:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $uid;
|
|
|
|
}
|