2017-11-19 16:55:28 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 09:45:36 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-19 16:55:28 -05:00
|
|
|
*/
|
2020-02-09 09:45:36 -05:00
|
|
|
|
2017-12-07 08:57:35 -05:00
|
|
|
namespace Friendica\Model;
|
2017-11-19 16:55:28 -05:00
|
|
|
|
2018-01-14 20:13:02 -05:00
|
|
|
use Friendica\App;
|
2018-02-14 21:33:55 -05:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2019-01-05 22:05:24 -05:00
|
|
|
use Friendica\Content\Widget\ContactBlock;
|
2020-01-18 09:41:19 -05:00
|
|
|
use Friendica\Core\Cache\Duration;
|
2018-12-26 01:06:24 -05:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 16:40:44 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2019-06-10 21:33:25 -04:00
|
|
|
use Friendica\Core\Session;
|
2018-01-14 20:13:02 -05:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 18:47:24 -05:00
|
|
|
use Friendica\DI;
|
2019-10-23 18:25:43 -04:00
|
|
|
use Friendica\Protocol\Activity;
|
2018-01-14 20:13:02 -05:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2018-01-26 21:38:34 -05:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-01-26 23:51:41 -05:00
|
|
|
use Friendica\Util\Network;
|
2018-07-30 22:06:22 -04:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2018-11-08 10:14:37 -05:00
|
|
|
use Friendica\Util\Strings;
|
2018-07-13 15:47:14 -04:00
|
|
|
|
2017-12-07 08:57:35 -05:00
|
|
|
class Profile
|
2017-11-19 16:55:28 -05:00
|
|
|
{
|
2018-09-23 13:29:31 -04:00
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Returns default profile for a given user id
|
2018-09-23 13:29:31 -04:00
|
|
|
*
|
|
|
|
* @param integer User ID
|
|
|
|
*
|
|
|
|
* @return array Profile data
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-09-23 13:29:31 -04:00
|
|
|
*/
|
2018-09-30 03:21:57 -04:00
|
|
|
public static function getByUID($uid)
|
2018-09-23 13:29:31 -04:00
|
|
|
{
|
2020-01-22 19:34:15 -05:00
|
|
|
return DBA::selectFirst('profile', [], ['uid' => $uid]);
|
2018-09-23 13:29:31 -04:00
|
|
|
}
|
|
|
|
|
2019-07-26 09:53:57 -04:00
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Returns default profile for a given user ID and ID
|
2019-07-27 18:19:38 -04:00
|
|
|
*
|
|
|
|
* @param int $uid The contact ID
|
|
|
|
* @param int $id The contact owner ID
|
|
|
|
* @param array $fields The selected fields
|
|
|
|
*
|
|
|
|
* @return array Profile data for the ID
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function getById(int $uid, int $id, array $fields = [])
|
|
|
|
{
|
|
|
|
return DBA::selectFirst('profile', $fields, ['uid' => $uid, 'id' => $id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Returns profile data for the contact owner
|
2019-07-26 09:53:57 -04:00
|
|
|
*
|
|
|
|
* @param int $uid The User ID
|
|
|
|
* @param array $fields The fields to retrieve
|
|
|
|
*
|
|
|
|
* @return array Array of profile data
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2019-07-27 18:19:38 -04:00
|
|
|
public static function getListByUser(int $uid, array $fields = [])
|
2019-07-26 09:53:57 -04:00
|
|
|
{
|
2019-07-27 18:19:38 -04:00
|
|
|
return DBA::selectToArray('profile', $fields, ['uid' => $uid]);
|
2019-07-26 09:53:57 -04:00
|
|
|
}
|
|
|
|
|
2017-11-19 16:55:28 -05:00
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Returns a formatted location string from the given profile array
|
2017-11-19 16:55:28 -05:00
|
|
|
*
|
|
|
|
* @param array $profile Profile array (Generated from the "profile" table)
|
|
|
|
*
|
|
|
|
* @return string Location string
|
|
|
|
*/
|
|
|
|
public static function formatLocation(array $profile)
|
|
|
|
{
|
|
|
|
$location = '';
|
|
|
|
|
2018-07-10 08:27:56 -04:00
|
|
|
if (!empty($profile['locality'])) {
|
2017-11-19 16:55:28 -05:00
|
|
|
$location .= $profile['locality'];
|
|
|
|
}
|
|
|
|
|
2019-10-16 08:35:14 -04:00
|
|
|
if (!empty($profile['region']) && (($profile['locality'] ?? '') != $profile['region'])) {
|
2017-11-19 16:55:28 -05:00
|
|
|
if ($location) {
|
|
|
|
$location .= ', ';
|
|
|
|
}
|
|
|
|
|
|
|
|
$location .= $profile['region'];
|
|
|
|
}
|
|
|
|
|
2018-07-10 08:27:56 -04:00
|
|
|
if (!empty($profile['country-name'])) {
|
2017-11-19 16:55:28 -05:00
|
|
|
if ($location) {
|
|
|
|
$location .= ', ';
|
|
|
|
}
|
|
|
|
|
|
|
|
$location .= $profile['country-name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $location;
|
|
|
|
}
|
2018-01-14 20:13:02 -05:00
|
|
|
|
|
|
|
/**
|
2018-01-14 23:44:39 -05:00
|
|
|
* Loads a profile into the page sidebar.
|
2018-01-14 20:13:02 -05: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.
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
*
|
2018-12-12 22:22:43 -05:00
|
|
|
* @param App $a
|
2018-01-14 21:22:39 -05:00
|
|
|
* @param string $nickname string
|
|
|
|
* @param array $profiledata array
|
2018-01-14 20:13:02 -05:00
|
|
|
* @param boolean $show_connect Show connect link
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-01-14 20:13:02 -05:00
|
|
|
*/
|
2020-01-27 22:01:12 -05:00
|
|
|
public static function load(App $a, $nickname, array $profiledata = [], $show_connect = true)
|
2018-01-14 20:13:02 -05:00
|
|
|
{
|
2018-07-20 08:19:26 -04:00
|
|
|
$user = DBA::selectFirst('user', ['uid'], ['nickname' => $nickname, 'account_removed' => false]);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($user) && empty($profiledata)) {
|
2019-12-15 19:30:34 -05:00
|
|
|
Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);
|
2018-01-14 20:13:02 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-13 15:47:14 -04:00
|
|
|
if (count($profiledata) > 0) {
|
2019-06-12 15:41:15 -04:00
|
|
|
// Ensure to have a "nickname" field
|
|
|
|
if (empty($profiledata['nickname']) && !empty($profiledata['nick'])) {
|
|
|
|
$profiledata['nickname'] = $profiledata['nick'];
|
|
|
|
}
|
|
|
|
|
2018-07-13 15:47:14 -04:00
|
|
|
// Add profile data to sidebar
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] .= self::sidebar($a, $profiledata, true, $show_connect);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($user)) {
|
2018-01-14 20:13:02 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-22 19:34:15 -05:00
|
|
|
$profile = self::getByNickname($nickname, $user['uid']);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2019-11-02 21:19:42 -04:00
|
|
|
if (empty($profile) && empty($profiledata)) {
|
2019-12-15 19:30:34 -05:00
|
|
|
Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);
|
2018-01-14 20:13:02 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-02 21:19:42 -04:00
|
|
|
if (empty($profile)) {
|
2020-01-22 19:34:15 -05:00
|
|
|
$profile = ['uid' => 0, 'name' => $nickname];
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2019-11-02 21:19:42 -04:00
|
|
|
$a->profile = $profile;
|
|
|
|
$a->profile_uid = $profile['uid'];
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2019-11-02 21:19:42 -04:00
|
|
|
$a->profile['mobile-theme'] = DI::pConfig()->get($a->profile['uid'], 'system', 'mobile_theme');
|
2018-08-11 16:40:44 -04:00
|
|
|
$a->profile['network'] = Protocol::DFRN;
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
DI::page()['title'] = $a->profile['name'] . ' @ ' . DI::config()->get('config', 'sitename');
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2020-01-18 10:50:57 -05:00
|
|
|
if (!$profiledata && !DI::pConfig()->get(local_user(), 'system', 'always_my_theme')) {
|
2019-10-06 12:07:06 -04:00
|
|
|
$a->setCurrentTheme($a->profile['theme']);
|
|
|
|
$a->setCurrentMobileTheme($a->profile['mobile-theme']);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* load/reload current theme info
|
|
|
|
*/
|
|
|
|
|
2018-10-31 13:25:38 -04:00
|
|
|
Renderer::setActiveTemplateEngine(); // reset the template engine to the default in case the user's theme doesn't specify one
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-04-28 18:37:04 -04:00
|
|
|
$theme_info_file = 'view/theme/' . $a->getCurrentTheme() . '/theme.php';
|
2018-01-14 20:13:02 -05:00
|
|
|
if (file_exists($theme_info_file)) {
|
|
|
|
require_once $theme_info_file;
|
|
|
|
}
|
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
$block = ((DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) ? true : false);
|
2018-01-14 20:13:02 -05: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) {
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] .= self::sidebar($a, $a->profile, $block, $show_connect);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-14 23:44:39 -05:00
|
|
|
* Get all profile data of a local user
|
2018-01-14 20:13:02 -05: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
|
|
|
|
*
|
|
|
|
* Includes all available profile data
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param string $nickname nick
|
|
|
|
* @param int $uid uid
|
|
|
|
* @param int $profile_id ID of the profile
|
2018-01-14 23:44:39 -05:00
|
|
|
* @return array
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-01-14 20:13:02 -05:00
|
|
|
*/
|
2019-10-27 10:09:38 -04:00
|
|
|
public static function getByNickname($nickname, $uid = 0)
|
2018-01-14 20:13:02 -05:00
|
|
|
{
|
2020-04-24 08:59:19 -04:00
|
|
|
$profile = DBA::selectFirst('owner-view', [], ['nickname' => $nickname, 'uid' => $uid]);
|
2018-01-14 20:13:02 -05:00
|
|
|
return $profile;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-14 23:44:39 -05:00
|
|
|
* Formats a profile for display in the sidebar.
|
2018-01-14 20:13:02 -05:00
|
|
|
*
|
|
|
|
* It is very difficult to templatise the HTML completely
|
|
|
|
* because of all the conditional logic.
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param array $profile
|
|
|
|
* @param int $block
|
2018-01-14 20:13:02 -05:00
|
|
|
* @param boolean $show_connect Show connect link
|
|
|
|
*
|
2018-02-03 12:25:58 -05:00
|
|
|
* @return string HTML sidebar module
|
2018-01-14 20:13:02 -05:00
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
* @note Returns empty string if passed $profile is wrong type or not populated
|
2018-01-14 20:13:02 -05:00
|
|
|
*
|
|
|
|
* @hooks 'profile_sidebar_enter'
|
|
|
|
* array $profile - profile data
|
|
|
|
* @hooks 'profile_sidebar'
|
|
|
|
* array $arr
|
|
|
|
*/
|
2020-06-24 09:56:11 -04:00
|
|
|
private static function sidebar(App $a, array $profile, $block = 0, $show_connect = true)
|
2018-01-14 20:13:02 -05:00
|
|
|
{
|
|
|
|
$o = '';
|
|
|
|
$location = false;
|
|
|
|
|
|
|
|
// This function can also use contact information in $profile
|
2018-11-30 09:06:22 -05:00
|
|
|
$is_contact = !empty($profile['cid']);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2020-06-24 09:56:11 -04:00
|
|
|
if (empty($profile['nickname'])) {
|
|
|
|
Logger::warning('Received profile with no nickname', ['profile' => $profile, 'callstack' => System::callstack(10)]);
|
2018-01-14 20:13:02 -05:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2019-10-16 08:35:14 -04:00
|
|
|
$profile['picdate'] = urlencode($profile['picdate'] ?? '');
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-08-11 16:40:44 -04:00
|
|
|
if (($profile['network'] != '') && ($profile['network'] != Protocol::DFRN)) {
|
2018-12-26 11:03:41 -05:00
|
|
|
$profile['network_link'] = Strings::formatNetworkName($profile['network'], $profile['url']);
|
2018-01-14 20:13:02 -05:00
|
|
|
} else {
|
2018-12-26 11:03:41 -05:00
|
|
|
$profile['network_link'] = '';
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('profile_sidebar_enter', $profile);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2019-06-10 21:33:25 -04:00
|
|
|
if (isset($profile['url'])) {
|
|
|
|
$profile_url = $profile['url'];
|
|
|
|
} else {
|
2019-12-15 19:05:15 -05:00
|
|
|
$profile_url = DI::baseUrl()->get() . '/profile/' . $profile['nickname'];
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2019-06-10 21:33:25 -04:00
|
|
|
$follow_link = null;
|
|
|
|
$unfollow_link = null;
|
|
|
|
$subscribe_feed_link = null;
|
|
|
|
$wallmessage_link = null;
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2019-06-10 21:33:25 -04:00
|
|
|
$visitor_contact = [];
|
2019-06-12 15:41:15 -04:00
|
|
|
if (!empty($profile['uid']) && self::getMyURL()) {
|
2019-06-10 21:33:25 -04:00
|
|
|
$visitor_contact = Contact::selectFirst(['rel'], ['uid' => $profile['uid'], 'nurl' => Strings::normaliseLink(self::getMyURL())]);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2019-06-10 21:33:25 -04:00
|
|
|
$profile_contact = [];
|
2019-06-12 15:41:15 -04:00
|
|
|
if (!empty($profile['cid']) && self::getMyURL()) {
|
2019-06-10 21:33:25 -04:00
|
|
|
$profile_contact = Contact::selectFirst(['rel'], ['id' => $profile['cid']]);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2019-06-10 21:33:25 -04:00
|
|
|
$profile_is_dfrn = $profile['network'] == Protocol::DFRN;
|
|
|
|
$profile_is_native = in_array($profile['network'], Protocol::NATIVE_SUPPORT);
|
2019-11-02 21:19:42 -04:00
|
|
|
$local_user_is_self = local_user() && local_user() == ($profile['uid'] ?? 0);
|
2019-06-10 21:33:25 -04:00
|
|
|
$visitor_is_authenticated = (bool)self::getMyURL();
|
|
|
|
$visitor_is_following =
|
|
|
|
in_array($visitor_contact['rel'] ?? 0, [Contact::FOLLOWER, Contact::FRIEND])
|
|
|
|
|| in_array($profile_contact['rel'] ?? 0, [Contact::SHARING, Contact::FRIEND]);
|
|
|
|
$visitor_is_followed =
|
|
|
|
in_array($visitor_contact['rel'] ?? 0, [Contact::SHARING, Contact::FRIEND])
|
|
|
|
|| in_array($profile_contact['rel'] ?? 0, [Contact::FOLLOWER, Contact::FRIEND]);
|
|
|
|
$visitor_base_path = self::getMyURL() ? preg_replace('=/profile/(.*)=ism', '', self::getMyURL()) : '';
|
2018-08-05 09:56:41 -04:00
|
|
|
|
2019-06-13 03:26:42 -04:00
|
|
|
if (!$local_user_is_self && $show_connect) {
|
2019-06-10 21:33:25 -04:00
|
|
|
if (!$visitor_is_authenticated) {
|
2020-02-27 22:14:00 -05:00
|
|
|
// Remote follow is only available for local profiles
|
|
|
|
if (!empty($profile['nickname']) && strpos($profile_url, DI::baseUrl()->get()) === 0) {
|
2020-02-09 12:04:35 -05:00
|
|
|
$follow_link = 'remote_follow/' . $profile['nickname'];
|
2019-06-12 15:34:56 -04:00
|
|
|
}
|
2019-06-10 21:33:25 -04:00
|
|
|
} elseif ($profile_is_native) {
|
|
|
|
if ($visitor_is_following) {
|
|
|
|
$unfollow_link = $visitor_base_path . '/unfollow?url=' . urlencode($profile_url);
|
|
|
|
} else {
|
|
|
|
$follow_link = $visitor_base_path .'/follow?url=' . urlencode($profile_url);
|
|
|
|
}
|
|
|
|
}
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2019-06-10 21:33:25 -04:00
|
|
|
if ($profile_is_dfrn) {
|
|
|
|
$subscribe_feed_link = 'dfrn_poll/' . $profile['nickname'];
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
2019-06-10 21:33:25 -04:00
|
|
|
|
|
|
|
if (Contact::canReceivePrivateMessages($profile)) {
|
|
|
|
if ($visitor_is_followed || $visitor_is_following) {
|
2019-10-16 08:35:14 -04:00
|
|
|
$wallmessage_link = $visitor_base_path . '/message/new/' . base64_encode($profile['addr'] ?? '');
|
2019-06-10 21:33:25 -04:00
|
|
|
} elseif ($visitor_is_authenticated && !empty($profile['unkmail'])) {
|
|
|
|
$wallmessage_link = 'wallmessage/' . $profile['nickname'];
|
|
|
|
}
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// show edit profile to yourself
|
2019-06-10 21:33:25 -04:00
|
|
|
if (!$is_contact && $local_user_is_self) {
|
2019-10-27 10:08:14 -04:00
|
|
|
$profile['edit'] = [DI::baseUrl() . '/settings/profile', DI::l10n()->t('Edit profile'), '', DI::l10n()->t('Edit profile')];
|
|
|
|
$profile['menu'] = [
|
|
|
|
'chg_photo' => DI::l10n()->t('Change profile photo'),
|
|
|
|
'cr_new' => null,
|
|
|
|
'entries' => [],
|
|
|
|
];
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch the account type
|
|
|
|
$account_type = Contact::getAccountType($profile);
|
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (!empty($profile['address'])
|
|
|
|
|| !empty($profile['location'])
|
|
|
|
|| !empty($profile['locality'])
|
|
|
|
|| !empty($profile['region'])
|
|
|
|
|| !empty($profile['postal-code'])
|
|
|
|
|| !empty($profile['country-name'])
|
2018-01-14 20:13:02 -05:00
|
|
|
) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$location = DI::l10n()->t('Location:');
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$homepage = !empty($profile['homepage']) ? DI::l10n()->t('Homepage:') : false;
|
|
|
|
$about = !empty($profile['about']) ? DI::l10n()->t('About:') : false;
|
|
|
|
$xmpp = !empty($profile['xmpp']) ? DI::l10n()->t('XMPP:') : false;
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2019-09-28 14:09:11 -04:00
|
|
|
if ((!empty($profile['hidewall']) || $block) && !Session::isAuthenticated()) {
|
2020-02-16 05:55:18 -05:00
|
|
|
$location = $homepage = $about = false;
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
$split_name = Diaspora::splitName($profile['name']);
|
|
|
|
$firstname = $split_name['first'];
|
|
|
|
$lastname = $split_name['last'];
|
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (!empty($profile['guid'])) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$diaspora = [
|
2018-01-14 20:13:02 -05:00
|
|
|
'guid' => $profile['guid'],
|
2019-12-30 17:00:08 -05:00
|
|
|
'podloc' => DI::baseUrl(),
|
2020-02-16 10:39:44 -05:00
|
|
|
'searchable' => ($profile['net-publish'] ? 'true' : 'false'),
|
2018-01-14 20:13:02 -05:00
|
|
|
'nickname' => $profile['nickname'],
|
|
|
|
'fullname' => $profile['name'],
|
|
|
|
'firstname' => $firstname,
|
|
|
|
'lastname' => $lastname,
|
2020-04-24 08:59:19 -04:00
|
|
|
'photo300' => $profile['photo'] ?? '',
|
|
|
|
'photo100' => $profile['thumb'] ?? '',
|
|
|
|
'photo50' => $profile['micro'] ?? '',
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2018-01-14 20:13:02 -05:00
|
|
|
} else {
|
|
|
|
$diaspora = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact_block = '';
|
|
|
|
$updated = '';
|
2019-01-05 22:05:24 -05:00
|
|
|
$contact_count = 0;
|
2020-04-24 11:18:34 -04:00
|
|
|
|
|
|
|
if (!empty($profile['last-item'])) {
|
|
|
|
$updated = date('c', strtotime($profile['last-item']));
|
|
|
|
}
|
|
|
|
|
2018-01-14 20:13:02 -05:00
|
|
|
if (!$block) {
|
2019-01-05 22:05:24 -05:00
|
|
|
$contact_block = ContactBlock::getHTML($a->profile);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
|
|
|
if (is_array($a->profile) && !$a->profile['hide-friends']) {
|
2019-01-05 22:05:24 -05:00
|
|
|
$contact_count = DBA::count('contact', [
|
|
|
|
'uid' => $profile['uid'],
|
|
|
|
'self' => false,
|
|
|
|
'blocked' => false,
|
|
|
|
'pending' => false,
|
|
|
|
'hidden' => false,
|
|
|
|
'archive' => false,
|
2019-07-01 14:00:55 -04:00
|
|
|
'network' => Protocol::FEDERATED,
|
2019-01-05 22:05:24 -05:00
|
|
|
]);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$p = [];
|
2018-01-14 20:13:02 -05:00
|
|
|
foreach ($profile as $k => $v) {
|
|
|
|
$k = str_replace('-', '_', $k);
|
|
|
|
$p[$k] = $v;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($p['about'])) {
|
2018-02-14 21:33:55 -05:00
|
|
|
$p['about'] = BBCode::convert($p['about']);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2018-12-26 06:21:42 -05:00
|
|
|
if (empty($p['address']) && !empty($p['location'])) {
|
|
|
|
$p['address'] = $p['location'];
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2019-01-06 16:04:10 -05:00
|
|
|
if (isset($p['address'])) {
|
|
|
|
$p['address'] = BBCode::convert($p['address']);
|
|
|
|
}
|
|
|
|
|
2018-01-14 20:13:02 -05:00
|
|
|
if (isset($p['photo'])) {
|
2018-07-30 22:06:22 -04:00
|
|
|
$p['photo'] = ProxyUtils::proxifyUrl($p['photo'], false, ProxyUtils::SIZE_SMALL);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2019-10-16 08:35:14 -04:00
|
|
|
$p['url'] = Contact::magicLink(($p['url'] ?? '') ?: $profile_url);
|
2018-04-08 15:17:50 -04:00
|
|
|
|
2019-10-27 10:09:00 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('profile/vcard.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2018-01-14 20:13:02 -05:00
|
|
|
'$profile' => $p,
|
|
|
|
'$xmpp' => $xmpp,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$follow' => DI::l10n()->t('Follow'),
|
2019-06-10 21:33:25 -04:00
|
|
|
'$follow_link' => $follow_link,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$unfollow' => DI::l10n()->t('Unfollow'),
|
2019-06-10 21:33:25 -04:00
|
|
|
'$unfollow_link' => $unfollow_link,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$subscribe_feed' => DI::l10n()->t('Atom feed'),
|
2019-06-10 21:33:25 -04:00
|
|
|
'$subscribe_feed_link' => $subscribe_feed_link,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$wallmessage' => DI::l10n()->t('Message'),
|
2018-01-14 20:13:02 -05:00
|
|
|
'$wallmessage_link' => $wallmessage_link,
|
|
|
|
'$account_type' => $account_type,
|
|
|
|
'$location' => $location,
|
|
|
|
'$homepage' => $homepage,
|
|
|
|
'$about' => $about,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$network' => DI::l10n()->t('Network:'),
|
2019-01-05 22:05:24 -05:00
|
|
|
'$contacts' => $contact_count,
|
2018-01-14 20:13:02 -05:00
|
|
|
'$updated' => $updated,
|
|
|
|
'$diaspora' => $diaspora,
|
|
|
|
'$contact_block' => $contact_block,
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$arr = ['profile' => &$profile, 'entry' => &$o];
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('profile_sidebar', $arr);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2018-01-14 21:22:39 -05:00
|
|
|
public static function getBirthdays()
|
2018-01-14 20:13:02 -05:00
|
|
|
{
|
2020-01-04 17:42:01 -05:00
|
|
|
$a = DI::app();
|
2018-01-14 20:13:02 -05:00
|
|
|
$o = '';
|
|
|
|
|
2019-12-15 19:12:07 -05:00
|
|
|
if (!local_user() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
|
2018-01-14 20:13:02 -05:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* $mobile_detect = new Mobile_Detect();
|
|
|
|
* $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
|
|
|
* if ($is_mobile)
|
|
|
|
* return $o;
|
|
|
|
*/
|
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$bd_format = DI::l10n()->t('g A l F d'); // 8 AM Friday January 18
|
|
|
|
$bd_short = DI::l10n()->t('F d');
|
2018-01-14 20:13:02 -05:00
|
|
|
|
|
|
|
$cachekey = 'get_birthdays:' . local_user();
|
2020-01-06 18:45:49 -05:00
|
|
|
$r = DI::cache()->get($cachekey);
|
2018-01-14 20:13:02 -05:00
|
|
|
if (is_null($r)) {
|
2018-07-20 08:19:26 -04:00
|
|
|
$s = DBA::p(
|
2018-01-14 20:13:02 -05:00
|
|
|
"SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
|
2018-11-22 00:15:44 -05:00
|
|
|
INNER JOIN `contact`
|
|
|
|
ON `contact`.`id` = `event`.`cid`
|
|
|
|
AND (`contact`.`rel` = ? OR `contact`.`rel` = ?)
|
|
|
|
AND NOT `contact`.`pending`
|
|
|
|
AND NOT `contact`.`hidden`
|
|
|
|
AND NOT `contact`.`blocked`
|
|
|
|
AND NOT `contact`.`archive`
|
|
|
|
AND NOT `contact`.`deleted`
|
2018-01-14 20:13:02 -05:00
|
|
|
WHERE `event`.`uid` = ? AND `type` = 'birthday' AND `start` < ? AND `finish` > ?
|
|
|
|
ORDER BY `start` ASC ",
|
2018-11-22 00:15:44 -05:00
|
|
|
Contact::SHARING,
|
|
|
|
Contact::FRIEND,
|
2018-01-14 20:13:02 -05:00
|
|
|
local_user(),
|
2018-01-26 21:38:34 -05:00
|
|
|
DateTimeFormat::utc('now + 6 days'),
|
|
|
|
DateTimeFormat::utcNow()
|
2018-01-14 20:13:02 -05:00
|
|
|
);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($s)) {
|
2018-07-20 22:03:40 -04:00
|
|
|
$r = DBA::toArray($s);
|
2020-01-18 09:41:19 -05:00
|
|
|
DI::cache()->set($cachekey, $r, Duration::HOUR);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
}
|
2018-02-14 00:05:00 -05:00
|
|
|
|
|
|
|
$total = 0;
|
|
|
|
$classtoday = '';
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($r)) {
|
2018-01-14 20:13:02 -05:00
|
|
|
$now = strtotime('now');
|
2018-01-15 08:05:12 -05:00
|
|
|
$cids = [];
|
2018-01-14 20:13:02 -05:00
|
|
|
|
|
|
|
$istoday = false;
|
|
|
|
foreach ($r as $rr) {
|
|
|
|
if (strlen($rr['name'])) {
|
|
|
|
$total ++;
|
|
|
|
}
|
|
|
|
if ((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) {
|
|
|
|
$istoday = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$classtoday = $istoday ? ' birthday-today ' : '';
|
|
|
|
if ($total) {
|
|
|
|
foreach ($r as &$rr) {
|
|
|
|
if (!strlen($rr['name'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// avoid duplicates
|
|
|
|
|
|
|
|
if (in_array($rr['cid'], $cids)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$cids[] = $rr['cid'];
|
|
|
|
|
|
|
|
$today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
|
|
|
|
|
2018-06-02 04:05:06 -04:00
|
|
|
$rr['link'] = Contact::magicLink($rr['url']);
|
2018-01-14 20:13:02 -05:00
|
|
|
$rr['title'] = $rr['name'];
|
2020-01-18 14:54:46 -05:00
|
|
|
$rr['date'] = DI::l10n()->getDay(DateTimeFormat::convert($rr['start'], $a->timezone, 'UTC', $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . DI::l10n()->t('[today]') : '');
|
2018-01-14 20:13:02 -05:00
|
|
|
$rr['startime'] = null;
|
|
|
|
$rr['today'] = $today;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('birthdays_reminder.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
return Renderer::replaceMacros($tpl, [
|
2018-01-14 20:13:02 -05:00
|
|
|
'$classtoday' => $classtoday,
|
|
|
|
'$count' => $total,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$event_reminders' => DI::l10n()->t('Birthday Reminders'),
|
|
|
|
'$event_title' => DI::l10n()->t('Birthdays this week:'),
|
2018-01-14 20:13:02 -05:00
|
|
|
'$events' => $r,
|
|
|
|
'$lbr' => '{', // raw brackets mess up if/endif macro processing
|
|
|
|
'$rbr' => '}'
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2018-02-27 20:47:18 -05:00
|
|
|
public static function getEventsReminderHTML()
|
2018-01-14 20:13:02 -05:00
|
|
|
{
|
2020-01-04 17:42:01 -05:00
|
|
|
$a = DI::app();
|
2018-02-12 10:08:28 -05:00
|
|
|
$o = '';
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2019-12-15 19:12:07 -05:00
|
|
|
if (!local_user() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
|
2018-01-14 20:13:02 -05:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* $mobile_detect = new Mobile_Detect();
|
|
|
|
* $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
|
|
|
|
* if ($is_mobile)
|
|
|
|
* return $o;
|
|
|
|
*/
|
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$bd_format = DI::l10n()->t('g A l F d'); // 8 AM Friday January 18
|
2018-01-14 20:13:02 -05:00
|
|
|
$classtoday = '';
|
|
|
|
|
2018-08-19 08:46:11 -04:00
|
|
|
$condition = ["`uid` = ? AND `type` != 'birthday' AND `start` < ? AND `start` >= ?",
|
|
|
|
local_user(), DateTimeFormat::utc('now + 7 days'), DateTimeFormat::utc('now - 1 days')];
|
|
|
|
$s = DBA::select('event', [], $condition, ['order' => ['start']]);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$r = [];
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($s)) {
|
2018-01-14 20:13:02 -05:00
|
|
|
$istoday = false;
|
2018-08-19 08:46:11 -04:00
|
|
|
$total = 0;
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
while ($rr = DBA::fetch($s)) {
|
2018-08-19 08:46:11 -04:00
|
|
|
$condition = ['parent-uri' => $rr['uri'], 'uid' => $rr['uid'], 'author-id' => public_contact(),
|
2020-05-26 01:18:50 -04:00
|
|
|
'vid' => [Verb::getID(Activity::ATTEND), Verb::getID(Activity::ATTENDMAYBE)],
|
2018-08-19 08:46:11 -04:00
|
|
|
'visible' => true, 'deleted' => false];
|
|
|
|
if (!Item::exists($condition)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-08-01 03:27:13 -04:00
|
|
|
if (strlen($rr['summary'])) {
|
2018-08-19 08:46:11 -04:00
|
|
|
$total++;
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2018-08-01 03:27:13 -04:00
|
|
|
$strt = DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC', 'UTC', 'Y-m-d');
|
2018-01-26 21:38:34 -05:00
|
|
|
if ($strt === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
|
2018-01-14 20:13:02 -05:00
|
|
|
$istoday = true;
|
|
|
|
}
|
|
|
|
|
2018-02-14 21:33:55 -05:00
|
|
|
$title = strip_tags(html_entity_decode(BBCode::convert($rr['summary']), ENT_QUOTES, 'UTF-8'));
|
2018-01-14 20:13:02 -05:00
|
|
|
|
|
|
|
if (strlen($title) > 35) {
|
|
|
|
$title = substr($title, 0, 32) . '... ';
|
|
|
|
}
|
|
|
|
|
2018-02-14 21:33:55 -05:00
|
|
|
$description = substr(strip_tags(BBCode::convert($rr['desc'])), 0, 32) . '... ';
|
2018-01-14 20:13:02 -05:00
|
|
|
if (!$description) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$description = DI::l10n()->t('[No description]');
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2018-08-01 03:27:13 -04:00
|
|
|
$strt = DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC');
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-01-26 21:38:34 -05:00
|
|
|
if (substr($strt, 0, 10) < DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
|
2018-01-14 20:13:02 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-01-26 21:38:34 -05:00
|
|
|
$today = ((substr($strt, 0, 10) === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) ? true : false);
|
2018-01-14 20:13:02 -05:00
|
|
|
|
|
|
|
$rr['title'] = $title;
|
|
|
|
$rr['description'] = $description;
|
2020-01-18 14:54:46 -05:00
|
|
|
$rr['date'] = DI::l10n()->getDay(DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC', 'UTC', $bd_format)) . (($today) ? ' ' . DI::l10n()->t('[today]') : '');
|
2018-01-14 20:13:02 -05:00
|
|
|
$rr['startime'] = $strt;
|
|
|
|
$rr['today'] = $today;
|
|
|
|
|
|
|
|
$r[] = $rr;
|
|
|
|
}
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::close($s);
|
2018-01-14 20:13:02 -05:00
|
|
|
$classtoday = (($istoday) ? 'event-today' : '');
|
|
|
|
}
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('events_reminder.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
return Renderer::replaceMacros($tpl, [
|
2018-01-14 20:13:02 -05:00
|
|
|
'$classtoday' => $classtoday,
|
|
|
|
'$count' => count($r),
|
2020-01-18 14:52:34 -05:00
|
|
|
'$event_reminders' => DI::l10n()->t('Event Reminders'),
|
|
|
|
'$event_title' => DI::l10n()->t('Upcoming events the next 7 days:'),
|
2018-01-14 20:13:02 -05:00
|
|
|
'$events' => $r,
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the my_url session variable
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-01-14 21:22:39 -05:00
|
|
|
public static function getMyURL()
|
2018-01-14 20:13:02 -05:00
|
|
|
{
|
2019-06-10 21:33:25 -04:00
|
|
|
return Session::get('my_url');
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2018-06-18 17:05:44 -04:00
|
|
|
/**
|
|
|
|
* Process the 'zrl' parameter and initiate the remote authentication.
|
2018-07-14 05:14:11 -04:00
|
|
|
*
|
2018-06-18 17:05:44 -04:00
|
|
|
* This method checks if the visitor has a public contact entry and
|
|
|
|
* redirects the visitor to his/her instance to start the magic auth (Authentication)
|
|
|
|
* process.
|
2018-07-14 05:14:11 -04:00
|
|
|
*
|
2018-06-19 07:30:55 -04:00
|
|
|
* Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/channel.php
|
2018-07-14 05:14:11 -04:00
|
|
|
*
|
2019-09-29 06:20:53 -04:00
|
|
|
* The implementation for Friendica sadly differs in some points from the one for Hubzilla:
|
|
|
|
* - Hubzilla uses the "zid" parameter, while for Friendica it had been replaced with "zrl"
|
|
|
|
* - There seem to be some reverse authentication (rmagic) that isn't implemented in Friendica at all
|
|
|
|
*
|
|
|
|
* It would be favourable to harmonize the two implementations.
|
|
|
|
*
|
2018-06-18 17:05:44 -04:00
|
|
|
* @param App $a Application instance.
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-06-18 17:05:44 -04:00
|
|
|
*/
|
2018-01-14 21:22:39 -05:00
|
|
|
public static function zrlInit(App $a)
|
2018-01-14 20:13:02 -05:00
|
|
|
{
|
2018-01-14 21:22:39 -05:00
|
|
|
$my_url = self::getMyURL();
|
2018-01-27 11:13:41 -05:00
|
|
|
$my_url = Network::isUrlValid($my_url);
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2018-10-16 02:32:12 -04:00
|
|
|
if (empty($my_url) || local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2019-09-29 06:20:53 -04:00
|
|
|
$addr = $_GET['addr'] ?? $my_url;
|
|
|
|
|
2019-12-15 19:33:13 -05:00
|
|
|
$arr = ['zrl' => $my_url, 'url' => DI::args()->getCommand()];
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('zrl_init', $arr);
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2018-10-16 02:32:12 -04:00
|
|
|
// Try to find the public contact entry of the visitor.
|
|
|
|
$cid = Contact::getIdForURL($my_url);
|
|
|
|
if (!$cid) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('No contact record found for ' . $my_url, Logger::DEBUG);
|
2018-10-16 02:32:12 -04:00
|
|
|
return;
|
|
|
|
}
|
2018-06-19 10:15:28 -04:00
|
|
|
|
2018-10-16 02:32:12 -04:00
|
|
|
$contact = DBA::selectFirst('contact',['id', 'url'], ['id' => $cid]);
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2018-10-16 02:32:12 -04:00
|
|
|
if (DBA::isResult($contact) && remote_user() && remote_user() == $contact['id']) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('The visitor ' . $my_url . ' is already authenticated', Logger::DEBUG);
|
2018-10-16 02:32:12 -04:00
|
|
|
return;
|
|
|
|
}
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2018-10-16 09:17:01 -04:00
|
|
|
// Avoid endless loops
|
|
|
|
$cachekey = 'zrlInit:' . $my_url;
|
2020-01-06 18:45:49 -05:00
|
|
|
if (DI::cache()->get($cachekey)) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('URL ' . $my_url . ' already tried to authenticate.', Logger::DEBUG);
|
2018-10-16 09:17:01 -04:00
|
|
|
return;
|
|
|
|
} else {
|
2020-01-18 09:41:19 -05:00
|
|
|
DI::cache()->set($cachekey, true, Duration::MINUTE);
|
2018-10-16 09:17:01 -04:00
|
|
|
}
|
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Not authenticated. Invoking reverse magic-auth for ' . $my_url, Logger::DEBUG);
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2019-09-29 06:20:53 -04:00
|
|
|
// Remove the "addr" parameter from the destination. It is later added as separate parameter again.
|
|
|
|
$addr_request = 'addr=' . urlencode($addr);
|
2019-12-15 19:30:34 -05:00
|
|
|
$query = rtrim(str_replace($addr_request, '', DI::args()->getQueryString()), '?&');
|
2019-09-29 06:20:53 -04:00
|
|
|
|
2018-10-16 02:32:12 -04:00
|
|
|
// The other instance needs to know where to redirect.
|
2019-12-15 19:05:15 -05:00
|
|
|
$dest = urlencode(DI::baseUrl()->get() . '/' . $query);
|
2018-10-16 02:32:12 -04:00
|
|
|
|
|
|
|
// We need to extract the basebath from the profile url
|
|
|
|
// to redirect the visitors '/magic' module.
|
2019-09-29 02:26:02 -04:00
|
|
|
$basepath = Contact::getBasepath($contact['url']);
|
2018-10-16 02:32:12 -04:00
|
|
|
|
2019-12-15 19:05:15 -05:00
|
|
|
if ($basepath != DI::baseUrl()->get() && !strstr($dest, '/magic')) {
|
2019-09-29 14:59:03 -04:00
|
|
|
$magic_path = $basepath . '/magic' . '?owa=1&dest=' . $dest . '&' . $addr_request;
|
2018-10-16 02:32:12 -04:00
|
|
|
|
|
|
|
// We have to check if the remote server does understand /magic without invoking something
|
2020-03-04 16:15:46 -05:00
|
|
|
$serverret = DI::httpRequest()->curl($basepath . '/magic');
|
2018-10-16 02:32:12 -04:00
|
|
|
if ($serverret->isSuccess()) {
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('Doing magic auth for visitor ' . $my_url . ' to ' . $magic_path, Logger::DEBUG);
|
2018-10-19 14:11:27 -04:00
|
|
|
System::externalRedirect($magic_path);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
2018-06-18 17:05:44 -04:00
|
|
|
}
|
|
|
|
}
|
2018-01-14 20:13:02 -05:00
|
|
|
|
2018-06-18 17:05:44 -04:00
|
|
|
/**
|
2019-03-19 02:44:51 -04:00
|
|
|
* Set the visitor cookies (see remote_user()) for the given handle
|
2018-07-14 05:14:11 -04:00
|
|
|
*
|
2019-03-19 02:44:51 -04:00
|
|
|
* @param string $handle Visitor handle
|
|
|
|
* @return array Visitor contact array
|
2018-06-18 17:05:44 -04:00
|
|
|
*/
|
2019-03-19 02:44:51 -04:00
|
|
|
public static function addVisitorCookieForHandle($handle)
|
2018-06-18 17:05:44 -04:00
|
|
|
{
|
2020-01-04 17:42:01 -05:00
|
|
|
$a = DI::app();
|
2019-03-19 02:57:37 -04:00
|
|
|
|
2018-06-18 17:05:44 -04:00
|
|
|
// Try to find the public contact entry of the visitor.
|
2019-03-19 02:44:51 -04:00
|
|
|
$cid = Contact::getIdForURL($handle);
|
|
|
|
if (!$cid) {
|
|
|
|
Logger::log('unable to finger ' . $handle, Logger::DEBUG);
|
|
|
|
return [];
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
$visitor = DBA::selectFirst('contact', [], ['id' => $cid]);
|
2018-06-19 10:15:28 -04:00
|
|
|
|
2018-06-18 17:05:44 -04:00
|
|
|
// Authenticate the visitor.
|
|
|
|
$_SESSION['authenticated'] = 1;
|
|
|
|
$_SESSION['visitor_id'] = $visitor['id'];
|
|
|
|
$_SESSION['visitor_handle'] = $visitor['addr'];
|
|
|
|
$_SESSION['visitor_home'] = $visitor['url'];
|
2018-06-21 16:46:10 -04:00
|
|
|
$_SESSION['my_url'] = $visitor['url'];
|
2020-06-01 17:52:31 -04:00
|
|
|
$_SESSION['remote_comment'] = $visitor['subscribe'];
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2019-09-26 00:47:42 -04:00
|
|
|
Session::setVisitorsContacts();
|
2019-03-19 02:44:51 -04:00
|
|
|
|
|
|
|
$a->contact = $visitor;
|
|
|
|
|
|
|
|
Logger::info('Authenticated visitor', ['url' => $visitor['url']]);
|
|
|
|
|
|
|
|
return $visitor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OpenWebAuth authentication.
|
|
|
|
*
|
|
|
|
* Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/zid.php
|
|
|
|
*
|
|
|
|
* @param string $token
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
|
|
|
public static function openWebAuthInit($token)
|
|
|
|
{
|
2020-01-04 17:42:01 -05:00
|
|
|
$a = DI::app();
|
2019-03-19 02:44:51 -04:00
|
|
|
|
|
|
|
// Clean old OpenWebAuthToken entries.
|
|
|
|
OpenWebAuthToken::purge('owt', '3 MINUTE');
|
|
|
|
|
|
|
|
// Check if the token we got is the same one
|
|
|
|
// we have stored in the database.
|
|
|
|
$visitor_handle = OpenWebAuthToken::getMeta('owt', 0, $token);
|
|
|
|
|
|
|
|
if ($visitor_handle === false) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$visitor = self::addVisitorCookieForHandle($visitor_handle);
|
|
|
|
if (empty($visitor)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-18 17:05:44 -04:00
|
|
|
$arr = [
|
|
|
|
'visitor' => $visitor,
|
2019-12-15 19:30:34 -05:00
|
|
|
'url' => DI::args()->getQueryString()
|
2018-06-18 17:05:44 -04:00
|
|
|
];
|
|
|
|
/**
|
|
|
|
* @hooks magic_auth_success
|
|
|
|
* Called when a magic-auth was successful.
|
|
|
|
* * \e array \b visitor
|
|
|
|
* * \e string \b url
|
|
|
|
*/
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('magic_auth_success', $arr);
|
2018-06-19 10:15:28 -04:00
|
|
|
|
2018-06-20 12:38:23 -04:00
|
|
|
$a->contact = $arr['visitor'];
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
info(DI::l10n()->t('OpenWebAuth: %1$s welcomes %2$s', DI::baseUrl()->getHostname(), $visitor['name']));
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('OpenWebAuth: auth success from ' . $visitor['addr'], Logger::DEBUG);
|
2018-01-14 20:13:02 -05:00
|
|
|
}
|
|
|
|
|
2018-01-14 21:22:39 -05:00
|
|
|
public static function zrl($s, $force = false)
|
2018-01-14 20:13:02 -05:00
|
|
|
{
|
|
|
|
if (!strlen($s)) {
|
|
|
|
return $s;
|
|
|
|
}
|
2019-09-29 15:21:05 -04:00
|
|
|
if (!strpos($s, '/profile/') && !$force) {
|
2018-01-14 20:13:02 -05:00
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
if ($force && substr($s, -1, 1) !== '/') {
|
|
|
|
$s = $s . '/';
|
|
|
|
}
|
|
|
|
$achar = strpos($s, '?') ? '&' : '?';
|
2018-01-14 21:22:39 -05:00
|
|
|
$mine = self::getMyURL();
|
2018-11-08 10:46:50 -05:00
|
|
|
if ($mine && !Strings::compareLink($mine, $s)) {
|
2018-01-14 20:13:02 -05:00
|
|
|
return $s . $achar . 'zrl=' . urlencode($mine);
|
|
|
|
}
|
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-14 23:44:39 -05:00
|
|
|
* Get the user ID of the page owner.
|
2018-01-14 20:13:02 -05:00
|
|
|
*
|
|
|
|
* Used from within PCSS themes to set theme parameters. If there's a
|
2019-01-12 02:23:01 -05:00
|
|
|
* profile_uid variable set in App, that is the "page owner" and normally their theme
|
2018-01-14 20:13:02 -05:00
|
|
|
* 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
|
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2019-01-12 02:23:01 -05:00
|
|
|
* @note Returns local_user instead of user ID if "always_my_theme" is set to true
|
2018-01-14 20:13:02 -05:00
|
|
|
*/
|
2019-01-12 02:23:01 -05:00
|
|
|
public static function getThemeUid(App $a)
|
2018-01-14 20:13:02 -05:00
|
|
|
{
|
2019-01-12 02:23:01 -05:00
|
|
|
$uid = !empty($a->profile_uid) ? intval($a->profile_uid) : 0;
|
2020-01-18 10:50:57 -05:00
|
|
|
if (local_user() && (DI::pConfig()->get(local_user(), 'system', 'always_my_theme') || !$uid)) {
|
2018-01-14 20:13:02 -05:00
|
|
|
return local_user();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $uid;
|
|
|
|
}
|
2018-06-18 17:05:44 -04:00
|
|
|
|
2019-05-02 16:49:33 -04:00
|
|
|
/**
|
|
|
|
* search for Profiles
|
|
|
|
*
|
|
|
|
* @param int $start
|
|
|
|
* @param int $count
|
|
|
|
* @param null $search
|
|
|
|
*
|
|
|
|
* @return array [ 'total' => 123, 'entries' => [...] ];
|
|
|
|
*
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function searchProfiles($start = 0, $count = 100, $search = null)
|
|
|
|
{
|
2019-05-05 12:40:36 -04:00
|
|
|
if (!empty($search)) {
|
2020-04-26 02:58:30 -04:00
|
|
|
$publish = (DI::config()->get('system', 'publish_all') ? '' : "AND `publish` ");
|
2019-05-05 12:40:36 -04:00
|
|
|
$searchTerm = '%' . $search . '%';
|
2020-04-26 02:58:30 -04:00
|
|
|
$condition = ["NOT `blocked` AND NOT `account_removed`
|
2020-04-26 02:04:03 -04:00
|
|
|
$publish
|
2020-04-24 16:39:14 -04:00
|
|
|
AND ((`name` LIKE ?) OR
|
|
|
|
(`nickname` LIKE ?) OR
|
|
|
|
(`about` LIKE ?) OR
|
|
|
|
(`locality` LIKE ?) OR
|
|
|
|
(`region` LIKE ?) OR
|
|
|
|
(`country-name` LIKE ?) OR
|
|
|
|
(`pub_keywords` LIKE ?) OR
|
|
|
|
(`prv_keywords` LIKE ?))",
|
2020-04-26 02:58:30 -04:00
|
|
|
$searchTerm, $searchTerm, $searchTerm, $searchTerm,
|
|
|
|
$searchTerm, $searchTerm, $searchTerm, $searchTerm];
|
2019-05-05 12:40:36 -04:00
|
|
|
} else {
|
2020-04-26 02:58:30 -04:00
|
|
|
$condition = ['blocked' => false, 'account_removed' => false];
|
|
|
|
if (!DI::config()->get('system', 'publish_all')) {
|
|
|
|
$condition['publish'] = true;
|
|
|
|
}
|
2019-05-02 16:49:33 -04:00
|
|
|
}
|
|
|
|
|
2020-04-26 02:58:30 -04:00
|
|
|
$total = DBA::count('owner-view', $condition);
|
2019-05-05 12:40:36 -04:00
|
|
|
|
|
|
|
// If nothing found, don't try to select details
|
|
|
|
if ($total > 0) {
|
2020-04-26 02:58:30 -04:00
|
|
|
$profiles = DBA::selectToArray('owner-view', [], $condition, ['order' => ['name'], 'limit' => [$start, $count]]);
|
2019-05-02 16:49:33 -04:00
|
|
|
} else {
|
2020-04-26 02:58:30 -04:00
|
|
|
$profiles = [];
|
2019-05-02 16:49:33 -04:00
|
|
|
}
|
2020-04-26 02:58:30 -04:00
|
|
|
|
|
|
|
return ['total' => $total, 'entries' => $profiles];
|
2019-05-02 16:49:33 -04:00
|
|
|
}
|
2017-11-19 16:55:28 -05:00
|
|
|
}
|