Disable.php 1.8 KB

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