Merge pull request #13505 from owncloud/streamline-scanning-code

Streamline auth and CSRF check in scan.php
This commit is contained in:
Thomas Müller 2015-02-19 16:35:05 +01:00
commit df58eea93f
1 changed files with 5 additions and 1 deletions

View File

@ -1,11 +1,15 @@
<?php
set_time_limit(0); //scanning can take ages
\OCP\JSON::checkLoggedIn();
\OCP\JSON::callCheck();
\OC::$server->getSession()->close();
$force = (isset($_GET['force']) and ($_GET['force'] === 'true'));
$dir = isset($_GET['dir']) ? $_GET['dir'] : '';
if (isset($_GET['users'])) {
OC_JSON::checkAdminUser();
\OCP\JSON::checkAdminUser();
if ($_GET['users'] === 'all') {
$users = OC_User::getUsers();
} else {