2018-01-15 15:22:01 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2023-01-01 15:36:24 +01:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 15:45:36 +01: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 15:22:01 +01:00
|
|
|
*/
|
2020-02-09 15:45:36 +01:00
|
|
|
|
2018-01-15 15:22:01 +01:00
|
|
|
namespace Friendica\Content;
|
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
use Friendica\Core\Addon;
|
2021-10-23 10:49:27 +02:00
|
|
|
use Friendica\Core\Cache\Enum\Duration;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2022-04-26 20:33:58 +02:00
|
|
|
use Friendica\Core\Search;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 20:02:09 +01:00
|
|
|
use Friendica\DI;
|
2018-02-04 05:49:48 +01:00
|
|
|
use Friendica\Model\Contact;
|
2023-05-14 01:54:35 +02:00
|
|
|
use Friendica\Model\Circle;
|
2019-05-26 01:08:15 +02:00
|
|
|
use Friendica\Model\Item;
|
2021-01-21 08:16:41 +01:00
|
|
|
use Friendica\Model\Post;
|
2022-04-26 20:33:58 +02:00
|
|
|
use Friendica\Model\Profile;
|
2019-05-26 01:08:15 +02:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
|
|
|
use Friendica\Util\Temporal;
|
2018-01-15 16:39:27 +01:00
|
|
|
|
2018-01-15 15:22:01 +01:00
|
|
|
class Widget
|
|
|
|
{
|
2018-01-15 15:50:06 +01:00
|
|
|
/**
|
|
|
|
* Return the follow widget
|
|
|
|
*
|
|
|
|
* @param string $value optional, default empty
|
2019-01-06 22:06:53 +01:00
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 15:50:06 +01:00
|
|
|
*/
|
2022-06-18 05:01:51 +02:00
|
|
|
public static function follow(string $value = ''): string
|
2018-01-15 15:22:01 +01:00
|
|
|
{
|
2019-05-18 17:33:35 +02:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/follow.tpl'), array(
|
2020-01-18 20:52:34 +01: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 15:22:01 +01:00
|
|
|
'$value' => $value,
|
2020-01-18 20:52:34 +01:00
|
|
|
'$follow' => DI::l10n()->t('Connect')
|
2018-01-15 15:22:01 +01:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2018-01-15 15:50:06 +01:00
|
|
|
/**
|
|
|
|
* Return Find People widget
|
2022-06-16 18:36:56 +02:00
|
|
|
*
|
2023-03-22 05:08:17 +01:00
|
|
|
* @return string HTML code representing "People Widget"
|
2018-01-15 15:50:06 +01:00
|
|
|
*/
|
2022-06-16 18:36:56 +02:00
|
|
|
public static function findPeople(): string
|
2018-01-15 15:22:01 +01:00
|
|
|
{
|
2022-04-26 20:33:58 +02:00
|
|
|
$global_dir = Search::getGlobalDirectory();
|
2018-01-15 15:22:01 +01:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (DI::config()->get('system', 'invitation_only')) {
|
2022-10-20 21:22:47 +02:00
|
|
|
$x = intval(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'invites_remaining'));
|
2021-11-04 21:29:59 +01:00
|
|
|
if ($x || DI::app()->isSiteAdmin()) {
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['aside'] .= '<div class="side-link widget" id="side-invite-remain">'
|
2020-01-18 20:53:01 +01:00
|
|
|
. DI::l10n()->tt('%d invitation available', '%d invitations available', $x)
|
2018-02-12 16:08:28 +01:00
|
|
|
. '</div>';
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 22:54:14 +02:00
|
|
|
$nv = [];
|
2020-01-18 20:52:34 +01: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 20:33:58 +02:00
|
|
|
$nv['global_dir'] = Profile::zrl($global_dir, true);
|
2020-01-18 20:52:34 +01:00
|
|
|
$nv['local_directory'] = DI::l10n()->t('Local Directory');
|
2018-04-19 22:54:14 +02:00
|
|
|
|
|
|
|
$aside = [];
|
|
|
|
$aside['$nv'] = $nv;
|
|
|
|
|
2019-05-18 17:33:35 +02:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/peoplefind.tpl'), $aside);
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 15:50:06 +01:00
|
|
|
/**
|
2021-10-09 23:16:15 +02:00
|
|
|
* Return unavailable networks as array
|
2021-10-11 06:33:10 +02:00
|
|
|
*
|
|
|
|
* @return array Unsupported networks
|
2018-01-15 15:50:06 +01:00
|
|
|
*/
|
2022-06-16 18:36:56 +02:00
|
|
|
public static function unavailableNetworks(): array
|
2018-01-15 15:22:01 +01:00
|
|
|
{
|
2018-08-10 06:59:26 +02:00
|
|
|
// Always hide content from these networks
|
2023-08-09 22:29:45 +02:00
|
|
|
$networks = [Protocol::PHANTOM, Protocol::FACEBOOK, Protocol::APPNET, Protocol::TWITTER, Protocol::ZOT];
|
2018-01-15 15:22:01 +01:00
|
|
|
|
2019-11-24 21:06:47 +01:00
|
|
|
if (!Addon::isEnabled("discourse")) {
|
|
|
|
$networks[] = Protocol::DISCOURSE;
|
|
|
|
}
|
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
if (!Addon::isEnabled("statusnet")) {
|
2018-08-11 22:40:44 +02:00
|
|
|
$networks[] = Protocol::STATUSNET;
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
if (!Addon::isEnabled("pumpio")) {
|
2018-08-11 22:40:44 +02:00
|
|
|
$networks[] = Protocol::PUMPIO;
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2023-04-18 21:30:28 +02:00
|
|
|
if (!Addon::isEnabled("tumblr")) {
|
|
|
|
$networks[] = Protocol::TUMBLR;
|
|
|
|
}
|
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (DI::config()->get("system", "ostatus_disabled")) {
|
2018-08-11 22:40:44 +02:00
|
|
|
$networks[] = Protocol::OSTATUS;
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (!DI::config()->get("system", "diaspora_enabled")) {
|
2018-08-11 22:40:44 +02:00
|
|
|
$networks[] = Protocol::DIASPORA;
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
if (!Addon::isEnabled("pnut")) {
|
2018-08-11 22:40:44 +02:00
|
|
|
$networks[] = Protocol::PNUT;
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
2021-10-09 23:16:15 +02:00
|
|
|
return $networks;
|
|
|
|
}
|
|
|
|
|
2019-05-18 17:33:35 +02:00
|
|
|
/**
|
2019-05-18 17:44:04 +02: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 17:33:35 +02:00
|
|
|
* @param string $title
|
|
|
|
* @param string $desc
|
2019-05-18 17:44:04 +02:00
|
|
|
* @param string $all The no filter label
|
|
|
|
* @param string $baseUrl The full page request URI
|
2019-05-18 17:33:35 +02:00
|
|
|
* @param array $options
|
2019-05-18 17:44:04 +02:00
|
|
|
* @param string $selected The currently selected filter option value
|
2019-05-18 17:33:35 +02:00
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2022-06-16 18:36:56 +02:00
|
|
|
private static function filter(string $type, string $title, string $desc, string $all, string $baseUrl, array $options, string $selected = null): string
|
2019-05-18 17:33:35 +02: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, '?') . '?';
|
|
|
|
}
|
|
|
|
|
2023-05-20 16:10:14 +02:00
|
|
|
array_walk($options, function (&$value) {
|
|
|
|
$value['ref'] = rawurlencode($value['ref']);
|
|
|
|
});
|
|
|
|
|
2019-05-18 17:33:35 +02:00
|
|
|
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 23:49:55 +01:00
|
|
|
/**
|
2023-05-14 01:54:35 +02:00
|
|
|
* Return circle membership widget
|
2020-01-23 23:49:55 +01:00
|
|
|
*
|
|
|
|
* @param string $baseurl
|
|
|
|
* @param string $selected
|
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2023-05-14 01:54:35 +02:00
|
|
|
public static function circles(string $baseurl, string $selected = ''): string
|
2020-01-23 23:49:55 +01:00
|
|
|
{
|
2022-10-20 21:22:47 +02:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2020-01-23 23:49:55 +01:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2023-05-14 01:54:35 +02:00
|
|
|
$options = array_map(function ($circle) {
|
2020-01-23 23:49:55 +01:00
|
|
|
return [
|
2023-05-14 01:54:35 +02:00
|
|
|
'ref' => $circle['id'],
|
|
|
|
'name' => $circle['name']
|
2020-01-23 23:49:55 +01:00
|
|
|
];
|
2023-05-14 01:54:35 +02:00
|
|
|
}, Circle::getByUserId(DI::userSession()->getLocalUserId()));
|
2020-01-23 23:49:55 +01:00
|
|
|
|
|
|
|
return self::filter(
|
2023-05-14 01:54:35 +02:00
|
|
|
'circle',
|
|
|
|
DI::l10n()->t('Circles'),
|
2020-01-23 23:49:55 +01:00
|
|
|
'',
|
|
|
|
DI::l10n()->t('Everyone'),
|
|
|
|
$baseurl,
|
|
|
|
$options,
|
|
|
|
$selected
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-05-18 17:44:04 +02:00
|
|
|
/**
|
2020-01-23 20:52:22 +01:00
|
|
|
* Return contact relationship widget
|
2019-05-18 17:44:04 +02:00
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2022-06-30 14:16:30 +02:00
|
|
|
public static function contactRels(string $baseurl, string $selected = ''): string
|
2019-05-18 17:44:04 +02:00
|
|
|
{
|
2022-10-20 21:22:47 +02:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2019-05-18 17:44:04 +02:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$options = [
|
2020-01-18 20:52:34 +01:00
|
|
|
['ref' => 'followers', 'name' => DI::l10n()->t('Followers')],
|
|
|
|
['ref' => 'following', 'name' => DI::l10n()->t('Following')],
|
|
|
|
['ref' => 'mutuals', 'name' => DI::l10n()->t('Mutual friends')],
|
2023-05-30 11:00:29 +02:00
|
|
|
['ref' => 'nothing', 'name' => DI::l10n()->t('No relationship')],
|
2019-05-18 17:44:04 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
return self::filter(
|
|
|
|
'rel',
|
2020-01-18 20:52:34 +01:00
|
|
|
DI::l10n()->t('Relationships'),
|
2019-05-18 17:44:04 +02:00
|
|
|
'',
|
2020-01-18 20:52:34 +01:00
|
|
|
DI::l10n()->t('All Contacts'),
|
2019-05-18 17:44:04 +02:00
|
|
|
$baseurl,
|
|
|
|
$options,
|
|
|
|
$selected
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-01-15 15:50:06 +01:00
|
|
|
/**
|
|
|
|
* Return networks widget
|
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
2019-01-06 22:06:53 +01:00
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 15:50:06 +01:00
|
|
|
*/
|
2022-06-30 14:16:30 +02:00
|
|
|
public static function networks(string $baseurl, string $selected = ''): string
|
2018-01-15 15:22:01 +01:00
|
|
|
{
|
2022-10-20 21:22:47 +02:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2018-01-15 15:22:01 +01:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2021-10-11 06:33:10 +02:00
|
|
|
$networks = self::unavailableNetworks();
|
2021-10-11 08:25:04 +02:00
|
|
|
$query = "`uid` = ? AND NOT `deleted` AND `network` != '' AND NOT `network` IN (" . substr(str_repeat("?, ", count($networks)), 0, -2) . ")";
|
2022-10-20 21:22:47 +02:00
|
|
|
$condition = array_merge([$query], array_merge([DI::userSession()->getLocalUserId()], $networks));
|
2018-01-15 15:22:01 +01:00
|
|
|
|
2021-10-11 08:25:04 +02:00
|
|
|
$r = DBA::select('contact', ['network'], $condition, ['group_by' => ['network'], 'order' => ['network']]);
|
2018-01-15 15:22:01 +01:00
|
|
|
|
2022-08-10 15:02:36 +02:00
|
|
|
$nets = [];
|
2018-07-20 14:19:26 +02:00
|
|
|
while ($rr = DBA::fetch($r)) {
|
2019-05-18 17:33:35 +02:00
|
|
|
$nets[] = ['ref' => $rr['network'], 'name' => ContactSelector::networkToName($rr['network'])];
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::close($r);
|
2018-01-15 15:22:01 +01:00
|
|
|
|
|
|
|
if (count($nets) < 2) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-05-18 17:33:35 +02:00
|
|
|
return self::filter(
|
|
|
|
'nets',
|
2020-01-18 20:52:34 +01:00
|
|
|
DI::l10n()->t('Protocols'),
|
2019-05-18 17:33:35 +02:00
|
|
|
'',
|
2020-01-18 20:52:34 +01:00
|
|
|
DI::l10n()->t('All Protocols'),
|
2019-05-18 17:33:35 +02:00
|
|
|
$baseurl,
|
|
|
|
$nets,
|
|
|
|
$selected
|
|
|
|
);
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 15:50:06 +01:00
|
|
|
/**
|
|
|
|
* Return file as widget
|
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
2022-06-30 14:16:30 +02:00
|
|
|
* @return string
|
2019-05-27 23:17:53 +02:00
|
|
|
* @throws \Exception
|
2018-01-15 15:50:06 +01:00
|
|
|
*/
|
2022-06-30 14:16:30 +02:00
|
|
|
public static function fileAs(string $baseurl, string $selected = ''): string
|
2018-01-15 15:22:01 +01:00
|
|
|
{
|
2022-10-20 21:22:47 +02:00
|
|
|
if (!DI::userSession()->getLocalUserId()) {
|
2018-01-15 15:22:01 +01:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-05-27 23:17:53 +02:00
|
|
|
$terms = [];
|
2022-10-20 21:22:47 +02:00
|
|
|
foreach (Post\Category::getArray(DI::userSession()->getLocalUserId(), Post\Category::FILE) as $savedFolderName) {
|
2019-05-27 23:17:53 +02:00
|
|
|
$terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName];
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2019-05-18 17:33:35 +02:00
|
|
|
return self::filter(
|
|
|
|
'file',
|
2020-01-18 20:52:34 +01:00
|
|
|
DI::l10n()->t('Saved Folders'),
|
2019-05-18 17:33:35 +02:00
|
|
|
'',
|
2020-01-18 20:52:34 +01:00
|
|
|
DI::l10n()->t('Everything'),
|
2019-05-18 17:33:35 +02:00
|
|
|
$baseurl,
|
|
|
|
$terms,
|
|
|
|
$selected
|
|
|
|
);
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 15:50:06 +01:00
|
|
|
/**
|
|
|
|
* Return categories widget
|
|
|
|
*
|
2022-02-19 05:58:23 +01: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 14:16:30 +02:00
|
|
|
* @return string
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 15:50:06 +01:00
|
|
|
*/
|
2022-06-30 14:16:30 +02:00
|
|
|
public static function categories(int $uid, string $baseurl, string $selected = ''): string
|
2018-01-15 15:22:01 +01:00
|
|
|
{
|
2019-07-16 03:46:55 +02:00
|
|
|
if (!Feature::isEnabled($uid, 'categories')) {
|
2018-01-15 15:22:01 +01:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2022-08-10 15:02:36 +02:00
|
|
|
$terms = [];
|
2022-02-19 05:58:23 +01:00
|
|
|
foreach (Post\Category::getArray($uid, Post\Category::CATEGORY) as $savedFolderName) {
|
2019-05-27 23:17:53 +02:00
|
|
|
$terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName];
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2019-05-18 17:33:35 +02:00
|
|
|
return self::filter(
|
|
|
|
'category',
|
2020-01-18 20:52:34 +01:00
|
|
|
DI::l10n()->t('Categories'),
|
2019-05-18 17:33:35 +02:00
|
|
|
'',
|
2020-01-18 20:52:34 +01:00
|
|
|
DI::l10n()->t('Everything'),
|
2019-05-18 17:33:35 +02:00
|
|
|
$baseurl,
|
|
|
|
$terms,
|
|
|
|
$selected
|
|
|
|
);
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 15:50:06 +01:00
|
|
|
/**
|
2020-08-05 05:06:11 +02:00
|
|
|
* Show a random selection of five common contacts between the visitor and the viewed profile user.
|
2018-01-15 15:50:06 +01:00
|
|
|
*
|
2020-08-05 05:06:11 +02:00
|
|
|
* @param int $uid Viewed profile user ID
|
|
|
|
* @param string $nickname Viewed profile user nickname
|
2022-06-30 14:16:30 +02:00
|
|
|
* @return string
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2020-08-05 05:06:11 +02:00
|
|
|
* @throws \ImagickException
|
2018-01-15 15:50:06 +01:00
|
|
|
*/
|
2022-06-30 14:16:30 +02:00
|
|
|
public static function commonFriendsVisitor(int $uid, string $nickname): string
|
2018-01-15 15:22:01 +01:00
|
|
|
{
|
2022-10-20 21:22:47 +02:00
|
|
|
if (DI::userSession()->getLocalUserId() == $uid) {
|
2020-08-05 05:06:11 +02:00
|
|
|
return '';
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2022-10-21 19:34:02 +02:00
|
|
|
$visitorPCid = DI::userSession()->getPublicContactId() ?: DI::userSession()->getRemoteUserId();
|
2020-08-05 05:06:11 +02:00
|
|
|
if (!$visitorPCid) {
|
|
|
|
return '';
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2020-08-05 05:06:11 +02:00
|
|
|
$localPCid = Contact::getPublicIdByUserId($uid);
|
2018-01-15 15:22:01 +01:00
|
|
|
|
2020-08-05 05:06:11 +02:00
|
|
|
$condition = [
|
|
|
|
'NOT `self` AND NOT `blocked` AND NOT `hidden` AND `id` != ?',
|
|
|
|
$localPCid,
|
|
|
|
];
|
2018-01-15 15:22:01 +01:00
|
|
|
|
2020-08-05 05:06:11 +02:00
|
|
|
$total = Contact\Relation::countCommon($localPCid, $visitorPCid, $condition);
|
|
|
|
if (!$total) {
|
|
|
|
return '';
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
|
|
|
|
2020-08-05 05:06:11 +02:00
|
|
|
$commonContacts = Contact\Relation::listCommon($localPCid, $visitorPCid, $condition, 0, 5, true);
|
|
|
|
if (!DBA::isResult($commonContacts)) {
|
|
|
|
return '';
|
2019-01-19 15:12:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$entries = [];
|
2020-08-05 05:06:11 +02:00
|
|
|
foreach ($commonContacts as $contact) {
|
|
|
|
$entries[] = [
|
2021-02-17 19:59:19 +01:00
|
|
|
'url' => Contact::magicLinkByContact($contact),
|
2020-08-05 05:06:11 +02:00
|
|
|
'name' => $contact['name'],
|
|
|
|
'photo' => Contact::getThumb($contact),
|
2019-01-19 15:12:46 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-05-18 17:33:35 +02:00
|
|
|
$tpl = Renderer::getMarkupTemplate('widget/remote_friends_common.tpl');
|
2019-01-19 15:12:46 +01:00
|
|
|
return Renderer::replaceMacros($tpl, [
|
2020-08-05 05:06:11 +02:00
|
|
|
'$desc' => DI::l10n()->tt("%d contact in common", "%d contacts in common", $total),
|
2019-12-30 23:00:08 +01:00
|
|
|
'$base' => DI::baseUrl(),
|
2020-08-05 05:06:11 +02:00
|
|
|
'$nickname' => $nickname,
|
|
|
|
'$linkmore' => $total > 5 ? 'true' : '',
|
2020-01-18 20:52:34 +01:00
|
|
|
'$more' => DI::l10n()->t('show more'),
|
2020-08-05 05:06:11 +02:00
|
|
|
'$contacts' => $entries
|
2019-01-19 15:12:46 +01:00
|
|
|
]);
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|
2018-02-04 05:49:48 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert a tag cloud widget for the present profile.
|
|
|
|
*
|
2021-07-24 12:09:39 +02:00
|
|
|
* @param int $uid User ID
|
2019-01-06 22:06:53 +01:00
|
|
|
* @param int $limit Max number of displayed tags.
|
2018-02-04 05:49:48 +01:00
|
|
|
* @return string HTML formatted output.
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-02-04 05:49:48 +01:00
|
|
|
*/
|
2022-06-30 14:16:30 +02:00
|
|
|
public static function tagCloud(int $uid, int $limit = 50): string
|
2018-02-04 05:49:48 +01:00
|
|
|
{
|
2021-07-24 12:09:39 +02:00
|
|
|
if (empty($uid)) {
|
2018-02-04 05:49:48 +01:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-07-16 03:46:55 +02:00
|
|
|
if (Feature::isEnabled($uid, 'tagadelic')) {
|
2021-07-24 12:09:39 +02:00
|
|
|
$owner_id = Contact::getPublicIdByUserId($uid);
|
2018-02-04 05:49:48 +01:00
|
|
|
|
|
|
|
if (!$owner_id) {
|
|
|
|
return '';
|
|
|
|
}
|
2019-07-16 03:46:55 +02:00
|
|
|
return Widget\TagCloud::getHTML($uid, $limit, $owner_id, 'wall');
|
2018-02-04 05:49:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
2019-05-26 01:08:15 +02: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 14:16:30 +02:00
|
|
|
public static function postedByYear(string $url, int $uid, bool $wall): string
|
2019-05-26 01:08:15 +02:00
|
|
|
{
|
|
|
|
$o = '';
|
|
|
|
|
2020-01-18 16:50:57 +01:00
|
|
|
$visible_years = DI::pConfig()->get($uid, 'system', 'archive_visible_years', 5);
|
2019-05-26 01:08:15 +02:00
|
|
|
|
|
|
|
/* arrange the list in years */
|
|
|
|
$dnow = DateTimeFormat::localNow('Y-m-d');
|
|
|
|
|
|
|
|
$ret = [];
|
|
|
|
|
2021-02-17 19:59:19 +01:00
|
|
|
$cachekey = 'Widget::postedByYear' . $uid . '-' . (int)$wall;
|
|
|
|
$dthen = DI::cache()->get($cachekey);
|
2021-03-07 11:46:46 +01:00
|
|
|
if (empty($dthen)) {
|
2021-02-17 19:59:19 +01:00
|
|
|
$dthen = Item::firstPostDate($uid, $wall);
|
|
|
|
DI::cache()->set($cachekey, $dthen, Duration::HOUR);
|
|
|
|
}
|
|
|
|
|
2019-05-26 01:08:15 +02:00
|
|
|
if ($dthen) {
|
|
|
|
// Set the start and end date to the beginning of the month
|
2023-06-06 14:41:16 +02:00
|
|
|
$cutoffday = $dthen;
|
|
|
|
$thisday = substr($dnow, 4);
|
2023-06-09 22:07:11 +02:00
|
|
|
$nextday = date('Y-m-d', strtotime($dnow . ' + 1 day'));
|
2023-06-09 07:37:20 +02:00
|
|
|
$nextday = substr($nextday, 4);
|
2019-05-26 01:08:15 +02:00
|
|
|
$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 20:54:46 +01:00
|
|
|
$str = DI::l10n()->getDay(DateTimeFormat::utc($dnow, 'F'));
|
2019-05-26 01:08:15 +02: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);
|
|
|
|
|
2023-06-18 18:49:38 +02:00
|
|
|
$o = Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/posted_date.tpl'), [
|
2020-01-18 20:52:34 +01:00
|
|
|
'$title' => DI::l10n()->t('Archives'),
|
2019-05-26 01:08:15 +02:00
|
|
|
'$size' => $visible_years,
|
|
|
|
'$cutoff_year' => $cutoff_year,
|
|
|
|
'$cutoff' => $cutoff,
|
|
|
|
'$url' => $url,
|
|
|
|
'$dates' => $ret,
|
2020-11-30 21:09:52 +01:00
|
|
|
'$showless' => DI::l10n()->t('show less'),
|
2023-06-06 14:41:16 +02:00
|
|
|
'$showmore' => DI::l10n()->t('show more'),
|
|
|
|
'$onthisdate' => DI::l10n()->t('On this date'),
|
|
|
|
'$thisday' => $thisday,
|
2023-06-09 07:37:20 +02:00
|
|
|
'$nextday' => $nextday,
|
2023-06-06 14:41:16 +02:00
|
|
|
'$cutoffday' => $cutoffday
|
2019-05-26 01:08:15 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2020-10-05 18:48:28 +02:00
|
|
|
|
2020-10-09 21:08:50 +02:00
|
|
|
/**
|
|
|
|
* Display the account types sidebar
|
|
|
|
* The account type value is added as a parameter to the url
|
2021-10-11 06:33:10 +02:00
|
|
|
*
|
2020-10-09 21:08:50 +02:00
|
|
|
* @param string $base Basepath
|
2022-06-30 14:49:51 +02:00
|
|
|
* @param string $accounttype Account type
|
2020-10-09 21:08:50 +02:00
|
|
|
* @return string
|
|
|
|
*/
|
2022-06-30 14:49:51 +02:00
|
|
|
public static function accountTypes(string $base, string $accounttype): string
|
2020-10-09 21:08:50 +02:00
|
|
|
{
|
|
|
|
$accounts = [
|
|
|
|
['ref' => 'person', 'name' => DI::l10n()->t('Persons')],
|
|
|
|
['ref' => 'organisation', 'name' => DI::l10n()->t('Organisations')],
|
|
|
|
['ref' => 'news', 'name' => DI::l10n()->t('News')],
|
2023-05-30 15:15:17 +02:00
|
|
|
['ref' => 'community', 'name' => DI::l10n()->t('Groups')],
|
2020-10-09 21:08:50 +02:00
|
|
|
];
|
|
|
|
|
2023-06-18 18:49:38 +02:00
|
|
|
return self::filter(
|
|
|
|
'accounttype',
|
|
|
|
DI::l10n()->t('Account Types'),
|
|
|
|
'',
|
|
|
|
DI::l10n()->t('All'),
|
|
|
|
$base,
|
|
|
|
$accounts,
|
|
|
|
$accounttype
|
|
|
|
);
|
2020-10-09 21:08:50 +02:00
|
|
|
}
|
2023-09-09 21:30:01 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a list of all channels
|
|
|
|
*
|
|
|
|
* @param string $base
|
|
|
|
* @param string $channelname
|
|
|
|
* @param integer $uid
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function channels(string $base, string $channelname, int $uid): string
|
|
|
|
{
|
|
|
|
$channels = [];
|
|
|
|
|
2023-09-21 22:43:14 +02:00
|
|
|
$enabled = DI::pConfig()->get($uid, 'system', 'enabled_timelines', []);
|
|
|
|
|
2023-10-05 07:36:12 +02:00
|
|
|
foreach (DI::NetworkFactory()->getTimelines('') as $channel) {
|
2023-09-21 22:43:14 +02:00
|
|
|
if (empty($enabled) || in_array($channel->code, $enabled)) {
|
|
|
|
$channels[] = ['ref' => $channel->code, 'name' => $channel->label];
|
|
|
|
}
|
2023-09-19 12:20:15 +02:00
|
|
|
}
|
|
|
|
|
2023-10-05 21:10:20 +02:00
|
|
|
foreach (DI::ChannelFactory()->getTimelines($uid) as $channel) {
|
|
|
|
if (empty($enabled) || in_array($channel->code, $enabled)) {
|
|
|
|
$channels[] = ['ref' => $channel->code, 'name' => $channel->label];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-07 11:44:24 +02:00
|
|
|
foreach (DI::userDefinedChannel()->selectByUid($uid) as $channel) {
|
2023-09-21 22:43:14 +02:00
|
|
|
if (empty($enabled) || in_array($channel->code, $enabled)) {
|
|
|
|
$channels[] = ['ref' => $channel->code, 'name' => $channel->label];
|
|
|
|
}
|
2023-09-09 21:30:01 +02:00
|
|
|
}
|
|
|
|
|
2023-10-05 07:36:12 +02:00
|
|
|
foreach (DI::CommunityFactory()->getTimelines(true) as $community) {
|
2023-09-21 22:43:14 +02:00
|
|
|
if (empty($enabled) || in_array($community->code, $enabled)) {
|
|
|
|
$channels[] = ['ref' => $community->code, 'name' => $community->label];
|
|
|
|
}
|
2023-09-09 21:30:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return self::filter(
|
|
|
|
'channel',
|
|
|
|
DI::l10n()->t('Channels'),
|
|
|
|
'',
|
|
|
|
'',
|
|
|
|
$base,
|
|
|
|
$channels,
|
|
|
|
$channelname
|
|
|
|
);
|
|
|
|
}
|
2018-01-15 15:22:01 +01:00
|
|
|
}
|