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