]> git.mxchange.org Git - friendica.git/blob - src/Model/Profile.php
Notifies => Notifications
[friendica.git] / src / Model / Profile.php
1 <?php
2 /**
3  * @file src/Model/Profile.php
4  */
5 namespace Friendica\Model;
6
7 use Friendica\App;
8 use Friendica\Content\Feature;
9 use Friendica\Content\ForumManager;
10 use Friendica\Content\Text\BBCode;
11 use Friendica\Content\Text\HTML;
12 use Friendica\Content\Widget\ContactBlock;
13 use Friendica\Core\Cache\Duration;
14 use Friendica\Core\Hook;
15 use Friendica\Core\Logger;
16 use Friendica\Core\Protocol;
17 use Friendica\Core\Renderer;
18 use Friendica\Core\Session;
19 use Friendica\Core\System;
20 use Friendica\Database\DBA;
21 use Friendica\DI;
22 use Friendica\Protocol\Activity;
23 use Friendica\Protocol\Diaspora;
24 use Friendica\Util\DateTimeFormat;
25 use Friendica\Util\Network;
26 use Friendica\Util\Proxy as ProxyUtils;
27 use Friendica\Util\Strings;
28 use Friendica\Util\Temporal;
29
30 class Profile
31 {
32         /**
33          * Returns default profile for a given user id
34          *
35          * @param integer User ID
36          *
37          * @return array Profile data
38          * @throws \Exception
39          */
40         public static function getByUID($uid)
41         {
42                 $profile = DBA::selectFirst('profile', [], ['uid' => $uid, 'is-default' => true]);
43                 return $profile;
44         }
45
46         /**
47          * Returns default profile for a given user ID and ID
48          *
49          * @param int $uid The contact ID
50          * @param int $id The contact owner ID
51          * @param array $fields The selected fields
52          *
53          * @return array Profile data for the ID
54          * @throws \Exception
55          */
56         public static function getById(int $uid, int $id, array $fields = [])
57         {
58                 return DBA::selectFirst('profile', $fields, ['uid' => $uid, 'id' => $id]);
59         }
60
61         /**
62          * Returns profile data for the contact owner
63          *
64          * @param int $uid The User ID
65          * @param array $fields The fields to retrieve
66          *
67          * @return array Array of profile data
68          * @throws \Exception
69          */
70         public static function getListByUser(int $uid, array $fields = [])
71         {
72                 return DBA::selectToArray('profile', $fields, ['uid' => $uid]);
73         }
74
75         /**
76          * Returns a formatted location string from the given profile array
77          *
78          * @param array $profile Profile array (Generated from the "profile" table)
79          *
80          * @return string Location string
81          */
82         public static function formatLocation(array $profile)
83         {
84                 $location = '';
85
86                 if (!empty($profile['locality'])) {
87                         $location .= $profile['locality'];
88                 }
89
90                 if (!empty($profile['region']) && (($profile['locality'] ?? '') != $profile['region'])) {
91                         if ($location) {
92                                 $location .= ', ';
93                         }
94
95                         $location .= $profile['region'];
96                 }
97
98                 if (!empty($profile['country-name'])) {
99                         if ($location) {
100                                 $location .= ', ';
101                         }
102
103                         $location .= $profile['country-name'];
104                 }
105
106                 return $location;
107         }
108
109         /**
110          * Loads a profile into the page sidebar.
111          *
112          * The function requires a writeable copy of the main App structure, and the nickname
113          * of a registered local account.
114          *
115          * If the viewer is an authenticated remote viewer, the profile displayed is the
116          * one that has been configured for his/her viewing in the Contact manager.
117          * Passing a non-zero profile ID can also allow a preview of a selected profile
118          * by the owner.
119          *
120          * Profile information is placed in the App structure for later retrieval.
121          * Honours the owner's chosen theme for display.
122          *
123          * @attention Should only be run in the _init() functions of a module. That ensures that
124          *      the theme is chosen before the _init() function of a theme is run, which will usually
125          *      load a lot of theme-specific content
126          *
127          * @param App     $a
128          * @param string  $nickname     string
129          * @param int     $profile_id   int
130          * @param array   $profiledata  array
131          * @param boolean $show_connect Show connect link
132          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
133          * @throws \ImagickException
134          */
135         public static function load(App $a, $nickname, $profile_id = 0, array $profiledata = [], $show_connect = true)
136         {
137                 $user = DBA::selectFirst('user', ['uid'], ['nickname' => $nickname, 'account_removed' => false]);
138
139                 if (!DBA::isResult($user) && empty($profiledata)) {
140                         Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);
141                         return;
142                 }
143
144                 if (count($profiledata) > 0) {
145                         // Ensure to have a "nickname" field
146                         if (empty($profiledata['nickname']) && !empty($profiledata['nick'])) {
147                                 $profiledata['nickname'] = $profiledata['nick'];
148                         }
149
150                         // Add profile data to sidebar
151                         DI::page()['aside'] .= self::sidebar($a, $profiledata, true, $show_connect);
152
153                         if (!DBA::isResult($user)) {
154                                 return;
155                         }
156                 }
157
158                 $profile = self::getByNickname($nickname, $user['uid'], $profile_id);
159
160                 if (empty($profile) && empty($profiledata)) {
161                         Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);
162                         return;
163                 }
164
165                 if (empty($profile)) {
166                         $profile = ['uid' => 0, 'is-default' => false,'name' => $nickname];
167                 }
168
169                 // fetch user tags if this isn't the default profile
170
171                 if (!$profile['is-default']) {
172                         $condition = ['uid' => $profile['uid'], 'is-default' => true];
173                         $profile_id = DBA::selectFirst('profile', ['pub_keywords'], $condition);
174                         if (DBA::isResult($profile_id)) {
175                                 $profile['pub_keywords'] = $profile_id['pub_keywords'];
176                         }
177                 }
178
179                 $a->profile = $profile;
180                 $a->profile_uid = $profile['uid'];
181
182                 $a->profile['mobile-theme'] = DI::pConfig()->get($a->profile['uid'], 'system', 'mobile_theme');
183                 $a->profile['network'] = Protocol::DFRN;
184
185                 DI::page()['title'] = $a->profile['name'] . ' @ ' . DI::config()->get('config', 'sitename');
186
187                 if (!$profiledata && !DI::pConfig()->get(local_user(), 'system', 'always_my_theme')) {
188                         $a->setCurrentTheme($a->profile['theme']);
189                         $a->setCurrentMobileTheme($a->profile['mobile-theme']);
190                 }
191
192                 /*
193                 * load/reload current theme info
194                 */
195
196                 Renderer::setActiveTemplateEngine(); // reset the template engine to the default in case the user's theme doesn't specify one
197
198                 $theme_info_file = 'view/theme/' . $a->getCurrentTheme() . '/theme.php';
199                 if (file_exists($theme_info_file)) {
200                         require_once $theme_info_file;
201                 }
202
203                 if (local_user() && local_user() == $a->profile['uid'] && $profiledata) {
204                         DI::page()['aside'] .= Renderer::replaceMacros(
205                                 Renderer::getMarkupTemplate('profile_edlink.tpl'),
206                                 [
207                                         '$editprofile' => DI::l10n()->t('Edit profile'),
208                                         '$profid' => $a->profile['id']
209                                 ]
210                         );
211                 }
212
213                 $block = ((DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) ? true : false);
214
215                 /**
216                  * @todo
217                  * By now, the contact block isn't shown, when a different profile is given
218                  * But: When this profile was on the same server, then we could display the contacts
219                  */
220                 if (!$profiledata) {
221                         DI::page()['aside'] .= self::sidebar($a, $a->profile, $block, $show_connect);
222                 }
223
224                 return;
225         }
226
227         /**
228          * Get all profile data of a local user
229          *
230          * If the viewer is an authenticated remote viewer, the profile displayed is the
231          * one that has been configured for his/her viewing in the Contact manager.
232          * Passing a non-zero profile ID can also allow a preview of a selected profile
233          * by the owner
234          *
235          * Includes all available profile data
236          *
237          * @param string $nickname   nick
238          * @param int    $uid        uid
239          * @param int    $profile_id ID of the profile
240          * @return array
241          * @throws \Exception
242          */
243         public static function getByNickname($nickname, $uid = 0, $profile_id = 0)
244         {
245                 if (!empty(Session::getRemoteContactID($uid))) {
246                         $contact = DBA::selectFirst('contact', ['profile-id'], ['id' => Session::getRemoteContactID($uid)]);
247                         if (DBA::isResult($contact)) {
248                                 $profile_id = $contact['profile-id'];
249                         }
250                 }
251
252                 $profile = null;
253
254                 if ($profile_id) {
255                         $profile = DBA::fetchFirst(
256                                 "SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` AS `contact_photo`,
257                                         `contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`,
258                                         `profile`.*,
259                                         `contact`.`avatar-date` AS picdate, `contact`.`addr`, `contact`.`url`, `user`.*
260                                 FROM `profile`
261                                 INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
262                                 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
263                                 WHERE `user`.`nickname` = ? AND `profile`.`id` = ? LIMIT 1",
264                                 $nickname,
265                                 intval($profile_id)
266                         );
267                 }
268                 if (!DBA::isResult($profile)) {
269                         $profile = DBA::fetchFirst(
270                                 "SELECT `contact`.`id` AS `contact_id`, `contact`.`photo` as `contact_photo`,
271                                         `contact`.`thumb` AS `contact_thumb`, `contact`.`micro` AS `contact_micro`,
272                                         `profile`.*,
273                                         `contact`.`avatar-date` AS picdate, `contact`.`addr`, `contact`.`url`, `user`.*
274                                 FROM `profile`
275                                 INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid` AND `contact`.`self`
276                                 INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
277                                 WHERE `user`.`nickname` = ? AND `profile`.`is-default` LIMIT 1",
278                                 $nickname
279                         );
280                 }
281
282                 return $profile;
283         }
284
285         /**
286          * Formats a profile for display in the sidebar.
287          *
288          * It is very difficult to templatise the HTML completely
289          * because of all the conditional logic.
290          *
291          * @param array   $profile
292          * @param int     $block
293          * @param boolean $show_connect Show connect link
294          *
295          * @return string HTML sidebar module
296          *
297          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
298          * @throws \ImagickException
299          * @note  Returns empty string if passed $profile is wrong type or not populated
300          *
301          * @hooks 'profile_sidebar_enter'
302          *      array $profile - profile data
303          * @hooks 'profile_sidebar'
304          *      array $arr
305          */
306         private static function sidebar(App $a, $profile, $block = 0, $show_connect = true)
307         {
308                 $o = '';
309                 $location = false;
310
311                 // This function can also use contact information in $profile
312                 $is_contact = !empty($profile['cid']);
313
314                 if (!is_array($profile) && !count($profile)) {
315                         return $o;
316                 }
317
318                 $profile['picdate'] = urlencode($profile['picdate'] ?? '');
319
320                 if (($profile['network'] != '') && ($profile['network'] != Protocol::DFRN)) {
321                         $profile['network_link'] = Strings::formatNetworkName($profile['network'], $profile['url']);
322                 } else {
323                         $profile['network_link'] = '';
324                 }
325
326                 Hook::callAll('profile_sidebar_enter', $profile);
327
328                 if (isset($profile['url'])) {
329                         $profile_url = $profile['url'];
330                 } else {
331                         $profile_url = DI::baseUrl()->get() . '/profile/' . $profile['nickname'];
332                 }
333
334                 $follow_link = null;
335                 $unfollow_link = null;
336                 $subscribe_feed_link = null;
337                 $wallmessage_link = null;
338
339
340
341                 $visitor_contact = [];
342                 if (!empty($profile['uid']) && self::getMyURL()) {
343                         $visitor_contact = Contact::selectFirst(['rel'], ['uid' => $profile['uid'], 'nurl' => Strings::normaliseLink(self::getMyURL())]);
344                 }
345
346                 $profile_contact = [];
347                 if (!empty($profile['cid']) && self::getMyURL()) {
348                         $profile_contact = Contact::selectFirst(['rel'], ['id' => $profile['cid']]);
349                 }
350
351                 $profile_is_dfrn = $profile['network'] == Protocol::DFRN;
352                 $profile_is_native = in_array($profile['network'], Protocol::NATIVE_SUPPORT);
353                 $local_user_is_self = local_user() && local_user() == ($profile['uid'] ?? 0);
354                 $visitor_is_authenticated = (bool)self::getMyURL();
355                 $visitor_is_following =
356                         in_array($visitor_contact['rel'] ?? 0, [Contact::FOLLOWER, Contact::FRIEND])
357                         || in_array($profile_contact['rel'] ?? 0, [Contact::SHARING, Contact::FRIEND]);
358                 $visitor_is_followed =
359                         in_array($visitor_contact['rel'] ?? 0, [Contact::SHARING, Contact::FRIEND])
360                         || in_array($profile_contact['rel'] ?? 0, [Contact::FOLLOWER, Contact::FRIEND]);
361                 $visitor_base_path = self::getMyURL() ? preg_replace('=/profile/(.*)=ism', '', self::getMyURL()) : '';
362
363                 if (!$local_user_is_self && $show_connect) {
364                         if (!$visitor_is_authenticated) {
365                                 if (!empty($profile['nickname'])) {
366                                         $follow_link = 'dfrn_request/' . $profile['nickname'];
367                                 }
368                         } elseif ($profile_is_native) {
369                                 if ($visitor_is_following) {
370                                         $unfollow_link = $visitor_base_path . '/unfollow?url=' . urlencode($profile_url);
371                                 } else {
372                                         $follow_link =  $visitor_base_path .'/follow?url=' . urlencode($profile_url);
373                                 }
374                         }
375
376                         if ($profile_is_dfrn) {
377                                 $subscribe_feed_link = 'dfrn_poll/' . $profile['nickname'];
378                         }
379
380                         if (Contact::canReceivePrivateMessages($profile)) {
381                                 if ($visitor_is_followed || $visitor_is_following) {
382                                         $wallmessage_link = $visitor_base_path . '/message/new/' . base64_encode($profile['addr'] ?? '');
383                                 } elseif ($visitor_is_authenticated && !empty($profile['unkmail'])) {
384                                         $wallmessage_link = 'wallmessage/' . $profile['nickname'];
385                                 }
386                         }
387                 }
388
389                 // show edit profile to yourself
390                 if (!$is_contact && $local_user_is_self) {
391                         if (Feature::isEnabled(local_user(), 'multi_profiles')) {
392                                 $profile['edit'] = [DI::baseUrl() . '/profiles', DI::l10n()->t('Profiles'), '', DI::l10n()->t('Manage/edit profiles')];
393                                 $r = q(
394                                         "SELECT * FROM `profile` WHERE `uid` = %d",
395                                         local_user()
396                                 );
397
398                                 $profile['menu'] = [
399                                         'chg_photo' => DI::l10n()->t('Change profile photo'),
400                                         'cr_new' => DI::l10n()->t('Create New Profile'),
401                                         'entries' => [],
402                                 ];
403
404                                 if (DBA::isResult($r)) {
405                                         foreach ($r as $rr) {
406                                                 $profile['menu']['entries'][] = [
407                                                         'photo' => $rr['thumb'],
408                                                         'id' => $rr['id'],
409                                                         'alt' => DI::l10n()->t('Profile Image'),
410                                                         'profile_name' => $rr['profile-name'],
411                                                         'isdefault' => $rr['is-default'],
412                                                         'visibile_to_everybody' => DI::l10n()->t('visible to everybody'),
413                                                         'edit_visibility' => DI::l10n()->t('Edit visibility'),
414                                                 ];
415                                         }
416                                 }
417                         } else {
418                                 $profile['edit'] = [DI::baseUrl() . '/profiles/' . $profile['id'], DI::l10n()->t('Edit profile'), '', DI::l10n()->t('Edit profile')];
419                                 $profile['menu'] = [
420                                         'chg_photo' => DI::l10n()->t('Change profile photo'),
421                                         'cr_new' => null,
422                                         'entries' => [],
423                                 ];
424                         }
425                 }
426
427                 // Fetch the account type
428                 $account_type = Contact::getAccountType($profile);
429
430                 if (!empty($profile['address'])
431                         || !empty($profile['location'])
432                         || !empty($profile['locality'])
433                         || !empty($profile['region'])
434                         || !empty($profile['postal-code'])
435                         || !empty($profile['country-name'])
436                 ) {
437                         $location = DI::l10n()->t('Location:');
438                 }
439
440                 $gender   = !empty($profile['gender'])   ? DI::l10n()->t('Gender:')   : false;
441                 $marital  = !empty($profile['marital'])  ? DI::l10n()->t('Status:')   : false;
442                 $homepage = !empty($profile['homepage']) ? DI::l10n()->t('Homepage:') : false;
443                 $about    = !empty($profile['about'])    ? DI::l10n()->t('About:')    : false;
444                 $xmpp     = !empty($profile['xmpp'])     ? DI::l10n()->t('XMPP:')     : false;
445
446                 if ((!empty($profile['hidewall']) || $block) && !Session::isAuthenticated()) {
447                         $location = $gender = $marital = $homepage = $about = false;
448                 }
449
450                 $split_name = Diaspora::splitName($profile['name']);
451                 $firstname = $split_name['first'];
452                 $lastname = $split_name['last'];
453
454                 if (!empty($profile['guid'])) {
455                         $diaspora = [
456                                 'guid' => $profile['guid'],
457                                 'podloc' => DI::baseUrl(),
458                                 'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false'),
459                                 'nickname' => $profile['nickname'],
460                                 'fullname' => $profile['name'],
461                                 'firstname' => $firstname,
462                                 'lastname' => $lastname,
463                                 'photo300' => $profile['contact_photo'] ?? '',
464                                 'photo100' => $profile['contact_thumb'] ?? '',
465                                 'photo50' => $profile['contact_micro'] ?? '',
466                         ];
467                 } else {
468                         $diaspora = false;
469                 }
470
471                 $contact_block = '';
472                 $updated = '';
473                 $contact_count = 0;
474                 if (!$block) {
475                         $contact_block = ContactBlock::getHTML($a->profile);
476
477                         if (is_array($a->profile) && !$a->profile['hide-friends']) {
478                                 $r = q(
479                                         "SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
480                                         intval($a->profile['uid'])
481                                 );
482                                 if (DBA::isResult($r)) {
483                                         $updated = date('c', strtotime($r[0]['updated']));
484                                 }
485
486                                 $contact_count = DBA::count('contact', [
487                                         'uid' => $profile['uid'],
488                                         'self' => false,
489                                         'blocked' => false,
490                                         'pending' => false,
491                                         'hidden' => false,
492                                         'archive' => false,
493                                         'network' => Protocol::FEDERATED,
494                                 ]);
495                         }
496                 }
497
498                 $p = [];
499                 foreach ($profile as $k => $v) {
500                         $k = str_replace('-', '_', $k);
501                         $p[$k] = $v;
502                 }
503
504                 if (isset($p['about'])) {
505                         $p['about'] = BBCode::convert($p['about']);
506                 }
507
508                 if (empty($p['address']) && !empty($p['location'])) {
509                         $p['address'] = $p['location'];
510                 }
511
512                 if (isset($p['address'])) {
513                         $p['address'] = BBCode::convert($p['address']);
514                 }
515
516                 if (isset($p['gender'])) {
517                         $p['gender'] = DI::l10n()->t($p['gender']);
518                 }
519
520                 if (isset($p['marital'])) {
521                         $p['marital'] = DI::l10n()->t($p['marital']);
522                 }
523
524                 if (isset($p['photo'])) {
525                         $p['photo'] = ProxyUtils::proxifyUrl($p['photo'], false, ProxyUtils::SIZE_SMALL);
526                 }
527
528                 $p['url'] = Contact::magicLink(($p['url'] ?? '') ?: $profile_url);
529
530                 $tpl = Renderer::getMarkupTemplate('profile/vcard.tpl');
531                 $o .= Renderer::replaceMacros($tpl, [
532                         '$profile' => $p,
533                         '$xmpp' => $xmpp,
534                         '$follow' => DI::l10n()->t('Follow'),
535                         '$follow_link' => $follow_link,
536                         '$unfollow' => DI::l10n()->t('Unfollow'),
537                         '$unfollow_link' => $unfollow_link,
538                         '$subscribe_feed' => DI::l10n()->t('Atom feed'),
539                         '$subscribe_feed_link' => $subscribe_feed_link,
540                         '$wallmessage' => DI::l10n()->t('Message'),
541                         '$wallmessage_link' => $wallmessage_link,
542                         '$account_type' => $account_type,
543                         '$location' => $location,
544                         '$gender' => $gender,
545                         '$marital' => $marital,
546                         '$homepage' => $homepage,
547                         '$about' => $about,
548                         '$network' => DI::l10n()->t('Network:'),
549                         '$contacts' => $contact_count,
550                         '$updated' => $updated,
551                         '$diaspora' => $diaspora,
552                         '$contact_block' => $contact_block,
553                 ]);
554
555                 $arr = ['profile' => &$profile, 'entry' => &$o];
556
557                 Hook::callAll('profile_sidebar', $arr);
558
559                 return $o;
560         }
561
562         public static function getBirthdays()
563         {
564                 $a = DI::app();
565                 $o = '';
566
567                 if (!local_user() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
568                         return $o;
569                 }
570
571                 /*
572                 * $mobile_detect = new Mobile_Detect();
573                 * $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
574                 *               if ($is_mobile)
575                 *                       return $o;
576                 */
577
578                 $bd_format = DI::l10n()->t('g A l F d'); // 8 AM Friday January 18
579                 $bd_short = DI::l10n()->t('F d');
580
581                 $cachekey = 'get_birthdays:' . local_user();
582                 $r = DI::cache()->get($cachekey);
583                 if (is_null($r)) {
584                         $s = DBA::p(
585                                 "SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
586                                 INNER JOIN `contact`
587                                         ON `contact`.`id` = `event`.`cid`
588                                         AND (`contact`.`rel` = ? OR `contact`.`rel` = ?)
589                                         AND NOT `contact`.`pending`
590                                         AND NOT `contact`.`hidden`
591                                         AND NOT `contact`.`blocked`
592                                         AND NOT `contact`.`archive`
593                                         AND NOT `contact`.`deleted`
594                                 WHERE `event`.`uid` = ? AND `type` = 'birthday' AND `start` < ? AND `finish` > ?
595                                 ORDER BY `start` ASC ",
596                                 Contact::SHARING,
597                                 Contact::FRIEND,
598                                 local_user(),
599                                 DateTimeFormat::utc('now + 6 days'),
600                                 DateTimeFormat::utcNow()
601                         );
602                         if (DBA::isResult($s)) {
603                                 $r = DBA::toArray($s);
604                                 DI::cache()->set($cachekey, $r, Duration::HOUR);
605                         }
606                 }
607
608                 $total = 0;
609                 $classtoday = '';
610                 if (DBA::isResult($r)) {
611                         $now = strtotime('now');
612                         $cids = [];
613
614                         $istoday = false;
615                         foreach ($r as $rr) {
616                                 if (strlen($rr['name'])) {
617                                         $total ++;
618                                 }
619                                 if ((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) {
620                                         $istoday = true;
621                                 }
622                         }
623                         $classtoday = $istoday ? ' birthday-today ' : '';
624                         if ($total) {
625                                 foreach ($r as &$rr) {
626                                         if (!strlen($rr['name'])) {
627                                                 continue;
628                                         }
629
630                                         // avoid duplicates
631
632                                         if (in_array($rr['cid'], $cids)) {
633                                                 continue;
634                                         }
635                                         $cids[] = $rr['cid'];
636
637                                         $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
638
639                                         $rr['link'] = Contact::magicLink($rr['url']);
640                                         $rr['title'] = $rr['name'];
641                                         $rr['date'] = DI::l10n()->getDay(DateTimeFormat::convert($rr['start'], $a->timezone, 'UTC', $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . DI::l10n()->t('[today]') : '');
642                                         $rr['startime'] = null;
643                                         $rr['today'] = $today;
644                                 }
645                         }
646                 }
647                 $tpl = Renderer::getMarkupTemplate('birthdays_reminder.tpl');
648                 return Renderer::replaceMacros($tpl, [
649                         '$classtoday' => $classtoday,
650                         '$count' => $total,
651                         '$event_reminders' => DI::l10n()->t('Birthday Reminders'),
652                         '$event_title' => DI::l10n()->t('Birthdays this week:'),
653                         '$events' => $r,
654                         '$lbr' => '{', // raw brackets mess up if/endif macro processing
655                         '$rbr' => '}'
656                 ]);
657         }
658
659         public static function getEventsReminderHTML()
660         {
661                 $a = DI::app();
662                 $o = '';
663
664                 if (!local_user() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
665                         return $o;
666                 }
667
668                 /*
669                 *       $mobile_detect = new Mobile_Detect();
670                 *               $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
671                 *               if ($is_mobile)
672                 *                       return $o;
673                 */
674
675                 $bd_format = DI::l10n()->t('g A l F d'); // 8 AM Friday January 18
676                 $classtoday = '';
677
678                 $condition = ["`uid` = ? AND `type` != 'birthday' AND `start` < ? AND `start` >= ?",
679                         local_user(), DateTimeFormat::utc('now + 7 days'), DateTimeFormat::utc('now - 1 days')];
680                 $s = DBA::select('event', [], $condition, ['order' => ['start']]);
681
682                 $r = [];
683
684                 if (DBA::isResult($s)) {
685                         $istoday = false;
686                         $total = 0;
687
688                         while ($rr = DBA::fetch($s)) {
689                                 $condition = ['parent-uri' => $rr['uri'], 'uid' => $rr['uid'], 'author-id' => public_contact(),
690                                         'activity' => [Item::activityToIndex( Activity::ATTEND), Item::activityToIndex(Activity::ATTENDMAYBE)],
691                                         'visible' => true, 'deleted' => false];
692                                 if (!Item::exists($condition)) {
693                                         continue;
694                                 }
695
696                                 if (strlen($rr['summary'])) {
697                                         $total++;
698                                 }
699
700                                 $strt = DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC', 'UTC', 'Y-m-d');
701                                 if ($strt === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
702                                         $istoday = true;
703                                 }
704
705                                 $title = strip_tags(html_entity_decode(BBCode::convert($rr['summary']), ENT_QUOTES, 'UTF-8'));
706
707                                 if (strlen($title) > 35) {
708                                         $title = substr($title, 0, 32) . '... ';
709                                 }
710
711                                 $description = substr(strip_tags(BBCode::convert($rr['desc'])), 0, 32) . '... ';
712                                 if (!$description) {
713                                         $description = DI::l10n()->t('[No description]');
714                                 }
715
716                                 $strt = DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC');
717
718                                 if (substr($strt, 0, 10) < DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
719                                         continue;
720                                 }
721
722                                 $today = ((substr($strt, 0, 10) === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) ? true : false);
723
724                                 $rr['title'] = $title;
725                                 $rr['description'] = $description;
726                                 $rr['date'] = DI::l10n()->getDay(DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC', 'UTC', $bd_format)) . (($today) ? ' ' . DI::l10n()->t('[today]') : '');
727                                 $rr['startime'] = $strt;
728                                 $rr['today'] = $today;
729
730                                 $r[] = $rr;
731                         }
732                         DBA::close($s);
733                         $classtoday = (($istoday) ? 'event-today' : '');
734                 }
735                 $tpl = Renderer::getMarkupTemplate('events_reminder.tpl');
736                 return Renderer::replaceMacros($tpl, [
737                         '$classtoday' => $classtoday,
738                         '$count' => count($r),
739                         '$event_reminders' => DI::l10n()->t('Event Reminders'),
740                         '$event_title' => DI::l10n()->t('Upcoming events the next 7 days:'),
741                         '$events' => $r,
742                 ]);
743         }
744
745         public static function getAdvanced(App $a)
746         {
747                 $uid = intval($a->profile['uid']);
748
749                 if ($a->profile['name']) {
750                         $profile = [];
751
752                         $profile['fullname'] = [DI::l10n()->t('Full Name:'), $a->profile['name']];
753
754                         if (Feature::isEnabled($uid, 'profile_membersince')) {
755                                 $profile['membersince'] = [DI::l10n()->t('Member since:'), DateTimeFormat::local($a->profile['register_date'])];
756                         }
757
758                         if ($a->profile['gender']) {
759                                 $profile['gender'] = [DI::l10n()->t('Gender:'), DI::l10n()->t($a->profile['gender'])];
760                         }
761
762                         if (!empty($a->profile['dob']) && $a->profile['dob'] > DBA::NULL_DATE) {
763                                 $year_bd_format = DI::l10n()->t('j F, Y');
764                                 $short_bd_format = DI::l10n()->t('j F');
765
766                                 $val = DI::l10n()->getDay(
767                                         intval($a->profile['dob']) ?
768                                                 DateTimeFormat::utc($a->profile['dob'] . ' 00:00 +00:00', $year_bd_format)
769                                                 : DateTimeFormat::utc('2001-' . substr($a->profile['dob'], 5) . ' 00:00 +00:00', $short_bd_format)
770                                 );
771
772                                 $profile['birthday'] = [DI::l10n()->t('Birthday:'), $val];
773                         }
774
775                         if (!empty($a->profile['dob'])
776                                 && $a->profile['dob'] > DBA::NULL_DATE
777                                 && $age = Temporal::getAgeByTimezone($a->profile['dob'], $a->profile['timezone'])
778                         ) {
779                                 $profile['age'] = [DI::l10n()->t('Age: ') , DI::l10n()->tt('%d year old', '%d years old', $age)];
780                         }
781
782                         if ($a->profile['marital']) {
783                                 $profile['marital'] = [DI::l10n()->t('Status:'), DI::l10n()->t($a->profile['marital'])];
784                         }
785
786                         /// @TODO Maybe use x() here, plus below?
787                         if ($a->profile['with']) {
788                                 $profile['marital']['with'] = $a->profile['with'];
789                         }
790
791                         if (strlen($a->profile['howlong']) && $a->profile['howlong'] > DBA::NULL_DATETIME) {
792                                 $profile['howlong'] = Temporal::getRelativeDate($a->profile['howlong'], DI::l10n()->t('for %1$d %2$s'));
793                         }
794
795                         if ($a->profile['sexual']) {
796                                 $profile['sexual'] = [DI::l10n()->t('Sexual Preference:'), DI::l10n()->t($a->profile['sexual'])];
797                         }
798
799                         if ($a->profile['homepage']) {
800                                 $profile['homepage'] = [DI::l10n()->t('Homepage:'), HTML::toLink($a->profile['homepage'])];
801                         }
802
803                         if ($a->profile['hometown']) {
804                                 $profile['hometown'] = [DI::l10n()->t('Hometown:'), HTML::toLink($a->profile['hometown'])];
805                         }
806
807                         if ($a->profile['pub_keywords']) {
808                                 $profile['pub_keywords'] = [DI::l10n()->t('Tags:'), $a->profile['pub_keywords']];
809                         }
810
811                         if ($a->profile['politic']) {
812                                 $profile['politic'] = [DI::l10n()->t('Political Views:'), $a->profile['politic']];
813                         }
814
815                         if ($a->profile['religion']) {
816                                 $profile['religion'] = [DI::l10n()->t('Religion:'), $a->profile['religion']];
817                         }
818
819                         if ($txt = BBCode::convert($a->profile['about'])) {
820                                 $profile['about'] = [DI::l10n()->t('About:'), $txt];
821                         }
822
823                         if ($txt = BBCode::convert($a->profile['interest'])) {
824                                 $profile['interest'] = [DI::l10n()->t('Hobbies/Interests:'), $txt];
825                         }
826
827                         if ($txt = BBCode::convert($a->profile['likes'])) {
828                                 $profile['likes'] = [DI::l10n()->t('Likes:'), $txt];
829                         }
830
831                         if ($txt = BBCode::convert($a->profile['dislikes'])) {
832                                 $profile['dislikes'] = [DI::l10n()->t('Dislikes:'), $txt];
833                         }
834
835                         if ($txt = BBCode::convert($a->profile['contact'])) {
836                                 $profile['contact'] = [DI::l10n()->t('Contact information and Social Networks:'), $txt];
837                         }
838
839                         if ($txt = BBCode::convert($a->profile['music'])) {
840                                 $profile['music'] = [DI::l10n()->t('Musical interests:'), $txt];
841                         }
842
843                         if ($txt = BBCode::convert($a->profile['book'])) {
844                                 $profile['book'] = [DI::l10n()->t('Books, literature:'), $txt];
845                         }
846
847                         if ($txt = BBCode::convert($a->profile['tv'])) {
848                                 $profile['tv'] = [DI::l10n()->t('Television:'), $txt];
849                         }
850
851                         if ($txt = BBCode::convert($a->profile['film'])) {
852                                 $profile['film'] = [DI::l10n()->t('Film/dance/culture/entertainment:'), $txt];
853                         }
854
855                         if ($txt = BBCode::convert($a->profile['romance'])) {
856                                 $profile['romance'] = [DI::l10n()->t('Love/Romance:'), $txt];
857                         }
858
859                         if ($txt = BBCode::convert($a->profile['work'])) {
860                                 $profile['work'] = [DI::l10n()->t('Work/employment:'), $txt];
861                         }
862
863                         if ($txt = BBCode::convert($a->profile['education'])) {
864                                 $profile['education'] = [DI::l10n()->t('School/education:'), $txt];
865                         }
866
867                         //show subcribed forum if it is enabled in the usersettings
868                         if (Feature::isEnabled($uid, 'forumlist_profile')) {
869                                 $profile['forumlist'] = [DI::l10n()->t('Forums:'), ForumManager::profileAdvanced($uid)];
870                         }
871
872                         if ($a->profile['uid'] == local_user()) {
873                                 $profile['edit'] = [DI::baseUrl() . '/profiles/' . $a->profile['id'], DI::l10n()->t('Edit profile'), '', DI::l10n()->t('Edit profile')];
874                         }
875
876                         $tpl = Renderer::getMarkupTemplate('profile/advanced.tpl');
877                         return Renderer::replaceMacros($tpl, [
878                                 '$title' => DI::l10n()->t('Profile'),
879                                 '$basic' => DI::l10n()->t('Basic'),
880                                 '$advanced' => DI::l10n()->t('Advanced'),
881                                 '$profile' => $profile
882                         ]);
883                 }
884
885                 return '';
886         }
887
888     /**
889      * @param App    $a
890      * @param string $current
891      * @param bool   $is_owner
892      * @param string $nickname
893      * @return string
894      * @throws \Friendica\Network\HTTPException\InternalServerErrorException
895      */
896         public static function getTabs(App $a, string $current, bool $is_owner, string $nickname = null)
897         {
898                 if (is_null($nickname)) {
899                         $nickname = $a->user['nickname'];
900                 }
901
902                 $baseProfileUrl = DI::baseUrl() . '/profile/' . $nickname;
903
904                 $tabs = [
905                         [
906                                 'label' => DI::l10n()->t('Status'),
907                                 'url'   => $baseProfileUrl,
908                                 'sel'   => !$current ? 'active' : '',
909                                 'title' => DI::l10n()->t('Status Messages and Posts'),
910                                 'id'    => 'status-tab',
911                                 'accesskey' => 'm',
912                         ],
913                         [
914                                 'label' => DI::l10n()->t('Profile'),
915                                 'url'   => $baseProfileUrl . '/?tab=profile',
916                                 'sel'   => $current == 'profile' ? 'active' : '',
917                                 'title' => DI::l10n()->t('Profile Details'),
918                                 'id'    => 'profile-tab',
919                                 'accesskey' => 'r',
920                         ],
921                         [
922                                 'label' => DI::l10n()->t('Photos'),
923                                 'url'   => DI::baseUrl() . '/photos/' . $nickname,
924                                 'sel'   => $current == 'photos' ? 'active' : '',
925                                 'title' => DI::l10n()->t('Photo Albums'),
926                                 'id'    => 'photo-tab',
927                                 'accesskey' => 'h',
928                         ],
929                         [
930                                 'label' => DI::l10n()->t('Videos'),
931                                 'url'   => DI::baseUrl() . '/videos/' . $nickname,
932                                 'sel'   => $current == 'videos' ? 'active' : '',
933                                 'title' => DI::l10n()->t('Videos'),
934                                 'id'    => 'video-tab',
935                                 'accesskey' => 'v',
936                         ],
937                 ];
938
939                 // the calendar link for the full featured events calendar
940                 if ($is_owner && $a->theme_events_in_profile) {
941                         $tabs[] = [
942                                 'label' => DI::l10n()->t('Events'),
943                                 'url'   => DI::baseUrl() . '/events',
944                                 'sel'   => $current == 'events' ? 'active' : '',
945                                 'title' => DI::l10n()->t('Events and Calendar'),
946                                 'id'    => 'events-tab',
947                                 'accesskey' => 'e',
948                         ];
949                         // if the user is not the owner of the calendar we only show a calendar
950                         // with the public events of the calendar owner
951                 } elseif (!$is_owner) {
952                         $tabs[] = [
953                                 'label' => DI::l10n()->t('Events'),
954                                 'url'   => DI::baseUrl() . '/cal/' . $nickname,
955                                 'sel'   => $current == 'cal' ? 'active' : '',
956                                 'title' => DI::l10n()->t('Events and Calendar'),
957                                 'id'    => 'events-tab',
958                                 'accesskey' => 'e',
959                         ];
960                 }
961
962                 if ($is_owner) {
963                         $tabs[] = [
964                                 'label' => DI::l10n()->t('Personal Notes'),
965                                 'url'   => DI::baseUrl() . '/notes',
966                                 'sel'   => $current == 'notes' ? 'active' : '',
967                                 'title' => DI::l10n()->t('Only You Can See This'),
968                                 'id'    => 'notes-tab',
969                                 'accesskey' => 't',
970                         ];
971                 }
972
973                 if (!empty($_SESSION['new_member']) && $is_owner) {
974                         $tabs[] = [
975                                 'label' => DI::l10n()->t('Tips for New Members'),
976                                 'url'   => DI::baseUrl() . '/newmember',
977                                 'sel'   => false,
978                                 'title' => DI::l10n()->t('Tips for New Members'),
979                                 'id'    => 'newmember-tab',
980                         ];
981                 }
982
983                 if ($is_owner || empty($a->profile['hide-friends'])) {
984                         $tabs[] = [
985                                 'label' => DI::l10n()->t('Contacts'),
986                                 'url'   => $baseProfileUrl . '/contacts',
987                                 'sel'   => $current == 'contacts' ? 'active' : '',
988                                 'title' => DI::l10n()->t('Contacts'),
989                                 'id'    => 'viewcontacts-tab',
990                                 'accesskey' => 'k',
991                         ];
992                 }
993
994                 $arr = ['is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => $current, 'tabs' => $tabs];
995                 Hook::callAll('profile_tabs', $arr);
996
997                 $tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
998
999                 return Renderer::replaceMacros($tpl, ['$tabs' => $arr['tabs']]);
1000         }
1001
1002         /**
1003          * Retrieves the my_url session variable
1004          *
1005          * @return string
1006          */
1007         public static function getMyURL()
1008         {
1009                 return Session::get('my_url');
1010         }
1011
1012         /**
1013          * Process the 'zrl' parameter and initiate the remote authentication.
1014          *
1015          * This method checks if the visitor has a public contact entry and
1016          * redirects the visitor to his/her instance to start the magic auth (Authentication)
1017          * process.
1018          *
1019          * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/channel.php
1020          *
1021          * The implementation for Friendica sadly differs in some points from the one for Hubzilla:
1022          * - Hubzilla uses the "zid" parameter, while for Friendica it had been replaced with "zrl"
1023          * - There seem to be some reverse authentication (rmagic) that isn't implemented in Friendica at all
1024          *
1025          * It would be favourable to harmonize the two implementations.
1026          *
1027          * @param App $a Application instance.
1028          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1029          * @throws \ImagickException
1030          */
1031         public static function zrlInit(App $a)
1032         {
1033                 $my_url = self::getMyURL();
1034                 $my_url = Network::isUrlValid($my_url);
1035
1036                 if (empty($my_url) || local_user()) {
1037                         return;
1038                 }
1039
1040                 $addr = $_GET['addr'] ?? $my_url;
1041
1042                 $arr = ['zrl' => $my_url, 'url' => DI::args()->getCommand()];
1043                 Hook::callAll('zrl_init', $arr);
1044
1045                 // Try to find the public contact entry of the visitor.
1046                 $cid = Contact::getIdForURL($my_url);
1047                 if (!$cid) {
1048                         Logger::log('No contact record found for ' . $my_url, Logger::DEBUG);
1049                         return;
1050                 }
1051
1052                 $contact = DBA::selectFirst('contact',['id', 'url'], ['id' => $cid]);
1053
1054                 if (DBA::isResult($contact) && remote_user() && remote_user() == $contact['id']) {
1055                         Logger::log('The visitor ' . $my_url . ' is already authenticated', Logger::DEBUG);
1056                         return;
1057                 }
1058
1059                 // Avoid endless loops
1060                 $cachekey = 'zrlInit:' . $my_url;
1061                 if (DI::cache()->get($cachekey)) {
1062                         Logger::log('URL ' . $my_url . ' already tried to authenticate.', Logger::DEBUG);
1063                         return;
1064                 } else {
1065                         DI::cache()->set($cachekey, true, Duration::MINUTE);
1066                 }
1067
1068                 Logger::log('Not authenticated. Invoking reverse magic-auth for ' . $my_url, Logger::DEBUG);
1069
1070                 // Remove the "addr" parameter from the destination. It is later added as separate parameter again.
1071                 $addr_request = 'addr=' . urlencode($addr);
1072                 $query = rtrim(str_replace($addr_request, '', DI::args()->getQueryString()), '?&');
1073
1074                 // The other instance needs to know where to redirect.
1075                 $dest = urlencode(DI::baseUrl()->get() . '/' . $query);
1076
1077                 // We need to extract the basebath from the profile url
1078                 // to redirect the visitors '/magic' module.
1079                 $basepath = Contact::getBasepath($contact['url']);
1080
1081                 if ($basepath != DI::baseUrl()->get() && !strstr($dest, '/magic')) {
1082                         $magic_path = $basepath . '/magic' . '?owa=1&dest=' . $dest . '&' . $addr_request;
1083
1084                         // We have to check if the remote server does understand /magic without invoking something
1085                         $serverret = Network::curl($basepath . '/magic');
1086                         if ($serverret->isSuccess()) {
1087                                 Logger::log('Doing magic auth for visitor ' . $my_url . ' to ' . $magic_path, Logger::DEBUG);
1088                                 System::externalRedirect($magic_path);
1089                         }
1090                 }
1091         }
1092
1093         /**
1094          * Set the visitor cookies (see remote_user()) for the given handle
1095          *
1096          * @param string $handle Visitor handle
1097          * @return array Visitor contact array
1098          */
1099         public static function addVisitorCookieForHandle($handle)
1100         {
1101                 $a = DI::app();
1102
1103                 // Try to find the public contact entry of the visitor.
1104                 $cid = Contact::getIdForURL($handle);
1105                 if (!$cid) {
1106                         Logger::log('unable to finger ' . $handle, Logger::DEBUG);
1107                         return [];
1108                 }
1109
1110                 $visitor = DBA::selectFirst('contact', [], ['id' => $cid]);
1111
1112                 // Authenticate the visitor.
1113                 $_SESSION['authenticated'] = 1;
1114                 $_SESSION['visitor_id'] = $visitor['id'];
1115                 $_SESSION['visitor_handle'] = $visitor['addr'];
1116                 $_SESSION['visitor_home'] = $visitor['url'];
1117                 $_SESSION['my_url'] = $visitor['url'];
1118
1119                 Session::setVisitorsContacts();
1120
1121                 $a->contact = $visitor;
1122
1123                 Logger::info('Authenticated visitor', ['url' => $visitor['url']]);
1124
1125                 return $visitor;
1126         }
1127
1128         /**
1129          * OpenWebAuth authentication.
1130          *
1131          * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/zid.php
1132          *
1133          * @param string $token
1134          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1135          * @throws \ImagickException
1136          */
1137         public static function openWebAuthInit($token)
1138         {
1139                 $a = DI::app();
1140
1141                 // Clean old OpenWebAuthToken entries.
1142                 OpenWebAuthToken::purge('owt', '3 MINUTE');
1143
1144                 // Check if the token we got is the same one
1145                 // we have stored in the database.
1146                 $visitor_handle = OpenWebAuthToken::getMeta('owt', 0, $token);
1147
1148                 if ($visitor_handle === false) {
1149                         return;
1150                 }
1151
1152                 $visitor = self::addVisitorCookieForHandle($visitor_handle);
1153                 if (empty($visitor)) {
1154                         return;
1155                 }
1156
1157                 $arr = [
1158                         'visitor' => $visitor,
1159                         'url' => DI::args()->getQueryString()
1160                 ];
1161                 /**
1162                  * @hooks magic_auth_success
1163                  *   Called when a magic-auth was successful.
1164                  *   * \e array \b visitor
1165                  *   * \e string \b url
1166                  */
1167                 Hook::callAll('magic_auth_success', $arr);
1168
1169                 $a->contact = $arr['visitor'];
1170
1171                 info(DI::l10n()->t('OpenWebAuth: %1$s welcomes %2$s', DI::baseUrl()->getHostname(), $visitor['name']));
1172
1173                 Logger::log('OpenWebAuth: auth success from ' . $visitor['addr'], Logger::DEBUG);
1174         }
1175
1176         public static function zrl($s, $force = false)
1177         {
1178                 if (!strlen($s)) {
1179                         return $s;
1180                 }
1181                 if (!strpos($s, '/profile/') && !$force) {
1182                         return $s;
1183                 }
1184                 if ($force && substr($s, -1, 1) !== '/') {
1185                         $s = $s . '/';
1186                 }
1187                 $achar = strpos($s, '?') ? '&' : '?';
1188                 $mine = self::getMyURL();
1189                 if ($mine && !Strings::compareLink($mine, $s)) {
1190                         return $s . $achar . 'zrl=' . urlencode($mine);
1191                 }
1192                 return $s;
1193         }
1194
1195         /**
1196          * Get the user ID of the page owner.
1197          *
1198          * Used from within PCSS themes to set theme parameters. If there's a
1199          * profile_uid variable set in App, that is the "page owner" and normally their theme
1200          * settings take precedence; unless a local user sets the "always_my_theme"
1201          * system pconfig, which means they don't want to see anybody else's theme
1202          * settings except their own while on this site.
1203          *
1204          * @return int user ID
1205          *
1206          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1207          * @note Returns local_user instead of user ID if "always_my_theme" is set to true
1208          */
1209         public static function getThemeUid(App $a)
1210         {
1211                 $uid = !empty($a->profile_uid) ? intval($a->profile_uid) : 0;
1212                 if (local_user() && (DI::pConfig()->get(local_user(), 'system', 'always_my_theme') || !$uid)) {
1213                         return local_user();
1214                 }
1215
1216                 return $uid;
1217         }
1218
1219         /**
1220          * search for Profiles
1221          *
1222          * @param int  $start
1223          * @param int  $count
1224          * @param null $search
1225          *
1226          * @return array [ 'total' => 123, 'entries' => [...] ];
1227          *
1228          * @throws \Exception
1229          */
1230         public static function searchProfiles($start = 0, $count = 100, $search = null)
1231         {
1232                 $publish = (DI::config()->get('system', 'publish_all') ? '' : " AND `publish` = 1 ");
1233                 $total = 0;
1234
1235                 if (!empty($search)) {
1236                         $searchTerm = '%' . $search . '%';
1237                         $cnt = DBA::fetchFirst("SELECT COUNT(*) AS `total`
1238                                 FROM `profile`
1239                                 LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
1240                                 WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed`
1241                                 AND ((`profile`.`name` LIKE ?) OR
1242                                 (`user`.`nickname` LIKE ?) OR
1243                                 (`profile`.`pdesc` LIKE ?) OR
1244                                 (`profile`.`locality` LIKE ?) OR
1245                                 (`profile`.`region` LIKE ?) OR
1246                                 (`profile`.`country-name` LIKE ?) OR
1247                                 (`profile`.`gender` LIKE ?) OR
1248                                 (`profile`.`marital` LIKE ?) OR
1249                                 (`profile`.`sexual` LIKE ?) OR
1250                                 (`profile`.`about` LIKE ?) OR
1251                                 (`profile`.`romance` LIKE ?) OR
1252                                 (`profile`.`work` LIKE ?) OR
1253                                 (`profile`.`education` LIKE ?) OR
1254                                 (`profile`.`pub_keywords` LIKE ?) OR
1255                                 (`profile`.`prv_keywords` LIKE ?))",
1256                                 $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm,
1257                                 $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm);
1258                 } else {
1259                         $cnt = DBA::fetchFirst("SELECT COUNT(*) AS `total`
1260                                 FROM `profile`
1261                                 LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
1262                                 WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed`");
1263                 }
1264
1265                 if (DBA::isResult($cnt)) {
1266                         $total = $cnt['total'];
1267                 }
1268
1269                 $order = " ORDER BY `name` ASC ";
1270                 $profiles = [];
1271
1272                 // If nothing found, don't try to select details
1273                 if ($total > 0) {
1274                         if (!empty($search)) {
1275                                 $searchTerm = '%' . $search . '%';
1276
1277                                 $profiles = DBA::p("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags`,
1278                         `contact`.`addr`, `contact`.`url` AS `profile_url`
1279                         FROM `profile`
1280                         LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
1281                         LEFT JOIN `contact` ON `contact`.`uid` = `user`.`uid`
1282                         WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` AND `contact`.`self`
1283                         AND ((`profile`.`name` LIKE ?) OR
1284                                 (`user`.`nickname` LIKE ?) OR
1285                                 (`profile`.`pdesc` LIKE ?) OR
1286                                 (`profile`.`locality` LIKE ?) OR
1287                                 (`profile`.`region` LIKE ?) OR
1288                                 (`profile`.`country-name` LIKE ?) OR
1289                                 (`profile`.`gender` LIKE ?) OR
1290                                 (`profile`.`marital` LIKE ?) OR
1291                                 (`profile`.`sexual` LIKE ?) OR
1292                                 (`profile`.`about` LIKE ?) OR
1293                                 (`profile`.`romance` LIKE ?) OR
1294                                 (`profile`.`work` LIKE ?) OR
1295                                 (`profile`.`education` LIKE ?) OR
1296                                 (`profile`.`pub_keywords` LIKE ?) OR
1297                                 (`profile`.`prv_keywords` LIKE ?))
1298                         $order LIMIT ?,?",
1299                                         $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm,
1300                                         $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm, $searchTerm,
1301                                         $start, $count
1302                                 );
1303                         } else {
1304                                 $profiles = DBA::p("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags`,
1305                         `contact`.`addr`, `contact`.`url` AS `profile_url`
1306                         FROM `profile`
1307                         LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
1308                         LEFT JOIN `contact` ON `contact`.`uid` = `user`.`uid`
1309                         WHERE `is-default` $publish AND NOT `user`.`blocked` AND NOT `user`.`account_removed` AND `contact`.`self`
1310                         $order LIMIT ?,?",
1311                                         $start, $count
1312                                 );
1313                         }
1314                 }
1315
1316                 if (DBA::isResult($profiles) && $total > 0) {
1317                         return [
1318                                 'total'   => $total,
1319                                 'entries' => DBA::toArray($profiles),
1320                         ];
1321
1322                 } else {
1323                         return [
1324                                 'total'   => $total,
1325                                 'entries' => [],
1326                         ];
1327                 }
1328         }
1329 }