]> git.mxchange.org Git - friendica.git/blob - src/Content/ContactSelector.php
Merge pull request #7752 from kPherox/develop
[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          * @return string
23          * @throws \Exception
24          */
25         public static function profileAssign($current, $foreign_net)
26         {
27                 $o = '';
28
29                 $disabled = (($foreign_net) ? ' disabled="true" ' : '');
30
31                 $o .= "<select id=\"contact-profile-selector\" class=\"form-control\" $disabled name=\"profile-assign\" >\r\n";
32
33                 $s = DBA::select('profile', ['id', 'profile-name', 'is-default'], ['uid' => $_SESSION['uid']]);
34                 $r = DBA::toArray($s);
35
36                 if (DBA::isResult($r)) {
37                         foreach ($r as $rr) {
38                                 $selected = (($rr['id'] == $current || ($current == 0 && $rr['is-default'] == 1)) ? " selected=\"selected\" " : "");
39                                 $o .= "<option value=\"{$rr['id']}\" $selected >{$rr['profile-name']}</option>\r\n";
40                         }
41                 }
42                 $o .= "</select>\r\n";
43                 return $o;
44         }
45
46         /**
47          * @param string  $current  current
48          * @param boolean $disabled optional, default false
49          * @return object
50          */
51         public static function pollInterval($current, $disabled = false)
52         {
53                 $dis = (($disabled) ? ' disabled="disabled" ' : '');
54                 $o = '';
55                 $o .= "<select id=\"contact-poll-interval\" name=\"poll\" $dis />" . "\r\n";
56
57                 $rep = [
58                         0 => L10n::t('Frequently'),
59                         1 => L10n::t('Hourly'),
60                         2 => L10n::t('Twice daily'),
61                         3 => L10n::t('Daily'),
62                         4 => L10n::t('Weekly'),
63                         5 => L10n::t('Monthly')
64                 ];
65
66                 foreach ($rep as $k => $v) {
67                         $selected = (($k == $current) ? " selected=\"selected\" " : "");
68                         $o .= "<option value=\"$k\" $selected >$v</option>\r\n";
69                 }
70                 $o .= "</select>\r\n";
71                 return $o;
72         }
73
74         /**
75          * @param string $profile Profile URL
76          * @return string Server URL
77          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
78          */
79         private static function getServerURLForProfile($profile)
80         {
81                 $server_url = '';
82
83                 // Fetch the server url from the contact table
84                 $contact = DBA::selectFirst('contact', ['baseurl'], ['uid' => 0, 'nurl' => Strings::normaliseLink($profile)]);
85                 if (DBA::isResult($contact) && !empty($contact['baseurl'])) {
86                         $server_url = Strings::normaliseLink($contact['baseurl']);
87                 }
88
89                 if (empty($server_url)) {
90                         // Fetch the server url from the gcontact table
91                         $gcontact = DBA::selectFirst('gcontact', ['server_url'], ['nurl' => Strings::normaliseLink($profile)]);
92                         if (!empty($gcontact) && !empty($gcontact['server_url'])) {
93                                 $server_url = Strings::normaliseLink($gcontact['server_url']);
94                         }
95                 }
96
97                 if (empty($server_url)) {
98                         // Create the server url out of the profile url
99                         $parts = parse_url($profile);
100                         unset($parts['path']);
101                         $server_url = Strings::normaliseLink(Network::unparseURL($parts));
102                 }
103
104                 return $server_url;
105         }
106
107         /**
108          * @param string $network network
109          * @param string $profile optional, default empty
110          * @return string
111          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
112          */
113         public static function networkToName($network, $profile = "")
114         {
115                 $nets = [
116                         Protocol::DFRN      =>   L10n::t('DFRN'),
117                         Protocol::OSTATUS   =>   L10n::t('OStatus'),
118                         Protocol::FEED      =>   L10n::t('RSS/Atom'),
119                         Protocol::MAIL      =>   L10n::t('Email'),
120                         Protocol::DIASPORA  =>   L10n::t('Diaspora'),
121                         Protocol::ZOT       =>   L10n::t('Zot!'),
122                         Protocol::LINKEDIN  =>   L10n::t('LinkedIn'),
123                         Protocol::XMPP      =>   L10n::t('XMPP/IM'),
124                         Protocol::MYSPACE   =>   L10n::t('MySpace'),
125                         Protocol::GPLUS     =>   L10n::t('Google+'),
126                         Protocol::PUMPIO    =>   L10n::t('pump.io'),
127                         Protocol::TWITTER   =>   L10n::t('Twitter'),
128                         Protocol::DIASPORA2 =>   L10n::t('Diaspora Connector'),
129                         Protocol::STATUSNET =>   L10n::t('GNU Social Connector'),
130                         Protocol::ACTIVITYPUB => L10n::t('ActivityPub'),
131                         Protocol::PNUT      =>   L10n::t('pnut'),
132                 ];
133
134                 Hook::callAll('network_to_name', $nets);
135
136                 $search  = array_keys($nets);
137                 $replace = array_values($nets);
138
139                 $networkname = str_replace($search, $replace, $network);
140
141                 if ((in_array($network, Protocol::FEDERATED)) && ($profile != "")) {
142                         $server_url = self::getServerURLForProfile($profile);
143
144                         // Now query the GServer for the platform name
145                         $gserver = DBA::selectFirst('gserver', ['platform', 'network'], ['nurl' => $server_url]);
146
147                         if (DBA::isResult($gserver)) {
148                                 if (!empty($gserver['platform'])) {
149                                         $platform = $gserver['platform'];
150                                 } elseif (!empty($gserver['network']) && ($gserver['network'] != Protocol::ACTIVITYPUB)) {
151                                         $platform = self::networkToName($gserver['network']);
152                                 }
153
154                                 if (!empty($platform)) {
155                                         $networkname = $platform;
156
157                                         if ($network == Protocol::ACTIVITYPUB) {
158                                                 $networkname .= ' (AP)';
159                                         }
160                                 }
161                         }
162                 }
163
164                 return $networkname;
165         }
166
167         /**
168          * @param string $network network
169          * @param string $profile optional, default empty
170          * @return string
171          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
172          */
173         public static function networkToIcon($network, $profile = "")
174         {
175                 $nets = [
176                         Protocol::DFRN      =>   'friendica',
177                         Protocol::OSTATUS   =>   'gnu-social', // There is no generic OStatus icon
178                         Protocol::FEED      =>   'rss',
179                         Protocol::MAIL      =>   'file-text-o', /// @todo
180                         Protocol::DIASPORA  =>   'diaspora',
181                         Protocol::ZOT       =>   'hubzilla',
182                         Protocol::LINKEDIN  =>   'linkedin',
183                         Protocol::XMPP      =>   'xmpp',
184                         Protocol::MYSPACE   =>   'file-text-o', /// @todo
185                         Protocol::GPLUS     =>   'google-plus',
186                         Protocol::PUMPIO    =>   'file-text-o', /// @todo
187                         Protocol::TWITTER   =>   'twitter',
188                         Protocol::DIASPORA2 =>   'diaspora',
189                         Protocol::STATUSNET =>   'gnu-social',
190                         Protocol::ACTIVITYPUB => 'activitypub',
191                         Protocol::PNUT      =>   'file-text-o', /// @todo
192                 ];
193
194                 $platform_icons = ['diaspora' => 'diaspora', 'friendica' => 'friendica', 'friendika' => 'friendica',
195                         'GNU Social' => 'gnu-social', 'gnusocial' => 'gnu-social', 'hubzilla' => 'hubzilla',
196                         'mastodon' => 'mastodon', 'peertube' => 'peertube', 'pixelfed' => 'pixelfed',
197                         'pleroma' => 'pleroma', 'red' => 'hubzilla', 'redmatrix' => 'hubzilla',
198                         'socialhome' => 'social-home', 'wordpress' => 'wordpress'];
199
200                 $search  = array_keys($nets);
201                 $replace = array_values($nets);
202
203                 $network_icon = str_replace($search, $replace, $network);
204
205                 if ((in_array($network, Protocol::FEDERATED)) && ($profile != "")) {
206                         $server_url = self::getServerURLForProfile($profile);
207
208                         // Now query the GServer for the platform name
209                         $gserver = DBA::selectFirst('gserver', ['platform'], ['nurl' => $server_url]);
210
211                         if (DBA::isResult($gserver) && !empty($gserver['platform'])) {
212                                 $network_icon = $platform_icons[strtolower($gserver['platform'])] ?? $network_icon;
213                         }
214                 }
215
216                 return $network_icon;
217         }
218
219         /**
220          * @param string $current optional, default empty
221          * @param string $suffix  optionsl, default empty
222          * @return string
223          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
224          */
225         public static function gender($current = "", $suffix = "")
226         {
227                 $o = '';
228                 $select = [
229                         ''                 => L10n::t('No answer'),
230                         'Male'             => L10n::t('Male'),
231                         'Female'           => L10n::t('Female'),
232                         'Currently Male'   => L10n::t('Currently Male'),
233                         'Currently Female' => L10n::t('Currently Female'),
234                         'Mostly Male'      => L10n::t('Mostly Male'),
235                         'Mostly Female'    => L10n::t('Mostly Female'),
236                         'Transgender'      => L10n::t('Transgender'),
237                         'Intersex'         => L10n::t('Intersex'),
238                         'Transsexual'      => L10n::t('Transsexual'),
239                         'Hermaphrodite'    => L10n::t('Hermaphrodite'),
240                         'Neuter'           => L10n::t('Neuter'),
241                         'Non-specific'     => L10n::t('Non-specific'),
242                         'Other'            => L10n::t('Other'),
243                         'Undecided'        => L10n::t('Undecided'),
244                 ];
245
246                 Hook::callAll('gender_selector', $select);
247
248                 $o .= "<select name=\"gender$suffix\" id=\"gender-select$suffix\" size=\"1\" >";
249                 foreach ($select as $neutral => $selection) {
250                         if ($selection !== 'NOTRANSLATION') {
251                                 $selected = (($neutral == $current) ? ' selected="selected" ' : '');
252                                 $o .= "<option value=\"$neutral\" $selected >$selection</option>";
253                         }
254                 }
255                 $o .= '</select>';
256                 return $o;
257         }
258
259         /**
260          * @param string $current optional, default empty
261          * @param string $suffix  optionsl, default empty
262          * @return string
263          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
264          */
265         public static function sexualPreference($current = "", $suffix = "")
266         {
267                 $o = '';
268                 $select = [
269                         ''              => L10n::t('No answer'),
270                         'Males'         => L10n::t('Males'),
271                         'Females'       => L10n::t('Females'),
272                         'Gay'           => L10n::t('Gay'),
273                         'Lesbian'       => L10n::t('Lesbian'),
274                         'No Preference' => L10n::t('No Preference'),
275                         'Bisexual'      => L10n::t('Bisexual'),
276                         'Autosexual'    => L10n::t('Autosexual'),
277                         'Abstinent'     => L10n::t('Abstinent'),
278                         'Virgin'        => L10n::t('Virgin'),
279                         'Deviant'       => L10n::t('Deviant'),
280                         'Fetish'        => L10n::t('Fetish'),
281                         'Oodles'        => L10n::t('Oodles'),
282                         'Nonsexual'     => L10n::t('Nonsexual'),
283                 ];
284
285                 Hook::callAll('sexpref_selector', $select);
286
287                 $o .= "<select name=\"sexual$suffix\" id=\"sexual-select$suffix\" size=\"1\" >";
288                 foreach ($select as $neutral => $selection) {
289                         if ($selection !== 'NOTRANSLATION') {
290                                 $selected = (($neutral == $current) ? ' selected="selected" ' : '');
291                                 $o .= "<option value=\"$neutral\" $selected >$selection</option>";
292                         }
293                 }
294                 $o .= '</select>';
295                 return $o;
296         }
297
298         /**
299          * @param string $current optional, default empty
300          * @return string
301          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
302          */
303         public static function maritalStatus($current = "")
304         {
305                 $o = '';
306                 $select = [
307                         ''                     => L10n::t('No answer'),
308                         'Single'               => L10n::t('Single'),
309                         'Lonely'               => L10n::t('Lonely'),
310                         'In a relation'        => L10n::t('In a relation'),
311                         'Has crush'            => L10n::t('Has crush'),
312                         'Infatuated'           => L10n::t('Infatuated'),
313                         'Dating'               => L10n::t('Dating'),
314                         'Unfaithful'           => L10n::t('Unfaithful'),
315                         'Sex Addict'           => L10n::t('Sex Addict'),
316                         'Friends'              => L10n::t('Friends'),
317                         'Friends/Benefits'     => L10n::t('Friends/Benefits'),
318                         'Casual'               => L10n::t('Casual'),
319                         'Engaged'              => L10n::t('Engaged'),
320                         'Married'              => L10n::t('Married'),
321                         'Imaginarily married'  => L10n::t('Imaginarily married'),
322                         'Partners'             => L10n::t('Partners'),
323                         'Cohabiting'           => L10n::t('Cohabiting'),
324                         'Common law'           => L10n::t('Common law'),
325                         'Happy'                => L10n::t('Happy'),
326                         'Not looking'          => L10n::t('Not looking'),
327                         'Swinger'              => L10n::t('Swinger'),
328                         'Betrayed'             => L10n::t('Betrayed'),
329                         'Separated'            => L10n::t('Separated'),
330                         'Unstable'             => L10n::t('Unstable'),
331                         'Divorced'             => L10n::t('Divorced'),
332                         'Imaginarily divorced' => L10n::t('Imaginarily divorced'),
333                         'Widowed'              => L10n::t('Widowed'),
334                         'Uncertain'            => L10n::t('Uncertain'),
335                         'It\'s complicated'    => L10n::t('It\'s complicated'),
336                         'Don\'t care'          => L10n::t('Don\'t care'),
337                         'Ask me'               => L10n::t('Ask me'),
338                 ];
339
340                 Hook::callAll('marital_selector', $select);
341
342                 $o .= '<select name="marital" id="marital-select" size="1" >';
343                 foreach ($select as $neutral => $selection) {
344                         if ($selection !== 'NOTRANSLATION') {
345                                 $selected = (($neutral == $current) ? ' selected="selected" ' : '');
346                                 $o .= "<option value=\"$neutral\" $selected >$selection</option>";
347                         }
348                 }
349                 $o .= '</select>';
350                 return $o;
351         }
352 }