diff options
author | Roeland Douma <rullzer@users.noreply.github.com> | 2016-04-06 13:31:44 +0200 |
---|---|---|
committer | Roeland Douma <rullzer@users.noreply.github.com> | 2016-04-06 13:31:44 +0200 |
commit | 93b1768eb78e32539bafdc91af3d397f426b46ba (patch) | |
tree | 5df3adc6978daf7d338ac3bc1285655f879c8ae1 /core/Command/User/Delete.php | |
parent | 7ed271b16870cf31c9fa26e3d045181cd805d9b0 (diff) | |
parent | c952adabb553ef1ee0a3c8ff6125e0048f750428 (diff) | |
download | nextcloud-server-93b1768eb78e32539bafdc91af3d397f426b46ba.tar.gz nextcloud-server-93b1768eb78e32539bafdc91af3d397f426b46ba.zip |
Merge pull request #23819 from owncloud/move-core-completely-to-psr4
Move OC/Core completely to PSR-4
Diffstat (limited to 'core/Command/User/Delete.php')
-rw-r--r-- | core/Command/User/Delete.php | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/core/Command/User/Delete.php b/core/Command/User/Delete.php new file mode 100644 index 00000000000..b9a0a0e3950 --- /dev/null +++ b/core/Command/User/Delete.php @@ -0,0 +1,70 @@ +<?php +/** + * @author Arthur Schiwon <blizzz@owncloud.com> + * @author Jens-Christian Fischer <jens-christian.fischer@switch.ch> + * @author Joas Schilling <nickvergessen@owncloud.com> + * @author Morris Jobke <hey@morrisjobke.de> + * + * @copyright Copyright (c) 2016, ownCloud, Inc. + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * 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, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +namespace OC\Core\Command\User; + +use OCP\IUserManager; +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Console\Input\InputArgument; + +class Delete extends Command { + /** @var IUserManager */ + protected $userManager; + + /** + * @param IUserManager $userManager + */ + public function __construct(IUserManager $userManager) { + $this->userManager = $userManager; + parent::__construct(); + } + + protected function configure() { + $this + ->setName('user:delete') + ->setDescription('deletes the specified user') + ->addArgument( + 'uid', + InputArgument::REQUIRED, + 'the username' + ); + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $user = $this->userManager->get($input->getArgument('uid')); + if (is_null($user)) { + $output->writeln('<error>User does not exist</error>'); + return; + } + + if ($user->delete()) { + $output->writeln('<info>The specified user was deleted</info>'); + return; + } + + $output->writeln('<error>The specified user could not be deleted. Please check the logs.</error>'); + } +} |