]> git.mxchange.org Git - friendica.git/blob - src/Model/Profile.php
2b1546db49ef077eee04f0e763bf4a4a2532859e
[friendica.git] / src / Model / Profile.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Model;
23
24 use Friendica\App;
25 use Friendica\Content\Text\BBCode;
26 use Friendica\Content\Widget\ContactBlock;
27 use Friendica\Core\Cache\Duration;
28 use Friendica\Core\Hook;
29 use Friendica\Core\Logger;
30 use Friendica\Core\Protocol;
31 use Friendica\Core\Renderer;
32 use Friendica\Core\Session;
33 use Friendica\Core\System;
34 use Friendica\Database\DBA;
35 use Friendica\DI;
36 use Friendica\Protocol\Activity;
37 use Friendica\Protocol\Diaspora;
38 use Friendica\Util\DateTimeFormat;
39 use Friendica\Util\Network;
40 use Friendica\Util\Proxy as ProxyUtils;
41 use Friendica\Util\Strings;
42
43 class Profile
44 {
45         /**
46          * Returns default profile for a given user id
47          *
48          * @param integer User ID
49          *
50          * @return array Profile data
51          * @throws \Exception
52          */
53         public static function getByUID($uid)
54         {
55                 return DBA::selectFirst('profile', [], ['uid' => $uid]);
56         }
57
58         /**
59          * Returns default profile for a given user ID and ID
60          *
61          * @param int $uid The contact ID
62          * @param int $id The contact owner ID
63          * @param array $fields The selected fields
64          *
65          * @return array Profile data for the ID
66          * @throws \Exception
67          */
68         public static function getById(int $uid, int $id, array $fields = [])
69         {
70                 return DBA::selectFirst('profile', $fields, ['uid' => $uid, 'id' => $id]);
71         }
72
73         /**
74          * Returns profile data for the contact owner
75          *
76          * @param int $uid The User ID
77          * @param array $fields The fields to retrieve
78          *
79          * @return array Array of profile data
80          * @throws \Exception
81          */
82         public static function getListByUser(int $uid, array $fields = [])
83         {
84                 return DBA::selectToArray('profile', $fields, ['uid' => $uid]);
85         }
86
87         /**
88          * Returns a formatted location string from the given profile array
89          *
90          * @param array $profile Profile array (Generated from the "profile" table)
91          *
92          * @return string Location string
93          */
94         public static function formatLocation(array $profile)
95         {
96                 $location = '';
97
98                 if (!empty($profile['locality'])) {
99                         $location .= $profile['locality'];
100                 }
101
102                 if (!empty($profile['region']) && (($profile['locality'] ?? '') != $profile['region'])) {
103                         if ($location) {
104                                 $location .= ', ';
105                         }
106
107                         $location .= $profile['region'];
108                 }
109
110                 if (!empty($profile['country-name'])) {
111                         if ($location) {
112                                 $location .= ', ';
113                         }
114
115                         $location .= $profile['country-name'];
116                 }
117
118                 return $location;
119         }
120
121         /**
122          * Loads a profile into the page sidebar.
123          *
124          * The function requires a writeable copy of the main App structure, and the nickname
125          * of a registered local account.
126          *
127          * If the viewer is an authenticated remote viewer, the profile displayed is the
128          * one that has been configured for his/her viewing in the Contact manager.
129          * Passing a non-zero profile ID can also allow a preview of a selected profile
130          * by the owner.
131          *
132          * Profile information is placed in the App structure for later retrieval.
133          * Honours the owner's chosen theme for display.
134          *
135          * @attention Should only be run in the _init() functions of a module. That ensures that
136          *      the theme is chosen before the _init() function of a theme is run, which will usually
137          *      load a lot of theme-specific content
138          *
139          * @param App     $a
140          * @param string  $nickname     string
141          * @param array   $profiledata  array
142          * @param boolean $show_connect Show connect link
143          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
144          * @throws \ImagickException
145          */
146         public static function load(App $a, $nickname, array $profiledata = [], $show_connect = true)
147         {
148                 $user = DBA::selectFirst('user', ['uid'], ['nickname' => $nickname, 'account_removed' => false]);
149
150                 if (!DBA::isResult($user) && empty($profiledata)) {
151                         Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);
152                         return;
153                 }
154
155                 if (count($profiledata) > 0) {
156                         // Ensure to have a "nickname" field
157                         if (empty($profiledata['nickname']) && !empty($profiledata['nick'])) {
158                                 $profiledata['nickname'] = $profiledata['nick'];
159                         }
160
161                         // Add profile data to sidebar
162                         DI::page()['aside'] .= self::sidebar($a, $profiledata, true, $show_connect);
163
164                         if (!DBA::isResult($user)) {
165                                 return;
166                         }
167                 }
168
169                 $profile = self::getByNickname($nickname, $user['uid']);
170
171                 if (empty($profile) && empty($profiledata)) {
172                         Logger::log('profile error: ' . DI::args()->getQueryString(), Logger::DEBUG);
173                         return;
174                 }
175
176                 if (empty($profile)) {
177                         $profile = ['uid' => 0, 'name' => $nickname];
178                 }
179
180                 $a->profile = $profile;
181                 $a->profile_uid = $profile['uid'];
182
183                 $a->profile['mobile-theme'] = DI::pConfig()->get($a->profile['uid'], 'system', 'mobile_theme');
184                 $a->profile['network'] = Protocol::DFRN;
185
186                 DI::page()['title'] = $a->profile['name'] . ' @ ' . DI::config()->get('config', 'sitename');
187
188                 if (!$profiledata && !DI::pConfig()->get(local_user(), 'system', 'always_my_theme')) {
189                         $a->setCurrentTheme($a->profile['theme']);
190                         $a->setCurrentMobileTheme($a->profile['mobile-theme']);
191                 }
192
193                 /*
194                 * load/reload current theme info
195                 */
196
197                 Renderer::setActiveTemplateEngine(); // reset the template engine to the default in case the user's theme doesn't specify one
198
199                 $theme_info_file = 'view/theme/' . $a->getCurrentTheme() . '/theme.php';
200                 if (file_exists($theme_info_file)) {
201                         require_once $theme_info_file;
202                 }
203
204                 $block = ((DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) ? true : false);
205
206                 /**
207                  * @todo
208                  * By now, the contact block isn't shown, when a different profile is given
209                  * But: When this profile was on the same server, then we could display the contacts
210                  */
211                 if (!$profiledata) {
212                         DI::page()['aside'] .= self::sidebar($a, $a->profile, $block, $show_connect);
213                 }
214
215                 return;
216         }
217
218         /**
219          * Get all profile data of a local user
220          *
221          * If the viewer is an authenticated remote viewer, the profile displayed is the
222          * one that has been configured for his/her viewing in the Contact manager.
223          * Passing a non-zero profile ID can also allow a preview of a selected profile
224          * by the owner
225          *
226          * Includes all available profile data
227          *
228          * @param string $nickname   nick
229          * @param int    $uid        uid
230          * @param int    $profile_id ID of the profile
231          * @return array
232          * @throws \Exception
233          */
234         public static function getByNickname($nickname, $uid = 0)
235         {
236                 $profile = DBA::selectFirst('owner-view', [], ['nickname' => $nickname, 'uid' => $uid]);
237                 return $profile;
238         }
239
240         /**
241          * Formats a profile for display in the sidebar.
242          *
243          * It is very difficult to templatise the HTML completely
244          * because of all the conditional logic.
245          *
246          * @param array   $profile
247          * @param int     $block
248          * @param boolean $show_connect Show connect link
249          *
250          * @return string HTML sidebar module
251          *
252          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
253          * @throws \ImagickException
254          * @note  Returns empty string if passed $profile is wrong type or not populated
255          *
256          * @hooks 'profile_sidebar_enter'
257          *      array $profile - profile data
258          * @hooks 'profile_sidebar'
259          *      array $arr
260          */
261         private static function sidebar(App $a, $profile, $block = 0, $show_connect = true)
262         {
263                 $o = '';
264                 $location = false;
265
266                 // This function can also use contact information in $profile
267                 $is_contact = !empty($profile['cid']);
268
269                 if (!is_array($profile) && !count($profile)) {
270                         return $o;
271                 }
272
273                 $profile['picdate'] = urlencode($profile['picdate'] ?? '');
274
275                 if (($profile['network'] != '') && ($profile['network'] != Protocol::DFRN)) {
276                         $profile['network_link'] = Strings::formatNetworkName($profile['network'], $profile['url']);
277                 } else {
278                         $profile['network_link'] = '';
279                 }
280
281                 Hook::callAll('profile_sidebar_enter', $profile);
282
283                 if (isset($profile['url'])) {
284                         $profile_url = $profile['url'];
285                 } else {
286                         $profile_url = DI::baseUrl()->get() . '/profile/' . $profile['nickname'];
287                 }
288
289                 $follow_link = null;
290                 $unfollow_link = null;
291                 $subscribe_feed_link = null;
292                 $wallmessage_link = null;
293
294
295
296                 $visitor_contact = [];
297                 if (!empty($profile['uid']) && self::getMyURL()) {
298                         $visitor_contact = Contact::selectFirst(['rel'], ['uid' => $profile['uid'], 'nurl' => Strings::normaliseLink(self::getMyURL())]);
299                 }
300
301                 $profile_contact = [];
302                 if (!empty($profile['cid']) && self::getMyURL()) {
303                         $profile_contact = Contact::selectFirst(['rel'], ['id' => $profile['cid']]);
304                 }
305
306                 $profile_is_dfrn = $profile['network'] == Protocol::DFRN;
307                 $profile_is_native = in_array($profile['network'], Protocol::NATIVE_SUPPORT);
308                 $local_user_is_self = local_user() && local_user() == ($profile['uid'] ?? 0);
309                 $visitor_is_authenticated = (bool)self::getMyURL();
310                 $visitor_is_following =
311                         in_array($visitor_contact['rel'] ?? 0, [Contact::FOLLOWER, Contact::FRIEND])
312                         || in_array($profile_contact['rel'] ?? 0, [Contact::SHARING, Contact::FRIEND]);
313                 $visitor_is_followed =
314                         in_array($visitor_contact['rel'] ?? 0, [Contact::SHARING, Contact::FRIEND])
315                         || in_array($profile_contact['rel'] ?? 0, [Contact::FOLLOWER, Contact::FRIEND]);
316                 $visitor_base_path = self::getMyURL() ? preg_replace('=/profile/(.*)=ism', '', self::getMyURL()) : '';
317
318                 if (!$local_user_is_self && $show_connect) {
319                         if (!$visitor_is_authenticated) {
320                                 // Remote follow is only available for local profiles
321                                 if (!empty($profile['nickname']) && strpos($profile_url, DI::baseUrl()->get()) === 0) {
322                                         $follow_link = 'remote_follow/' . $profile['nickname'];
323                                 }
324                         } elseif ($profile_is_native) {
325                                 if ($visitor_is_following) {
326                                         $unfollow_link = $visitor_base_path . '/unfollow?url=' . urlencode($profile_url);
327                                 } else {
328                                         $follow_link =  $visitor_base_path .'/follow?url=' . urlencode($profile_url);
329                                 }
330                         }
331
332                         if ($profile_is_dfrn) {
333                                 $subscribe_feed_link = 'dfrn_poll/' . $profile['nickname'];
334                         }
335
336                         if (Contact::canReceivePrivateMessages($profile)) {
337                                 if ($visitor_is_followed || $visitor_is_following) {
338                                         $wallmessage_link = $visitor_base_path . '/message/new/' . base64_encode($profile['addr'] ?? '');
339                                 } elseif ($visitor_is_authenticated && !empty($profile['unkmail'])) {
340                                         $wallmessage_link = 'wallmessage/' . $profile['nickname'];
341                                 }
342                         }
343                 }
344
345                 // show edit profile to yourself
346                 if (!$is_contact && $local_user_is_self) {
347                         $profile['edit'] = [DI::baseUrl() . '/settings/profile', DI::l10n()->t('Edit profile'), '', DI::l10n()->t('Edit profile')];
348                         $profile['menu'] = [
349                                 'chg_photo' => DI::l10n()->t('Change profile photo'),
350                                 'cr_new' => null,
351                                 'entries' => [],
352                         ];
353                 }
354
355                 // Fetch the account type
356                 $account_type = Contact::getAccountType($profile);
357
358                 if (!empty($profile['address'])
359                         || !empty($profile['location'])
360                         || !empty($profile['locality'])
361                         || !empty($profile['region'])
362                         || !empty($profile['postal-code'])
363                         || !empty($profile['country-name'])
364                 ) {
365                         $location = DI::l10n()->t('Location:');
366                 }
367
368                 $homepage = !empty($profile['homepage']) ? DI::l10n()->t('Homepage:') : false;
369                 $about    = !empty($profile['about'])    ? DI::l10n()->t('About:')    : false;
370                 $xmpp     = !empty($profile['xmpp'])     ? DI::l10n()->t('XMPP:')     : false;
371
372                 if ((!empty($profile['hidewall']) || $block) && !Session::isAuthenticated()) {
373                         $location = $homepage = $about = false;
374                 }
375
376                 $split_name = Diaspora::splitName($profile['name']);
377                 $firstname = $split_name['first'];
378                 $lastname = $split_name['last'];
379
380                 if (!empty($profile['guid'])) {
381                         $diaspora = [
382                                 'guid' => $profile['guid'],
383                                 'podloc' => DI::baseUrl(),
384                                 'searchable' => ($profile['net-publish'] ? 'true' : 'false'),
385                                 'nickname' => $profile['nickname'],
386                                 'fullname' => $profile['name'],
387                                 'firstname' => $firstname,
388                                 'lastname' => $lastname,
389                                 'photo300' => $profile['photo'] ?? '',
390                                 'photo100' => $profile['thumb'] ?? '',
391                                 'photo50' => $profile['micro'] ?? '',
392                         ];
393                 } else {
394                         $diaspora = false;
395                 }
396
397                 $contact_block = '';
398                 $updated = '';
399                 $contact_count = 0;
400
401                 if (!empty($profile['last-item'])) {
402                         $updated = date('c', strtotime($profile['last-item']));
403                 }
404
405                 if (!$block) {
406                         $contact_block = ContactBlock::getHTML($a->profile);
407
408                         if (is_array($a->profile) && !$a->profile['hide-friends']) {
409                                 $contact_count = DBA::count('contact', [
410                                         'uid' => $profile['uid'],
411                                         'self' => false,
412                                         'blocked' => false,
413                                         'pending' => false,
414                                         'hidden' => false,
415                                         'archive' => false,
416                                         'network' => Protocol::FEDERATED,
417                                 ]);
418                         }
419                 }
420
421                 $p = [];
422                 foreach ($profile as $k => $v) {
423                         $k = str_replace('-', '_', $k);
424                         $p[$k] = $v;
425                 }
426
427                 if (isset($p['about'])) {
428                         $p['about'] = BBCode::convert($p['about']);
429                 }
430
431                 if (empty($p['address']) && !empty($p['location'])) {
432                         $p['address'] = $p['location'];
433                 }
434
435                 if (isset($p['address'])) {
436                         $p['address'] = BBCode::convert($p['address']);
437                 }
438
439                 if (isset($p['photo'])) {
440                         $p['photo'] = ProxyUtils::proxifyUrl($p['photo'], false, ProxyUtils::SIZE_SMALL);
441                 }
442
443                 $p['url'] = Contact::magicLink(($p['url'] ?? '') ?: $profile_url);
444
445                 $tpl = Renderer::getMarkupTemplate('profile/vcard.tpl');
446                 $o .= Renderer::replaceMacros($tpl, [
447                         '$profile' => $p,
448                         '$xmpp' => $xmpp,
449                         '$follow' => DI::l10n()->t('Follow'),
450                         '$follow_link' => $follow_link,
451                         '$unfollow' => DI::l10n()->t('Unfollow'),
452                         '$unfollow_link' => $unfollow_link,
453                         '$subscribe_feed' => DI::l10n()->t('Atom feed'),
454                         '$subscribe_feed_link' => $subscribe_feed_link,
455                         '$wallmessage' => DI::l10n()->t('Message'),
456                         '$wallmessage_link' => $wallmessage_link,
457                         '$account_type' => $account_type,
458                         '$location' => $location,
459                         '$homepage' => $homepage,
460                         '$about' => $about,
461                         '$network' => DI::l10n()->t('Network:'),
462                         '$contacts' => $contact_count,
463                         '$updated' => $updated,
464                         '$diaspora' => $diaspora,
465                         '$contact_block' => $contact_block,
466                 ]);
467
468                 $arr = ['profile' => &$profile, 'entry' => &$o];
469
470                 Hook::callAll('profile_sidebar', $arr);
471
472                 return $o;
473         }
474
475         public static function getBirthdays()
476         {
477                 $a = DI::app();
478                 $o = '';
479
480                 if (!local_user() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
481                         return $o;
482                 }
483
484                 /*
485                 * $mobile_detect = new Mobile_Detect();
486                 * $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
487                 *               if ($is_mobile)
488                 *                       return $o;
489                 */
490
491                 $bd_format = DI::l10n()->t('g A l F d'); // 8 AM Friday January 18
492                 $bd_short = DI::l10n()->t('F d');
493
494                 $cachekey = 'get_birthdays:' . local_user();
495                 $r = DI::cache()->get($cachekey);
496                 if (is_null($r)) {
497                         $s = DBA::p(
498                                 "SELECT `event`.*, `event`.`id` AS `eid`, `contact`.* FROM `event`
499                                 INNER JOIN `contact`
500                                         ON `contact`.`id` = `event`.`cid`
501                                         AND (`contact`.`rel` = ? OR `contact`.`rel` = ?)
502                                         AND NOT `contact`.`pending`
503                                         AND NOT `contact`.`hidden`
504                                         AND NOT `contact`.`blocked`
505                                         AND NOT `contact`.`archive`
506                                         AND NOT `contact`.`deleted`
507                                 WHERE `event`.`uid` = ? AND `type` = 'birthday' AND `start` < ? AND `finish` > ?
508                                 ORDER BY `start` ASC ",
509                                 Contact::SHARING,
510                                 Contact::FRIEND,
511                                 local_user(),
512                                 DateTimeFormat::utc('now + 6 days'),
513                                 DateTimeFormat::utcNow()
514                         );
515                         if (DBA::isResult($s)) {
516                                 $r = DBA::toArray($s);
517                                 DI::cache()->set($cachekey, $r, Duration::HOUR);
518                         }
519                 }
520
521                 $total = 0;
522                 $classtoday = '';
523                 if (DBA::isResult($r)) {
524                         $now = strtotime('now');
525                         $cids = [];
526
527                         $istoday = false;
528                         foreach ($r as $rr) {
529                                 if (strlen($rr['name'])) {
530                                         $total ++;
531                                 }
532                                 if ((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) {
533                                         $istoday = true;
534                                 }
535                         }
536                         $classtoday = $istoday ? ' birthday-today ' : '';
537                         if ($total) {
538                                 foreach ($r as &$rr) {
539                                         if (!strlen($rr['name'])) {
540                                                 continue;
541                                         }
542
543                                         // avoid duplicates
544
545                                         if (in_array($rr['cid'], $cids)) {
546                                                 continue;
547                                         }
548                                         $cids[] = $rr['cid'];
549
550                                         $today = (((strtotime($rr['start'] . ' +00:00') < $now) && (strtotime($rr['finish'] . ' +00:00') > $now)) ? true : false);
551
552                                         $rr['link'] = Contact::magicLink($rr['url']);
553                                         $rr['title'] = $rr['name'];
554                                         $rr['date'] = DI::l10n()->getDay(DateTimeFormat::convert($rr['start'], $a->timezone, 'UTC', $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . DI::l10n()->t('[today]') : '');
555                                         $rr['startime'] = null;
556                                         $rr['today'] = $today;
557                                 }
558                         }
559                 }
560                 $tpl = Renderer::getMarkupTemplate('birthdays_reminder.tpl');
561                 return Renderer::replaceMacros($tpl, [
562                         '$classtoday' => $classtoday,
563                         '$count' => $total,
564                         '$event_reminders' => DI::l10n()->t('Birthday Reminders'),
565                         '$event_title' => DI::l10n()->t('Birthdays this week:'),
566                         '$events' => $r,
567                         '$lbr' => '{', // raw brackets mess up if/endif macro processing
568                         '$rbr' => '}'
569                 ]);
570         }
571
572         public static function getEventsReminderHTML()
573         {
574                 $a = DI::app();
575                 $o = '';
576
577                 if (!local_user() || DI::mode()->isMobile() || DI::mode()->isMobile()) {
578                         return $o;
579                 }
580
581                 /*
582                 *       $mobile_detect = new Mobile_Detect();
583                 *               $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
584                 *               if ($is_mobile)
585                 *                       return $o;
586                 */
587
588                 $bd_format = DI::l10n()->t('g A l F d'); // 8 AM Friday January 18
589                 $classtoday = '';
590
591                 $condition = ["`uid` = ? AND `type` != 'birthday' AND `start` < ? AND `start` >= ?",
592                         local_user(), DateTimeFormat::utc('now + 7 days'), DateTimeFormat::utc('now - 1 days')];
593                 $s = DBA::select('event', [], $condition, ['order' => ['start']]);
594
595                 $r = [];
596
597                 if (DBA::isResult($s)) {
598                         $istoday = false;
599                         $total = 0;
600
601                         while ($rr = DBA::fetch($s)) {
602                                 $condition = ['parent-uri' => $rr['uri'], 'uid' => $rr['uid'], 'author-id' => public_contact(),
603                                         'vid' => [Verb::getID(Activity::ATTEND), Verb::getID(Activity::ATTENDMAYBE)],
604                                         'visible' => true, 'deleted' => false];
605                                 if (!Item::exists($condition)) {
606                                         continue;
607                                 }
608
609                                 if (strlen($rr['summary'])) {
610                                         $total++;
611                                 }
612
613                                 $strt = DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC', 'UTC', 'Y-m-d');
614                                 if ($strt === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
615                                         $istoday = true;
616                                 }
617
618                                 $title = strip_tags(html_entity_decode(BBCode::convert($rr['summary']), ENT_QUOTES, 'UTF-8'));
619
620                                 if (strlen($title) > 35) {
621                                         $title = substr($title, 0, 32) . '... ';
622                                 }
623
624                                 $description = substr(strip_tags(BBCode::convert($rr['desc'])), 0, 32) . '... ';
625                                 if (!$description) {
626                                         $description = DI::l10n()->t('[No description]');
627                                 }
628
629                                 $strt = DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC');
630
631                                 if (substr($strt, 0, 10) < DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) {
632                                         continue;
633                                 }
634
635                                 $today = ((substr($strt, 0, 10) === DateTimeFormat::timezoneNow($a->timezone, 'Y-m-d')) ? true : false);
636
637                                 $rr['title'] = $title;
638                                 $rr['description'] = $description;
639                                 $rr['date'] = DI::l10n()->getDay(DateTimeFormat::convert($rr['start'], $rr['adjust'] ? $a->timezone : 'UTC', 'UTC', $bd_format)) . (($today) ? ' ' . DI::l10n()->t('[today]') : '');
640                                 $rr['startime'] = $strt;
641                                 $rr['today'] = $today;
642
643                                 $r[] = $rr;
644                         }
645                         DBA::close($s);
646                         $classtoday = (($istoday) ? 'event-today' : '');
647                 }
648                 $tpl = Renderer::getMarkupTemplate('events_reminder.tpl');
649                 return Renderer::replaceMacros($tpl, [
650                         '$classtoday' => $classtoday,
651                         '$count' => count($r),
652                         '$event_reminders' => DI::l10n()->t('Event Reminders'),
653                         '$event_title' => DI::l10n()->t('Upcoming events the next 7 days:'),
654                         '$events' => $r,
655                 ]);
656         }
657
658         /**
659          * Retrieves the my_url session variable
660          *
661          * @return string
662          */
663         public static function getMyURL()
664         {
665                 return Session::get('my_url');
666         }
667
668         /**
669          * Process the 'zrl' parameter and initiate the remote authentication.
670          *
671          * This method checks if the visitor has a public contact entry and
672          * redirects the visitor to his/her instance to start the magic auth (Authentication)
673          * process.
674          *
675          * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/channel.php
676          *
677          * The implementation for Friendica sadly differs in some points from the one for Hubzilla:
678          * - Hubzilla uses the "zid" parameter, while for Friendica it had been replaced with "zrl"
679          * - There seem to be some reverse authentication (rmagic) that isn't implemented in Friendica at all
680          *
681          * It would be favourable to harmonize the two implementations.
682          *
683          * @param App $a Application instance.
684          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
685          * @throws \ImagickException
686          */
687         public static function zrlInit(App $a)
688         {
689                 $my_url = self::getMyURL();
690                 $my_url = Network::isUrlValid($my_url);
691
692                 if (empty($my_url) || local_user()) {
693                         return;
694                 }
695
696                 $addr = $_GET['addr'] ?? $my_url;
697
698                 $arr = ['zrl' => $my_url, 'url' => DI::args()->getCommand()];
699                 Hook::callAll('zrl_init', $arr);
700
701                 // Try to find the public contact entry of the visitor.
702                 $cid = Contact::getIdForURL($my_url);
703                 if (!$cid) {
704                         Logger::log('No contact record found for ' . $my_url, Logger::DEBUG);
705                         return;
706                 }
707
708                 $contact = DBA::selectFirst('contact',['id', 'url'], ['id' => $cid]);
709
710                 if (DBA::isResult($contact) && remote_user() && remote_user() == $contact['id']) {
711                         Logger::log('The visitor ' . $my_url . ' is already authenticated', Logger::DEBUG);
712                         return;
713                 }
714
715                 // Avoid endless loops
716                 $cachekey = 'zrlInit:' . $my_url;
717                 if (DI::cache()->get($cachekey)) {
718                         Logger::log('URL ' . $my_url . ' already tried to authenticate.', Logger::DEBUG);
719                         return;
720                 } else {
721                         DI::cache()->set($cachekey, true, Duration::MINUTE);
722                 }
723
724                 Logger::log('Not authenticated. Invoking reverse magic-auth for ' . $my_url, Logger::DEBUG);
725
726                 // Remove the "addr" parameter from the destination. It is later added as separate parameter again.
727                 $addr_request = 'addr=' . urlencode($addr);
728                 $query = rtrim(str_replace($addr_request, '', DI::args()->getQueryString()), '?&');
729
730                 // The other instance needs to know where to redirect.
731                 $dest = urlencode(DI::baseUrl()->get() . '/' . $query);
732
733                 // We need to extract the basebath from the profile url
734                 // to redirect the visitors '/magic' module.
735                 $basepath = Contact::getBasepath($contact['url']);
736
737                 if ($basepath != DI::baseUrl()->get() && !strstr($dest, '/magic')) {
738                         $magic_path = $basepath . '/magic' . '?owa=1&dest=' . $dest . '&' . $addr_request;
739
740                         // We have to check if the remote server does understand /magic without invoking something
741                         $serverret = Network::curl($basepath . '/magic');
742                         if ($serverret->isSuccess()) {
743                                 Logger::log('Doing magic auth for visitor ' . $my_url . ' to ' . $magic_path, Logger::DEBUG);
744                                 System::externalRedirect($magic_path);
745                         }
746                 }
747         }
748
749         /**
750          * Set the visitor cookies (see remote_user()) for the given handle
751          *
752          * @param string $handle Visitor handle
753          * @return array Visitor contact array
754          */
755         public static function addVisitorCookieForHandle($handle)
756         {
757                 $a = DI::app();
758
759                 // Try to find the public contact entry of the visitor.
760                 $cid = Contact::getIdForURL($handle);
761                 if (!$cid) {
762                         Logger::log('unable to finger ' . $handle, Logger::DEBUG);
763                         return [];
764                 }
765
766                 $visitor = DBA::selectFirst('contact', [], ['id' => $cid]);
767
768                 // Authenticate the visitor.
769                 $_SESSION['authenticated'] = 1;
770                 $_SESSION['visitor_id'] = $visitor['id'];
771                 $_SESSION['visitor_handle'] = $visitor['addr'];
772                 $_SESSION['visitor_home'] = $visitor['url'];
773                 $_SESSION['my_url'] = $visitor['url'];
774                 $_SESSION['remote_comment'] = $visitor['subscribe'];
775
776                 Session::setVisitorsContacts();
777
778                 $a->contact = $visitor;
779
780                 Logger::info('Authenticated visitor', ['url' => $visitor['url']]);
781
782                 return $visitor;
783         }
784
785         /**
786          * OpenWebAuth authentication.
787          *
788          * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/zid.php
789          *
790          * @param string $token
791          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
792          * @throws \ImagickException
793          */
794         public static function openWebAuthInit($token)
795         {
796                 $a = DI::app();
797
798                 // Clean old OpenWebAuthToken entries.
799                 OpenWebAuthToken::purge('owt', '3 MINUTE');
800
801                 // Check if the token we got is the same one
802                 // we have stored in the database.
803                 $visitor_handle = OpenWebAuthToken::getMeta('owt', 0, $token);
804
805                 if ($visitor_handle === false) {
806                         return;
807                 }
808
809                 $visitor = self::addVisitorCookieForHandle($visitor_handle);
810                 if (empty($visitor)) {
811                         return;
812                 }
813
814                 $arr = [
815                         'visitor' => $visitor,
816                         'url' => DI::args()->getQueryString()
817                 ];
818                 /**
819                  * @hooks magic_auth_success
820                  *   Called when a magic-auth was successful.
821                  *   * \e array \b visitor
822                  *   * \e string \b url
823                  */
824                 Hook::callAll('magic_auth_success', $arr);
825
826                 $a->contact = $arr['visitor'];
827
828                 info(DI::l10n()->t('OpenWebAuth: %1$s welcomes %2$s', DI::baseUrl()->getHostname(), $visitor['name']));
829
830                 Logger::log('OpenWebAuth: auth success from ' . $visitor['addr'], Logger::DEBUG);
831         }
832
833         public static function zrl($s, $force = false)
834         {
835                 if (!strlen($s)) {
836                         return $s;
837                 }
838                 if (!strpos($s, '/profile/') && !$force) {
839                         return $s;
840                 }
841                 if ($force && substr($s, -1, 1) !== '/') {
842                         $s = $s . '/';
843                 }
844                 $achar = strpos($s, '?') ? '&' : '?';
845                 $mine = self::getMyURL();
846                 if ($mine && !Strings::compareLink($mine, $s)) {
847                         return $s . $achar . 'zrl=' . urlencode($mine);
848                 }
849                 return $s;
850         }
851
852         /**
853          * Get the user ID of the page owner.
854          *
855          * Used from within PCSS themes to set theme parameters. If there's a
856          * profile_uid variable set in App, that is the "page owner" and normally their theme
857          * settings take precedence; unless a local user sets the "always_my_theme"
858          * system pconfig, which means they don't want to see anybody else's theme
859          * settings except their own while on this site.
860          *
861          * @return int user ID
862          *
863          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
864          * @note Returns local_user instead of user ID if "always_my_theme" is set to true
865          */
866         public static function getThemeUid(App $a)
867         {
868                 $uid = !empty($a->profile_uid) ? intval($a->profile_uid) : 0;
869                 if (local_user() && (DI::pConfig()->get(local_user(), 'system', 'always_my_theme') || !$uid)) {
870                         return local_user();
871                 }
872
873                 return $uid;
874         }
875
876         /**
877          * search for Profiles
878          *
879          * @param int  $start
880          * @param int  $count
881          * @param null $search
882          *
883          * @return array [ 'total' => 123, 'entries' => [...] ];
884          *
885          * @throws \Exception
886          */
887         public static function searchProfiles($start = 0, $count = 100, $search = null)
888         {
889                 if (!empty($search)) {
890                         $publish = (DI::config()->get('system', 'publish_all') ? '' : "AND `publish` ");
891                         $searchTerm = '%' . $search . '%';
892                         $condition = ["NOT `blocked` AND NOT `account_removed`
893                                 $publish
894                                 AND ((`name` LIKE ?) OR
895                                 (`nickname` LIKE ?) OR
896                                 (`about` LIKE ?) OR
897                                 (`locality` LIKE ?) OR
898                                 (`region` LIKE ?) OR
899                                 (`country-name` LIKE ?) OR
900                                 (`pub_keywords` LIKE ?) OR
901                                 (`prv_keywords` LIKE ?))",
902                                 $searchTerm, $searchTerm, $searchTerm, $searchTerm,
903                                 $searchTerm, $searchTerm, $searchTerm, $searchTerm];
904                 } else {
905                         $condition = ['blocked' => false, 'account_removed' => false];
906                         if (!DI::config()->get('system', 'publish_all')) {
907                                 $condition['publish'] = true;
908                         }
909                 }
910
911                 $total = DBA::count('owner-view', $condition);
912
913                 // If nothing found, don't try to select details
914                 if ($total > 0) {
915                         $profiles = DBA::selectToArray('owner-view', [], $condition, ['order' => ['name'], 'limit' => [$start, $count]]);
916                 } else {
917                         $profiles = [];
918                 }
919
920                 return ['total' => $total, 'entries' => $profiles];
921         }
922 }