2014-01-08 02:06:37 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
2014-01-08 02:06:37 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-01-08 02:06:37 +04:00
|
|
|
namespace OC\Core\Command\User;
|
|
|
|
|
2015-04-23 13:40:13 +03:00
|
|
|
use OCP\IUserManager;
|
2014-01-08 02:06:37 +04:00
|
|
|
use Symfony\Component\Console\Command\Command;
|
2016-09-06 21:35:10 +03:00
|
|
|
use Symfony\Component\Console\Helper\Table;
|
2014-01-08 02:06:37 +04:00
|
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
|
|
class Report extends Command {
|
2015-04-23 13:40:13 +03:00
|
|
|
/** @var IUserManager */
|
|
|
|
protected $userManager;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IUserManager $userManager
|
|
|
|
*/
|
|
|
|
public function __construct(IUserManager $userManager) {
|
|
|
|
$this->userManager = $userManager;
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
2014-01-08 02:06:37 +04:00
|
|
|
protected function configure() {
|
|
|
|
$this
|
|
|
|
->setName('user:report')
|
|
|
|
->setDescription('shows how many users have access');
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) {
|
2016-09-06 21:35:10 +03:00
|
|
|
$table = new Table($output);
|
2014-01-08 02:06:37 +04:00
|
|
|
$table->setHeaders(array('User Report', ''));
|
|
|
|
$userCountArray = $this->countUsers();
|
|
|
|
if(!empty($userCountArray)) {
|
|
|
|
$total = 0;
|
|
|
|
$rows = array();
|
|
|
|
foreach($userCountArray as $classname => $users) {
|
|
|
|
$total += $users;
|
|
|
|
$rows[] = array($classname, $users);
|
|
|
|
}
|
|
|
|
|
|
|
|
$rows[] = array(' ');
|
|
|
|
$rows[] = array('total users', $total);
|
|
|
|
} else {
|
|
|
|
$rows[] = array('No backend enabled that supports user counting', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
$userDirectoryCount = $this->countUserDirectories();
|
|
|
|
$rows[] = array(' ');
|
|
|
|
$rows[] = array('user directories', $userDirectoryCount);
|
|
|
|
|
|
|
|
$table->setRows($rows);
|
2016-09-06 21:35:10 +03:00
|
|
|
$table->render();
|
2014-01-08 02:06:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
private function countUsers() {
|
2015-04-23 13:40:13 +03:00
|
|
|
return $this->userManager->countUsers();
|
2014-01-08 02:06:37 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
private function countUserDirectories() {
|
|
|
|
$dataview = new \OC\Files\View('/');
|
|
|
|
$userDirectories = $dataview->getDirectoryContent('/', 'httpd/unix-directory');
|
|
|
|
return count($userDirectories);
|
|
|
|
}
|
2014-02-06 14:34:27 +04:00
|
|
|
}
|