@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | 'path' => $path, |
61 | 61 | 'type' => 'dir', |
62 | 62 | 'backend' => $mountConfig['backend'], |
63 | - 'scope' => ( $isSystemMount ? 'system' : 'personal' ), |
|
63 | + 'scope' => ($isSystemMount ? 'system' : 'personal'), |
|
64 | 64 | 'permissions' => $permissions, |
65 | 65 | 'id' => $mountConfig['id'], |
66 | 66 | 'class' => $mountConfig['class'] |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $user = \OC::$server->getUserSession()->getUser()->getUID(); |
80 | 80 | |
81 | 81 | $mounts = \OC_Mount_Config::getAbsoluteMountPoints($user); |
82 | - foreach($mounts as $mountPoint => $mount) { |
|
82 | + foreach ($mounts as $mountPoint => $mount) { |
|
83 | 83 | $entries[] = self::formatMount($mountPoint, $mount); |
84 | 84 | } |
85 | 85 |
@@ -29,7 +29,7 @@ |
||
29 | 29 | |
30 | 30 | OC::$CLASSPATH['OC_Mount_Config'] = 'files_external/lib/config.php'; |
31 | 31 | |
32 | -require_once __DIR__ . '/../3rdparty/autoload.php'; |
|
32 | +require_once __DIR__.'/../3rdparty/autoload.php'; |
|
33 | 33 | |
34 | 34 | // register Application object singleton |
35 | 35 | \OC_Mount_Config::$app = new \OCA\Files_External\AppInfo\Application(); |
@@ -18,14 +18,14 @@ |
||
18 | 18 | <tr> |
19 | 19 | <th id='headerName' class="hidden column-name"> |
20 | 20 | <div id="headerName-container"> |
21 | - <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> |
|
21 | + <a class="name sort columntitle" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a> |
|
22 | 22 | </div> |
23 | 23 | </th> |
24 | 24 | <th id="headerSize" class="hidden column-size"> |
25 | 25 | <a class="size sort columntitle" data-sort="size"><span><?php p($l->t('Size')); ?></span><span class="sort-indicator"></span></a> |
26 | 26 | </th> |
27 | 27 | <th id="headerDate" class="hidden column-mtime"> |
28 | - <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Modified' )); ?></span><span class="sort-indicator"></span></a> |
|
28 | + <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t('Modified')); ?></span><span class="sort-indicator"></span></a> |
|
29 | 29 | </th> |
30 | 30 | </tr> |
31 | 31 | </thead> |
@@ -15,14 +15,14 @@ |
||
15 | 15 | <tr> |
16 | 16 | <th id='headerName' class="hidden column-name"> |
17 | 17 | <div id="headerName-container"> |
18 | - <a class="name sort columntitle" data-sort="name"><span><?php p($l->t( 'Name' )); ?></span><span class="sort-indicator"></span></a> |
|
18 | + <a class="name sort columntitle" data-sort="name"><span><?php p($l->t('Name')); ?></span><span class="sort-indicator"></span></a> |
|
19 | 19 | </div> |
20 | 20 | </th> |
21 | 21 | <th id="headerDate" class="hidden column-mtime"> |
22 | - <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t( 'Share time' )); ?></span><span class="sort-indicator"></span></a> |
|
22 | + <a id="modified" class="columntitle" data-sort="mtime"><span><?php p($l->t('Share time')); ?></span><span class="sort-indicator"></span></a> |
|
23 | 23 | </th> |
24 | 24 | <th class="hidden column-expiration"> |
25 | - <a class="columntitle"><span><?php p($l->t( 'Expiration date' )); ?></span></a> |
|
25 | + <a class="columntitle"><span><?php p($l->t('Expiration date')); ?></span></a> |
|
26 | 26 | </th> |
27 | 27 | </tr> |
28 | 28 | </thead> |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | if (!$isWritable) { |
66 | 66 | // FIXME: should not add storage wrappers outside of preSetup, need to find a better way |
67 | 67 | $previousLog = \OC\Files\Filesystem::logWarningWhenAddingStorageWrapper(false); |
68 | - \OC\Files\Filesystem::addStorageWrapper('readonly', function ($mountPoint, $storage) { |
|
68 | + \OC\Files\Filesystem::addStorageWrapper('readonly', function($mountPoint, $storage) { |
|
69 | 69 | return new \OC\Files\Storage\Wrapper\PermissionsMask(array('storage' => $storage, 'mask' => \OCP\Constants::PERMISSION_READ + \OCP\Constants::PERMISSION_SHARE)); |
70 | 70 | }); |
71 | 71 | \OC\Files\Filesystem::logWarningWhenAddingStorageWrapper($previousLog); |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $rootInfo = \OC\Files\Filesystem::getFileInfo($path); |
75 | 75 | $rootView = new \OC\Files\View(''); |
76 | 76 | |
77 | -if($rootInfo === false || !($share->getPermissions() & \OCP\Constants::PERMISSION_READ)) { |
|
77 | +if ($rootInfo === false || !($share->getPermissions() & \OCP\Constants::PERMISSION_READ)) { |
|
78 | 78 | OCP\JSON::error(array('data' => 'Share is not readable.')); |
79 | 79 | exit(); |
80 | 80 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | $formatted['children'] = getChildInfo($child, $view, $sharePermissions); |
94 | 94 | } |
95 | 95 | $formatted['mtime'] = $formatted['mtime'] / 1000; |
96 | - $formatted['permissions'] = $sharePermissions & (int)$formatted['permissions']; |
|
96 | + $formatted['permissions'] = $sharePermissions & (int) $formatted['permissions']; |
|
97 | 97 | $result[] = $formatted; |
98 | 98 | } |
99 | 99 | return $result; |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | |
102 | 102 | $result = \OCA\Files\Helper::formatFileInfo($rootInfo); |
103 | 103 | $result['mtime'] = $result['mtime'] / 1000; |
104 | -$result['permissions'] = (int)$result['permissions'] & $share->getPermissions(); |
|
104 | +$result['permissions'] = (int) $result['permissions'] & $share->getPermissions(); |
|
105 | 105 | |
106 | 106 | |
107 | 107 | if ($rootInfo->getType() === 'dir') { |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $stmt = $this->getReShares(); |
69 | 69 | |
70 | 70 | $owners = []; |
71 | - while($share = $stmt->fetch()) { |
|
71 | + while ($share = $stmt->fetch()) { |
|
72 | 72 | |
73 | 73 | $this->shareCache[$share['id']] = $share; |
74 | 74 | |
@@ -131,11 +131,11 @@ discard block |
||
131 | 131 | */ |
132 | 132 | private function findOwner($share) { |
133 | 133 | $currentShare = $share; |
134 | - while(!is_null($currentShare['parent'])) { |
|
134 | + while (!is_null($currentShare['parent'])) { |
|
135 | 135 | if (isset($this->shareCache[$currentShare['parent']])) { |
136 | 136 | $currentShare = $this->shareCache[$currentShare['parent']]; |
137 | 137 | } else { |
138 | - $currentShare = $this->getShare((int)$currentShare['parent']); |
|
138 | + $currentShare = $this->getShare((int) $currentShare['parent']); |
|
139 | 139 | $this->shareCache[$currentShare['id']] = $currentShare; |
140 | 140 | } |
141 | 141 | } |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | |
183 | 183 | $ordered = []; |
184 | 184 | foreach ($shares as $share) { |
185 | - $ordered[(int)$share['id']] = $share; |
|
185 | + $ordered[(int) $share['id']] = $share; |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | return $ordered; |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | |
227 | 227 | $ordered = []; |
228 | 228 | foreach ($shares as $share) { |
229 | - $ordered[(int)$share['id']] = $share; |
|
229 | + $ordered[(int) $share['id']] = $share; |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | return $ordered; |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | ->set('uid_initiator', $query->createNamedParameter($owner['initiator'])); |
270 | 270 | |
271 | 271 | |
272 | - if ((int)$owner['type'] !== \OCP\Share::SHARE_TYPE_LINK) { |
|
272 | + if ((int) $owner['type'] !== \OCP\Share::SHARE_TYPE_LINK) { |
|
273 | 273 | $query->set('parent', $query->createNamedParameter(null)); |
274 | 274 | } |
275 | 275 |
@@ -68,7 +68,7 @@ |
||
68 | 68 | ); |
69 | 69 | |
70 | 70 | $shares = $qb->execute(); |
71 | - while($share = $shares->fetch()) { |
|
71 | + while ($share = $shares->fetch()) { |
|
72 | 72 | \OCP\Share::unshare($share['item_type'], $share['file_source'], \OCP\Share::SHARE_TYPE_LINK, null, $share['uid_owner']); |
73 | 73 | } |
74 | 74 | $shares->closeCursor(); |
@@ -23,6 +23,6 @@ |
||
23 | 23 | |
24 | 24 | namespace OCA\Files_Sharing; |
25 | 25 | |
26 | -interface ISharedStorage{ |
|
26 | +interface ISharedStorage { |
|
27 | 27 | |
28 | 28 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | /** {@inheritDoc} */ |
39 | 39 | public function scan($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1, $lock = true) { |
40 | - if(!$this->storage->remoteIsOwnCloud()) { |
|
40 | + if (!$this->storage->remoteIsOwnCloud()) { |
|
41 | 41 | return parent::scan($path, $recursive, $recursive, $lock); |
42 | 42 | } |
43 | 43 | |
@@ -88,8 +88,8 @@ discard block |
||
88 | 88 | } catch (\Exception $e) { |
89 | 89 | $this->storage->checkStorageAvailability(); |
90 | 90 | throw new \Exception( |
91 | - 'Error while scanning remote share: "' . |
|
92 | - $this->storage->getRemote() . '" ' . |
|
91 | + 'Error while scanning remote share: "'. |
|
92 | + $this->storage->getRemote().'" '. |
|
93 | 93 | $e->getMessage() |
94 | 94 | ); |
95 | 95 | } |
@@ -97,8 +97,8 @@ discard block |
||
97 | 97 | $this->addResult($data['data'], ''); |
98 | 98 | } else { |
99 | 99 | throw new \Exception( |
100 | - 'Error while scanning remote share: "' . |
|
101 | - $this->storage->getRemote() . '"' |
|
100 | + 'Error while scanning remote share: "'. |
|
101 | + $this->storage->getRemote().'"' |
|
102 | 102 | ); |
103 | 103 | } |
104 | 104 | } |
@@ -113,14 +113,14 @@ discard block |
||
113 | 113 | $children = []; |
114 | 114 | foreach ($data['children'] as $child) { |
115 | 115 | $children[$child['name']] = true; |
116 | - $this->addResult($child, ltrim($path . '/' . $child['name'], '/')); |
|
116 | + $this->addResult($child, ltrim($path.'/'.$child['name'], '/')); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | $existingCache = $this->cache->getFolderContentsById($id); |
120 | 120 | foreach ($existingCache as $existingChild) { |
121 | 121 | // if an existing child is not in the new data, remove it |
122 | 122 | if (!isset($children[$existingChild['name']])) { |
123 | - $this->cache->remove(ltrim($path . '/' . $existingChild['name'], '/')); |
|
123 | + $this->cache->remove(ltrim($path.'/'.$existingChild['name'], '/')); |
|
124 | 124 | } |
125 | 125 | } |
126 | 126 | } |