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