LastSeen.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. * @author Morris Jobke <hey@morrisjobke.de>
  8. * @author Pierre Ozoux <pierre@ozoux.net>
  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\InputInterface;
  29. use Symfony\Component\Console\Output\OutputInterface;
  30. use Symfony\Component\Console\Input\InputArgument;
  31. class LastSeen 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:lastseen')
  44. ->setDescription('shows when the user was logged in last time')
  45. ->addArgument(
  46. 'uid',
  47. InputArgument::REQUIRED,
  48. 'the username'
  49. );
  50. }
  51. protected function execute(InputInterface $input, OutputInterface $output) {
  52. $user = $this->userManager->get($input->getArgument('uid'));
  53. if(is_null($user)) {
  54. $output->writeln('<error>User does not exist</error>');
  55. return;
  56. }
  57. $lastLogin = $user->getLastLogin();
  58. if($lastLogin === 0) {
  59. $output->writeln('User ' . $user->getUID() .
  60. ' has never logged in, yet.');
  61. } else {
  62. $date = new \DateTime();
  63. $date->setTimestamp($lastLogin);
  64. $output->writeln($user->getUID() .
  65. '`s last login: ' . $date->format('d.m.Y H:i'));
  66. }
  67. }
  68. }