2018-01-10 03:56:05 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Content/ContactSelector.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Content;
|
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
use Friendica\Core\Addon;
|
2018-01-22 15:54:13 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-05 21:26:20 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
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
|
|
|
/**
|
|
|
|
* @brief ContactSelector class
|
|
|
|
*/
|
2018-01-10 03:56:05 +01:00
|
|
|
class ContactSelector
|
|
|
|
{
|
2018-01-10 04:42:04 +01:00
|
|
|
/**
|
|
|
|
* @param string $current current
|
|
|
|
* @param string $foreign_net network
|
|
|
|
*/
|
|
|
|
public static function profileAssign($current, $foreign_net)
|
|
|
|
{
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
$disabled = (($foreign_net) ? ' disabled="true" ' : '');
|
|
|
|
|
|
|
|
$o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" >\r\n";
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$s = DBA::select('profile', ['id', 'profile-name', 'is-default'], ['uid' => $_SESSION['uid']]);
|
2018-07-21 04:03:40 +02:00
|
|
|
$r = DBA::toArray($s);
|
2018-01-10 04:42:04 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2018-01-10 04:42:04 +01:00
|
|
|
foreach ($r as $rr) {
|
|
|
|
$selected = (($rr['id'] == $current || ($current == 0 && $rr['is-default'] == 1)) ? " selected=\"selected\" " : "");
|
|
|
|
$o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$o .= "</select>\r\n";
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
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 = [
|
2018-01-22 15:54:13 +01:00
|
|
|
0 => L10n::t('Frequently'),
|
|
|
|
1 => L10n::t('Hourly'),
|
|
|
|
2 => L10n::t('Twice daily'),
|
|
|
|
3 => L10n::t('Daily'),
|
|
|
|
4 => L10n::t('Weekly'),
|
|
|
|
5 => 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;
|
|
|
|
}
|
|
|
|
|
2018-01-10 13:14:45 +01:00
|
|
|
/**
|
2018-10-05 21:26:20 +02:00
|
|
|
* @param string $network network
|
2018-01-10 13:14:45 +01:00
|
|
|
* @param string $profile optional, default empty
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-10-05 21:26:20 +02:00
|
|
|
public static function networkToName($network, $profile = "")
|
2018-01-10 04:42:04 +01:00
|
|
|
{
|
2018-01-15 14:05:12 +01:00
|
|
|
$nets = [
|
2018-11-18 13:44:01 +01:00
|
|
|
Protocol::DFRN => L10n::t('DFRN'),
|
2018-09-14 18:51:32 +02:00
|
|
|
Protocol::OSTATUS => L10n::t('OStatus'),
|
|
|
|
Protocol::FEED => L10n::t('RSS/Atom'),
|
|
|
|
Protocol::MAIL => L10n::t('Email'),
|
|
|
|
Protocol::DIASPORA => L10n::t('Diaspora'),
|
|
|
|
Protocol::ZOT => L10n::t('Zot!'),
|
|
|
|
Protocol::LINKEDIN => L10n::t('LinkedIn'),
|
|
|
|
Protocol::XMPP => L10n::t('XMPP/IM'),
|
|
|
|
Protocol::MYSPACE => L10n::t('MySpace'),
|
|
|
|
Protocol::GPLUS => L10n::t('Google+'),
|
|
|
|
Protocol::PUMPIO => L10n::t('pump.io'),
|
|
|
|
Protocol::TWITTER => L10n::t('Twitter'),
|
|
|
|
Protocol::DIASPORA2 => L10n::t('Diaspora Connector'),
|
|
|
|
Protocol::STATUSNET => L10n::t('GNU Social Connector'),
|
|
|
|
Protocol::ACTIVITYPUB => L10n::t('ActivityPub'),
|
|
|
|
Protocol::PNUT => L10n::t('pnut'),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2018-01-10 04:42:04 +01:00
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
Addon::callHooks('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
|
|
|
|
2018-10-05 21:26:20 +02:00
|
|
|
if ((in_array($network, [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS])) && ($profile != "")) {
|
|
|
|
// Create the server url out of the profile url
|
|
|
|
$parts = parse_url($profile);
|
|
|
|
unset($parts['path']);
|
2018-11-08 17:28:29 +01:00
|
|
|
$server_url = [Strings::normaliseLink(Network::unparseURL($parts))];
|
2018-01-10 04:42:04 +01:00
|
|
|
|
2018-10-05 21:26:20 +02:00
|
|
|
// Fetch the server url
|
2018-11-08 17:28:29 +01:00
|
|
|
$gcontact = DBA::selectFirst('gcontact', ['server_url'], ['nurl' => Strings::normaliseLink($profile)]);
|
2018-10-05 21:26:20 +02:00
|
|
|
if (!empty($gcontact) && !empty($gcontact['server_url'])) {
|
2018-11-08 17:28:29 +01:00
|
|
|
$server_url[] = Strings::normaliseLink($gcontact['server_url']);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $networkname;
|
|
|
|
}
|
2018-01-15 16:08:47 +01:00
|
|
|
|
2018-01-15 16:15:00 +01:00
|
|
|
/**
|
|
|
|
* @param string $current optional, default empty
|
|
|
|
* @param string $suffix optionsl, default empty
|
|
|
|
*/
|
|
|
|
public static function gender($current = "", $suffix = "")
|
|
|
|
{
|
2018-01-15 16:08:47 +01:00
|
|
|
$o = '';
|
2018-09-26 10:30:36 +02:00
|
|
|
$select = [
|
|
|
|
'EMPTY' => '',
|
|
|
|
'Male' => L10n::t('Male'),
|
|
|
|
'Female' => L10n::t('Female'),
|
|
|
|
'Currently Male' => L10n::t('Currently Male'),
|
|
|
|
'Currently Female' => L10n::t('Currently Female'),
|
|
|
|
'Mostly Male' => L10n::t('Mostly Male'),
|
|
|
|
'Mostly Female' => L10n::t('Mostly Female'),
|
|
|
|
'Transgender' => L10n::t('Transgender'),
|
|
|
|
'Intersex' => L10n::t('Intersex'),
|
|
|
|
'Transsexual' => L10n::t('Transsexual'),
|
|
|
|
'Hermaphrodite' => L10n::t('Hermaphrodite'),
|
|
|
|
'Neuter' => L10n::t('Neuter'),
|
|
|
|
'Non-specific' => L10n::t('Non-specific'),
|
|
|
|
'Other' => L10n::t('Other'),
|
|
|
|
'Undecided' => L10n::t('Undecided'),
|
|
|
|
];
|
2018-04-07 03:54:22 +02:00
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
Addon::callHooks('gender_selector', $select);
|
2018-04-07 03:54:22 +02:00
|
|
|
|
2018-01-15 16:08:47 +01:00
|
|
|
$o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
|
2018-09-09 16:19:30 +02:00
|
|
|
foreach ($select as $neutral => $selection) {
|
2018-01-15 16:08:47 +01:00
|
|
|
if ($selection !== 'NOTRANSLATION') {
|
|
|
|
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
2018-09-09 16:19:30 +02:00
|
|
|
$o .= "<option value=\"$neutral\" $selected >$selection</option>";
|
2018-01-15 16:08:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$o .= '</select>';
|
|
|
|
return $o;
|
|
|
|
}
|
2018-04-07 03:54:22 +02:00
|
|
|
|
2018-01-15 16:15:00 +01:00
|
|
|
/**
|
|
|
|
* @param string $current optional, default empty
|
|
|
|
* @param string $suffix optionsl, default empty
|
|
|
|
*/
|
|
|
|
public static function sexualPreference($current = "", $suffix = "")
|
|
|
|
{
|
2018-01-15 16:08:47 +01:00
|
|
|
$o = '';
|
2018-09-26 10:30:36 +02:00
|
|
|
$select = [
|
|
|
|
'EMPTY' => '',
|
|
|
|
'Males' => L10n::t('Males'),
|
|
|
|
'Females' => L10n::t('Females'),
|
|
|
|
'Gay' => L10n::t('Gay'),
|
|
|
|
'Lesbian' => L10n::t('Lesbian'),
|
|
|
|
'No Preference' => L10n::t('No Preference'),
|
|
|
|
'Bisexual' => L10n::t('Bisexual'),
|
|
|
|
'Autosexual' => L10n::t('Autosexual'),
|
|
|
|
'Abstinent' => L10n::t('Abstinent'),
|
|
|
|
'Virgin' => L10n::t('Virgin'),
|
|
|
|
'Deviant' => L10n::t('Deviant'),
|
|
|
|
'Fetish' => L10n::t('Fetish'),
|
|
|
|
'Oodles' => L10n::t('Oodles'),
|
|
|
|
'Nonsexual' => L10n::t('Nonsexual'),
|
|
|
|
];
|
2018-04-07 03:54:22 +02:00
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
Addon::callHooks('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') {
|
|
|
|
$selected = (($selection == $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-04-07 03:54:22 +02:00
|
|
|
|
2018-01-15 16:15:00 +01:00
|
|
|
/**
|
|
|
|
* @param string $current optional, default empty
|
|
|
|
*/
|
|
|
|
public static function maritalStatus($current = "")
|
2018-01-15 16:08:47 +01:00
|
|
|
{
|
|
|
|
$o = '';
|
2018-09-26 10:30:36 +02:00
|
|
|
'EMPTY' => '',
|
|
|
|
'Single' => L10n::t('Single'),
|
|
|
|
'Lonely' => L10n::t('Lonely'),
|
|
|
|
'Available' => L10n::t('Available'),
|
|
|
|
'Unavailable' => L10n::t('Unavailable'),
|
|
|
|
'Has crush' => L10n::t('Has crush'),
|
|
|
|
'Infatuated' => L10n::t('Infatuated'),
|
|
|
|
'Dating' => L10n::t('Dating'),
|
|
|
|
'Unfaithful' => L10n::t('Unfaithful'),
|
|
|
|
'Sex Addict' => L10n::t('Sex Addict'),
|
|
|
|
'Friends' => L10n::t('Friends'),
|
|
|
|
'Friends/Benefits' => L10n::t('Friends/Benefits'),
|
|
|
|
'Casual' => L10n::t('Casual'),
|
|
|
|
'Engaged' => L10n::t('Engaged'),
|
|
|
|
'Married' => L10n::t('Married'),
|
|
|
|
'Imaginarily married' => L10n::t('Imaginarily married'),
|
|
|
|
'Partners' => L10n::t('Partners'),
|
|
|
|
'Cohabiting' => L10n::t('Cohabiting'),
|
|
|
|
'Common law' => L10n::t('Common law'),
|
|
|
|
'Happy' => L10n::t('Happy'),
|
|
|
|
'Not looking' => L10n::t('Not looking'),
|
|
|
|
'Swinger' => L10n::t('Swinger'),
|
|
|
|
'Betrayed' => L10n::t('Betrayed'),
|
|
|
|
'Separated' => L10n::t('Separated'),
|
|
|
|
'Unstable' => L10n::t('Unstable'),
|
|
|
|
'Divorced' => L10n::t('Divorced'),
|
|
|
|
'Imaginarily divorced' => L10n::t('Imaginarily divorced'),
|
|
|
|
'Widowed' => L10n::t('Widowed'),
|
|
|
|
'Uncertain' => L10n::t('Uncertain'),
|
|
|
|
'It\'s complicated' => L10n::t('It\'s complicated'),
|
|
|
|
'Don\'t care' => L10n::t('Don\'t care'),
|
|
|
|
'Ask me' => L10n::t('Ask me'),
|
|
|
|
];
|
2018-04-07 03:54:22 +02:00
|
|
|
|
2018-01-17 19:42:40 +01:00
|
|
|
Addon::callHooks('marital_selector', $select);
|
2018-04-07 03:54:22 +02:00
|
|
|
|
2018-01-15 16:08:47 +01:00
|
|
|
$o .= '<select name="marital" id="marital-select" size="1" >';
|
2018-09-09 16:28:26 +02:00
|
|
|
foreach ($select as $neutral => $selection) {
|
2018-01-15 16:08:47 +01:00
|
|
|
if ($selection !== 'NOTRANSLATION') {
|
|
|
|
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
2018-09-09 16:28:26 +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
|
|
|
}
|