Info.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016 Robin Appelman <robin@icewind.nl>
  4. *
  5. * @author Joas Schilling <coding@schilljs.com>
  6. * @author Morris Jobke <hey@morrisjobke.de>
  7. * @author Robin Appelman <robin@icewind.nl>
  8. *
  9. * @license GNU AGPL version 3 or any later version
  10. *
  11. * This program is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License as
  13. * published by the Free Software Foundation, either version 3 of the
  14. * License, or (at your option) any later version.
  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
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. *
  24. */
  25. namespace OC\Core\Command\User;
  26. use OC\Core\Command\Base;
  27. use OCP\IGroupManager;
  28. use OCP\IUser;
  29. use OCP\IUserManager;
  30. use Symfony\Component\Console\Input\InputArgument;
  31. use Symfony\Component\Console\Input\InputInterface;
  32. use Symfony\Component\Console\Input\InputOption;
  33. use Symfony\Component\Console\Output\OutputInterface;
  34. class Info extends Base {
  35. /** @var IUserManager */
  36. protected $userManager;
  37. /** @var IGroupManager */
  38. protected $groupManager;
  39. /**
  40. * @param IUserManager $userManager
  41. * @param IGroupManager $groupManager
  42. */
  43. public function __construct(IUserManager $userManager, IGroupManager $groupManager) {
  44. $this->userManager = $userManager;
  45. $this->groupManager = $groupManager;
  46. parent::__construct();
  47. }
  48. protected function configure() {
  49. $this
  50. ->setName('user:info')
  51. ->setDescription('show user info')
  52. ->addArgument(
  53. 'user',
  54. InputArgument::REQUIRED,
  55. 'user to show'
  56. )->addOption(
  57. 'output',
  58. null,
  59. InputOption::VALUE_OPTIONAL,
  60. 'Output format (plain, json or json_pretty, default is plain)',
  61. $this->defaultOutputFormat
  62. );
  63. }
  64. protected function execute(InputInterface $input, OutputInterface $output): int {
  65. $user = $this->userManager->get($input->getArgument('user'));
  66. if (is_null($user)) {
  67. $output->writeln('<error>user not found</error>');
  68. return 1;
  69. }
  70. $groups = $this->groupManager->getUserGroupIds($user);
  71. $data = [
  72. 'user_id' => $user->getUID(),
  73. 'display_name' => $user->getDisplayName(),
  74. 'email' => (string)$user->getSystemEMailAddress(),
  75. 'cloud_id' => $user->getCloudId(),
  76. 'enabled' => $user->isEnabled(),
  77. 'groups' => $groups,
  78. 'quota' => $user->getQuota(),
  79. 'storage' => $this->getStorageInfo($user),
  80. 'last_seen' => date(\DateTimeInterface::ATOM, $user->getLastLogin()), // ISO-8601
  81. 'user_directory' => $user->getHome(),
  82. 'backend' => $user->getBackendClassName()
  83. ];
  84. $this->writeArrayInOutputFormat($input, $output, $data);
  85. return 0;
  86. }
  87. /**
  88. * @param IUser $user
  89. * @return array
  90. */
  91. protected function getStorageInfo(IUser $user): array {
  92. \OC_Util::tearDownFS();
  93. \OC_Util::setupFS($user->getUID());
  94. $storage = \OC_Helper::getStorageInfo('/');
  95. return [
  96. 'free' => $storage['free'],
  97. 'used' => $storage['used'],
  98. 'total' => $storage['total'],
  99. 'relative' => $storage['relative'],
  100. 'quota' => $storage['quota'],
  101. ];
  102. }
  103. }