2015-06-26 16:57:20 +00:00
|
|
|
<?php
|
2018-01-01 20:47:20 +00:00
|
|
|
|
2015-11-11 21:41:44 +00:00
|
|
|
/**
|
2015-11-10 18:23:45 +00:00
|
|
|
* @file include/identity.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2017-12-04 14:04:36 +00:00
|
|
|
use Friendica\Content\Feature;
|
2017-11-21 12:20:22 +00:00
|
|
|
use Friendica\Content\ForumManager;
|
2017-11-09 16:05:18 +00:00
|
|
|
use Friendica\Core\Cache;
|
2017-11-07 02:22:52 +00:00
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Core\PConfig;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2017-11-05 12:15:53 +00:00
|
|
|
use Friendica\Core\Worker;
|
2017-11-08 03:57:46 +00:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-20 21:15:13 +00:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
require_once 'include/bbcode.php';
|
|
|
|
require_once 'mod/proxy.php';
|
2015-06-26 16:57:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2015-12-25 16:26:04 +00:00
|
|
|
* @brief Loads a profile into the page sidebar.
|
2015-06-26 16:57:20 +00: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 16:26:04 +00: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 16:57:20 +00:00
|
|
|
*
|
2017-11-09 16:05:18 +00:00
|
|
|
* @param object $a App
|
|
|
|
* @param string $nickname string
|
|
|
|
* @param int $profile int
|
|
|
|
* @param array $profiledata array
|
2017-12-29 22:53:08 +00:00
|
|
|
* @param boolean $show_connect Show connect link
|
2015-06-26 16:57:20 +00:00
|
|
|
*/
|
2017-12-29 22:53:08 +00:00
|
|
|
function profile_load(App $a, $nickname, $profile = 0, $profiledata = array(), $show_connect = true)
|
2017-11-09 16:05:18 +00:00
|
|
|
{
|
|
|
|
$user = q(
|
|
|
|
"SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
|
2015-12-25 16:26:04 +00:00
|
|
|
dbesc($nickname)
|
|
|
|
);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!$user && !count($user) && !count($profiledata)) {
|
2015-12-25 16:26:04 +00:00
|
|
|
logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
|
2017-11-09 16:05:18 +00:00
|
|
|
notice(t('Requested account is not available.') . EOL);
|
2015-12-25 16:26:04 +00:00
|
|
|
$a->error = 404;
|
|
|
|
return;
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!x($a->page, 'aside')) {
|
|
|
|
$a->page['aside'] = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($profiledata) {
|
|
|
|
$a->page['aside'] .= profile_sidebar($profiledata, true, $show_connect);
|
|
|
|
|
|
|
|
if (!DBM::is_result($user)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$pdata = get_profiledata_by_nick($nickname, $user[0]['uid'], $profile);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-08-14 21:46:58 +00:00
|
|
|
if (empty($pdata) && empty($profiledata)) {
|
2015-12-25 16:26:04 +00:00
|
|
|
logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
|
2017-11-09 16:05:18 +00:00
|
|
|
notice(t('Requested profile is not available.') . EOL);
|
2015-12-25 16:26:04 +00:00
|
|
|
$a->error = 404;
|
|
|
|
return;
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
// fetch user tags if this isn't the default profile
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
if (!$pdata['is-default']) {
|
2017-11-09 16:05:18 +00:00
|
|
|
$x = q(
|
|
|
|
"SELECT `pub_keywords` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
|
|
|
|
intval($pdata['profile_uid'])
|
2015-12-25 16:26:04 +00:00
|
|
|
);
|
2018-01-01 20:47:20 +00:00
|
|
|
if ($x && count($x)) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$pdata['pub_keywords'] = $x[0]['pub_keywords'];
|
2018-01-01 20:47:20 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$a->profile = $pdata;
|
|
|
|
$a->profile_uid = $pdata['profile_uid'];
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-07 02:22:52 +00:00
|
|
|
$a->profile['mobile-theme'] = PConfig::get($a->profile['profile_uid'], 'system', 'mobile_theme');
|
2015-12-25 16:26:04 +00:00
|
|
|
$a->profile['network'] = NETWORK_DFRN;
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$a->page['title'] = $a->profile['name'] . ' @ ' . $a->config['sitename'];
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!$profiledata && !PConfig::get(local_user(), 'system', 'always_my_theme')) {
|
2017-11-09 16:05:18 +00:00
|
|
|
$_SESSION['theme'] = $a->profile['theme'];
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$_SESSION['mobile-theme'] = $a->profile['mobile-theme'];
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
/*
|
|
|
|
* load/reload current theme info
|
|
|
|
*/
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00: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 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$theme_info_file = 'view/theme/' . current_theme() . '/theme.php';
|
2017-04-04 17:47:45 +00:00
|
|
|
if (file_exists($theme_info_file)) {
|
2017-11-09 17:26:32 +00:00
|
|
|
require_once $theme_info_file;
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!x($a->page, 'aside')) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$a->page['aside'] = '';
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
if (local_user() && local_user() == $a->profile['uid'] && $profiledata) {
|
2017-11-09 16:05:18 +00:00
|
|
|
$a->page['aside'] .= replace_macros(
|
2018-01-01 20:47:20 +00:00
|
|
|
get_markup_template('profile_edlink.tpl'), array(
|
2017-11-09 16:05:18 +00:00
|
|
|
'$editprofile' => t('Edit profile'),
|
|
|
|
'$profid' => $a->profile['id']
|
|
|
|
)
|
|
|
|
);
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-12-29 22:53:08 +00:00
|
|
|
$block = ((Config::get('system', 'block_public') && !local_user() && !remote_user()) ? true : false);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00: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
|
|
|
|
*/
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!$profiledata) {
|
2017-12-29 22:53:08 +00:00
|
|
|
$a->page['aside'] .= profile_sidebar($a->profile, $block, $show_connect);
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
return;
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
2015-12-01 17:31:08 +00:00
|
|
|
/**
|
|
|
|
* @brief Get all profil data of a local user
|
2017-01-09 12:09:01 +00:00
|
|
|
*
|
2015-12-25 16:26:04 +00: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 12:09:01 +00:00
|
|
|
*
|
2018-01-01 20:47:20 +00:00
|
|
|
* Includes all available profile data
|
|
|
|
*
|
2017-11-09 16:05:18 +00:00
|
|
|
* @param string $nickname nick
|
|
|
|
* @param int $uid uid
|
|
|
|
* @param int $profile ID of the profile
|
2015-12-01 17:31:08 +00:00
|
|
|
* @returns array
|
|
|
|
*/
|
2017-11-09 16:05:18 +00:00
|
|
|
function get_profiledata_by_nick($nickname, $uid = 0, $profile = 0)
|
|
|
|
{
|
2017-04-04 17:47:45 +00:00
|
|
|
if (remote_user() && count($_SESSION['remote'])) {
|
2017-08-09 21:12:41 +00:00
|
|
|
foreach ($_SESSION['remote'] as $visitor) {
|
|
|
|
if ($visitor['uid'] == $uid) {
|
|
|
|
$r = dba::select('contact', array('profile-id'), array('id' => $visitor['cid']), array('limit' => 1));
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($r)) {
|
2017-08-09 21:12:41 +00:00
|
|
|
$profile = $r['profile-id'];
|
2015-12-01 17:31:08 +00:00
|
|
|
}
|
2017-08-09 21:12:41 +00:00
|
|
|
break;
|
2015-12-01 17:31:08 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-09 21:12:41 +00:00
|
|
|
}
|
2015-12-01 17:31:08 +00:00
|
|
|
|
|
|
|
$r = null;
|
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
if ($profile) {
|
2015-12-01 17:31:08 +00:00
|
|
|
$profile_int = intval($profile);
|
2017-11-09 16:05:18 +00:00
|
|
|
$r = dba::fetch_first(
|
|
|
|
"SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` AS `contact_photo`,
|
2017-05-17 06:00:20 +00:00
|
|
|
`contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`,
|
|
|
|
`profile`.`uid` AS `profile_uid`, `profile`.*,
|
2017-11-22 20:29:07 +00:00
|
|
|
`contact`.`avatar-date` AS picdate, `contact`.`addr`, `contact`.`url`, `user`.*
|
2016-10-23 21:59:40 +00:00
|
|
|
FROM `profile`
|
|
|
|
INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
|
|
|
|
INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
2017-08-09 21:12:41 +00:00
|
|
|
WHERE `user`.`nickname` = ? AND `profile`.`id` = ? LIMIT 1",
|
2017-11-09 16:05:18 +00:00
|
|
|
$nickname,
|
|
|
|
$profile_int
|
2015-12-01 17:31:08 +00:00
|
|
|
);
|
|
|
|
}
|
2017-11-08 03:57:46 +00:00
|
|
|
if (!DBM::is_result($r)) {
|
2017-11-09 16:05:18 +00:00
|
|
|
$r = dba::fetch_first(
|
|
|
|
"SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` as `contact_photo`,
|
2017-05-17 06:00:20 +00:00
|
|
|
`contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`,
|
|
|
|
`profile`.`uid` AS `profile_uid`, `profile`.*,
|
2017-11-22 20:29:07 +00:00
|
|
|
`contact`.`avatar-date` AS picdate, `contact`.`addr`, `contact`.`url`, `user`.*
|
2016-10-23 21:59:40 +00:00
|
|
|
FROM `profile`
|
|
|
|
INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
|
|
|
|
INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
|
2017-08-09 21:12:41 +00:00
|
|
|
WHERE `user`.`nickname` = ? AND `profile`.`is-default` LIMIT 1",
|
2017-11-09 16:05:18 +00:00
|
|
|
$nickname
|
2015-12-01 17:31:08 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-08-09 21:12:41 +00:00
|
|
|
return $r;
|
2015-12-01 17:31:08 +00:00
|
|
|
}
|
|
|
|
|
2015-06-26 16:57:20 +00:00
|
|
|
/**
|
2015-12-25 16:26:04 +00:00
|
|
|
* @brief Formats a profile for display in the sidebar.
|
2017-01-09 12:09:01 +00:00
|
|
|
*
|
2015-06-26 16:57:20 +00:00
|
|
|
* It is very difficult to templatise the HTML completely
|
|
|
|
* because of all the conditional logic.
|
2017-01-09 12:09:01 +00:00
|
|
|
*
|
2015-12-25 16:26:04 +00:00
|
|
|
* @param array $profile
|
|
|
|
* @param int $block
|
2017-12-29 22:53:08 +00:00
|
|
|
* @param boolean $show_connect Show connect link
|
2017-01-09 12:09:01 +00:00
|
|
|
*
|
2015-12-25 16:26:04 +00:00
|
|
|
* @return HTML string stuitable for sidebar inclusion
|
2017-01-09 12:09:01 +00:00
|
|
|
*
|
2015-12-25 16:26:04 +00:00
|
|
|
* @note Returns empty string if passed $profile is wrong type or not populated
|
2017-01-09 12:09:01 +00:00
|
|
|
*
|
2015-12-25 17:36:13 +00:00
|
|
|
* @hooks 'profile_sidebar_enter'
|
|
|
|
* array $profile - profile data
|
|
|
|
* @hooks 'profile_sidebar'
|
|
|
|
* array $arr
|
2015-06-26 16:57:20 +00:00
|
|
|
*/
|
2017-12-29 22:53:08 +00:00
|
|
|
function profile_sidebar($profile, $block = 0, $show_connect = true)
|
2017-11-09 16:05:18 +00:00
|
|
|
{
|
2015-12-25 16:26:04 +00:00
|
|
|
$a = get_app();
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$o = '';
|
|
|
|
$location = false;
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-04-20 01:58:33 +00:00
|
|
|
// This function can also use contact information in $profile
|
|
|
|
$is_contact = x($profile, 'cid');
|
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!is_array($profile) && !count($profile)) {
|
2015-12-25 16:26:04 +00:00
|
|
|
return $o;
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['picdate'] = urlencode(defaults($profile, 'picdate', ''));
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (($profile['network'] != '') && ($profile['network'] != NETWORK_DFRN)) {
|
2017-04-04 17:47:45 +00:00
|
|
|
$profile['network_name'] = format_network_name($profile['network'], $profile['url']);
|
|
|
|
} else {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['network_name'] = '';
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
call_hooks('profile_sidebar_enter', $profile);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
// don't show connect link to yourself
|
2018-01-01 20:47:20 +00:00
|
|
|
$connect = $profile['uid'] != local_user() ? t('Connect') : false;
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
// don't show connect link to authenticated visitors either
|
2017-04-04 17:47:45 +00:00
|
|
|
if (remote_user() && count($_SESSION['remote'])) {
|
|
|
|
foreach ($_SESSION['remote'] as $visitor) {
|
|
|
|
if ($visitor['uid'] == $profile['uid']) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$connect = false;
|
|
|
|
break;
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-12-29 22:53:08 +00:00
|
|
|
if (!$show_connect) {
|
|
|
|
$connect = false;
|
|
|
|
}
|
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
// Is the local user already connected to that user?
|
2017-06-08 02:00:59 +00:00
|
|
|
if ($connect && local_user()) {
|
2018-01-01 20:47:20 +00:00
|
|
|
if (isset($profile['url'])) {
|
|
|
|
$profile_url = normalise_link($profile['url']);
|
2016-12-19 13:26:13 +00:00
|
|
|
} else {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile_url = normalise_link(System::baseUrl() . '/profile/' . $profile['nickname']);
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-08-24 19:11:27 +00:00
|
|
|
if (dba::exists('contact', array('pending' => false, 'uid' => local_user(), 'nurl' => $profile_url))) {
|
|
|
|
$connect = false;
|
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
2015-11-28 17:11:34 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if ($connect && ($profile['network'] != NETWORK_DFRN) && !isset($profile['remoteconnect'])) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$connect = false;
|
2018-01-01 20:47:20 +00:00
|
|
|
}
|
2015-11-29 11:02:14 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$remoteconnect = null;
|
2018-01-01 20:47:20 +00:00
|
|
|
if (isset($profile['remoteconnect'])) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$remoteconnect = $profile['remoteconnect'];
|
2018-01-01 20:47:20 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if ($connect && ($profile['network'] == NETWORK_DFRN) && !isset($remoteconnect)) {
|
|
|
|
$subscribe_feed = t('Atom feed');
|
|
|
|
} else {
|
2015-12-25 16:26:04 +00:00
|
|
|
$subscribe_feed = false;
|
2018-01-01 20:47:20 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (remote_user() || (get_my_url() && x($profile, 'unkmail') && ($profile['uid'] != local_user()))) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$wallmessage = t('Message');
|
2018-01-01 20:47:20 +00:00
|
|
|
$wallmessage_link = 'wallmessage/' . $profile['nickname'];
|
2016-05-29 20:02:31 +00:00
|
|
|
|
|
|
|
if (remote_user()) {
|
2017-11-09 16:05:18 +00:00
|
|
|
$r = q(
|
|
|
|
"SELECT `url` FROM `contact` WHERE `uid` = %d AND `id` = '%s' AND `rel` = %d",
|
2016-05-29 20:02:31 +00:00
|
|
|
intval($profile['uid']),
|
|
|
|
intval(remote_user()),
|
2017-11-09 16:05:18 +00:00
|
|
|
intval(CONTACT_IS_FRIEND)
|
|
|
|
);
|
2016-05-29 20:02:31 +00:00
|
|
|
} else {
|
2017-11-09 16:05:18 +00:00
|
|
|
$r = q(
|
|
|
|
"SELECT `url` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `rel` = %d",
|
2016-05-29 20:02:31 +00:00
|
|
|
intval($profile['uid']),
|
|
|
|
dbesc(normalise_link(get_my_url())),
|
2017-11-09 16:05:18 +00:00
|
|
|
intval(CONTACT_IS_FRIEND)
|
|
|
|
);
|
2016-05-29 20:02:31 +00:00
|
|
|
}
|
2016-05-29 19:29:26 +00:00
|
|
|
if ($r) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$remote_url = $r[0]['url'];
|
|
|
|
$message_path = preg_replace('=(.*)/profile/(.*)=ism', '$1/message/new/', $remote_url);
|
|
|
|
$wallmessage_link = $message_path . base64_encode($profile['addr']);
|
2016-05-29 20:02:31 +00:00
|
|
|
}
|
2016-05-29 19:29:26 +00:00
|
|
|
} else {
|
2015-12-25 16:26:04 +00:00
|
|
|
$wallmessage = false;
|
2016-05-29 19:29:26 +00:00
|
|
|
$wallmessage_link = false;
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
// show edit profile to yourself
|
2017-12-04 14:01:27 +00:00
|
|
|
if (!$is_contact && $profile['uid'] == local_user() && Feature::isEnabled(local_user(), 'multi_profiles')) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['edit'] = array(System::baseUrl() . '/profiles', t('Profiles'), '', t('Manage/edit profiles'));
|
2017-11-09 16:05:18 +00:00
|
|
|
$r = q(
|
|
|
|
"SELECT * FROM `profile` WHERE `uid` = %d",
|
|
|
|
local_user()
|
|
|
|
);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$profile['menu'] = array(
|
|
|
|
'chg_photo' => t('Change profile photo'),
|
|
|
|
'cr_new' => t('Create New Profile'),
|
|
|
|
'entries' => array(),
|
|
|
|
);
|
|
|
|
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($r)) {
|
2016-12-20 20:13:50 +00:00
|
|
|
foreach ($r as $rr) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$profile['menu']['entries'][] = array(
|
|
|
|
'photo' => $rr['thumb'],
|
|
|
|
'id' => $rr['id'],
|
|
|
|
'alt' => t('Profile Image'),
|
|
|
|
'profile_name' => $rr['profile-name'],
|
|
|
|
'isdefault' => $rr['is-default'],
|
2018-01-01 20:47:20 +00:00
|
|
|
'visibile_to_everybody' => t('visible to everybody'),
|
2015-12-25 16:26:04 +00:00
|
|
|
'edit_visibility' => t('Edit visibility'),
|
|
|
|
);
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-04 14:01:27 +00:00
|
|
|
if (!$is_contact && $profile['uid'] == local_user() && !Feature::isEnabled(local_user(), 'multi_profiles')) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['edit'] = array(System::baseUrl() . '/profiles/' . $profile['id'], t('Edit profile'), '', t('Edit profile'));
|
2015-12-25 16:26:04 +00:00
|
|
|
$profile['menu'] = array(
|
|
|
|
'chg_photo' => t('Change profile photo'),
|
|
|
|
'cr_new' => null,
|
|
|
|
'entries' => array(),
|
|
|
|
);
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-10-01 20:03:27 +00:00
|
|
|
// Fetch the account type
|
2017-11-19 22:03:39 +00:00
|
|
|
$account_type = Contact::getAccountType($profile);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (x($profile, 'address')
|
|
|
|
|| x($profile, 'location')
|
|
|
|
|| x($profile, 'locality')
|
|
|
|
|| x($profile, 'region')
|
|
|
|
|| x($profile, 'postal-code')
|
|
|
|
|| x($profile, 'country-name')
|
2017-11-09 16:05:18 +00:00
|
|
|
) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$location = t('Location:');
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$gender = x($profile, 'gender') ? t('Gender:') : false;
|
|
|
|
$marital = x($profile, 'marital') ? t('Status:') : false;
|
|
|
|
$homepage = x($profile, 'homepage') ? t('Homepage:') : false;
|
|
|
|
$about = x($profile, 'about') ? t('About:') : false;
|
|
|
|
$xmpp = x($profile, 'xmpp') ? t('XMPP:') : false;
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if ((x($profile, 'hidewall') || $block) && !local_user() && !remote_user()) {
|
2018-01-04 02:12:19 +00:00
|
|
|
$location = $gender = $marital = $homepage = $about = false;
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-12-21 04:53:57 +00:00
|
|
|
$split_name = Diaspora::splitName($profile['name']);
|
|
|
|
$firstname = $split_name['first'];
|
|
|
|
$lastname = $split_name['last'];
|
2015-12-25 16:26:04 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (x($profile, 'guid')) {
|
2016-06-05 19:17:55 +00:00
|
|
|
$diaspora = array(
|
|
|
|
'guid' => $profile['guid'],
|
2017-08-26 07:32:10 +00:00
|
|
|
'podloc' => System::baseUrl(),
|
2016-06-05 19:17:55 +00:00
|
|
|
'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
|
|
|
|
'nickname' => $profile['nickname'],
|
|
|
|
'fullname' => $profile['name'],
|
|
|
|
'firstname' => $firstname,
|
|
|
|
'lastname' => $lastname,
|
2017-05-17 06:00:20 +00:00
|
|
|
'photo300' => $profile['contact_photo'],
|
|
|
|
'photo100' => $profile['contact_thumb'],
|
|
|
|
'photo50' => $profile['contact_micro'],
|
2016-06-05 19:17:55 +00:00
|
|
|
);
|
2017-11-09 16:05:18 +00:00
|
|
|
} else {
|
2016-06-05 19:17:55 +00:00
|
|
|
$diaspora = false;
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$contact_block = '';
|
|
|
|
$updated = '';
|
|
|
|
$contacts = 0;
|
2017-04-04 17:47:45 +00:00
|
|
|
if (!$block) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$contact_block = contact_block();
|
|
|
|
|
2017-06-08 02:00:59 +00:00
|
|
|
if (is_array($a->profile) && !$a->profile['hide-friends']) {
|
2017-11-09 16:05:18 +00: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'])
|
|
|
|
);
|
|
|
|
if (DBM::is_result($r)) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$updated = date('c', strtotime($r[0]['updated']));
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$r = q(
|
|
|
|
"SELECT COUNT(*) AS `total` FROM `contact`
|
2017-02-10 02:51:01 +00:00
|
|
|
WHERE `uid` = %d
|
|
|
|
AND NOT `self` AND NOT `blocked` AND NOT `pending`
|
|
|
|
AND NOT `hidden` AND NOT `archive`
|
2015-12-25 16:26:04 +00:00
|
|
|
AND `network` IN ('%s', '%s', '%s', '')",
|
|
|
|
intval($profile['uid']),
|
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc(NETWORK_DIASPORA),
|
|
|
|
dbesc(NETWORK_OSTATUS)
|
|
|
|
);
|
2017-11-09 16:05:18 +00:00
|
|
|
if (DBM::is_result($r)) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$contacts = intval($r[0]['total']);
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$p = array();
|
2017-04-04 17:47:45 +00:00
|
|
|
foreach ($profile as $k => $v) {
|
2017-11-09 16:05:18 +00:00
|
|
|
$k = str_replace('-', '_', $k);
|
2015-12-25 16:26:04 +00:00
|
|
|
$p[$k] = $v;
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (isset($p['about'])) {
|
|
|
|
$p['about'] = bbcode($p['about']);
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-12-14 22:53:35 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (isset($p['address'])) {
|
|
|
|
$p['address'] = bbcode($p['address']);
|
2017-11-09 16:05:18 +00:00
|
|
|
} else {
|
2018-01-01 20:47:20 +00:00
|
|
|
$p['address'] = bbcode($p['location']);
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-12-14 22:53:35 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (isset($p['photo'])) {
|
|
|
|
$p['photo'] = proxy_url($p['photo'], false, PROXY_SIZE_SMALL);
|
2017-05-17 06:00:20 +00:00
|
|
|
}
|
2017-11-09 16:05:18 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$tpl = get_markup_template('profile_vcard.tpl');
|
2018-01-01 20:47:20 +00:00
|
|
|
$o .= replace_macros($tpl, array(
|
2015-12-25 16:26:04 +00:00
|
|
|
'$profile' => $p,
|
2016-09-25 15:28:00 +00:00
|
|
|
'$xmpp' => $xmpp,
|
2018-01-01 20:47:20 +00:00
|
|
|
'$connect' => $connect,
|
|
|
|
'$remoteconnect' => $remoteconnect,
|
2015-12-25 16:26:04 +00:00
|
|
|
'$subscribe_feed' => $subscribe_feed,
|
|
|
|
'$wallmessage' => $wallmessage,
|
2016-05-29 19:29:26 +00:00
|
|
|
'$wallmessage_link' => $wallmessage_link,
|
2015-12-25 16:26:04 +00:00
|
|
|
'$account_type' => $account_type,
|
|
|
|
'$location' => $location,
|
2018-01-01 20:47:20 +00:00
|
|
|
'$gender' => $gender,
|
|
|
|
'$marital' => $marital,
|
2015-12-25 16:26:04 +00:00
|
|
|
'$homepage' => $homepage,
|
|
|
|
'$about' => $about,
|
2018-01-01 20:47:20 +00:00
|
|
|
'$network' => t('Network:'),
|
2015-12-25 16:26:04 +00:00
|
|
|
'$contacts' => $contacts,
|
|
|
|
'$updated' => $updated,
|
|
|
|
'$diaspora' => $diaspora,
|
|
|
|
'$contact_block' => $contact_block,
|
2018-01-01 20:47:20 +00:00
|
|
|
));
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$arr = array('profile' => &$profile, 'entry' => &$o);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
call_hooks('profile_sidebar', $arr);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
return $o;
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
function get_birthdays()
|
|
|
|
{
|
2015-12-25 16:26:04 +00:00
|
|
|
$a = get_app();
|
|
|
|
$o = '';
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!local_user() || $a->is_mobile || $a->is_tablet) {
|
2015-12-25 16:26:04 +00:00
|
|
|
return $o;
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 18:37:05 +00:00
|
|
|
/*
|
2017-11-09 16:05:18 +00:00
|
|
|
* $mobile_detect = new Mobile_Detect();
|
|
|
|
* $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
2018-01-01 20:47:20 +00:00
|
|
|
* if ($is_mobile)
|
|
|
|
* return $o;
|
2017-11-09 16:05:18 +00:00
|
|
|
*/
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$bd_format = t('g A l F d'); // 8 AM Friday January 18
|
2015-12-25 16:26:04 +00:00
|
|
|
$bd_short = t('F d');
|
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$cachekey = 'get_birthdays:' . local_user();
|
2017-01-13 17:31:10 +00:00
|
|
|
$r = Cache::get($cachekey);
|
|
|
|
if (is_null($r)) {
|
2017-11-09 16:05:18 +00:00
|
|
|
$s = dba::p(
|
|
|
|
"SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
|
|
|
|
INNER JOIN `contact` ON `contact`.`id` = `event`.`cid`
|
|
|
|
WHERE `event`.`uid` = ? AND `type` = 'birthday' AND `start` < ? AND `finish` > ?
|
|
|
|
ORDER BY `start` ASC ",
|
|
|
|
local_user(),
|
|
|
|
datetime_convert('UTC', 'UTC', 'now + 6 days'),
|
|
|
|
datetime_convert('UTC', 'UTC', 'now')
|
2017-01-13 17:31:10 +00:00
|
|
|
);
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($s)) {
|
2017-08-11 19:26:08 +00:00
|
|
|
$r = dba::inArray($s);
|
2017-01-13 17:31:10 +00:00
|
|
|
Cache::set($cachekey, $r, CACHE_HOUR);
|
|
|
|
}
|
|
|
|
}
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($r)) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$total = 0;
|
|
|
|
$now = strtotime('now');
|
|
|
|
$cids = array();
|
|
|
|
|
|
|
|
$istoday = false;
|
2016-12-20 20:13:50 +00:00
|
|
|
foreach ($r as $rr) {
|
2017-11-09 16:05:18 +00:00
|
|
|
if (strlen($rr['name'])) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$total ++;
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
|
|
|
if ((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$istoday = true;
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
|
|
|
$classtoday = $istoday ? ' birthday-today ' : '';
|
2017-04-04 17:47:45 +00:00
|
|
|
if ($total) {
|
|
|
|
foreach ($r as &$rr) {
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!strlen($rr['name'])) {
|
2015-12-25 16:26:04 +00:00
|
|
|
continue;
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
// avoid duplicates
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
if (in_array($rr['cid'], $cids)) {
|
2015-12-25 16:26:04 +00:00
|
|
|
continue;
|
2017-11-09 16:05:18 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
$cids[] = $rr['cid'];
|
|
|
|
|
|
|
|
$today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
|
|
|
|
$url = $rr['url'];
|
2017-04-04 17:47:45 +00:00
|
|
|
if ($rr['network'] === NETWORK_DFRN) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$url = System::baseUrl() . '/redir/' . $rr['cid'];
|
2015-12-25 16:26:04 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$rr['link'] = $url;
|
|
|
|
$rr['title'] = $rr['name'];
|
2018-01-01 20:47:20 +00:00
|
|
|
$rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '');
|
2017-11-09 16:05:18 +00:00
|
|
|
$rr['startime'] = null;
|
2015-12-25 16:26:04 +00:00
|
|
|
$rr['today'] = $today;
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-01 20:47:20 +00:00
|
|
|
$tpl = get_markup_template('birthdays_reminder.tpl');
|
|
|
|
return replace_macros($tpl, array(
|
2017-08-26 07:32:10 +00:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2015-12-25 16:26:04 +00:00
|
|
|
'$classtoday' => $classtoday,
|
|
|
|
'$count' => $total,
|
|
|
|
'$event_reminders' => t('Birthday Reminders'),
|
|
|
|
'$event_title' => t('Birthdays this week:'),
|
|
|
|
'$events' => $r,
|
2018-01-01 20:47:20 +00:00
|
|
|
'$lbr' => '{', // raw brackets mess up if/endif macro processing
|
2015-12-25 16:26:04 +00:00
|
|
|
'$rbr' => '}'
|
2018-01-01 20:47:20 +00:00
|
|
|
));
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
function get_events()
|
|
|
|
{
|
2017-11-09 17:26:32 +00:00
|
|
|
require_once 'include/bbcode.php';
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$a = get_app();
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!local_user() || $a->is_mobile || $a->is_tablet) {
|
2015-12-25 16:26:04 +00:00
|
|
|
return $o;
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 18:37:05 +00:00
|
|
|
/*
|
2018-01-01 20:47:20 +00:00
|
|
|
* $mobile_detect = new Mobile_Detect();
|
|
|
|
* $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
|
|
|
* if ($is_mobile)
|
|
|
|
* return $o;
|
2017-11-09 16:05:18 +00:00
|
|
|
*/
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$bd_format = t('g A l F d'); // 8 AM Friday January 18
|
2018-01-01 20:47:20 +00:00
|
|
|
$classtoday = '';
|
2015-12-25 16:26:04 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$s = dba::p(
|
|
|
|
"SELECT `event`.* FROM `event`
|
|
|
|
WHERE `event`.`uid` = ? AND `type` != 'birthday' AND `start` < ? AND `start` >= ?
|
|
|
|
ORDER BY `start` ASC ",
|
|
|
|
local_user(),
|
|
|
|
datetime_convert('UTC', 'UTC', 'now + 7 days'),
|
|
|
|
datetime_convert('UTC', 'UTC', 'now - 1 days')
|
2015-12-25 16:26:04 +00:00
|
|
|
);
|
|
|
|
|
2017-08-14 05:05:32 +00:00
|
|
|
$r = array();
|
|
|
|
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($s)) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$istoday = false;
|
2017-08-11 19:26:08 +00:00
|
|
|
|
2017-08-14 05:05:32 +00:00
|
|
|
while ($rr = dba::fetch($s)) {
|
2017-04-04 17:47:45 +00:00
|
|
|
if (strlen($rr['name'])) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$total ++;
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$strt = datetime_convert('UTC', $rr['convert'] ? $a->timezone : 'UTC', $rr['start'], 'Y-m-d');
|
|
|
|
if ($strt === datetime_convert('UTC', $a->timezone, 'now', 'Y-m-d')) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$istoday = true;
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$title = strip_tags(html_entity_decode(bbcode($rr['summary']), ENT_QUOTES, 'UTF-8'));
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
if (strlen($title) > 35) {
|
2017-11-09 16:05:18 +00:00
|
|
|
$title = substr($title, 0, 32) . '... ';
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$description = substr(strip_tags(bbcode($rr['desc'])), 0, 32) . '... ';
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!$description) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$description = t('[No description]');
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$strt = datetime_convert('UTC', $rr['convert'] ? $a->timezone : 'UTC', $rr['start']);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
if (substr($strt, 0, 10) < datetime_convert('UTC', $a->timezone, 'now', 'Y-m-d')) {
|
2015-12-25 16:26:04 +00:00
|
|
|
continue;
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$today = ((substr($strt, 0, 10) === datetime_convert('UTC', $a->timezone, 'now', 'Y-m-d')) ? true : false);
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$rr['title'] = $title;
|
2018-01-01 20:47:20 +00:00
|
|
|
$rr['description'] = $description;
|
|
|
|
$rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '');
|
2015-12-25 16:26:04 +00:00
|
|
|
$rr['startime'] = $strt;
|
|
|
|
$rr['today'] = $today;
|
2017-08-14 05:05:32 +00:00
|
|
|
|
|
|
|
$r[] = $rr;
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
2017-08-14 05:05:32 +00:00
|
|
|
dba::close($s);
|
2017-08-11 19:26:08 +00:00
|
|
|
$classtoday = (($istoday) ? 'event-today' : '');
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
2018-01-01 20:47:20 +00:00
|
|
|
$tpl = get_markup_template('events_reminder.tpl');
|
|
|
|
return replace_macros($tpl, array(
|
2017-08-26 07:32:10 +00:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2015-12-25 16:26:04 +00:00
|
|
|
'$classtoday' => $classtoday,
|
2017-08-14 05:05:32 +00:00
|
|
|
'$count' => count($r),
|
2015-12-25 16:26:04 +00:00
|
|
|
'$event_reminders' => t('Event Reminders'),
|
|
|
|
'$event_title' => t('Events this week:'),
|
|
|
|
'$events' => $r,
|
2018-01-01 20:47:20 +00:00
|
|
|
));
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
function advanced_profile(App $a)
|
|
|
|
{
|
2015-06-26 16:57:20 +00:00
|
|
|
$o = '';
|
2015-11-09 14:56:20 +00:00
|
|
|
$uid = $a->profile['uid'];
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
$o .= replace_macros(
|
2018-01-01 20:47:20 +00:00
|
|
|
get_markup_template('section_title.tpl'), array(
|
|
|
|
'$title' => t('Profile')
|
2017-11-09 16:05:18 +00:00
|
|
|
)
|
|
|
|
);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
if ($a->profile['name']) {
|
2015-06-26 16:57:20 +00:00
|
|
|
$tpl = get_markup_template('profile_advanced.tpl');
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2015-06-26 16:57:20 +00:00
|
|
|
$profile = array();
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['fullname'] = array(t('Full Name:'), $a->profile['name']);
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
if ($a->profile['gender']) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['gender'] = array(t('Gender:'), $a->profile['gender']);
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
if (($a->profile['dob']) && ($a->profile['dob'] > '0001-01-01')) {
|
2015-06-26 16:57:20 +00:00
|
|
|
$year_bd_format = t('j F, Y');
|
|
|
|
$short_bd_format = t('j F');
|
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$val = intval($a->profile['dob']) ?
|
|
|
|
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));
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['birthday'] = array(t('Birthday:'), $val);
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
2018-01-01 20:47:20 +00:00
|
|
|
|
2017-07-10 11:17:06 +00:00
|
|
|
if (!empty($a->profile['dob'])
|
2017-07-08 20:30:30 +00:00
|
|
|
&& $a->profile['dob'] > '0001-01-01'
|
|
|
|
&& $age = age($a->profile['dob'], $a->profile['timezone'], '')
|
|
|
|
) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['age'] = array(t('Age:'), $age);
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
if ($a->profile['marital']) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['marital'] = array(t('Status:'), $a->profile['marital']);
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
/// @TODO Maybe use x() here, plus below?
|
|
|
|
if ($a->profile['with']) {
|
|
|
|
$profile['marital']['with'] = $a->profile['with'];
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-02-27 23:37:15 +00:00
|
|
|
if (strlen($a->profile['howlong']) && $a->profile['howlong'] >= NULL_DATE) {
|
2016-12-19 13:26:13 +00:00
|
|
|
$profile['howlong'] = relative_date($a->profile['howlong'], t('for %1$d %2$s'));
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($a->profile['sexual']) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['sexual'] = array(t('Sexual Preference:'), $a->profile['sexual']);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($a->profile['homepage']) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['homepage'] = array(t('Homepage:'), linkify($a->profile['homepage']));
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($a->profile['hometown']) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['hometown'] = array(t('Hometown:'), linkify($a->profile['hometown']));
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($a->profile['pub_keywords']) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['pub_keywords'] = array(t('Tags:'), $a->profile['pub_keywords']);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($a->profile['politic']) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['politic'] = array(t('Political Views:'), $a->profile['politic']);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($a->profile['religion']) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['religion'] = array(t('Religion:'), $a->profile['religion']);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['about'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['about'] = array(t('About:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['interest'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['interest'] = array(t('Hobbies/Interests:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['likes'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['likes'] = array(t('Likes:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['dislikes'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['dislikes'] = array(t('Dislikes:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['contact'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['contact'] = array(t('Contact information and Social Networks:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['music'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['music'] = array(t('Musical interests:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['book'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['book'] = array(t('Books, literature:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['tv'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['tv'] = array(t('Television:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['film'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['film'] = array(t('Film/dance/culture/entertainment:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['romance'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['romance'] = array(t('Love/Romance:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['work'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['work'] = array(t('Work/employment:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($txt = prepare_text($a->profile['education'])) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['education'] = array(t('School/education:'), $txt);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-11-09 14:56:20 +00:00
|
|
|
//show subcribed forum if it is enabled in the usersettings
|
2017-12-04 14:01:27 +00:00
|
|
|
if (Feature::isEnabled($uid, 'forumlist_profile')) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['forumlist'] = array(t('Forums:'), ForumManager::profileAdvanced($uid));
|
2015-11-09 14:56:20 +00:00
|
|
|
}
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2016-12-20 09:35:28 +00:00
|
|
|
if ($a->profile['uid'] == local_user()) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$profile['edit'] = array(System::baseUrl() . '/profiles/' . $a->profile['id'], t('Edit profile'), '', t('Edit profile'));
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2015-09-30 16:50:44 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
return replace_macros($tpl, array(
|
2015-06-26 16:57:20 +00:00
|
|
|
'$title' => t('Profile'),
|
2016-06-25 10:21:13 +00:00
|
|
|
'$basic' => t('Basic'),
|
|
|
|
'$advanced' => t('Advanced'),
|
2015-06-26 16:57:20 +00:00
|
|
|
'$profile' => $profile
|
2018-01-01 20:47:20 +00:00
|
|
|
));
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
function profile_tabs($a, $is_owner = false, $nickname = null)
|
|
|
|
{
|
2016-12-19 13:26:13 +00:00
|
|
|
if (is_null($nickname)) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$nickname = $a->user['nickname'];
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$tab = false;
|
2017-11-09 16:05:18 +00:00
|
|
|
if (x($_GET, 'tab')) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$tab = notags(trim($_GET['tab']));
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2015-12-25 16:26:04 +00:00
|
|
|
|
2017-08-26 07:32:10 +00:00
|
|
|
$url = System::baseUrl() . '/profile/' . $nickname;
|
2015-12-25 16:26:04 +00:00
|
|
|
|
|
|
|
$tabs = array(
|
|
|
|
array(
|
2018-01-01 20:47:20 +00:00
|
|
|
'label' => t('Status'),
|
|
|
|
'url' => $url,
|
|
|
|
'sel' => !$tab && $a->argv[0] == 'profile' ? 'active' : '',
|
2015-12-25 16:26:04 +00:00
|
|
|
'title' => t('Status Messages and Posts'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'id' => 'status-tab',
|
2015-12-25 16:26:04 +00:00
|
|
|
'accesskey' => 'm',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'label' => t('Profile'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'url' => $url . '/?tab=profile',
|
|
|
|
'sel' => $tab == 'profile' ? 'active' : '',
|
2015-12-25 16:26:04 +00:00
|
|
|
'title' => t('Profile Details'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'id' => 'profile-tab',
|
2015-12-25 16:26:04 +00:00
|
|
|
'accesskey' => 'r',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'label' => t('Photos'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'url' => System::baseUrl() . '/photos/' . $nickname,
|
|
|
|
'sel' => !$tab && $a->argv[0] == 'photos' ? 'active' : '',
|
2015-12-25 16:26:04 +00:00
|
|
|
'title' => t('Photo Albums'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'id' => 'photo-tab',
|
2015-12-25 16:26:04 +00:00
|
|
|
'accesskey' => 'h',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'label' => t('Videos'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'url' => System::baseUrl() . '/videos/' . $nickname,
|
|
|
|
'sel' => !$tab && $a->argv[0] == 'videos' ? 'active' : '',
|
2015-12-25 16:26:04 +00:00
|
|
|
'title' => t('Videos'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'id' => 'video-tab',
|
2015-12-25 16:26:04 +00:00
|
|
|
'accesskey' => 'v',
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2016-06-19 20:04:34 +00:00
|
|
|
// the calendar link for the full featured events calendar
|
|
|
|
if ($is_owner && $a->theme_events_in_profile) {
|
2018-01-01 20:47:20 +00:00
|
|
|
$tabs[] = array(
|
|
|
|
'label' => t('Events'),
|
|
|
|
'url' => System::baseUrl() . '/events',
|
|
|
|
'sel' => !$tab && $a->argv[0] == 'events' ? 'active' : '',
|
|
|
|
'title' => t('Events and Calendar'),
|
|
|
|
'id' => 'events-tab',
|
|
|
|
'accesskey' => 'e',
|
|
|
|
);
|
2017-11-09 16:05:18 +00:00
|
|
|
// if the user is not the owner of the calendar we only show a calendar
|
|
|
|
// with the public events of the calendar owner
|
2018-01-01 20:47:20 +00:00
|
|
|
} elseif (!$is_owner) {
|
2016-06-19 20:04:34 +00:00
|
|
|
$tabs[] = array(
|
2018-01-01 20:47:20 +00:00
|
|
|
'label' => t('Events'),
|
|
|
|
'url' => System::baseUrl() . '/cal/' . $nickname,
|
|
|
|
'sel' => !$tab && $a->argv[0] == 'cal' ? 'active' : '',
|
|
|
|
'title' => t('Events and Calendar'),
|
|
|
|
'id' => 'events-tab',
|
|
|
|
'accesskey' => 'e',
|
|
|
|
);
|
2016-06-19 20:04:34 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 17:47:45 +00:00
|
|
|
if ($is_owner) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$tabs[] = array(
|
|
|
|
'label' => t('Personal Notes'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'url' => System::baseUrl() . '/notes',
|
|
|
|
'sel' => !$tab && $a->argv[0] == 'notes' ? 'active' : '',
|
2015-12-25 16:26:04 +00:00
|
|
|
'title' => t('Only You Can See This'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'id' => 'notes-tab',
|
2015-12-25 16:26:04 +00:00
|
|
|
'accesskey' => 't',
|
|
|
|
);
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
if ((!$is_owner) && ((count($a->profile)) || (!$a->profile['hide-friends']))) {
|
2015-12-25 16:26:04 +00:00
|
|
|
$tabs[] = array(
|
|
|
|
'label' => t('Contacts'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'url' => System::baseUrl() . '/viewcontacts/' . $nickname,
|
|
|
|
'sel' => !$tab && $a->argv[0] == 'viewcontacts' ? 'active' : '',
|
2015-12-25 16:26:04 +00:00
|
|
|
'title' => t('Contacts'),
|
2018-01-01 20:47:20 +00:00
|
|
|
'id' => 'viewcontacts-tab',
|
2015-12-25 16:26:04 +00:00
|
|
|
'accesskey' => 'k',
|
|
|
|
);
|
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => $tab, 'tabs' => $tabs);
|
2015-12-25 16:26:04 +00:00
|
|
|
call_hooks('profile_tabs', $arr);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2015-12-25 16:26:04 +00:00
|
|
|
$tpl = get_markup_template('common_tabs.tpl');
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
return replace_macros($tpl, array('$tabs' => $arr['tabs']));
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-05 00:42:48 +00:00
|
|
|
/**
|
|
|
|
* Retrieves the my_url session variable
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-11-09 16:05:18 +00:00
|
|
|
function get_my_url()
|
|
|
|
{
|
2017-04-04 17:47:45 +00:00
|
|
|
if (x($_SESSION, 'my_url')) {
|
2015-06-26 16:57:20 +00:00
|
|
|
return $_SESSION['my_url'];
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2018-01-05 00:42:48 +00:00
|
|
|
return null;
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
function zrl_init(App $a)
|
|
|
|
{
|
2017-12-17 00:23:22 +00:00
|
|
|
$my_url = get_my_url();
|
|
|
|
$my_url = validate_url($my_url);
|
|
|
|
if ($my_url) {
|
2015-06-26 16:57:20 +00:00
|
|
|
// Is it a DDoS attempt?
|
|
|
|
// The check fetches the cached value from gprobe to reduce the load for this system
|
2017-12-17 00:23:22 +00:00
|
|
|
$urlparts = parse_url($my_url);
|
2015-06-26 16:57:20 +00:00
|
|
|
|
2018-01-01 20:47:20 +00:00
|
|
|
$result = Cache::get('gprobe:' . $urlparts['host']);
|
|
|
|
if ((!is_null($result)) && (in_array($result['network'], array(NETWORK_FEED, NETWORK_PHANTOM)))) {
|
|
|
|
logger('DDoS attempt detected for ' . $urlparts['host'] . ' by ' . $_SERVER['REMOTE_ADDR'] . '. server data: ' . print_r($_SERVER, true), LOGGER_DEBUG);
|
2017-04-04 17:47:45 +00:00
|
|
|
return;
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
|
2017-12-17 00:23:22 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'GProbe', $my_url);
|
|
|
|
$arr = array('zrl' => $my_url, 'url' => $a->cmd);
|
2017-04-04 17:47:45 +00:00
|
|
|
call_hooks('zrl_init', $arr);
|
2015-06-26 16:57:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-09 16:05:18 +00:00
|
|
|
function zrl($s, $force = false)
|
|
|
|
{
|
2018-01-01 20:47:20 +00:00
|
|
|
if (!strlen($s)) {
|
2015-06-26 16:57:20 +00:00
|
|
|
return $s;
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2018-01-01 20:47:20 +00:00
|
|
|
if ((!strpos($s, '/profile/')) && (!$force)) {
|
2015-06-26 16:57:20 +00:00
|
|
|
return $s;
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2017-04-04 17:47:45 +00:00
|
|
|
if ($force && substr($s, -1, 1) !== '/') {
|
2015-06-26 16:57:20 +00:00
|
|
|
$s = $s . '/';
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2017-04-04 17:47:45 +00:00
|
|
|
$achar = strpos($s, '?') ? '&' : '?';
|
2015-06-26 16:57:20 +00:00
|
|
|
$mine = get_my_url();
|
2018-01-01 20:47:20 +00:00
|
|
|
if ($mine && !link_compare($mine, $s)) {
|
2015-06-26 16:57:20 +00:00
|
|
|
return $s . $achar . 'zrl=' . urlencode($mine);
|
2017-04-04 17:47:45 +00:00
|
|
|
}
|
2015-06-26 16:57:20 +00:00
|
|
|
return $s;
|
|
|
|
}
|
2015-06-27 12:10:43 +00:00
|
|
|
|
2015-12-25 16:26:04 +00: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 12:09:01 +00:00
|
|
|
*
|
2015-12-25 16:26:04 +00:00
|
|
|
* @note Returns local_user instead of user ID if "always_my_theme"
|
|
|
|
* is set to true
|
|
|
|
*/
|
2017-11-09 16:05:18 +00:00
|
|
|
function get_theme_uid()
|
|
|
|
{
|
2017-08-03 05:50:44 +00:00
|
|
|
$uid = ((!empty($_REQUEST['puid'])) ? intval($_REQUEST['puid']) : 0);
|
2018-01-01 20:47:20 +00:00
|
|
|
if ((local_user()) && ((PConfig::get(local_user(), 'system', 'always_my_theme')) || (!$uid))) {
|
2017-04-04 17:47:45 +00:00
|
|
|
return local_user();
|
2015-06-27 12:10:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $uid;
|
|
|
|
}
|