Passed
Push — master ( 22de68...e9bf19 )
by Roeland
10:44 queued 10s
created
apps/files_sharing/lib/Controller/ShareInfoController.php 2 patches
Indentation   +110 added lines, -110 removed lines patch added patch discarded remove patch
@@ -17,114 +17,114 @@
 block discarded – undo
17 17
 
18 18
 class ShareInfoController extends ApiController {
19 19
 
20
-	/** @var IManager */
21
-	private $shareManager;
22
-
23
-	/**
24
-	 * ShareInfoController constructor.
25
-	 *
26
-	 * @param string $appName
27
-	 * @param IRequest $request
28
-	 * @param IManager $shareManager
29
-	 */
30
-	public function __construct($appName,
31
-								IRequest $request,
32
-								IManager $shareManager) {
33
-		parent::__construct($appName, $request);
34
-
35
-		$this->shareManager = $shareManager;
36
-	}
37
-
38
-	/**
39
-	 * @PublicPage
40
-	 * @NoCSRFRequired
41
-	 *
42
-	 * @param string $t
43
-	 * @param null $password
44
-	 * @param null $dir
45
-	 * @return JSONResponse
46
-	 * @throws ShareNotFound
47
-	 */
48
-	public function info($t, $password = null, $dir = null) {
49
-		try {
50
-			$share = $this->shareManager->getShareByToken($t);
51
-		} catch (ShareNotFound $e) {
52
-			return new JSONResponse([], Http::STATUS_NOT_FOUND);
53
-		}
54
-
55
-		if ($share->getPassword() && !$this->shareManager->checkPassword($share, $password)) {
56
-			return new JSONResponse([], Http::STATUS_FORBIDDEN);
57
-		}
58
-
59
-		if (!($share->getPermissions() & Constants::PERMISSION_READ)) {
60
-			return new JSONResponse([], Http::STATUS_FORBIDDEN);
61
-		}
62
-
63
-		$isWritable = $share->getPermissions() & (\OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_CREATE);
64
-		if (!$isWritable) {
65
-			$this->addROWrapper();
66
-		}
67
-
68
-		$node = $share->getNode();
69
-
70
-		if ($dir !== null && $node instanceof Folder) {
71
-			try {
72
-				$node = $node->get($dir);
73
-			} catch (NotFoundException $e) {
74
-
75
-			}
76
-		}
77
-
78
-		return new JSONResponse($this->parseNode($node));
79
-	}
80
-
81
-	private function parseNode(Node $node) {
82
-		if ($node instanceof File) {
83
-			return $this->parseFile($node);
84
-		}
85
-		return $this->parseFolder($node);
86
-	}
87
-
88
-	private function parseFile(File $file) {
89
-		return $this->format($file);
90
-	}
91
-
92
-	private function parseFolder(Folder $folder) {
93
-		$data = $this->format($folder);
94
-
95
-		$data['children'] = [];
96
-
97
-		$nodes = $folder->getDirectoryListing();
98
-		foreach ($nodes as $node) {
99
-			$data['children'][] = $this->parseNode($node);
100
-		}
101
-
102
-		return $data;
103
-	}
104
-
105
-	private function format(Node $node) {
106
-		$entry = [];
107
-
108
-		$entry['id'] = $node->getId();
109
-		$entry['parentId'] = $node->getParent()->getId();
110
-		$entry['mtime'] = $node->getMTime();
111
-
112
-		$entry['name'] = $node->getName();
113
-		$entry['permissions'] = $node->getPermissions();
114
-		$entry['mimetype'] = $node->getMimetype();
115
-		$entry['size'] = $node->getSize();
116
-		$entry['type'] = $node->getType();
117
-		$entry['etag'] = $node->getEtag();
118
-
119
-		return $entry;
120
-	}
121
-
122
-	protected function addROWrapper() {
123
-		// FIXME: should not add storage wrappers outside of preSetup, need to find a better way
124
-		$previousLog = \OC\Files\Filesystem::logWarningWhenAddingStorageWrapper(false);
125
-		\OC\Files\Filesystem::addStorageWrapper('readonly', function ($mountPoint, $storage) {
126
-			return new \OC\Files\Storage\Wrapper\PermissionsMask(array('storage' => $storage, 'mask' => \OCP\Constants::PERMISSION_READ + \OCP\Constants::PERMISSION_SHARE));
127
-		});
128
-		\OC\Files\Filesystem::logWarningWhenAddingStorageWrapper($previousLog);
129
-	}
20
+    /** @var IManager */
21
+    private $shareManager;
22
+
23
+    /**
24
+     * ShareInfoController constructor.
25
+     *
26
+     * @param string $appName
27
+     * @param IRequest $request
28
+     * @param IManager $shareManager
29
+     */
30
+    public function __construct($appName,
31
+                                IRequest $request,
32
+                                IManager $shareManager) {
33
+        parent::__construct($appName, $request);
34
+
35
+        $this->shareManager = $shareManager;
36
+    }
37
+
38
+    /**
39
+     * @PublicPage
40
+     * @NoCSRFRequired
41
+     *
42
+     * @param string $t
43
+     * @param null $password
44
+     * @param null $dir
45
+     * @return JSONResponse
46
+     * @throws ShareNotFound
47
+     */
48
+    public function info($t, $password = null, $dir = null) {
49
+        try {
50
+            $share = $this->shareManager->getShareByToken($t);
51
+        } catch (ShareNotFound $e) {
52
+            return new JSONResponse([], Http::STATUS_NOT_FOUND);
53
+        }
54
+
55
+        if ($share->getPassword() && !$this->shareManager->checkPassword($share, $password)) {
56
+            return new JSONResponse([], Http::STATUS_FORBIDDEN);
57
+        }
58
+
59
+        if (!($share->getPermissions() & Constants::PERMISSION_READ)) {
60
+            return new JSONResponse([], Http::STATUS_FORBIDDEN);
61
+        }
62
+
63
+        $isWritable = $share->getPermissions() & (\OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_CREATE);
64
+        if (!$isWritable) {
65
+            $this->addROWrapper();
66
+        }
67
+
68
+        $node = $share->getNode();
69
+
70
+        if ($dir !== null && $node instanceof Folder) {
71
+            try {
72
+                $node = $node->get($dir);
73
+            } catch (NotFoundException $e) {
74
+
75
+            }
76
+        }
77
+
78
+        return new JSONResponse($this->parseNode($node));
79
+    }
80
+
81
+    private function parseNode(Node $node) {
82
+        if ($node instanceof File) {
83
+            return $this->parseFile($node);
84
+        }
85
+        return $this->parseFolder($node);
86
+    }
87
+
88
+    private function parseFile(File $file) {
89
+        return $this->format($file);
90
+    }
91
+
92
+    private function parseFolder(Folder $folder) {
93
+        $data = $this->format($folder);
94
+
95
+        $data['children'] = [];
96
+
97
+        $nodes = $folder->getDirectoryListing();
98
+        foreach ($nodes as $node) {
99
+            $data['children'][] = $this->parseNode($node);
100
+        }
101
+
102
+        return $data;
103
+    }
104
+
105
+    private function format(Node $node) {
106
+        $entry = [];
107
+
108
+        $entry['id'] = $node->getId();
109
+        $entry['parentId'] = $node->getParent()->getId();
110
+        $entry['mtime'] = $node->getMTime();
111
+
112
+        $entry['name'] = $node->getName();
113
+        $entry['permissions'] = $node->getPermissions();
114
+        $entry['mimetype'] = $node->getMimetype();
115
+        $entry['size'] = $node->getSize();
116
+        $entry['type'] = $node->getType();
117
+        $entry['etag'] = $node->getEtag();
118
+
119
+        return $entry;
120
+    }
121
+
122
+    protected function addROWrapper() {
123
+        // FIXME: should not add storage wrappers outside of preSetup, need to find a better way
124
+        $previousLog = \OC\Files\Filesystem::logWarningWhenAddingStorageWrapper(false);
125
+        \OC\Files\Filesystem::addStorageWrapper('readonly', function ($mountPoint, $storage) {
126
+            return new \OC\Files\Storage\Wrapper\PermissionsMask(array('storage' => $storage, 'mask' => \OCP\Constants::PERMISSION_READ + \OCP\Constants::PERMISSION_SHARE));
127
+        });
128
+        \OC\Files\Filesystem::logWarningWhenAddingStorageWrapper($previousLog);
129
+    }
130 130
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
 	protected function addROWrapper() {
123 123
 		// FIXME: should not add storage wrappers outside of preSetup, need to find a better way
124 124
 		$previousLog = \OC\Files\Filesystem::logWarningWhenAddingStorageWrapper(false);
125
-		\OC\Files\Filesystem::addStorageWrapper('readonly', function ($mountPoint, $storage) {
125
+		\OC\Files\Filesystem::addStorageWrapper('readonly', function($mountPoint, $storage) {
126 126
 			return new \OC\Files\Storage\Wrapper\PermissionsMask(array('storage' => $storage, 'mask' => \OCP\Constants::PERMISSION_READ + \OCP\Constants::PERMISSION_SHARE));
127 127
 		});
128 128
 		\OC\Files\Filesystem::logWarningWhenAddingStorageWrapper($previousLog);
Please login to merge, or discard this patch.
lib/private/Repair/Owncloud/DropAccountTermsTable.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -29,32 +29,32 @@
 block discarded – undo
29 29
 
30 30
 class DropAccountTermsTable implements IRepairStep {
31 31
 
32
-	/** @var IDBConnection */
33
-	protected $db;
34
-
35
-	/**
36
-	 * @param IDBConnection $db
37
-	 */
38
-	public function __construct(IDBConnection $db) {
39
-		$this->db = $db;
40
-	}
41
-
42
-	/**
43
-	 * @return string
44
-	 */
45
-	public function getName() {
46
-		return 'Drop account terms table when migrating from ownCloud';
47
-	}
48
-
49
-	/**
50
-	 * @param IOutput $output
51
-	 */
52
-	public function run(IOutput $output) {
53
-		if (!$this->db->tableExists('account_terms')) {
54
-			return;
55
-		}
56
-
57
-		$this->db->dropTable('account_terms');
58
-	}
32
+    /** @var IDBConnection */
33
+    protected $db;
34
+
35
+    /**
36
+     * @param IDBConnection $db
37
+     */
38
+    public function __construct(IDBConnection $db) {
39
+        $this->db = $db;
40
+    }
41
+
42
+    /**
43
+     * @return string
44
+     */
45
+    public function getName() {
46
+        return 'Drop account terms table when migrating from ownCloud';
47
+    }
48
+
49
+    /**
50
+     * @param IOutput $output
51
+     */
52
+    public function run(IOutput $output) {
53
+        if (!$this->db->tableExists('account_terms')) {
54
+            return;
55
+        }
56
+
57
+        $this->db->dropTable('account_terms');
58
+    }
59 59
 }
60 60
 
Please login to merge, or discard this patch.
apps/files_sharing/lib/ExpireSharesJob.php 2 patches
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -29,48 +29,48 @@
 block discarded – undo
29 29
  */
30 30
 class ExpireSharesJob extends TimedJob {
31 31
 
32
-	/**
33
-	 * sets the correct interval for this timed job
34
-	 */
35
-	public function __construct() {
36
-		// Run once a day
37
-		$this->setInterval(24 * 60 * 60);
38
-	}
32
+    /**
33
+     * sets the correct interval for this timed job
34
+     */
35
+    public function __construct() {
36
+        // Run once a day
37
+        $this->setInterval(24 * 60 * 60);
38
+    }
39 39
 
40
-	/**
41
-	 * Makes the background job do its work
42
-	 *
43
-	 * @param array $argument unused argument
44
-	 */
45
-	public function run($argument) {
46
-		$connection = \OC::$server->getDatabaseConnection();
40
+    /**
41
+     * Makes the background job do its work
42
+     *
43
+     * @param array $argument unused argument
44
+     */
45
+    public function run($argument) {
46
+        $connection = \OC::$server->getDatabaseConnection();
47 47
 
48
-		//Current time
49
-		$now = new \DateTime();
50
-		$now = $now->format('Y-m-d H:i:s');
48
+        //Current time
49
+        $now = new \DateTime();
50
+        $now = $now->format('Y-m-d H:i:s');
51 51
 
52
-		/*
52
+        /*
53 53
 		 * Expire file link shares only (for now)
54 54
 		 */
55
-		$qb = $connection->getQueryBuilder();
56
-		$qb->select('id', 'file_source', 'uid_owner', 'item_type')
57
-			->from('share')
58
-			->where(
59
-				$qb->expr()->andX(
60
-					$qb->expr()->eq('share_type', $qb->expr()->literal(\OCP\Share::SHARE_TYPE_LINK)),
61
-					$qb->expr()->lte('expiration', $qb->expr()->literal($now)),
62
-					$qb->expr()->orX(
63
-						$qb->expr()->eq('item_type', $qb->expr()->literal('file')),
64
-						$qb->expr()->eq('item_type', $qb->expr()->literal('folder'))
65
-					)
66
-				)
67
-			);
55
+        $qb = $connection->getQueryBuilder();
56
+        $qb->select('id', 'file_source', 'uid_owner', 'item_type')
57
+            ->from('share')
58
+            ->where(
59
+                $qb->expr()->andX(
60
+                    $qb->expr()->eq('share_type', $qb->expr()->literal(\OCP\Share::SHARE_TYPE_LINK)),
61
+                    $qb->expr()->lte('expiration', $qb->expr()->literal($now)),
62
+                    $qb->expr()->orX(
63
+                        $qb->expr()->eq('item_type', $qb->expr()->literal('file')),
64
+                        $qb->expr()->eq('item_type', $qb->expr()->literal('folder'))
65
+                    )
66
+                )
67
+            );
68 68
 
69
-		$shares = $qb->execute();
70
-		while($share = $shares->fetch()) {
71
-			\OC\Share\Share::unshare($share['item_type'], $share['file_source'], \OCP\Share::SHARE_TYPE_LINK, null, $share['uid_owner']);
72
-		}
73
-		$shares->closeCursor();
74
-	}
69
+        $shares = $qb->execute();
70
+        while($share = $shares->fetch()) {
71
+            \OC\Share\Share::unshare($share['item_type'], $share['file_source'], \OCP\Share::SHARE_TYPE_LINK, null, $share['uid_owner']);
72
+        }
73
+        $shares->closeCursor();
74
+    }
75 75
 
76 76
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 			);
68 68
 
69 69
 		$shares = $qb->execute();
70
-		while($share = $shares->fetch()) {
70
+		while ($share = $shares->fetch()) {
71 71
 			\OC\Share\Share::unshare($share['item_type'], $share['file_source'], \OCP\Share::SHARE_TYPE_LINK, null, $share['uid_owner']);
72 72
 		}
73 73
 		$shares->closeCursor();
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Auth/InvalidAuth.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -27,18 +27,18 @@
 block discarded – undo
27 27
  */
28 28
 class InvalidAuth extends AuthMechanism {
29 29
 
30
-	/**
31
-	 * Constructs a new InvalidAuth with the id of the invalid auth
32
-	 * for display purposes
33
-	 *
34
-	 * @param string $invalidId invalid id
35
-	 */
36
-	public function __construct($invalidId) {
37
-		$this
38
-			->setIdentifier($invalidId)
39
-			->setScheme(self::SCHEME_NULL)
40
-			->setText('Unknown auth mechanism backend ' . $invalidId)
41
-		;
42
-	}
30
+    /**
31
+     * Constructs a new InvalidAuth with the id of the invalid auth
32
+     * for display purposes
33
+     *
34
+     * @param string $invalidId invalid id
35
+     */
36
+    public function __construct($invalidId) {
37
+        $this
38
+            ->setIdentifier($invalidId)
39
+            ->setScheme(self::SCHEME_NULL)
40
+            ->setText('Unknown auth mechanism backend ' . $invalidId)
41
+        ;
42
+    }
43 43
 
44 44
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 		$this
38 38
 			->setIdentifier($invalidId)
39 39
 			->setScheme(self::SCHEME_NULL)
40
-			->setText('Unknown auth mechanism backend ' . $invalidId)
40
+			->setText('Unknown auth mechanism backend '.$invalidId)
41 41
 		;
42 42
 	}
43 43
 
Please login to merge, or discard this patch.
apps/user_ldap/lib/IGroupLDAP.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -26,20 +26,20 @@
 block discarded – undo
26 26
 
27 27
 interface IGroupLDAP {
28 28
 
29
-	//Used by LDAPProvider
29
+    //Used by LDAPProvider
30 30
 
31
-	/**
32
-	 * Return access for LDAP interaction.
33
-	 * @param string $gid
34
-	 * @return Access instance of Access for LDAP interaction
35
-	 */
36
-	public function getLDAPAccess($gid);
31
+    /**
32
+     * Return access for LDAP interaction.
33
+     * @param string $gid
34
+     * @return Access instance of Access for LDAP interaction
35
+     */
36
+    public function getLDAPAccess($gid);
37 37
 
38
-	/**
39
-	 * Return a new LDAP connection for the specified group.
40
-	 * @param string $gid
41
-	 * @return resource of the LDAP connection
42
-	 */
43
-	public function getNewLDAPConnection($gid);
38
+    /**
39
+     * Return a new LDAP connection for the specified group.
40
+     * @param string $gid
41
+     * @return resource of the LDAP connection
42
+     */
43
+    public function getNewLDAPConnection($gid);
44 44
 
45 45
 }
Please login to merge, or discard this patch.
lib/public/Authentication/IApacheBackend.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -38,27 +38,27 @@
 block discarded – undo
38 38
  */
39 39
 interface IApacheBackend {
40 40
 
41
-	/**
42
-	 * In case the user has been authenticated by a module true is returned.
43
-	 *
44
-	 * @return boolean whether the module reports a user as currently logged in.
45
-	 * @since 6.0.0
46
-	 */
47
-	public function isSessionActive();
41
+    /**
42
+     * In case the user has been authenticated by a module true is returned.
43
+     *
44
+     * @return boolean whether the module reports a user as currently logged in.
45
+     * @since 6.0.0
46
+     */
47
+    public function isSessionActive();
48 48
 
49
-	/**
50
-	 * Gets the current logout URL
51
-	 *
52
-	 * @return string
53
-	 * @since 12.0.3
54
-	 */
55
-	public function getLogoutUrl();
49
+    /**
50
+     * Gets the current logout URL
51
+     *
52
+     * @return string
53
+     * @since 12.0.3
54
+     */
55
+    public function getLogoutUrl();
56 56
 
57
-	/**
58
-	 * Return the id of the current user
59
-	 * @return string
60
-	 * @since 6.0.0
61
-	 */
62
-	public function getCurrentUserId();
57
+    /**
58
+     * Return the id of the current user
59
+     * @return string
60
+     * @since 6.0.0
61
+     */
62
+    public function getCurrentUserId();
63 63
 
64 64
 }
Please login to merge, or discard this patch.
lib/public/Files/Config/IUserMountCache.php 1 patch
Indentation   +77 added lines, -77 removed lines patch added patch discarded remove patch
@@ -31,89 +31,89 @@
 block discarded – undo
31 31
  * @since 9.0.0
32 32
  */
33 33
 interface IUserMountCache {
34
-	/**
35
-	 * Register mounts for a user to the cache
36
-	 *
37
-	 * @param IUser $user
38
-	 * @param IMountPoint[] $mounts
39
-	 * @since 9.0.0
40
-	 */
41
-	public function registerMounts(IUser $user, array $mounts);
34
+    /**
35
+     * Register mounts for a user to the cache
36
+     *
37
+     * @param IUser $user
38
+     * @param IMountPoint[] $mounts
39
+     * @since 9.0.0
40
+     */
41
+    public function registerMounts(IUser $user, array $mounts);
42 42
 
43
-	/**
44
-	 * Get all cached mounts for a user
45
-	 *
46
-	 * @param IUser $user
47
-	 * @return ICachedMountInfo[]
48
-	 * @since 9.0.0
49
-	 */
50
-	public function getMountsForUser(IUser $user);
43
+    /**
44
+     * Get all cached mounts for a user
45
+     *
46
+     * @param IUser $user
47
+     * @return ICachedMountInfo[]
48
+     * @since 9.0.0
49
+     */
50
+    public function getMountsForUser(IUser $user);
51 51
 
52
-	/**
53
-	 * Get all cached mounts by storage
54
-	 *
55
-	 * @param int $numericStorageId
56
-	 * @param string|null $user limit the results to a single user @since 12.0.0
57
-	 * @return ICachedMountInfo[]
58
-	 * @since 9.0.0
59
-	 */
60
-	public function getMountsForStorageId($numericStorageId, $user = null);
52
+    /**
53
+     * Get all cached mounts by storage
54
+     *
55
+     * @param int $numericStorageId
56
+     * @param string|null $user limit the results to a single user @since 12.0.0
57
+     * @return ICachedMountInfo[]
58
+     * @since 9.0.0
59
+     */
60
+    public function getMountsForStorageId($numericStorageId, $user = null);
61 61
 
62
-	/**
63
-	 * Get all cached mounts by root
64
-	 *
65
-	 * @param int $rootFileId
66
-	 * @return ICachedMountInfo[]
67
-	 * @since 9.0.0
68
-	 */
69
-	public function getMountsForRootId($rootFileId);
62
+    /**
63
+     * Get all cached mounts by root
64
+     *
65
+     * @param int $rootFileId
66
+     * @return ICachedMountInfo[]
67
+     * @since 9.0.0
68
+     */
69
+    public function getMountsForRootId($rootFileId);
70 70
 
71
-	/**
72
-	 * Get all cached mounts that contain a file
73
-	 *
74
-	 * @param int $fileId
75
-	 * @param string|null $user optionally restrict the results to a single user @since 12.0.0
76
-	 * @return ICachedMountFileInfo[]
77
-	 * @since 9.0.0
78
-	 */
79
-	public function getMountsForFileId($fileId, $user = null);
71
+    /**
72
+     * Get all cached mounts that contain a file
73
+     *
74
+     * @param int $fileId
75
+     * @param string|null $user optionally restrict the results to a single user @since 12.0.0
76
+     * @return ICachedMountFileInfo[]
77
+     * @since 9.0.0
78
+     */
79
+    public function getMountsForFileId($fileId, $user = null);
80 80
 
81
-	/**
82
-	 * Remove all cached mounts for a user
83
-	 *
84
-	 * @param IUser $user
85
-	 * @since 9.0.0
86
-	 */
87
-	public function removeUserMounts(IUser $user);
81
+    /**
82
+     * Remove all cached mounts for a user
83
+     *
84
+     * @param IUser $user
85
+     * @since 9.0.0
86
+     */
87
+    public function removeUserMounts(IUser $user);
88 88
 
89
-	/**
90
-	 * Remove all mounts for a user and storage
91
-	 *
92
-	 * @param $storageId
93
-	 * @param string $userId
94
-	 * @return mixed
95
-	 * @since 9.0.0
96
-	 */
97
-	public function removeUserStorageMount($storageId, $userId);
89
+    /**
90
+     * Remove all mounts for a user and storage
91
+     *
92
+     * @param $storageId
93
+     * @param string $userId
94
+     * @return mixed
95
+     * @since 9.0.0
96
+     */
97
+    public function removeUserStorageMount($storageId, $userId);
98 98
 
99
-	/**
100
-	 * Remove all cached mounts for a storage
101
-	 *
102
-	 * @param $storageId
103
-	 * @return mixed
104
-	 * @since 9.0.0
105
-	 */
106
-	public function remoteStorageMounts($storageId);
99
+    /**
100
+     * Remove all cached mounts for a storage
101
+     *
102
+     * @param $storageId
103
+     * @return mixed
104
+     * @since 9.0.0
105
+     */
106
+    public function remoteStorageMounts($storageId);
107 107
 
108
-	/**
109
-	 * Get the used space for users
110
-	 *
111
-	 * Note that this only includes the space in their home directory,
112
-	 * not any incoming shares or external storages.
113
-	 *
114
-	 * @param IUser[] $users
115
-	 * @return int[] [$userId => $userSpace]
116
-	 * @since 13.0.0
117
-	 */
118
-	public function getUsedSpaceForUsers(array $users);
108
+    /**
109
+     * Get the used space for users
110
+     *
111
+     * Note that this only includes the space in their home directory,
112
+     * not any incoming shares or external storages.
113
+     *
114
+     * @param IUser[] $users
115
+     * @return int[] [$userId => $userSpace]
116
+     * @since 13.0.0
117
+     */
118
+    public function getUsedSpaceForUsers(array $users);
119 119
 }
Please login to merge, or discard this patch.
lib/private/Files/Config/CachedMountFileInfo.php 2 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -26,23 +26,23 @@
 block discarded – undo
26 26
 use OCP\IUser;
27 27
 
28 28
 class CachedMountFileInfo extends CachedMountInfo implements ICachedMountFileInfo {
29
-	/** @var string */
30
-	private $internalPath;
29
+    /** @var string */
30
+    private $internalPath;
31 31
 
32
-	public function __construct(IUser $user, $storageId, $rootId, $mountPoint, $mountId = null, $rootInternalPath = '', $internalPath) {
33
-		parent::__construct($user, $storageId, $rootId, $mountPoint, $mountId, $rootInternalPath);
34
-		$this->internalPath = $internalPath;
35
-	}
32
+    public function __construct(IUser $user, $storageId, $rootId, $mountPoint, $mountId = null, $rootInternalPath = '', $internalPath) {
33
+        parent::__construct($user, $storageId, $rootId, $mountPoint, $mountId, $rootInternalPath);
34
+        $this->internalPath = $internalPath;
35
+    }
36 36
 
37
-	public function getInternalPath() {
38
-		if ($this->getRootInternalPath()) {
39
-			return substr($this->internalPath, strlen($this->getRootInternalPath()) + 1);
40
-		} else {
41
-			return $this->internalPath;
42
-		}
43
-	}
37
+    public function getInternalPath() {
38
+        if ($this->getRootInternalPath()) {
39
+            return substr($this->internalPath, strlen($this->getRootInternalPath()) + 1);
40
+        } else {
41
+            return $this->internalPath;
42
+        }
43
+    }
44 44
 
45
-	public function getPath() {
46
-		return $this->getMountPoint() . $this->getInternalPath();
47
-	}
45
+    public function getPath() {
46
+        return $this->getMountPoint() . $this->getInternalPath();
47
+    }
48 48
 }
49 49
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,6 +43,6 @@
 block discarded – undo
43 43
 	}
44 44
 
45 45
 	public function getPath() {
46
-		return $this->getMountPoint() . $this->getInternalPath();
46
+		return $this->getMountPoint().$this->getInternalPath();
47 47
 	}
48 48
 }
49 49
\ No newline at end of file
Please login to merge, or discard this patch.
lib/private/Command/AsyncBus.php 1 patch
Indentation   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -29,76 +29,76 @@
 block discarded – undo
29 29
  * Asynchronous command bus that uses the background job system as backend
30 30
  */
31 31
 abstract class AsyncBus implements IBus {
32
-	/**
33
-	 * List of traits for command which require sync execution
34
-	 *
35
-	 * @var string[]
36
-	 */
37
-	private $syncTraits = [];
32
+    /**
33
+     * List of traits for command which require sync execution
34
+     *
35
+     * @var string[]
36
+     */
37
+    private $syncTraits = [];
38 38
 
39
-	/**
40
-	 * Schedule a command to be fired
41
-	 *
42
-	 * @param \OCP\Command\ICommand | callable $command
43
-	 */
44
-	public function push($command) {
45
-		if ($this->canRunAsync($command)) {
46
-			$this->queueCommand($command);
47
-		} else {
48
-			$this->runCommand($command);
49
-		}
50
-	}
39
+    /**
40
+     * Schedule a command to be fired
41
+     *
42
+     * @param \OCP\Command\ICommand | callable $command
43
+     */
44
+    public function push($command) {
45
+        if ($this->canRunAsync($command)) {
46
+            $this->queueCommand($command);
47
+        } else {
48
+            $this->runCommand($command);
49
+        }
50
+    }
51 51
 
52
-	/**
53
-	 * Queue a command in the bus
54
-	 *
55
-	 * @param \OCP\Command\ICommand | callable $command
56
-	 */
57
-	abstract protected function queueCommand($command);
52
+    /**
53
+     * Queue a command in the bus
54
+     *
55
+     * @param \OCP\Command\ICommand | callable $command
56
+     */
57
+    abstract protected function queueCommand($command);
58 58
 
59
-	/**
60
-	 * Require all commands using a trait to be run synchronous
61
-	 *
62
-	 * @param string $trait
63
-	 */
64
-	public function requireSync($trait) {
65
-		$this->syncTraits[] = trim($trait, '\\');
66
-	}
59
+    /**
60
+     * Require all commands using a trait to be run synchronous
61
+     *
62
+     * @param string $trait
63
+     */
64
+    public function requireSync($trait) {
65
+        $this->syncTraits[] = trim($trait, '\\');
66
+    }
67 67
 
68
-	/**
69
-	 * @param \OCP\Command\ICommand | callable $command
70
-	 */
71
-	private function runCommand($command) {
72
-		if ($command instanceof ICommand) {
73
-			$command->handle();
74
-		} else {
75
-			$command();
76
-		}
77
-	}
68
+    /**
69
+     * @param \OCP\Command\ICommand | callable $command
70
+     */
71
+    private function runCommand($command) {
72
+        if ($command instanceof ICommand) {
73
+            $command->handle();
74
+        } else {
75
+            $command();
76
+        }
77
+    }
78 78
 
79
-	/**
80
-	 * @param \OCP\Command\ICommand | callable $command
81
-	 * @return bool
82
-	 */
83
-	private function canRunAsync($command) {
84
-		$traits = $this->getTraits($command);
85
-		foreach ($traits as $trait) {
86
-			if (array_search($trait, $this->syncTraits) !== false) {
87
-				return false;
88
-			}
89
-		}
90
-		return true;
91
-	}
79
+    /**
80
+     * @param \OCP\Command\ICommand | callable $command
81
+     * @return bool
82
+     */
83
+    private function canRunAsync($command) {
84
+        $traits = $this->getTraits($command);
85
+        foreach ($traits as $trait) {
86
+            if (array_search($trait, $this->syncTraits) !== false) {
87
+                return false;
88
+            }
89
+        }
90
+        return true;
91
+    }
92 92
 
93
-	/**
94
-	 * @param \OCP\Command\ICommand | callable $command
95
-	 * @return string[]
96
-	 */
97
-	private function getTraits($command) {
98
-		if ($command instanceof ICommand) {
99
-			return class_uses($command);
100
-		} else {
101
-			return [];
102
-		}
103
-	}
93
+    /**
94
+     * @param \OCP\Command\ICommand | callable $command
95
+     * @return string[]
96
+     */
97
+    private function getTraits($command) {
98
+        if ($command instanceof ICommand) {
99
+            return class_uses($command);
100
+        } else {
101
+            return [];
102
+        }
103
+    }
104 104
 }
Please login to merge, or discard this patch.