2018-01-10 03:56:05 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Content/ContactSelector.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Content;
|
|
|
|
|
2018-12-26 07:06:24 +01:00
|
|
|
use Friendica\Core\Hook;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2020-01-18 23:00:53 +01:00
|
|
|
use Friendica\DI;
|
2018-10-05 21:26:20 +02:00
|
|
|
use Friendica\Util\Network;
|
2018-11-08 17:28:29 +01:00
|
|
|
use Friendica\Util\Strings;
|
2018-01-10 03:56:05 +01:00
|
|
|
|
2018-01-10 04:42:04 +01:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* ContactSelector class
|
2018-01-10 04:42:04 +01:00
|
|
|
*/
|
2018-01-10 03:56:05 +01:00
|
|
|
class ContactSelector
|
|
|
|
{
|
2018-01-10 13:14:45 +01:00
|
|
|
/**
|
|
|
|
* @param string $current current
|
|
|
|
* @param boolean $disabled optional, default false
|
|
|
|
* @return object
|
|
|
|
*/
|
2018-01-10 04:42:04 +01:00
|
|
|
public static function pollInterval($current, $disabled = false)
|
|
|
|
{
|
|
|
|
$dis = (($disabled) ? ' disabled="disabled" ' : '');
|
|
|
|
$o = '';
|
|
|
|
$o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$rep = [
|
2020-01-18 20:52:34 +01:00
|
|
|
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')
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2018-01-10 04:42:04 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-08-28 08:38:35 +02:00
|
|
|
/**
|
|
|
|
* @param string $profile Profile URL
|
|
|
|
* @return string Server URL
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
private static function getServerURLForProfile($profile)
|
|
|
|
{
|
|
|
|
$server_url = '';
|
|
|
|
|
|
|
|
// Fetch the server url from the contact table
|
2019-08-28 11:10:25 +02:00
|
|
|
$contact = DBA::selectFirst('contact', ['baseurl'], ['uid' => 0, 'nurl' => Strings::normaliseLink($profile)]);
|
2019-08-28 08:38:35 +02:00
|
|
|
if (DBA::isResult($contact) && !empty($contact['baseurl'])) {
|
|
|
|
$server_url = Strings::normaliseLink($contact['baseurl']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($server_url)) {
|
|
|
|
// Fetch the server url from the gcontact table
|
|
|
|
$gcontact = DBA::selectFirst('gcontact', ['server_url'], ['nurl' => Strings::normaliseLink($profile)]);
|
|
|
|
if (!empty($gcontact) && !empty($gcontact['server_url'])) {
|
|
|
|
$server_url = Strings::normaliseLink($gcontact['server_url']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($server_url)) {
|
|
|
|
// Create the server url out of the profile url
|
|
|
|
$parts = parse_url($profile);
|
|
|
|
unset($parts['path']);
|
|
|
|
$server_url = Strings::normaliseLink(Network::unparseURL($parts));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $server_url;
|
|
|
|
}
|
|
|
|
|
2018-01-10 13:14:45 +01:00
|
|
|
/**
|
2019-12-27 20:00:54 +01:00
|
|
|
* @param string $network network of the contact
|
2019-12-27 18:24:29 +01:00
|
|
|
* @param string $profile optional, default empty
|
2019-12-27 20:00:54 +01:00
|
|
|
* @param string $protocol (Optional) Protocol that is used for the transmission
|
2018-01-10 13:14:45 +01:00
|
|
|
* @return string
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-10 13:14:45 +01:00
|
|
|
*/
|
2019-12-27 18:24:29 +01:00
|
|
|
public static function networkToName($network, $profile = '', $protocol = '')
|
2018-01-10 04:42:04 +01:00
|
|
|
{
|
2018-01-15 14:05:12 +01:00
|
|
|
$nets = [
|
2020-01-18 20:52:34 +01:00
|
|
|
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'),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2018-01-10 04:42:04 +01:00
|
|
|
|
2018-12-26 07:06:24 +01:00
|
|
|
Hook::callAll('network_to_name', $nets);
|
2018-01-10 04:42:04 +01:00
|
|
|
|
|
|
|
$search = array_keys($nets);
|
|
|
|
$replace = array_values($nets);
|
|
|
|
|
2018-10-05 21:26:20 +02:00
|
|
|
$networkname = str_replace($search, $replace, $network);
|
2018-01-10 04:42:04 +01:00
|
|
|
|
2019-07-01 20:00:55 +02:00
|
|
|
if ((in_array($network, Protocol::FEDERATED)) && ($profile != "")) {
|
2019-08-28 08:38:35 +02:00
|
|
|
$server_url = self::getServerURLForProfile($profile);
|
2018-10-05 21:26:20 +02:00
|
|
|
|
|
|
|
// Now query the GServer for the platform name
|
|
|
|
$gserver = DBA::selectFirst('gserver', ['platform', 'network'], ['nurl' => $server_url]);
|
|
|
|
|
|
|
|
if (DBA::isResult($gserver)) {
|
|
|
|
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;
|
2018-09-15 12:13:41 +02:00
|
|
|
|
2018-10-05 21:26:20 +02:00
|
|
|
if ($network == Protocol::ACTIVITYPUB) {
|
|
|
|
$networkname .= ' (AP)';
|
|
|
|
}
|
2018-09-15 12:13:41 +02:00
|
|
|
}
|
2018-01-10 04:42:04 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-27 18:24:29 +01:00
|
|
|
if (!empty($protocol) && ($protocol != $network)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$networkname = DI::l10n()->t('%s (via %s)', $networkname, self::networkToName($protocol));
|
2019-12-27 18:24:29 +01:00
|
|
|
}
|
|
|
|
|
2018-01-10 04:42:04 +01:00
|
|
|
return $networkname;
|
|
|
|
}
|
2018-01-15 16:08:47 +01:00
|
|
|
|
2019-08-28 08:38:35 +02:00
|
|
|
/**
|
|
|
|
* @param string $network network
|
|
|
|
* @param string $profile optional, default empty
|
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
public static function networkToIcon($network, $profile = "")
|
|
|
|
{
|
|
|
|
$nets = [
|
|
|
|
Protocol::DFRN => 'friendica',
|
2019-08-28 11:10:25 +02:00
|
|
|
Protocol::OSTATUS => 'gnu-social', // There is no generic OStatus icon
|
2019-08-28 08:38:35 +02:00
|
|
|
Protocol::FEED => 'rss',
|
2020-01-15 05:09:58 +01:00
|
|
|
Protocol::MAIL => 'inbox',
|
2019-08-28 08:38:35 +02:00
|
|
|
Protocol::DIASPORA => 'diaspora',
|
|
|
|
Protocol::ZOT => 'hubzilla',
|
|
|
|
Protocol::LINKEDIN => 'linkedin',
|
|
|
|
Protocol::XMPP => 'xmpp',
|
2019-08-28 11:10:25 +02:00
|
|
|
Protocol::MYSPACE => 'file-text-o', /// @todo
|
2019-08-28 08:38:35 +02:00
|
|
|
Protocol::GPLUS => 'google-plus',
|
2019-08-28 11:10:25 +02:00
|
|
|
Protocol::PUMPIO => 'file-text-o', /// @todo
|
2019-08-28 08:38:35 +02:00
|
|
|
Protocol::TWITTER => 'twitter',
|
2019-11-24 21:06:47 +01:00
|
|
|
Protocol::DISCOURSE => 'dot-circle-o', /// @todo
|
2019-08-28 08:38:35 +02:00
|
|
|
Protocol::DIASPORA2 => 'diaspora',
|
|
|
|
Protocol::STATUSNET => 'gnu-social',
|
|
|
|
Protocol::ACTIVITYPUB => 'activitypub',
|
2019-08-28 11:10:25 +02:00
|
|
|
Protocol::PNUT => 'file-text-o', /// @todo
|
2019-08-28 08:38:35 +02:00
|
|
|
];
|
|
|
|
|
2019-08-28 16:07:21 +02:00
|
|
|
$platform_icons = ['diaspora' => 'diaspora', 'friendica' => 'friendica', 'friendika' => 'friendica',
|
|
|
|
'GNU Social' => 'gnu-social', 'gnusocial' => 'gnu-social', 'hubzilla' => 'hubzilla',
|
|
|
|
'mastodon' => 'mastodon', 'peertube' => 'peertube', 'pixelfed' => 'pixelfed',
|
|
|
|
'pleroma' => 'pleroma', 'red' => 'hubzilla', 'redmatrix' => 'hubzilla',
|
|
|
|
'socialhome' => 'social-home', 'wordpress' => 'wordpress'];
|
|
|
|
|
2019-08-28 08:38:35 +02:00
|
|
|
$search = array_keys($nets);
|
|
|
|
$replace = array_values($nets);
|
|
|
|
|
2019-08-28 16:07:21 +02:00
|
|
|
$network_icon = str_replace($search, $replace, $network);
|
2019-08-28 08:38:35 +02:00
|
|
|
|
|
|
|
if ((in_array($network, Protocol::FEDERATED)) && ($profile != "")) {
|
|
|
|
$server_url = self::getServerURLForProfile($profile);
|
|
|
|
|
|
|
|
// Now query the GServer for the platform name
|
|
|
|
$gserver = DBA::selectFirst('gserver', ['platform'], ['nurl' => $server_url]);
|
|
|
|
|
|
|
|
if (DBA::isResult($gserver) && !empty($gserver['platform'])) {
|
2019-08-28 16:07:21 +02:00
|
|
|
$network_icon = $platform_icons[strtolower($gserver['platform'])] ?? $network_icon;
|
2019-08-28 08:38:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-28 16:07:21 +02:00
|
|
|
return $network_icon;
|
2019-08-28 08:38:35 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 16:15:00 +01:00
|
|
|
/**
|
|
|
|
* @param string $current optional, default empty
|
|
|
|
* @param string $suffix optionsl, default empty
|
2018-12-26 07:06:24 +01:00
|
|
|
* @return string
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 16:15:00 +01:00
|
|
|
*/
|
|
|
|
public static function sexualPreference($current = "", $suffix = "")
|
|
|
|
{
|
2018-01-15 16:08:47 +01:00
|
|
|
$o = '';
|
2018-09-26 10:30:36 +02:00
|
|
|
$select = [
|
2020-01-18 20:52:34 +01:00
|
|
|
'' => DI::l10n()->t('No answer'),
|
|
|
|
'Males' => DI::l10n()->t('Males'),
|
|
|
|
'Females' => DI::l10n()->t('Females'),
|
|
|
|
'Gay' => DI::l10n()->t('Gay'),
|
|
|
|
'Lesbian' => DI::l10n()->t('Lesbian'),
|
|
|
|
'No Preference' => DI::l10n()->t('No Preference'),
|
|
|
|
'Bisexual' => DI::l10n()->t('Bisexual'),
|
|
|
|
'Autosexual' => DI::l10n()->t('Autosexual'),
|
|
|
|
'Abstinent' => DI::l10n()->t('Abstinent'),
|
|
|
|
'Virgin' => DI::l10n()->t('Virgin'),
|
|
|
|
'Deviant' => DI::l10n()->t('Deviant'),
|
|
|
|
'Fetish' => DI::l10n()->t('Fetish'),
|
|
|
|
'Oodles' => DI::l10n()->t('Oodles'),
|
|
|
|
'Nonsexual' => DI::l10n()->t('Nonsexual'),
|
2018-09-26 10:30:36 +02:00
|
|
|
];
|
2018-04-07 03:54:22 +02:00
|
|
|
|
2018-12-26 07:06:24 +01:00
|
|
|
Hook::callAll('sexpref_selector', $select);
|
2018-04-07 03:54:22 +02:00
|
|
|
|
2018-01-15 16:08:47 +01:00
|
|
|
$o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
|
2018-09-09 16:23:37 +02:00
|
|
|
foreach ($select as $neutral => $selection) {
|
2018-01-15 16:08:47 +01:00
|
|
|
if ($selection !== 'NOTRANSLATION') {
|
2018-10-01 11:57:34 +02:00
|
|
|
$selected = (($neutral == $current) ? ' selected="selected" ' : '');
|
2018-09-09 16:23:37 +02:00
|
|
|
$o .= "<option value=\"$neutral\" $selected >$selection</option>";
|
2018-01-15 16:08:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$o .= '</select>';
|
|
|
|
return $o;
|
|
|
|
}
|
2018-01-10 03:56:05 +01:00
|
|
|
}
|