summaryrefslogtreecommitdiffstats
path: root/lib/private/Repair/Preview.php
diff options
context:
space:
mode:
authorThomas Müller <DeepDiver1975@users.noreply.github.com>2016-04-22 09:22:56 +0200
committerThomas Müller <DeepDiver1975@users.noreply.github.com>2016-04-22 09:22:56 +0200
commit788005fd0c6360a0de5292a9cc846ad6bd36968e (patch)
tree4e72e9e3e772da7bd48ac37705f1298a4ec43282 /lib/private/Repair/Preview.php
parentded84bf571dd51798904823405f673e16ca5eff4 (diff)
parentdbe316f3c5b27f15f34ac8534f47dae491ef8e6b (diff)
downloadnextcloud-server-788005fd0c6360a0de5292a9cc846ad6bd36968e.tar.gz
nextcloud-server-788005fd0c6360a0de5292a9cc846ad6bd36968e.zip
Merge pull request #24174 from owncloud/repair_psr4
Move \OC\Repair to PSR-4
Diffstat (limited to 'lib/private/Repair/Preview.php')
-rw-r--r--lib/private/Repair/Preview.php45
1 files changed, 45 insertions, 0 deletions
diff --git a/lib/private/Repair/Preview.php b/lib/private/Repair/Preview.php
new file mode 100644
index 00000000000..481e98b42d1
--- /dev/null
+++ b/lib/private/Repair/Preview.php
@@ -0,0 +1,45 @@
+<?php
+/**
+ * @author Georg Ehrke <georg@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 OC\Files\View;
+use OC\Hooks\BasicEmitter;
+
+class Preview extends BasicEmitter implements \OC\RepairStep {
+
+ public function getName() {
+ return 'Cleaning-up broken previews';
+ }
+
+ public function run() {
+ $view = new View('/');
+ $children = $view->getDirectoryContent('/');
+
+ foreach ($children as $child) {
+ if ($view->is_dir($child->getPath())) {
+ $thumbnailsFolder = $child->getPath() . '/thumbnails';
+ if ($view->is_dir($thumbnailsFolder)) {
+ $view->rmdir($thumbnailsFolder);
+ }
+ }
+ }
+ }
+} \ No newline at end of file