]> git.mxchange.org Git - friendica.git/blob - src/Content/ContactSelector.php
Replace deprecated Addon::callHooks with Hook::callAll
[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\Hook;
8 use Friendica\Core\L10n;
9 use Friendica\Core\Protocol;
10 use Friendica\Database\DBA;
11 use Friendica\Util\Network;
12 use Friendica\Util\Strings;
13
14 /**
15  * @brief ContactSelector class
16  */
17 class ContactSelector
18 {
19         /**
20          * @param string $current     current
21          * @param string $foreign_net network
22          */
23         public static function profileAssign($current, $foreign_net)
24         {
25                 $o = '';
26
27                 $disabled = (($foreign_net) ? ' disabled="true" ' : '');
28
29                 $o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" >\r\n";
30
31                 $s = DBA::select('profile', ['id', 'profile-name', 'is-default'], ['uid' => $_SESSION['uid']]);
32                 $r = DBA::toArray($s);
33
34                 if (DBA::isResult($r)) {
35                         foreach ($r as $rr) {
36                                 $selected = (($rr['id'] == $current || ($current == 0 && $rr['is-default'] == 1)) ? " selected=\"selected\" " : "");
37                                 $o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
38                         }
39                 }
40                 $o .= "</select>\r\n";
41                 return $o;
42         }
43
44         /**
45          * @param string  $current  current
46          * @param boolean $disabled optional, default false
47          * @return object
48          */
49         public static function pollInterval($current, $disabled = false)
50         {
51                 $dis = (($disabled) ? ' disabled="disabled" ' : '');
52                 $o = '';
53                 $o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
54
55                 $rep = [
56                         0 => L10n::t('Frequently'),
57                         1 => L10n::t('Hourly'),
58                         2 => L10n::t('Twice daily'),
59                         3 => L10n::t('Daily'),
60                         4 => L10n::t('Weekly'),
61                         5 => L10n::t('Monthly')
62                 ];
63
64                 foreach ($rep as $k => $v) {
65                         $selected = (($k == $current) ? " selected=\"selected\" " : "");
66                         $o .= "<option value=\"$k\" $selected >$v</option>\r\n";
67                 }
68                 $o .= "</select>\r\n";
69                 return $o;
70         }
71
72         /**
73          * @param string $network network
74          * @param string $profile optional, default empty
75          * @return string
76          */
77         public static function networkToName($network, $profile = "")
78         {
79                 $nets = [
80                         Protocol::DFRN      =>   L10n::t('DFRN'),
81                         Protocol::OSTATUS   =>   L10n::t('OStatus'),
82                         Protocol::FEED      =>   L10n::t('RSS/Atom'),
83                         Protocol::MAIL      =>   L10n::t('Email'),
84                         Protocol::DIASPORA  =>   L10n::t('Diaspora'),
85                         Protocol::ZOT       =>   L10n::t('Zot!'),
86                         Protocol::LINKEDIN  =>   L10n::t('LinkedIn'),
87                         Protocol::XMPP      =>   L10n::t('XMPP/IM'),
88                         Protocol::MYSPACE   =>   L10n::t('MySpace'),
89                         Protocol::GPLUS     =>   L10n::t('Google+'),
90                         Protocol::PUMPIO    =>   L10n::t('pump.io'),
91                         Protocol::TWITTER   =>   L10n::t('Twitter'),
92                         Protocol::DIASPORA2 =>   L10n::t('Diaspora Connector'),
93                         Protocol::STATUSNET =>   L10n::t('GNU Social Connector'),
94                         Protocol::ACTIVITYPUB => L10n::t('ActivityPub'),
95                         Protocol::PNUT      =>   L10n::t('pnut'),
96                 ];
97
98                 Hook::callAll('network_to_name', $nets);
99
100                 $search  = array_keys($nets);
101                 $replace = array_values($nets);
102
103                 $networkname = str_replace($search, $replace, $network);
104
105                 if ((in_array($network, [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS])) && ($profile != "")) {
106                         // Create the server url out of the profile url
107                         $parts = parse_url($profile);
108                         unset($parts['path']);
109                         $server_url = [Strings::normaliseLink(Network::unparseURL($parts))];
110
111                         // Fetch the server url
112                         $gcontact = DBA::selectFirst('gcontact', ['server_url'], ['nurl' => Strings::normaliseLink($profile)]);
113                         if (!empty($gcontact) && !empty($gcontact['server_url'])) {
114                                 $server_url[] = Strings::normaliseLink($gcontact['server_url']);
115                         }
116
117                         // Now query the GServer for the platform name
118                         $gserver = DBA::selectFirst('gserver', ['platform', 'network'], ['nurl' => $server_url]);
119
120                         if (DBA::isResult($gserver)) {
121                                 if (!empty($gserver['platform'])) {
122                                         $platform = $gserver['platform'];
123                                 } elseif (!empty($gserver['network']) && ($gserver['network'] != Protocol::ACTIVITYPUB)) {
124                                         $platform = self::networkToName($gserver['network']);
125                                 }
126
127                                 if (!empty($platform)) {
128                                         $networkname = $platform;
129
130                                         if ($network == Protocol::ACTIVITYPUB) {
131                                                 $networkname .= ' (AP)';
132                                         }
133                                 }
134                         }
135                 }
136
137                 return $networkname;
138         }
139
140         /**
141          * @param string $current optional, default empty
142          * @param string $suffix  optionsl, default empty
143          * @return string
144          */
145         public static function gender($current = "", $suffix = "")
146         {
147                 $o = '';
148                 $select = [
149                         'EMPTY'            => '',
150                         'Male'             => L10n::t('Male'),
151                         'Female'           => L10n::t('Female'),
152                         'Currently Male'   => L10n::t('Currently Male'),
153                         'Currently Female' => L10n::t('Currently Female'),
154                         'Mostly Male'      => L10n::t('Mostly Male'),
155                         'Mostly Female'    => L10n::t('Mostly Female'),
156                         'Transgender'      => L10n::t('Transgender'),
157                         'Intersex'         => L10n::t('Intersex'),
158                         'Transsexual'      => L10n::t('Transsexual'),
159                         'Hermaphrodite'    => L10n::t('Hermaphrodite'),
160                         'Neuter'           => L10n::t('Neuter'),
161                         'Non-specific'     => L10n::t('Non-specific'),
162                         'Other'            => L10n::t('Other'),
163                         'Undecided'        => L10n::t('Undecided'),
164                 ];
165
166                 Hook::callAll('gender_selector', $select);
167
168                 $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
169                 foreach ($select as $neutral => $selection) {
170                         if ($selection !== 'NOTRANSLATION') {
171                                 $selected = (($neutral == $current) ? ' selected="selected" ' : '');
172                                 $o .= "<option value=\"$neutral\" $selected >$selection</option>";
173                         }
174                 }
175                 $o .= '</select>';
176                 return $o;
177         }
178
179         /**
180          * @param string $current optional, default empty
181          * @param string $suffix  optionsl, default empty
182          * @return string
183          */
184         public static function sexualPreference($current = "", $suffix = "")
185         {
186                 $o = '';
187                 $select = [
188                         'EMPTY'         => '',
189                         'Males'         => L10n::t('Males'),
190                         'Females'       => L10n::t('Females'),
191                         'Gay'           => L10n::t('Gay'),
192                         'Lesbian'       => L10n::t('Lesbian'),
193                         'No Preference' => L10n::t('No Preference'),
194                         'Bisexual'      => L10n::t('Bisexual'),
195                         'Autosexual'    => L10n::t('Autosexual'),
196                         'Abstinent'     => L10n::t('Abstinent'),
197                         'Virgin'        => L10n::t('Virgin'),
198                         'Deviant'       => L10n::t('Deviant'),
199                         'Fetish'        => L10n::t('Fetish'),
200                         'Oodles'        => L10n::t('Oodles'),
201                         'Nonsexual'     => L10n::t('Nonsexual'),
202                 ];
203
204                 Hook::callAll('sexpref_selector', $select);
205
206                 $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
207                 foreach ($select as $neutral => $selection) {
208                         if ($selection !== 'NOTRANSLATION') {
209                                 $selected = (($neutral == $current) ? ' selected="selected" ' : '');
210                                 $o .= "<option value=\"$neutral\" $selected >$selection</option>";
211                         }
212                 }
213                 $o .= '</select>';
214                 return $o;
215         }
216
217         /**
218          * @param string $current optional, default empty
219          * @return string
220          */
221         public static function maritalStatus($current = "")
222         {
223                 $o = '';
224                 $select = [
225                         'EMPTY'                => '',
226                         'Single'               => L10n::t('Single'),
227                         'Lonely'               => L10n::t('Lonely'),
228                         'Available'            => L10n::t('Available'),
229                         'Unavailable'          => L10n::t('Unavailable'),
230                         'Has crush'            => L10n::t('Has crush'),
231                         'Infatuated'           => L10n::t('Infatuated'),
232                         'Dating'               => L10n::t('Dating'),
233                         'Unfaithful'           => L10n::t('Unfaithful'),
234                         'Sex Addict'           => L10n::t('Sex Addict'),
235                         'Friends'              => L10n::t('Friends'),
236                         'Friends/Benefits'     => L10n::t('Friends/Benefits'),
237                         'Casual'               => L10n::t('Casual'),
238                         'Engaged'              => L10n::t('Engaged'),
239                         'Married'              => L10n::t('Married'),
240                         'Imaginarily married'  => L10n::t('Imaginarily married'),
241                         'Partners'             => L10n::t('Partners'),
242                         'Cohabiting'           => L10n::t('Cohabiting'),
243                         'Common law'           => L10n::t('Common law'),
244                         'Happy'                => L10n::t('Happy'),
245                         'Not looking'          => L10n::t('Not looking'),
246                         'Swinger'              => L10n::t('Swinger'),
247                         'Betrayed'             => L10n::t('Betrayed'),
248                         'Separated'            => L10n::t('Separated'),
249                         'Unstable'             => L10n::t('Unstable'),
250                         'Divorced'             => L10n::t('Divorced'),
251                         'Imaginarily divorced' => L10n::t('Imaginarily divorced'),
252                         'Widowed'              => L10n::t('Widowed'),
253                         'Uncertain'            => L10n::t('Uncertain'),
254                         'It\'s complicated'    => L10n::t('It\'s complicated'),
255                         'Don\'t care'          => L10n::t('Don\'t care'),
256                         'Ask me'               => L10n::t('Ask me'),
257                 ];
258
259                 Hook::callAll('marital_selector', $select);
260
261                 $o .= '<select name="marital" id="marital-select" size="1" >';
262                 foreach ($select as $neutral => $selection) {
263                         if ($selection !== 'NOTRANSLATION') {
264                                 $selected = (($neutral == $current) ? ' selected="selected" ' : '');
265                                 $o .= "<option value=\"$neutral\" $selected >$selection</option>";
266                         }
267                 }
268                 $o .= '</select>';
269                 return $o;
270         }
271 }