Delete.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Jens-Christian Fischer <jens-christian.fischer@switch.ch>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Roeland Jago Douma <roeland@famdouma.nl>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. namespace OC\Core\Command\User;
  26. use OCP\IUserManager;
  27. use Symfony\Component\Console\Command\Command;
  28. use Symfony\Component\Console\Input\InputArgument;
  29. use Symfony\Component\Console\Input\InputInterface;
  30. use Symfony\Component\Console\Output\OutputInterface;
  31. class Delete extends Command {
  32. /** @var IUserManager */
  33. protected $userManager;
  34. /**
  35. * @param IUserManager $userManager
  36. */
  37. public function __construct(IUserManager $userManager) {
  38. $this->userManager = $userManager;
  39. parent::__construct();
  40. }
  41. protected function configure() {
  42. $this
  43. ->setName('user:delete')
  44. ->setDescription('deletes the specified user')
  45. ->addArgument(
  46. 'uid',
  47. InputArgument::REQUIRED,
  48. 'the username'
  49. );
  50. }
  51. protected function execute(InputInterface $input, OutputInterface $output): int {
  52. $user = $this->userManager->get($input->getArgument('uid'));
  53. if (is_null($user)) {
  54. $output->writeln('<error>User does not exist</error>');
  55. return 0;
  56. }
  57. if ($user->delete()) {
  58. $output->writeln('<info>The specified user was deleted</info>');
  59. return 0;
  60. }
  61. $output->writeln('<error>The specified user could not be deleted. Please check the logs.</error>');
  62. return 1;
  63. }
  64. }