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-01-22 15:54:13 +01:00
|
|
|
$select = ['', L10n::t('Male'), L10n::t('Female'), L10n::t('Currently Male'), L10n::t('Currently Female'), L10n::t('Mostly Male'), L10n::t('Mostly Female'), L10n::t('Transgender'), L10n::t('Intersex'), L10n::t('Transsexual'), L10n::t('Hermaphrodite'), L10n::t('Neuter'), L10n::t('Non-specific'), L10n::t('Other'), 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\" >";
|
|
|
|
foreach ($select as $selection) {
|
|
|
|
if ($selection !== 'NOTRANSLATION') {
|
|
|
|
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
|
|
|
$o .= "<option value=\"$selection\" $selected >$selection</option>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$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-01-22 15:54:13 +01:00
|
|
|
$select = ['', L10n::t('Males'), L10n::t('Females'), L10n::t('Gay'), L10n::t('Lesbian'), L10n::t('No Preference'), L10n::t('Bisexual'), L10n::t('Autosexual'), L10n::t('Abstinent'), L10n::t('Virgin'), L10n::t('Deviant'), L10n::t('Fetish'), L10n::t('Oodles'), 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\" >";
|
|
|
|
foreach ($select as $selection) {
|
|
|
|
if ($selection !== 'NOTRANSLATION') {
|
|
|
|
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
|
|
|
$o .= "<option value=\"$selection\" $selected >$selection</option>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$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-01-22 15:54:13 +01:00
|
|
|
$select = ['', L10n::t('Single'), L10n::t('Lonely'), L10n::t('Available'), L10n::t('Unavailable'), L10n::t('Has crush'), L10n::t('Infatuated'), L10n::t('Dating'), L10n::t('Unfaithful'), L10n::t('Sex Addict'), L10n::t('Friends'), L10n::t('Friends/Benefits'), L10n::t('Casual'), L10n::t('Engaged'), L10n::t('Married'), L10n::t('Imaginarily married'), L10n::t('Partners'), L10n::t('Cohabiting'), L10n::t('Common law'), L10n::t('Happy'), L10n::t('Not looking'), L10n::t('Swinger'), L10n::t('Betrayed'), L10n::t('Separated'), L10n::t('Unstable'), L10n::t('Divorced'), L10n::t('Imaginarily divorced'), L10n::t('Widowed'), L10n::t('Uncertain'), L10n::t('It\'s complicated'), L10n::t('Don\'t care'), 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" >';
|
|
|
|
foreach ($select as $selection) {
|
|
|
|
if ($selection !== 'NOTRANSLATION') {
|
|
|
|
$selected = (($selection == $current) ? ' selected="selected" ' : '');
|
|
|
|
$o .= "<option value=\"$selection\" $selected >$selection</option>";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$o .= '</select>';
|
|
|
|
return $o;
|
|
|
|
}
|
2018-01-10 03:56:05 +01:00
|
|
|
}
|