]> git.mxchange.org Git - friendica.git/blob - src/Content/ContactSelector.php
Adding "FRIENDICA_URL_PATH" to the automatic installation
[friendica.git] / src / Content / ContactSelector.php
1 <?php
2 /**
3  * @file src/Content/ContactSelector.php
4  */
5 namespace Friendica\Content;
6
7 use Friendica\Core\Addon;
8 use Friendica\Core\L10n;
9 use Friendica\Core\Protocol;
10 use Friendica\Database\DBA;
11
12 /**
13  * @brief ContactSelector class
14  */
15 class ContactSelector
16 {
17         /**
18          * @param string $current     current
19          * @param string $foreign_net network
20          */
21         public static function profileAssign($current, $foreign_net)
22         {
23                 $o = '';
24
25                 $disabled = (($foreign_net) ? ' disabled="true" ' : '');
26
27                 $o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" >\r\n";
28
29                 $s = DBA::select('profile', ['id', 'profile-name', 'is-default'], ['uid' => $_SESSION['uid']]);
30                 $r = DBA::toArray($s);
31
32                 if (DBA::isResult($r)) {
33                         foreach ($r as $rr) {
34                                 $selected = (($rr['id'] == $current || ($current == 0 && $rr['is-default'] == 1)) ? " selected=\"selected\" " : "");
35                                 $o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
36                         }
37                 }
38                 $o .= "</select>\r\n";
39                 return $o;
40         }
41
42         /**
43          * @param string  $current  current
44          * @param boolean $disabled optional, default false
45          * @return object
46          */
47         public static function pollInterval($current, $disabled = false)
48         {
49                 $dis = (($disabled) ? ' disabled="disabled" ' : '');
50                 $o = '';
51                 $o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
52
53                 $rep = [
54                         0 => L10n::t('Frequently'),
55                         1 => L10n::t('Hourly'),
56                         2 => L10n::t('Twice daily'),
57                         3 => L10n::t('Daily'),
58                         4 => L10n::t('Weekly'),
59                         5 => L10n::t('Monthly')
60                 ];
61
62                 foreach ($rep as $k => $v) {
63                         $selected = (($k == $current) ? " selected=\"selected\" " : "");
64                         $o .= "<option value=\"$k\" $selected >$v</option>\r\n";
65                 }
66                 $o .= "</select>\r\n";
67                 return $o;
68         }
69
70         /**
71          * @param string $s       network
72          * @param string $profile optional, default empty
73          * @return string
74          */
75         public static function networkToName($s, $profile = "")
76         {
77                 $nets = [
78                         Protocol::DFRN      =>   L10n::t('Friendica'),
79                         Protocol::OSTATUS   =>   L10n::t('OStatus'),
80                         Protocol::FEED      =>   L10n::t('RSS/Atom'),
81                         Protocol::MAIL      =>   L10n::t('Email'),
82                         Protocol::DIASPORA  =>   L10n::t('Diaspora'),
83                         Protocol::ZOT       =>   L10n::t('Zot!'),
84                         Protocol::LINKEDIN  =>   L10n::t('LinkedIn'),
85                         Protocol::XMPP      =>   L10n::t('XMPP/IM'),
86                         Protocol::MYSPACE   =>   L10n::t('MySpace'),
87                         Protocol::GPLUS     =>   L10n::t('Google+'),
88                         Protocol::PUMPIO    =>   L10n::t('pump.io'),
89                         Protocol::TWITTER   =>   L10n::t('Twitter'),
90                         Protocol::DIASPORA2 =>   L10n::t('Diaspora Connector'),
91                         Protocol::STATUSNET =>   L10n::t('GNU Social Connector'),
92                         Protocol::ACTIVITYPUB => L10n::t('ActivityPub'),
93                         Protocol::PNUT      =>   L10n::t('pnut'),
94                 ];
95
96                 Addon::callHooks('network_to_name', $nets);
97
98                 $search  = array_keys($nets);
99                 $replace = array_values($nets);
100
101                 $networkname = str_replace($search, $replace, $s);
102
103                 if ((in_array($s, [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS])) && ($profile != "")) {
104                         $r = DBA::fetchFirst("SELECT `gserver`.`platform` FROM `gcontact`
105                                         INNER JOIN `gserver` ON `gserver`.`nurl` = `gcontact`.`server_url`
106                                         WHERE `gcontact`.`nurl` = ? AND `platform` != ''", normalise_link($profile));
107
108                         if (DBA::isResult($r)) {
109                                 $networkname = $r['platform'];
110
111                                 if ($s == Protocol::ACTIVITYPUB) {
112                                         $networkname .= ' (AP)';
113                                 }
114                         }
115                 }
116
117                 return $networkname;
118         }
119
120         /**
121          * @param string $current optional, default empty
122          * @param string $suffix  optionsl, default empty
123          */
124         public static function gender($current = "", $suffix = "")
125         {
126                 $o = '';
127                 $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')];
128
129                 Addon::callHooks('gender_selector', $select);
130
131                 $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
132                 foreach ($select as $selection) {
133                         if ($selection !== 'NOTRANSLATION') {
134                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
135                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
136                         }
137                 }
138                 $o .= '</select>';
139                 return $o;
140         }
141
142         /**
143          * @param string $current optional, default empty
144          * @param string $suffix  optionsl, default empty
145          */
146         public static function sexualPreference($current = "", $suffix = "")
147         {
148                 $o = '';
149                 $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')];
150
151
152                 Addon::callHooks('sexpref_selector', $select);
153
154                 $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
155                 foreach ($select as $selection) {
156                         if ($selection !== 'NOTRANSLATION') {
157                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
158                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
159                         }
160                 }
161                 $o .= '</select>';
162                 return $o;
163         }
164
165         /**
166          * @param string $current optional, default empty
167          */
168         public static function maritalStatus($current = "")
169         {
170                 $o = '';
171                 $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')];
172
173                 Addon::callHooks('marital_selector', $select);
174
175                 $o .= '<select name="marital" id="marital-select" size="1" >';
176                 foreach ($select as $selection) {
177                         if ($selection !== 'NOTRANSLATION') {
178                                 $selected = (($selection == $current) ? ' selected="selected" ' : '');
179                                 $o .= "<option value=\"$selection\" $selected >$selection</option>";
180                         }
181                 }
182                 $o .= '</select>';
183                 return $o;
184         }
185 }