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