]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Console/ArchiveContact.php
Update "storage" console command
[friendica.git] / src / Core / Console / ArchiveContact.php
index 8a6bc1f7bf5312733c6659c861546010d9f5af16..ffcd5a1658a245a57ea9dae1d7307798c2e6b0a5 100644 (file)
@@ -5,6 +5,7 @@ namespace Friendica\Core\Console;
 use Friendica\App;
 use Friendica\Core\L10n;
 use Friendica\Database\DBA;
+use Friendica\Util\Strings;
 use RuntimeException;
 
 /**
@@ -39,7 +40,7 @@ HELP;
 
        protected function doExecute()
        {
-               $a = get_app();
+               $a = \Friendica\BaseObject::getApp();
 
                if ($this->getOption('v')) {
                        $this->out('Class: ' . __CLASS__);
@@ -56,11 +57,11 @@ HELP;
                        throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
                }
 
-               if (App\Mode::isInstall()) {
+               if ($a->getMode()->isInstall()) {
                        throw new RuntimeException('Friendica isn\'t properly installed yet.');
                }
 
-               $nurl = normalise_link($this->getArgument(0));
+               $nurl = Strings::normaliseLink($this->getArgument(0));
                if (!DBA::exists('contact', ['nurl' => $nurl, 'archive' => false])) {
                        throw new RuntimeException(L10n::t('Could not find any unarchived contact entry for this URL (%s)', $nurl));
                }