2018-01-15 14:22:01 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
2018-01-15 14:22:01 +00:00
|
|
|
*/
|
2020-02-09 14:45:36 +00:00
|
|
|
|
2018-01-15 14:22:01 +00:00
|
|
|
namespace Friendica\Content;
|
|
|
|
|
2018-01-17 18:42:40 +00:00
|
|
|
use Friendica\Core\Addon;
|
2021-10-23 08:49:27 +00:00
|
|
|
use Friendica\Core\Cache\Enum\Duration;
|
2018-08-11 20:40:44 +00:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 14:35:50 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2022-04-26 18:33:58 +00:00
|
|
|
use Friendica\Core\Search;
|
2022-10-19 04:26:41 +00:00
|
|
|
use Friendica\Core\Session;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 19:02:09 +00:00
|
|
|
use Friendica\DI;
|
2018-02-04 04:49:48 +00:00
|
|
|
use Friendica\Model\Contact;
|
2020-01-23 22:49:55 +00:00
|
|
|
use Friendica\Model\Group;
|
2019-05-25 23:08:15 +00:00
|
|
|
use Friendica\Model\Item;
|
2021-01-21 07:16:41 +00:00
|
|
|
use Friendica\Model\Post;
|
2022-04-26 18:33:58 +00:00
|
|
|
use Friendica\Model\Profile;
|
2019-05-25 23:08:15 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
|
|
|
use Friendica\Util\Temporal;
|
2018-01-15 15:39:27 +00:00
|
|
|
|
2018-01-15 14:22:01 +00:00
|
|
|
class Widget
|
|
|
|
{
|
2018-01-15 14:50:06 +00:00
|
|
|
/**
|
|
|
|
* Return the follow widget
|
|
|
|
*
|
|
|
|
* @param string $value optional, default empty
|
2019-01-06 21:06:53 +00:00
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 14:50:06 +00:00
|
|
|
*/
|
2022-06-18 03:01:51 +00:00
|
|
|
public static function follow(string $value = ''): string
|
2018-01-15 14:22:01 +00:00
|
|
|
{
|
2019-05-18 15:33:35 +00:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/follow.tpl'), array(
|
2020-01-18 19:52:34 +00:00
|
|
|
'$connect' => DI::l10n()->t('Add New Contact'),
|
|
|
|
'$desc' => DI::l10n()->t('Enter address or web location'),
|
|
|
|
'$hint' => DI::l10n()->t('Example: bob@example.com, http://example.com/barbara'),
|
2018-01-15 14:22:01 +00:00
|
|
|
'$value' => $value,
|
2020-01-18 19:52:34 +00:00
|
|
|
'$follow' => DI::l10n()->t('Connect')
|
2018-01-15 14:22:01 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:50:06 +00:00
|
|
|
/**
|
|
|
|
* Return Find People widget
|
2022-06-16 16:36:56 +00:00
|
|
|
*
|
|
|
|
* @return string HTML code respresenting "People Widget"
|
2018-01-15 14:50:06 +00:00
|
|
|
*/
|
2022-06-16 16:36:56 +00:00
|
|
|
public static function findPeople(): string
|
2018-01-15 14:22:01 +00:00
|
|
|
{
|
2022-04-26 18:33:58 +00:00
|
|
|
$global_dir = Search::getGlobalDirectory();
|
2018-01-15 14:22:01 +00:00
|
|
|
|
2020-01-19 20:21:13 +00:00
|
|
|
if (DI::config()->get('system', 'invitation_only')) {
|
2022-10-19 04:26:41 +00:00
|
|
|
$x = intval(DI::pConfig()->get(Session::getLocalUser(), 'system', 'invites_remaining'));
|
2021-11-04 20:29:59 +00:00
|
|
|
if ($x || DI::app()->isSiteAdmin()) {
|
2019-12-30 19:02:09 +00:00
|
|
|
DI::page()['aside'] .= '<div class="side-link widget" id="side-invite-remain">'
|
2020-01-18 19:53:01 +00:00
|
|
|
. DI::l10n()->tt('%d invitation available', '%d invitations available', $x)
|
2018-02-12 15:08:28 +00:00
|
|
|
. '</div>';
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 20:54:14 +00:00
|
|
|
$nv = [];
|
2020-01-18 19:52:34 +00:00
|
|
|
$nv['findpeople'] = DI::l10n()->t('Find People');
|
|
|
|
$nv['desc'] = DI::l10n()->t('Enter name or interest');
|
|
|
|
$nv['label'] = DI::l10n()->t('Connect/Follow');
|
|
|
|
$nv['hint'] = DI::l10n()->t('Examples: Robert Morgenstein, Fishing');
|
|
|
|
$nv['findthem'] = DI::l10n()->t('Find');
|
|
|
|
$nv['suggest'] = DI::l10n()->t('Friend Suggestions');
|
|
|
|
$nv['similar'] = DI::l10n()->t('Similar Interests');
|
|
|
|
$nv['random'] = DI::l10n()->t('Random Profile');
|
|
|
|
$nv['inv'] = DI::l10n()->t('Invite Friends');
|
|
|
|
$nv['directory'] = DI::l10n()->t('Global Directory');
|
2022-04-26 18:33:58 +00:00
|
|
|
$nv['global_dir'] = Profile::zrl($global_dir, true);
|
2020-01-18 19:52:34 +00:00
|
|
|
$nv['local_directory'] = DI::l10n()->t('Local Directory');
|
2018-04-19 20:54:14 +00:00
|
|
|
|
|
|
|
$aside = [];
|
|
|
|
$aside['$nv'] = $nv;
|
|
|
|
|
2019-05-18 15:33:35 +00:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/peoplefind.tpl'), $aside);
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:50:06 +00:00
|
|
|
/**
|
2021-10-09 21:16:15 +00:00
|
|
|
* Return unavailable networks as array
|
2021-10-11 04:33:10 +00:00
|
|
|
*
|
|
|
|
* @return array Unsupported networks
|
2018-01-15 14:50:06 +00:00
|
|
|
*/
|
2022-06-16 16:36:56 +00:00
|
|
|
public static function unavailableNetworks(): array
|
2018-01-15 14:22:01 +00:00
|
|
|
{
|
2018-08-10 04:59:26 +00:00
|
|
|
// Always hide content from these networks
|
2021-10-11 04:33:10 +00:00
|
|
|
$networks = [Protocol::PHANTOM, Protocol::FACEBOOK, Protocol::APPNET, Protocol::ZOT];
|
2018-01-15 14:22:01 +00:00
|
|
|
|
2019-11-24 20:06:47 +00:00
|
|
|
if (!Addon::isEnabled("discourse")) {
|
|
|
|
$networks[] = Protocol::DISCOURSE;
|
|
|
|
}
|
|
|
|
|
2018-01-17 18:42:40 +00:00
|
|
|
if (!Addon::isEnabled("statusnet")) {
|
2018-08-11 20:40:44 +00:00
|
|
|
$networks[] = Protocol::STATUSNET;
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2018-01-17 18:42:40 +00:00
|
|
|
if (!Addon::isEnabled("pumpio")) {
|
2018-08-11 20:40:44 +00:00
|
|
|
$networks[] = Protocol::PUMPIO;
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2018-01-17 18:42:40 +00:00
|
|
|
if (!Addon::isEnabled("twitter")) {
|
2018-08-11 20:40:44 +00:00
|
|
|
$networks[] = Protocol::TWITTER;
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2020-01-19 20:21:13 +00:00
|
|
|
if (DI::config()->get("system", "ostatus_disabled")) {
|
2018-08-11 20:40:44 +00:00
|
|
|
$networks[] = Protocol::OSTATUS;
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2020-01-19 20:21:13 +00:00
|
|
|
if (!DI::config()->get("system", "diaspora_enabled")) {
|
2018-08-11 20:40:44 +00:00
|
|
|
$networks[] = Protocol::DIASPORA;
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2018-01-17 18:42:40 +00:00
|
|
|
if (!Addon::isEnabled("pnut")) {
|
2018-08-11 20:40:44 +00:00
|
|
|
$networks[] = Protocol::PNUT;
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
2021-10-09 21:16:15 +00:00
|
|
|
return $networks;
|
|
|
|
}
|
|
|
|
|
2019-05-18 15:33:35 +00:00
|
|
|
/**
|
2019-05-18 15:44:04 +00:00
|
|
|
* Display a generic filter widget based on a list of options
|
|
|
|
*
|
|
|
|
* The options array must be the following format:
|
|
|
|
* [
|
|
|
|
* [
|
|
|
|
* 'ref' => {filter value},
|
|
|
|
* 'name' => {option name}
|
|
|
|
* ],
|
|
|
|
* ...
|
|
|
|
* ]
|
|
|
|
*
|
|
|
|
* @param string $type The filter query string key
|
2019-05-18 15:33:35 +00:00
|
|
|
* @param string $title
|
|
|
|
* @param string $desc
|
2019-05-18 15:44:04 +00:00
|
|
|
* @param string $all The no filter label
|
|
|
|
* @param string $baseUrl The full page request URI
|
2019-05-18 15:33:35 +00:00
|
|
|
* @param array $options
|
2019-05-18 15:44:04 +00:00
|
|
|
* @param string $selected The currently selected filter option value
|
2019-05-18 15:33:35 +00:00
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2022-06-16 16:36:56 +00:00
|
|
|
private static function filter(string $type, string $title, string $desc, string $all, string $baseUrl, array $options, string $selected = null): string
|
2019-05-18 15:33:35 +00:00
|
|
|
{
|
|
|
|
$queryString = parse_url($baseUrl, PHP_URL_QUERY);
|
|
|
|
$queryArray = [];
|
|
|
|
|
|
|
|
if ($queryString) {
|
|
|
|
parse_str($queryString, $queryArray);
|
|
|
|
unset($queryArray[$type]);
|
|
|
|
|
|
|
|
if (count($queryArray)) {
|
|
|
|
$baseUrl = substr($baseUrl, 0, strpos($baseUrl, '?')) . '?' . http_build_query($queryArray) . '&';
|
|
|
|
} else {
|
|
|
|
$baseUrl = substr($baseUrl, 0, strpos($baseUrl, '?')) . '?';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$baseUrl = trim($baseUrl, '?') . '?';
|
|
|
|
}
|
|
|
|
|
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/filter.tpl'), [
|
|
|
|
'$type' => $type,
|
|
|
|
'$title' => $title,
|
|
|
|
'$desc' => $desc,
|
|
|
|
'$selected' => $selected,
|
|
|
|
'$all_label' => $all,
|
|
|
|
'$options' => $options,
|
|
|
|
'$base' => $baseUrl,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2020-01-23 22:49:55 +00:00
|
|
|
/**
|
|
|
|
* Return group membership widget
|
|
|
|
*
|
|
|
|
* @param string $baseurl
|
|
|
|
* @param string $selected
|
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2022-06-16 16:36:56 +00:00
|
|
|
public static function groups(string $baseurl, string $selected = ''): string
|
2020-01-23 22:49:55 +00:00
|
|
|
{
|
2022-10-19 04:26:41 +00:00
|
|
|
if (!Session::getLocalUser()) {
|
2020-01-23 22:49:55 +00:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$options = array_map(function ($group) {
|
|
|
|
return [
|
|
|
|
'ref' => $group['id'],
|
|
|
|
'name' => $group['name']
|
|
|
|
];
|
2022-10-19 04:26:41 +00:00
|
|
|
}, Group::getByUserId(Session::getLocalUser()));
|
2020-01-23 22:49:55 +00:00
|
|
|
|
|
|
|
return self::filter(
|
|
|
|
'group',
|
|
|
|
DI::l10n()->t('Groups'),
|
|
|
|
'',
|
|
|
|
DI::l10n()->t('Everyone'),
|
|
|
|
$baseurl,
|
|
|
|
$options,
|
|
|
|
$selected
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-05-18 15:44:04 +00:00
|
|
|
/**
|
2020-01-23 19:52:22 +00:00
|
|
|
* Return contact relationship widget
|
2019-05-18 15:44:04 +00:00
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2022-06-30 12:16:30 +00:00
|
|
|
public static function contactRels(string $baseurl, string $selected = ''): string
|
2019-05-18 15:44:04 +00:00
|
|
|
{
|
2022-10-19 04:26:41 +00:00
|
|
|
if (!Session::getLocalUser()) {
|
2019-05-18 15:44:04 +00:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$options = [
|
2020-01-18 19:52:34 +00:00
|
|
|
['ref' => 'followers', 'name' => DI::l10n()->t('Followers')],
|
|
|
|
['ref' => 'following', 'name' => DI::l10n()->t('Following')],
|
|
|
|
['ref' => 'mutuals', 'name' => DI::l10n()->t('Mutual friends')],
|
2019-05-18 15:44:04 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
return self::filter(
|
|
|
|
'rel',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('Relationships'),
|
2019-05-18 15:44:04 +00:00
|
|
|
'',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('All Contacts'),
|
2019-05-18 15:44:04 +00:00
|
|
|
$baseurl,
|
|
|
|
$options,
|
|
|
|
$selected
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:50:06 +00:00
|
|
|
/**
|
|
|
|
* Return networks widget
|
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
2019-01-06 21:06:53 +00:00
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 14:50:06 +00:00
|
|
|
*/
|
2022-06-30 12:16:30 +00:00
|
|
|
public static function networks(string $baseurl, string $selected = ''): string
|
2018-01-15 14:22:01 +00:00
|
|
|
{
|
2022-10-19 04:26:41 +00:00
|
|
|
if (!Session::getLocalUser()) {
|
2018-01-15 14:22:01 +00:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2021-10-11 04:33:10 +00:00
|
|
|
$networks = self::unavailableNetworks();
|
2021-10-11 06:25:04 +00:00
|
|
|
$query = "`uid` = ? AND NOT `deleted` AND `network` != '' AND NOT `network` IN (" . substr(str_repeat("?, ", count($networks)), 0, -2) . ")";
|
2022-10-19 04:26:41 +00:00
|
|
|
$condition = array_merge([$query], array_merge([Session::getLocalUser()], $networks));
|
2018-01-15 14:22:01 +00:00
|
|
|
|
2021-10-11 06:25:04 +00:00
|
|
|
$r = DBA::select('contact', ['network'], $condition, ['group_by' => ['network'], 'order' => ['network']]);
|
2018-01-15 14:22:01 +00:00
|
|
|
|
2022-08-10 13:02:36 +00:00
|
|
|
$nets = [];
|
2018-07-20 12:19:26 +00:00
|
|
|
while ($rr = DBA::fetch($r)) {
|
2019-05-18 15:33:35 +00:00
|
|
|
$nets[] = ['ref' => $rr['network'], 'name' => ContactSelector::networkToName($rr['network'])];
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::close($r);
|
2018-01-15 14:22:01 +00:00
|
|
|
|
|
|
|
if (count($nets) < 2) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-05-18 15:33:35 +00:00
|
|
|
return self::filter(
|
|
|
|
'nets',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('Protocols'),
|
2019-05-18 15:33:35 +00:00
|
|
|
'',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('All Protocols'),
|
2019-05-18 15:33:35 +00:00
|
|
|
$baseurl,
|
|
|
|
$nets,
|
|
|
|
$selected
|
|
|
|
);
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:50:06 +00:00
|
|
|
/**
|
|
|
|
* Return file as widget
|
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
2022-06-30 12:16:30 +00:00
|
|
|
* @return string
|
2019-05-27 21:17:53 +00:00
|
|
|
* @throws \Exception
|
2018-01-15 14:50:06 +00:00
|
|
|
*/
|
2022-06-30 12:16:30 +00:00
|
|
|
public static function fileAs(string $baseurl, string $selected = ''): string
|
2018-01-15 14:22:01 +00:00
|
|
|
{
|
2022-10-19 04:26:41 +00:00
|
|
|
if (!Session::getLocalUser()) {
|
2018-01-15 14:22:01 +00:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-05-27 21:17:53 +00:00
|
|
|
$terms = [];
|
2022-10-19 04:26:41 +00:00
|
|
|
foreach (Post\Category::getArray(Session::getLocalUser(), Post\Category::FILE) as $savedFolderName) {
|
2019-05-27 21:17:53 +00:00
|
|
|
$terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName];
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2019-05-18 15:33:35 +00:00
|
|
|
return self::filter(
|
|
|
|
'file',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('Saved Folders'),
|
2019-05-18 15:33:35 +00:00
|
|
|
'',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('Everything'),
|
2019-05-18 15:33:35 +00:00
|
|
|
$baseurl,
|
|
|
|
$terms,
|
|
|
|
$selected
|
|
|
|
);
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:50:06 +00:00
|
|
|
/**
|
|
|
|
* Return categories widget
|
|
|
|
*
|
2022-02-19 04:58:23 +00:00
|
|
|
* @param int $uid Id of the user owning the categories
|
|
|
|
* @param string $baseurl Base page URL
|
|
|
|
* @param string $selected Selected category
|
2022-06-30 12:16:30 +00:00
|
|
|
* @return string
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 14:50:06 +00:00
|
|
|
*/
|
2022-06-30 12:16:30 +00:00
|
|
|
public static function categories(int $uid, string $baseurl, string $selected = ''): string
|
2018-01-15 14:22:01 +00:00
|
|
|
{
|
2019-07-16 01:46:55 +00:00
|
|
|
if (!Feature::isEnabled($uid, 'categories')) {
|
2018-01-15 14:22:01 +00:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2022-08-10 13:02:36 +00:00
|
|
|
$terms = [];
|
2022-02-19 04:58:23 +00:00
|
|
|
foreach (Post\Category::getArray($uid, Post\Category::CATEGORY) as $savedFolderName) {
|
2019-05-27 21:17:53 +00:00
|
|
|
$terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName];
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2019-05-18 15:33:35 +00:00
|
|
|
return self::filter(
|
|
|
|
'category',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('Categories'),
|
2019-05-18 15:33:35 +00:00
|
|
|
'',
|
2020-01-18 19:52:34 +00:00
|
|
|
DI::l10n()->t('Everything'),
|
2019-05-18 15:33:35 +00:00
|
|
|
$baseurl,
|
|
|
|
$terms,
|
|
|
|
$selected
|
|
|
|
);
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:50:06 +00:00
|
|
|
/**
|
2020-08-05 03:06:11 +00:00
|
|
|
* Show a random selection of five common contacts between the visitor and the viewed profile user.
|
2018-01-15 14:50:06 +00:00
|
|
|
*
|
2020-08-05 03:06:11 +00:00
|
|
|
* @param int $uid Viewed profile user ID
|
|
|
|
* @param string $nickname Viewed profile user nickname
|
2022-06-30 12:16:30 +00:00
|
|
|
* @return string
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2020-08-05 03:06:11 +00:00
|
|
|
* @throws \ImagickException
|
2018-01-15 14:50:06 +00:00
|
|
|
*/
|
2022-06-30 12:16:30 +00:00
|
|
|
public static function commonFriendsVisitor(int $uid, string $nickname): string
|
2018-01-15 14:22:01 +00:00
|
|
|
{
|
2022-10-19 04:26:41 +00:00
|
|
|
if (Session::getLocalUser() == $uid) {
|
2020-08-05 03:06:11 +00:00
|
|
|
return '';
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2022-10-19 04:26:41 +00:00
|
|
|
$visitorPCid = Session::getLocalUser() ? Contact::getPublicIdByUserId(Session::getLocalUser()) : Session::getRemoteUser();
|
2020-08-05 03:06:11 +00:00
|
|
|
if (!$visitorPCid) {
|
|
|
|
return '';
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 03:06:11 +00:00
|
|
|
$localPCid = Contact::getPublicIdByUserId($uid);
|
2018-01-15 14:22:01 +00:00
|
|
|
|
2020-08-05 03:06:11 +00:00
|
|
|
$condition = [
|
|
|
|
'NOT `self` AND NOT `blocked` AND NOT `hidden` AND `id` != ?',
|
|
|
|
$localPCid,
|
|
|
|
];
|
2018-01-15 14:22:01 +00:00
|
|
|
|
2020-08-05 03:06:11 +00:00
|
|
|
$total = Contact\Relation::countCommon($localPCid, $visitorPCid, $condition);
|
|
|
|
if (!$total) {
|
|
|
|
return '';
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 03:06:11 +00:00
|
|
|
$commonContacts = Contact\Relation::listCommon($localPCid, $visitorPCid, $condition, 0, 5, true);
|
|
|
|
if (!DBA::isResult($commonContacts)) {
|
|
|
|
return '';
|
2019-01-19 14:12:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$entries = [];
|
2020-08-05 03:06:11 +00:00
|
|
|
foreach ($commonContacts as $contact) {
|
|
|
|
$entries[] = [
|
2021-02-17 18:59:19 +00:00
|
|
|
'url' => Contact::magicLinkByContact($contact),
|
2020-08-05 03:06:11 +00:00
|
|
|
'name' => $contact['name'],
|
|
|
|
'photo' => Contact::getThumb($contact),
|
2019-01-19 14:12:46 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-05-18 15:33:35 +00:00
|
|
|
$tpl = Renderer::getMarkupTemplate('widget/remote_friends_common.tpl');
|
2019-01-19 14:12:46 +00:00
|
|
|
return Renderer::replaceMacros($tpl, [
|
2020-08-05 03:06:11 +00:00
|
|
|
'$desc' => DI::l10n()->tt("%d contact in common", "%d contacts in common", $total),
|
2019-12-30 22:00:08 +00:00
|
|
|
'$base' => DI::baseUrl(),
|
2020-08-05 03:06:11 +00:00
|
|
|
'$nickname' => $nickname,
|
|
|
|
'$linkmore' => $total > 5 ? 'true' : '',
|
2020-01-18 19:52:34 +00:00
|
|
|
'$more' => DI::l10n()->t('show more'),
|
2020-08-05 03:06:11 +00:00
|
|
|
'$contacts' => $entries
|
2019-01-19 14:12:46 +00:00
|
|
|
]);
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|
2018-02-04 04:49:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert a tag cloud widget for the present profile.
|
|
|
|
*
|
2021-07-24 10:09:39 +00:00
|
|
|
* @param int $uid User ID
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param int $limit Max number of displayed tags.
|
2018-02-04 04:49:48 +00:00
|
|
|
* @return string HTML formatted output.
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-02-04 04:49:48 +00:00
|
|
|
*/
|
2022-06-30 12:16:30 +00:00
|
|
|
public static function tagCloud(int $uid, int $limit = 50): string
|
2018-02-04 04:49:48 +00:00
|
|
|
{
|
2021-07-24 10:09:39 +00:00
|
|
|
if (empty($uid)) {
|
2018-02-04 04:49:48 +00:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-07-16 01:46:55 +00:00
|
|
|
if (Feature::isEnabled($uid, 'tagadelic')) {
|
2021-07-24 10:09:39 +00:00
|
|
|
$owner_id = Contact::getPublicIdByUserId($uid);
|
2018-02-04 04:49:48 +00:00
|
|
|
|
|
|
|
if (!$owner_id) {
|
|
|
|
return '';
|
|
|
|
}
|
2019-07-16 01:46:55 +00:00
|
|
|
return Widget\TagCloud::getHTML($uid, $limit, $owner_id, 'wall');
|
2018-02-04 04:49:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
2019-05-25 23:08:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $url Base page URL
|
|
|
|
* @param int $uid User ID consulting/publishing posts
|
|
|
|
* @param bool $wall True: Posted by User; False: Posted to User (network timeline)
|
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2022-06-30 12:16:30 +00:00
|
|
|
public static function postedByYear(string $url, int $uid, bool $wall): string
|
2019-05-25 23:08:15 +00:00
|
|
|
{
|
|
|
|
$o = '';
|
|
|
|
|
2020-01-18 15:50:57 +00:00
|
|
|
$visible_years = DI::pConfig()->get($uid, 'system', 'archive_visible_years', 5);
|
2019-05-25 23:08:15 +00:00
|
|
|
|
|
|
|
/* arrange the list in years */
|
|
|
|
$dnow = DateTimeFormat::localNow('Y-m-d');
|
|
|
|
|
|
|
|
$ret = [];
|
|
|
|
|
2021-02-17 18:59:19 +00:00
|
|
|
$cachekey = 'Widget::postedByYear' . $uid . '-' . (int)$wall;
|
|
|
|
$dthen = DI::cache()->get($cachekey);
|
2021-03-07 10:46:46 +00:00
|
|
|
if (empty($dthen)) {
|
2021-02-17 18:59:19 +00:00
|
|
|
$dthen = Item::firstPostDate($uid, $wall);
|
|
|
|
DI::cache()->set($cachekey, $dthen, Duration::HOUR);
|
|
|
|
}
|
|
|
|
|
2019-05-25 23:08:15 +00:00
|
|
|
if ($dthen) {
|
|
|
|
// Set the start and end date to the beginning of the month
|
|
|
|
$dnow = substr($dnow, 0, 8) . '01';
|
|
|
|
$dthen = substr($dthen, 0, 8) . '01';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Starting with the current month, get the first and last days of every
|
|
|
|
* month down to and including the month of the first post
|
|
|
|
*/
|
|
|
|
while (substr($dnow, 0, 7) >= substr($dthen, 0, 7)) {
|
|
|
|
$dyear = intval(substr($dnow, 0, 4));
|
|
|
|
$dstart = substr($dnow, 0, 8) . '01';
|
|
|
|
$dend = substr($dnow, 0, 8) . Temporal::getDaysInMonth(intval($dnow), intval(substr($dnow, 5)));
|
|
|
|
$start_month = DateTimeFormat::utc($dstart, 'Y-m-d');
|
|
|
|
$end_month = DateTimeFormat::utc($dend, 'Y-m-d');
|
2020-01-18 19:54:46 +00:00
|
|
|
$str = DI::l10n()->getDay(DateTimeFormat::utc($dnow, 'F'));
|
2019-05-25 23:08:15 +00:00
|
|
|
|
|
|
|
if (empty($ret[$dyear])) {
|
|
|
|
$ret[$dyear] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$ret[$dyear][] = [$str, $end_month, $start_month];
|
|
|
|
$dnow = DateTimeFormat::utc($dnow . ' -1 month', 'Y-m-d');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DBA::isResult($ret)) {
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$cutoff_year = intval(DateTimeFormat::localNow('Y')) - $visible_years;
|
|
|
|
$cutoff = array_key_exists($cutoff_year, $ret);
|
|
|
|
|
|
|
|
$o = Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/posted_date.tpl'),[
|
2020-01-18 19:52:34 +00:00
|
|
|
'$title' => DI::l10n()->t('Archives'),
|
2019-05-25 23:08:15 +00:00
|
|
|
'$size' => $visible_years,
|
|
|
|
'$cutoff_year' => $cutoff_year,
|
|
|
|
'$cutoff' => $cutoff,
|
|
|
|
'$url' => $url,
|
|
|
|
'$dates' => $ret,
|
2020-11-30 20:09:52 +00:00
|
|
|
'$showless' => DI::l10n()->t('show less'),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$showmore' => DI::l10n()->t('show more')
|
2019-05-25 23:08:15 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2020-10-05 16:48:28 +00:00
|
|
|
|
2020-10-09 19:08:50 +00:00
|
|
|
/**
|
|
|
|
* Display the account types sidebar
|
|
|
|
* The account type value is added as a parameter to the url
|
2021-10-11 04:33:10 +00:00
|
|
|
*
|
2020-10-09 19:08:50 +00:00
|
|
|
* @param string $base Basepath
|
2022-06-30 12:49:51 +00:00
|
|
|
* @param string $accounttype Account type
|
2020-10-09 19:08:50 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2022-06-30 12:49:51 +00:00
|
|
|
public static function accountTypes(string $base, string $accounttype): string
|
2020-10-09 19:08:50 +00:00
|
|
|
{
|
|
|
|
$accounts = [
|
|
|
|
['ref' => 'person', 'name' => DI::l10n()->t('Persons')],
|
|
|
|
['ref' => 'organisation', 'name' => DI::l10n()->t('Organisations')],
|
|
|
|
['ref' => 'news', 'name' => DI::l10n()->t('News')],
|
|
|
|
['ref' => 'community', 'name' => DI::l10n()->t('Forums')],
|
|
|
|
];
|
|
|
|
|
2020-10-10 07:14:18 +00:00
|
|
|
return self::filter('accounttype', DI::l10n()->t('Account Types'), '',
|
2020-10-09 19:08:50 +00:00
|
|
|
DI::l10n()->t('All'), $base, $accounts, $accounttype);
|
|
|
|
}
|
2018-01-15 14:22:01 +00:00
|
|
|
}
|