mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
337 lines
12 KiB
PHP
337 lines
12 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Content;
|
|
|
|
use Friendica\Core\Hook;
|
|
use Friendica\Core\Protocol;
|
|
use Friendica\Database\DBA;
|
|
use Friendica\DI;
|
|
use Friendica\Util\Strings;
|
|
use GuzzleHttp\Psr7\Uri;
|
|
|
|
/**
|
|
* ContactSelector class
|
|
*/
|
|
class ContactSelector
|
|
{
|
|
static $serverdata = [];
|
|
static $server_url = [];
|
|
|
|
/**
|
|
* @param string $current current
|
|
* @param boolean $disabled optional, default false
|
|
* @return string
|
|
*/
|
|
public static function pollInterval(string $current, bool $disabled = false): string
|
|
{
|
|
$dis = (($disabled) ? ' disabled="disabled" ' : '');
|
|
$o = '';
|
|
$o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
|
|
|
|
$rep = [
|
|
0 => DI::l10n()->t('Frequently'),
|
|
1 => DI::l10n()->t('Hourly'),
|
|
2 => DI::l10n()->t('Twice daily'),
|
|
3 => DI::l10n()->t('Daily'),
|
|
4 => DI::l10n()->t('Weekly'),
|
|
5 => DI::l10n()->t('Monthly')
|
|
];
|
|
|
|
foreach ($rep as $k => $v) {
|
|
$selected = (($k == $current) ? " selected=\"selected\" " : "");
|
|
$o .= "<option value=\"$k\" $selected >$v</option>\r\n";
|
|
}
|
|
$o .= "</select>\r\n";
|
|
return $o;
|
|
}
|
|
|
|
private static function getServerForProfile(string $profile)
|
|
{
|
|
$server_url = self::getServerURLForProfile($profile);
|
|
|
|
if (!empty(self::$serverdata[$server_url])) {
|
|
return self::$serverdata[$server_url];
|
|
}
|
|
|
|
// Now query the GServer for the platform name
|
|
$gserver = DBA::selectFirst('gserver', ['platform', 'network'], ['nurl' => $server_url]);
|
|
|
|
self::$serverdata[$server_url] = $gserver;
|
|
return $gserver;
|
|
}
|
|
|
|
/**
|
|
* @param string $profile Profile URL
|
|
* @return string Server URL
|
|
* @throws \Exception
|
|
*/
|
|
private static function getServerURLForProfile(string $profile): string
|
|
{
|
|
if (!empty(self::$server_url[$profile])) {
|
|
return self::$server_url[$profile];
|
|
}
|
|
|
|
$server_url = '';
|
|
|
|
// Fetch the server url from the contact table
|
|
$contact = DBA::selectFirst('contact', ['baseurl'], ['uid' => 0, 'nurl' => Strings::normaliseLink($profile)]);
|
|
if (DBA::isResult($contact) && !empty($contact['baseurl'])) {
|
|
$server_url = Strings::normaliseLink($contact['baseurl']);
|
|
}
|
|
|
|
if (empty($server_url)) {
|
|
// Create the server url out of the profile url
|
|
$parts = parse_url($profile);
|
|
unset($parts['path']);
|
|
$server_url = Strings::normaliseLink((string)Uri::fromParts((array)$parts));
|
|
}
|
|
|
|
self::$server_url[$profile] = $server_url;
|
|
|
|
return $server_url;
|
|
}
|
|
|
|
/**
|
|
* Determines network name
|
|
*
|
|
* @param string $network network of the contact
|
|
* @param string $profile optional, default empty
|
|
* @param string $protocol (Optional) Protocol that is used for the transmission
|
|
* @param int $gsid Server id
|
|
* @return string
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
*/
|
|
public static function networkToName(string $network, string $profile = '', string $protocol = '', int $gsid = null): string
|
|
{
|
|
$nets = [
|
|
Protocol::DFRN => DI::l10n()->t('DFRN'),
|
|
Protocol::OSTATUS => DI::l10n()->t('OStatus'),
|
|
Protocol::FEED => DI::l10n()->t('RSS/Atom'),
|
|
Protocol::MAIL => DI::l10n()->t('Email'),
|
|
Protocol::DIASPORA => DI::l10n()->t('Diaspora'),
|
|
Protocol::ZOT => DI::l10n()->t('Zot!'),
|
|
Protocol::LINKEDIN => DI::l10n()->t('LinkedIn'),
|
|
Protocol::XMPP => DI::l10n()->t('XMPP/IM'),
|
|
Protocol::MYSPACE => DI::l10n()->t('MySpace'),
|
|
Protocol::GPLUS => DI::l10n()->t('Google+'),
|
|
Protocol::PUMPIO => DI::l10n()->t('pump.io'),
|
|
Protocol::TWITTER => DI::l10n()->t('Twitter'),
|
|
Protocol::DISCOURSE => DI::l10n()->t('Discourse'),
|
|
Protocol::DIASPORA2 => DI::l10n()->t('Diaspora Connector'),
|
|
Protocol::STATUSNET => DI::l10n()->t('GNU Social Connector'),
|
|
Protocol::ACTIVITYPUB => DI::l10n()->t('ActivityPub'),
|
|
Protocol::PNUT => DI::l10n()->t('pnut'),
|
|
Protocol::TUMBLR => DI::l10n()->t('Tumblr'),
|
|
Protocol::BLUESKY => DI::l10n()->t('Bluesky'),
|
|
];
|
|
|
|
Hook::callAll('network_to_name', $nets);
|
|
|
|
$search = array_keys($nets);
|
|
$replace = array_values($nets);
|
|
|
|
$networkname = str_replace($search, $replace, $network);
|
|
|
|
if ((in_array($network, Protocol::FEDERATED)) && ($profile != "")) {
|
|
if (!empty($gsid) && !empty(self::$serverdata[$gsid])) {
|
|
$gserver = self::$serverdata[$gsid];
|
|
} elseif (!empty($gsid)) {
|
|
$gserver = DBA::selectFirst('gserver', ['platform', 'network'], ['id' => $gsid]);
|
|
self::$serverdata[$gsid] = $gserver;
|
|
} else {
|
|
$gserver = self::getServerForProfile($profile);
|
|
}
|
|
|
|
if (!empty($gserver['platform'])) {
|
|
$platform = $gserver['platform'];
|
|
} elseif (!empty($gserver['network']) && ($gserver['network'] != Protocol::ACTIVITYPUB)) {
|
|
$platform = self::networkToName($gserver['network']);
|
|
}
|
|
|
|
if (!empty($platform)) {
|
|
$networkname = $platform;
|
|
}
|
|
}
|
|
|
|
if (!empty($protocol) && ($protocol != $network) && $network != Protocol::DFRN) {
|
|
$networkname = DI::l10n()->t('%s (via %s)', $networkname, self::networkToName($protocol));
|
|
} elseif (in_array($network, ['', $protocol]) && ($network == Protocol::DFRN)) {
|
|
$networkname .= ' (DFRN)';
|
|
} elseif (in_array($network, ['', $protocol]) && ($network == Protocol::DIASPORA) && ($platform != 'diaspora')) {
|
|
$networkname .= ' (Diaspora)';
|
|
}
|
|
|
|
return $networkname;
|
|
}
|
|
|
|
/**
|
|
* Determines network's icon name
|
|
*
|
|
* @param string $network network
|
|
* @param string $profile optional, default empty
|
|
* @param int $gsid Server id
|
|
* @return string Name for network icon
|
|
* @throws \Exception
|
|
*/
|
|
public static function networkToIcon(string $network, string $profile = "", int $gsid = null): string
|
|
{
|
|
$nets = [
|
|
Protocol::DFRN => 'friendica',
|
|
Protocol::OSTATUS => 'gnu-social', // There is no generic OStatus icon
|
|
Protocol::FEED => 'rss',
|
|
Protocol::MAIL => 'inbox',
|
|
Protocol::DIASPORA => 'diaspora',
|
|
Protocol::ZOT => 'hubzilla',
|
|
Protocol::LINKEDIN => 'linkedin',
|
|
Protocol::XMPP => 'xmpp',
|
|
Protocol::MYSPACE => 'file-text-o', /// @todo
|
|
Protocol::GPLUS => 'google-plus',
|
|
Protocol::PUMPIO => 'file-text-o', /// @todo
|
|
Protocol::TWITTER => 'twitter',
|
|
Protocol::DISCOURSE => 'dot-circle-o', /// @todo
|
|
Protocol::DIASPORA2 => 'diaspora',
|
|
Protocol::STATUSNET => 'gnu-social',
|
|
Protocol::ACTIVITYPUB => 'activitypub',
|
|
Protocol::PNUT => 'file-text-o', /// @todo
|
|
Protocol::TUMBLR => 'tumblr',
|
|
Protocol::BLUESKY => 'circle', /// @todo
|
|
];
|
|
|
|
$platform_icons = [
|
|
'diaspora' => 'diaspora',
|
|
'friendica' => 'friendica',
|
|
'friendika' => 'friendica',
|
|
'GNU Social' => 'gnu-social',
|
|
'gnusocial' => 'gnu-social',
|
|
'hubzilla' => 'hubzilla',
|
|
'mastodon' => 'mastodon',
|
|
'hometown' => 'mastodon',
|
|
'peertube' => 'peertube',
|
|
'pixelfed' => 'pixelfed',
|
|
'pleroma' => 'pleroma',
|
|
'akkoma' => 'pleroma',
|
|
'red' => 'hubzilla',
|
|
'redmatrix' => 'hubzilla',
|
|
'socialhome' => 'social-home',
|
|
'wordpress' => 'wordpress',
|
|
'lemmy' => 'users',
|
|
'plume' => 'plume',
|
|
'funkwhale' => 'funkwhale',
|
|
'nextcloud' => 'nextcloud',
|
|
'drupal' => 'drupal',
|
|
'firefish' => 'fire',
|
|
'calckey' => 'calculator',
|
|
'kbin' => 'check',
|
|
'threads' => 'instagram'
|
|
];
|
|
|
|
$search = array_keys($nets);
|
|
$replace = array_values($nets);
|
|
|
|
$network_icon = str_replace($search, $replace, $network);
|
|
|
|
if ((in_array($network, Protocol::FEDERATED)) && ($profile != "")) {
|
|
if (!empty($gsid) && !empty(self::$serverdata[$gsid])) {
|
|
$gserver = self::$serverdata[$gsid];
|
|
} elseif (!empty($gsid)) {
|
|
$gserver = DBA::selectFirst('gserver', ['platform', 'network'], ['id' => $gsid]);
|
|
self::$serverdata[$gsid] = $gserver;
|
|
} else {
|
|
$gserver = self::getServerForProfile($profile);
|
|
}
|
|
if (!empty($gserver['platform'])) {
|
|
$network_icon = $platform_icons[strtolower($gserver['platform'])] ?? $network_icon;
|
|
}
|
|
}
|
|
|
|
return $network_icon;
|
|
}
|
|
|
|
public static function networkToSVG(string $network, string $profile = "", int $gsid = null, string $platform = '', int $uid = 0): string
|
|
{
|
|
$nets = [
|
|
Protocol::ACTIVITYPUB => 'activitypub', // https://commons.wikimedia.org/wiki/File:ActivityPub-logo-symbol.svg
|
|
Protocol::BLUESKY => 'bluesky', // https://commons.wikimedia.org/wiki/File:Bluesky_Logo.svg
|
|
Protocol::DFRN => 'friendica',
|
|
Protocol::DIASPORA => 'diaspora', // https://www.svgrepo.com/svg/362315/diaspora
|
|
Protocol::DIASPORA2 => 'diaspora', // https://www.svgrepo.com/svg/362315/diaspora
|
|
Protocol::DISCOURSE => 'discourse', // https://commons.wikimedia.org/wiki/File:Discourse_icon.svg
|
|
Protocol::FEED => 'rss', // https://commons.wikimedia.org/wiki/File:Generic_Feed-icon.svg
|
|
Protocol::MAIL => 'email', // https://www.svgrepo.com/svg/501173/email
|
|
Protocol::OSTATUS => '',
|
|
Protocol::PNUT => '',
|
|
Protocol::PUMPIO => 'pump-io', // https://commons.wikimedia.org/wiki/File:Pump.io_Logo.svg
|
|
Protocol::STATUSNET => '',
|
|
Protocol::TUMBLR => 'tumblr', // https://commons.wikimedia.org/wiki/File:Tumblr.svg
|
|
Protocol::TWITTER => '',
|
|
Protocol::ZOT => 'hubzilla', // https://www.svgrepo.com/svg/362219/hubzilla
|
|
];
|
|
|
|
$svg = [
|
|
'akkoma', // https://commons.wikimedia.org/wiki/File:Akkoma_logo.svg
|
|
'calckey', // https://commons.wikimedia.org/wiki/File:Calckey_Logomark.svg
|
|
'diaspora', // https://www.svgrepo.com/svg/362315/diaspora
|
|
'firefish', // https://commons.wikimedia.org/wiki/File:Firefish_animated.svg
|
|
'flipboard', // https://commons.wikimedia.org/wiki/File:Flipboard_logo.svg
|
|
'friendica',
|
|
'glitchsoc', // https://iconography.fediverse.info/black/glitch-soc.svg
|
|
'gnusocial', // https://commons.wikimedia.org/wiki/File:GNU_Social_Image_Logo.svg
|
|
'gotosocial', // https://iconography.fediverse.info/black/gotosocial.svg
|
|
'hometown', // https://iconography.fediverse.info/black/hometown.svg
|
|
'hubzilla', // https://www.svgrepo.com/svg/362219/hubzilla
|
|
'iceshrimp', // https://iconography.fediverse.info/black/iceshrimp.svg
|
|
'lemmy', // https://commons.wikimedia.org/wiki/File:Lemmy_logo.svg
|
|
'mastodon', // https://commons.wikimedia.org/wiki/File:Mastodon_logotype_(simple)_new_hue.svg
|
|
'mbin', // https://iconography.fediverse.info/black/mbin.svg
|
|
'misskey', // https://commons.wikimedia.org/wiki/File:Misskey_Mi_icon.svg
|
|
'mobilizon', // https://www.svgrepo.com/svg/517896/mobilizon
|
|
'peertube', // https://commons.wikimedia.org/wiki/File:Logo_de_PeerTube.svg
|
|
'pixelfed', // https://commons.wikimedia.org/wiki/File:Pixelfed_logo_multicolor_(September_2018).svg
|
|
'pleroma', // https://commons.wikimedia.org/wiki/File:Smaller_Pleroma_logo.svg
|
|
'plume', // https://commons.wikimedia.org/wiki/File:Plume.svg
|
|
'sharkey', // https://iconography.fediverse.info/black/sharky.svg
|
|
'threads', // https://commons.wikimedia.org/wiki/File:Threads_(app)_logo.svg
|
|
'wordpress', // https://commons.wikimedia.org/wiki/File:WordPress_blue_logo.svg
|
|
];
|
|
|
|
$search = array_keys($nets);
|
|
$replace = array_values($nets);
|
|
|
|
$network_svg = str_replace($search, $replace, $network);
|
|
|
|
if (in_array($network, Protocol::FEDERATED)) {
|
|
if (!empty($gsid) && !empty(self::$serverdata[$gsid])) {
|
|
$gserver = self::$serverdata[$gsid];
|
|
} elseif (!empty($gsid)) {
|
|
$gserver = DBA::selectFirst('gserver', ['platform', 'network'], ['id' => $gsid]);
|
|
self::$serverdata[$gsid] = $gserver;
|
|
} elseif (!empty($platform)) {
|
|
$gserver = ['platform' => $platform];
|
|
} elseif ($profile != "") {
|
|
$gserver = self::getServerForProfile($profile);
|
|
}
|
|
if (!empty($gserver['platform'])) {
|
|
$network_svg = in_array($gserver['platform'], $svg) ? $gserver['platform'] : $network_svg;
|
|
}
|
|
}
|
|
|
|
if (empty($network_svg)) {
|
|
return '';
|
|
}
|
|
|
|
$color = ['activitypub', 'akkoma', 'bluesky', 'discourse', 'firefish', 'flipboard',
|
|
'friendica', 'gnusocial', 'mastodon', 'peertube', 'pixelfed', 'pleroma',
|
|
'rss', 'tumblr', 'wordpress'];
|
|
|
|
if (($uid && DI::pConfig()->get($uid, 'accessibility', 'black_platform_icons')) || !in_array($network_svg, $color)) {
|
|
return 'images/platforms/black/' . $network_svg . '.svg';
|
|
} else {
|
|
return 'images/platforms/color/' . $network_svg . '.svg';
|
|
}
|
|
}
|
|
}
|