Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-06-17 11:06:08 +0300
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-06-17 11:06:08 +0300
commitb5d3e877f1554a261da9d5a1fe0381f30607815b (patch)
tree46f0dec451f5170dc62e01ed9b060868f170f218 /lib
parent2ce078e7c3ffe3e3901f8ae7f44c8741ef5fa370 (diff)
Remove shares of the root folder (#25138)
Diffstat (limited to 'lib')
-rw-r--r--lib/private/repair.php2
-rw-r--r--lib/private/repair/removerootshares.php145
2 files changed, 147 insertions, 0 deletions
diff --git a/lib/private/repair.php b/lib/private/repair.php
index 098d4e7eb93..b2a1e5a0705 100644
--- a/lib/private/repair.php
+++ b/lib/private/repair.php
@@ -48,6 +48,7 @@ use OC\Repair\RepairMimeTypes;
use OC\Repair\SearchLuceneTables;
use OC\Repair\UpdateOutdatedOcsIds;
use OC\Repair\RepairInvalidShares;
+use OC\Repair\RemoveRootShares;
class Repair extends BasicEmitter {
/**
@@ -118,6 +119,7 @@ class Repair extends BasicEmitter {
new UpdateOutdatedOcsIds(\OC::$server->getConfig()),
new RepairInvalidShares(\OC::$server->getConfig(), \OC::$server->getDatabaseConnection()),
new AvatarPermissions(\OC::$server->getDatabaseConnection()),
+ new RemoveRootShares(\OC::$server->getDatabaseConnection(), \OC::$server->getUserManager(), \OC::$server->getRootFolder()),
];
}
diff --git a/lib/private/repair/removerootshares.php b/lib/private/repair/removerootshares.php
new file mode 100644
index 00000000000..bf7061c0838
--- /dev/null
+++ b/lib/private/repair/removerootshares.php
@@ -0,0 +1,145 @@
+<?php
+/**
+ * @author Roeland Jago Douma <rullzer@owncloud.com>
+ *
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
+ * @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/>
+ *
+ */
+namespace OC\Repair;
+
+use OCP\Files\IRootFolder;
+use OCP\IDBConnection;
+use OCP\IUser;
+use OCP\IUserManager;
+use OCP\Migration\IOutput;
+
+/**
+ * Class RemoveRootShares
+ *
+ * @package OC\Repair
+ */
+class RemoveRootShares implements \OC\RepairStep {
+
+ /** @var IDBConnection */
+ protected $connection;
+
+ /** @var IUserManager */
+ protected $userManager;
+
+ /** @var IRootFolder */
+ protected $rootFolder;
+
+ /**
+ * RemoveRootShares constructor.
+ *
+ * @param IDBConnection $connection
+ * @param IUserManager $userManager
+ * @param IRootFolder $rootFolder
+ */
+ public function __construct(IDBConnection $connection,
+ IUserManager $userManager,
+ IRootFolder $rootFolder) {
+ $this->connection = $connection;
+ $this->userManager = $userManager;
+ $this->rootFolder = $rootFolder;
+ }
+
+ /**
+ * @return string
+ */
+ public function getName() {
+ return 'Remove shares of a users root folder';
+ }
+
+ public function run() {
+ if ($this->rootSharesExist()) {
+ $this->removeRootShares();
+ }
+ }
+
+ private function removeRootShares() {
+ $function = function(IUser $user) {
+ $userFolder = $this->rootFolder->getUserFolder($user->getUID());
+ $fileId = $userFolder->getId();
+
+ $qb = $this->connection->getQueryBuilder();
+ $qb->delete('share')
+ ->where($qb->expr()->eq('file_source', $qb->createNamedParameter($fileId)))
+ ->andWhere($qb->expr()->orX(
+ $qb->expr()->eq('item_type', $qb->expr()->literal('file')),
+ $qb->expr()->eq('item_type', $qb->expr()->literal('folder'))
+ ));
+
+ $qb->execute();
+ };
+
+ $userCount = $this->countUsers();
+
+ $this->userManager->callForAllUsers($function);
+ }
+
+ /**
+ * Count all the users
+ *
+ * @return int
+ */
+ private function countUsers() {
+ $allCount = $this->userManager->countUsers();
+
+ $totalCount = 0;
+ foreach ($allCount as $backend => $count) {
+ $totalCount += $count;
+ }
+
+ return $totalCount;
+ }
+
+ /**
+ * Verify if this repair steps is required
+ * It *should* not be necessary in most cases and it can be very
+ * costly.
+ *
+ * @return bool
+ */
+ private function rootSharesExist() {
+ $qb = $this->connection->getQueryBuilder();
+ $qb2 = $this->connection->getQueryBuilder();
+
+ $qb->select('fileid')
+ ->from('filecache')
+ ->where($qb->expr()->eq('path', $qb->expr()->literal('files')));
+
+ $qb2->select('id')
+ ->from('share')
+ ->where($qb2->expr()->in('file_source', $qb2->createFunction($qb->getSQL())))
+ ->andWhere($qb2->expr()->orX(
+ $qb2->expr()->eq('item_type', $qb->expr()->literal('file')),
+ $qb2->expr()->eq('item_type', $qb->expr()->literal('folder'))
+ ))
+ ->setMaxResults(1);
+
+ $cursor = $qb2->execute();
+ $data = $cursor->fetch();
+ $cursor->closeCursor();
+
+ if ($data === false) {
+ return false;
+ }
+
+ return true;
+ }
+}
+