]> git.mxchange.org Git - friendica.git/blobdiff - mod/repair_ostatus.php
Remove unused cached avatar photo entries
[friendica.git] / mod / repair_ostatus.php
index 5a6afd9fb4d4853af4391b073789157f553a28fe..0d30fc298dea1c83be9183906b7a2aa23dc801e9 100644 (file)
@@ -1,29 +1,42 @@
 <?php
 /**
- * @file mod/repair_ostatus.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
 
 use Friendica\App;
-use Friendica\Core\L10n;
 use Friendica\Core\Protocol;
-use Friendica\Core\System;
 use Friendica\Database\DBA;
+use Friendica\DI;
 use Friendica\Model\Contact;
 
 function repair_ostatus_content(App $a) {
 
        if (! local_user()) {
-               notice(L10n::t('Permission denied.') . EOL);
-               $a->internalRedirect('ostatus_repair');
+               notice(DI::l10n()->t('Permission denied.'));
+               DI::baseUrl()->redirect('ostatus_repair');
                // NOTREACHED
        }
 
-       $o = "<h2>".L10n::t("Resubscribing to OStatus contacts")."</h2>";
+       $o = "<h2>".DI::l10n()->t("Resubscribing to OStatus contacts")."</h2>";
 
        $uid = local_user();
 
-       $a = \get_app();
-
        $counter = intval($_REQUEST['counter']);
 
        $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE
@@ -34,7 +47,7 @@ function repair_ostatus_content(App $a) {
                intval(Contact::SHARING));
 
        if (!DBA::isResult($r)) {
-               return ($o . L10n::t("Error"));
+               return ($o . DI::l10n()->t("Error"));
        }
 
        $total = $r[0]["total"];
@@ -49,17 +62,17 @@ function repair_ostatus_content(App $a) {
                intval(Contact::SHARING), $counter++);
 
        if (!DBA::isResult($r)) {
-               $o .= L10n::t("Done");
+               $o .= DI::l10n()->t("Done");
                return $o;
        }
 
        $o .= "<p>".$counter."/".$total.": ".$r[0]["url"]."</p>";
 
-       $o .= "<p>".L10n::t("Keep this window open until done.")."</p>";
+       $o .= "<p>".DI::l10n()->t("Keep this window open until done.")."</p>";
 
-       $result = Contact::createFromProbe($uid, $r[0]["url"], true);
+       Contact::createFromProbe($a->user, $r[0]["url"], true);
 
-       $a->page['htmlhead'] = '<meta http-equiv="refresh" content="1; URL='.System::baseUrl().'/repair_ostatus?counter='.$counter.'">';
+       DI::page()['htmlhead'] = '<meta http-equiv="refresh" content="1; URL=' . DI::baseUrl() . '/repair_ostatus?counter='.$counter.'">';
 
        return $o;
 }