]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/GlobalCommunitySilence.php
Remove deprecated code
[friendica.git] / src / Console / GlobalCommunitySilence.php
index 466c1adf5ae7925848b6928288d803ce861d1940..f944fcbe27e3fe122722d3c819dc75e5ef02f5ac 100644 (file)
@@ -2,13 +2,13 @@
 
 namespace Friendica\Console;
 
-use Friendica\BaseObject;
-use Friendica\Database\DBA;
+use Friendica\App;
+use Friendica\Database\Database;
 use Friendica\Model\Contact;
 use RuntimeException;
 
 /**
- * @brief tool to silence accounts on the global community page
+ * tool to silence accounts on the global community page
  *
  * With this tool, you can silence an account on the global community page.
  * Postings from silenced accounts will not be displayed on the community
@@ -24,6 +24,15 @@ class GlobalCommunitySilence extends \Asika\SimpleConsole\Console
 {
        protected $helpOptions = ['h', 'help', '?'];
 
+       /**
+        * @var App\Mode
+        */
+       private $appMode;
+       /**
+        * @var Database
+        */
+       private $dba;
+
        protected function getHelp()
        {
                $help = <<<HELP
@@ -44,6 +53,14 @@ HELP;
                return $help;
        }
 
+       public function __construct(App\Mode $appMode, Database $dba, array $argv = null)
+       {
+               parent::__construct($argv);
+
+               $this->appMode = $appMode;
+               $this->dba  =$dba;
+       }
+
        protected function doExecute()
        {
                if ($this->getOption('v')) {
@@ -61,13 +78,13 @@ HELP;
                        throw new \Asika\SimpleConsole\CommandArgsException('Too many arguments');
                }
 
-               if (BaseObject::getApp()->getMode()->isInstall()) {
+               if ($this->appMode->isInstall()) {
                        throw new RuntimeException('Database isn\'t ready or populated yet');
                }
 
                $contact_id = Contact::getIdForURL($this->getArgument(0));
                if ($contact_id) {
-                       DBA::update('contact', ['hidden' => true], ['id' => $contact_id]);
+                       $this->dba->update('contact', ['hidden' => true], ['id' => $contact_id]);
                        $this->out('The account has been successfully silenced from the global community page.');
                } else {
                        throw new RuntimeException('Could not find any public contact entry for this URL (' . $this->getArgument(0) . ')');