]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/Widget/CalendarExport.php
Merge pull request #11477 from annando/avatar-file-cache
[friendica.git] / src / Content / Widget / CalendarExport.php
index 9f282d264214e854564422a6f9330532e9c7ec0d..3d028ef478ca8f52272586440a44f48fe2940380 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -21,9 +21,9 @@
 
 namespace Friendica\Content\Widget;
 
-use Friendica\Content\Feature;
 use Friendica\Core\Renderer;
 use Friendica\DI;
+use Friendica\Model\User;
 
 /**
  * TagCloud widget
@@ -34,36 +34,27 @@ class CalendarExport
 {
        /**
         * Get the events widget.
+        * @param int $uid
         *
         * @return string Formated HTML of the calendar widget.
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function getHTML() {
-               $a = DI::app();
-
-               if (empty($a->data['user'])) {
-                       return;
+       public static function getHTML(int $uid = 0) {
+               if (empty($uid)) {
+                       return '';
                }
 
-               $owner_uid = intval($a->data['user']['uid']);
-
-               // The permission testing is a little bit tricky because we have to respect many cases.
-
-               // It's not the private events page (we don't get the $owner_uid for /events).
-               if (!local_user() && !$owner_uid) {
-                       return;
+               $user = User::getById($uid, ['nickname']);
+               if (empty($user['nickname'])) {
+                       return '';
                }
 
-               // $a->data is only available if the profile page is visited. If the visited page is not part
-               // of the profile page it should be the personal /events page. So we can use $a->user.
-               $user = ($a->data['user']['nickname'] ?? '') ?: $a->user['nickname'];
-
                $tpl = Renderer::getMarkupTemplate("widget/events.tpl");
                $return = Renderer::replaceMacros($tpl, [
                        '$etitle'      => DI::l10n()->t("Export"),
                        '$export_ical' => DI::l10n()->t("Export calendar as ical"),
                        '$export_csv'  => DI::l10n()->t("Export calendar as csv"),
-                       '$user'        => $user
+                       '$user'        => $user['nickname']
                ]);
 
                return $return;