]> git.mxchange.org Git - friendica.git/blob - src/Content/Widget/CalendarExport.php
Merge pull request #4729 from MrPetovan/task/4604-add-password-exposed-check
[friendica.git] / src / Content / Widget / CalendarExport.php
1 <?php
2
3 /*
4  * @file src/Content/Widget/CalendarExport.php
5  */
6
7 namespace Friendica\Content\Widget;
8
9 use Friendica\Content\Feature;
10 use Friendica\Core\L10n;
11
12 require_once 'boot.php';
13 require_once 'include/text.php';
14
15 /**
16  * TagCloud widget
17  *
18  * @author Rabuzarus
19  */
20 class CalendarExport
21 {
22         /**
23          * @brief Get the events widget.
24          *
25          * @return string Formated HTML of the calendar widget.
26          */
27         public static function getHTML() {
28                 $a = get_app();
29
30                 $owner_uid = $a->data['user']['uid'];
31
32                 // The permission testing is a little bit tricky because we have to respect many cases.
33
34                 // It's not the private events page (we don't get the $owner_uid for /events).
35                 if (!local_user() && !$owner_uid) {
36                         return;
37                 }
38
39                 /*
40                  * If it's a kind of profile page (intval($owner_uid)) return if the user not logged in and
41                  * export feature isn't enabled.
42                  */
43                 /*
44                  * Cal logged in user (test permission at foreign profile page).
45                  * If the $owner uid is available we know it is part of one of the profile pages (like /cal).
46                  * So we have to test if if it's the own profile page of the logged in user
47                  * or a foreign one. For foreign profile pages we need to check if the feature
48                  * for exporting the cal is enabled (otherwise the widget would appear for logged in users
49                  * on foreigen profile pages even if the widget is disabled).
50                  */
51                 if (local_user() != $owner_uid && !Feature::isEnabled($owner_uid, "export_calendar")) {
52                         return;
53                 }
54
55                 // $a->data is only available if the profile page is visited. If the visited page is not part
56                 // of the profile page it should be the personal /events page. So we can use $a->user.
57                 $user = defaults($a->data['user'], 'nickname', $a->user['nickname']);
58
59                 $tpl = get_markup_template("events_aside.tpl");
60                 $return = replace_macros($tpl, [
61                         '$etitle'      => L10n::t("Export"),
62                         '$export_ical' => L10n::t("Export calendar as ical"),
63                         '$export_csv'  => L10n::t("Export calendar as csv"),
64                         '$user'        => $user
65                 ]);
66
67                 return $return;
68         }
69 }