Completed
Pull Request — master (#8565)
by Joas
105:07 queued 85:11
created
lib/private/Group/Manager.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
 	/**
157 157
 	 * @param string $gid
158 158
 	 * @param string $displayName
159
-	 * @return \OCP\IGroup
159
+	 * @return null|Group
160 160
 	 */
161 161
 	protected function getGroupObject($gid, $displayName = null) {
162 162
 		$backends = array();
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -93,20 +93,20 @@  discard block
 block discarded – undo
93 93
 		$this->logger = $logger;
94 94
 		$cachedGroups = & $this->cachedGroups;
95 95
 		$cachedUserGroups = & $this->cachedUserGroups;
96
-		$this->listen('\OC\Group', 'postDelete', function ($group) use (&$cachedGroups, &$cachedUserGroups) {
96
+		$this->listen('\OC\Group', 'postDelete', function($group) use (&$cachedGroups, &$cachedUserGroups) {
97 97
 			/**
98 98
 			 * @var \OC\Group\Group $group
99 99
 			 */
100 100
 			unset($cachedGroups[$group->getGID()]);
101 101
 			$cachedUserGroups = array();
102 102
 		});
103
-		$this->listen('\OC\Group', 'postAddUser', function ($group) use (&$cachedUserGroups) {
103
+		$this->listen('\OC\Group', 'postAddUser', function($group) use (&$cachedUserGroups) {
104 104
 			/**
105 105
 			 * @var \OC\Group\Group $group
106 106
 			 */
107 107
 			$cachedUserGroups = array();
108 108
 		});
109
-		$this->listen('\OC\Group', 'postRemoveUser', function ($group) use (&$cachedUserGroups) {
109
+		$this->listen('\OC\Group', 'postRemoveUser', function($group) use (&$cachedUserGroups) {
110 110
 			/**
111 111
 			 * @var \OC\Group\Group $group
112 112
 			 */
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
 				if ($aGroup instanceof IGroup) {
236 236
 					$groups[$groupId] = $aGroup;
237 237
 				} else {
238
-					$this->logger->debug('Group "' . $groupId . '" was returned by search but not found through direct access', ['app' => 'core']);
238
+					$this->logger->debug('Group "'.$groupId.'" was returned by search but not found through direct access', ['app' => 'core']);
239 239
 				}
240 240
 			}
241 241
 			if (!is_null($limit) and $limit <= 0) {
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
 	 * @param IUser|null $user
250 250
 	 * @return \OC\Group\Group[]
251 251
 	 */
252
-	public function getUserGroups(IUser $user= null) {
252
+	public function getUserGroups(IUser $user = null) {
253 253
 		if (!$user instanceof IUser) {
254 254
 			return [];
255 255
 		}
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
 					if ($aGroup instanceof IGroup) {
274 274
 						$groups[$groupId] = $aGroup;
275 275
 					} else {
276
-						$this->logger->debug('User "' . $uid . '" belongs to deleted group: "' . $groupId . '"', ['app' => 'core']);
276
+						$this->logger->debug('User "'.$uid.'" belongs to deleted group: "'.$groupId.'"', ['app' => 'core']);
277 277
 					}
278 278
 				}
279 279
 			}
@@ -322,32 +322,32 @@  discard block
 block discarded – undo
322 322
 	 */
323 323
 	public function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) {
324 324
 		$group = $this->get($gid);
325
-		if(is_null($group)) {
325
+		if (is_null($group)) {
326 326
 			return array();
327 327
 		}
328 328
 
329 329
 		$search = trim($search);
330 330
 		$groupUsers = array();
331 331
 
332
-		if(!empty($search)) {
332
+		if (!empty($search)) {
333 333
 			// only user backends have the capability to do a complex search for users
334 334
 			$searchOffset = 0;
335 335
 			$searchLimit = $limit * 100;
336
-			if($limit === -1) {
336
+			if ($limit === -1) {
337 337
 				$searchLimit = 500;
338 338
 			}
339 339
 
340 340
 			do {
341 341
 				$filteredUsers = $this->userManager->searchDisplayName($search, $searchLimit, $searchOffset);
342
-				foreach($filteredUsers as $filteredUser) {
343
-					if($group->inGroup($filteredUser)) {
344
-						$groupUsers[]= $filteredUser;
342
+				foreach ($filteredUsers as $filteredUser) {
343
+					if ($group->inGroup($filteredUser)) {
344
+						$groupUsers[] = $filteredUser;
345 345
 					}
346 346
 				}
347 347
 				$searchOffset += $searchLimit;
348
-			} while(count($groupUsers) < $searchLimit+$offset && count($filteredUsers) >= $searchLimit);
348
+			} while (count($groupUsers) < $searchLimit + $offset && count($filteredUsers) >= $searchLimit);
349 349
 
350
-			if($limit === -1) {
350
+			if ($limit === -1) {
351 351
 				$groupUsers = array_slice($groupUsers, $offset);
352 352
 			} else {
353 353
 				$groupUsers = array_slice($groupUsers, $offset, $limit);
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
 		}
358 358
 
359 359
 		$matchingUsers = array();
360
-		foreach($groupUsers as $groupUser) {
360
+		foreach ($groupUsers as $groupUser) {
361 361
 			$matchingUsers[$groupUser->getUID()] = $groupUser->getDisplayName();
362 362
 		}
363 363
 		return $matchingUsers;
Please login to merge, or discard this patch.
Indentation   +333 added lines, -333 removed lines patch added patch discarded remove patch
@@ -58,337 +58,337 @@
 block discarded – undo
58 58
  * @package OC\Group
59 59
  */
60 60
 class Manager extends PublicEmitter implements IGroupManager {
61
-	/**
62
-	 * @var GroupInterface[] $backends
63
-	 */
64
-	private $backends = array();
65
-
66
-	/**
67
-	 * @var \OC\User\Manager $userManager
68
-	 */
69
-	private $userManager;
70
-
71
-	/**
72
-	 * @var \OC\Group\Group[]
73
-	 */
74
-	private $cachedGroups = array();
75
-
76
-	/**
77
-	 * @var \OC\Group\Group[]
78
-	 */
79
-	private $cachedUserGroups = array();
80
-
81
-	/** @var \OC\SubAdmin */
82
-	private $subAdmin = null;
83
-
84
-	/** @var ILogger */
85
-	private $logger;
86
-
87
-	/**
88
-	 * @param \OC\User\Manager $userManager
89
-	 * @param ILogger $logger
90
-	 */
91
-	public function __construct(\OC\User\Manager $userManager, ILogger $logger) {
92
-		$this->userManager = $userManager;
93
-		$this->logger = $logger;
94
-		$cachedGroups = & $this->cachedGroups;
95
-		$cachedUserGroups = & $this->cachedUserGroups;
96
-		$this->listen('\OC\Group', 'postDelete', function ($group) use (&$cachedGroups, &$cachedUserGroups) {
97
-			/**
98
-			 * @var \OC\Group\Group $group
99
-			 */
100
-			unset($cachedGroups[$group->getGID()]);
101
-			$cachedUserGroups = array();
102
-		});
103
-		$this->listen('\OC\Group', 'postAddUser', function ($group) use (&$cachedUserGroups) {
104
-			/**
105
-			 * @var \OC\Group\Group $group
106
-			 */
107
-			$cachedUserGroups = array();
108
-		});
109
-		$this->listen('\OC\Group', 'postRemoveUser', function ($group) use (&$cachedUserGroups) {
110
-			/**
111
-			 * @var \OC\Group\Group $group
112
-			 */
113
-			$cachedUserGroups = array();
114
-		});
115
-	}
116
-
117
-	/**
118
-	 * Checks whether a given backend is used
119
-	 *
120
-	 * @param string $backendClass Full classname including complete namespace
121
-	 * @return bool
122
-	 */
123
-	public function isBackendUsed($backendClass) {
124
-		$backendClass = strtolower(ltrim($backendClass, '\\'));
125
-
126
-		foreach ($this->backends as $backend) {
127
-			if (strtolower(get_class($backend)) === $backendClass) {
128
-				return true;
129
-			}
130
-		}
131
-
132
-		return false;
133
-	}
134
-
135
-	/**
136
-	 * @param \OCP\GroupInterface $backend
137
-	 */
138
-	public function addBackend($backend) {
139
-		$this->backends[] = $backend;
140
-		$this->clearCaches();
141
-	}
142
-
143
-	public function clearBackends() {
144
-		$this->backends = array();
145
-		$this->clearCaches();
146
-	}
147
-
148
-	/**
149
-	 * Get the active backends
150
-	 * @return \OCP\GroupInterface[]
151
-	 */
152
-	public function getBackends() {
153
-		return $this->backends;
154
-	}
155
-
156
-
157
-	protected function clearCaches() {
158
-		$this->cachedGroups = array();
159
-		$this->cachedUserGroups = array();
160
-	}
161
-
162
-	/**
163
-	 * @param string $gid
164
-	 * @return \OC\Group\Group
165
-	 */
166
-	public function get($gid) {
167
-		if (isset($this->cachedGroups[$gid])) {
168
-			return $this->cachedGroups[$gid];
169
-		}
170
-		return $this->getGroupObject($gid);
171
-	}
172
-
173
-	/**
174
-	 * @param string $gid
175
-	 * @param string $displayName
176
-	 * @return \OCP\IGroup
177
-	 */
178
-	protected function getGroupObject($gid, $displayName = null) {
179
-		$backends = array();
180
-		foreach ($this->backends as $backend) {
181
-			if ($backend->implementsActions(\OC\Group\Backend::GROUP_DETAILS)) {
182
-				$groupData = $backend->getGroupDetails($gid);
183
-				if (is_array($groupData)) {
184
-					// take the display name from the first backend that has a non-null one
185
-					if (is_null($displayName) && isset($groupData['displayName'])) {
186
-						$displayName = $groupData['displayName'];
187
-					}
188
-					$backends[] = $backend;
189
-				}
190
-			} else if ($backend->groupExists($gid)) {
191
-				$backends[] = $backend;
192
-			}
193
-		}
194
-		if (count($backends) === 0) {
195
-			return null;
196
-		}
197
-		$this->cachedGroups[$gid] = new Group($gid, $backends, $this->userManager, $this, $displayName);
198
-		return $this->cachedGroups[$gid];
199
-	}
200
-
201
-	/**
202
-	 * @param string $gid
203
-	 * @return bool
204
-	 */
205
-	public function groupExists($gid) {
206
-		return $this->get($gid) instanceof IGroup;
207
-	}
208
-
209
-	/**
210
-	 * @param string $gid
211
-	 * @return \OC\Group\Group
212
-	 */
213
-	public function createGroup($gid) {
214
-		if ($gid === '' || $gid === null) {
215
-			return false;
216
-		} else if ($group = $this->get($gid)) {
217
-			return $group;
218
-		} else {
219
-			$this->emit('\OC\Group', 'preCreate', array($gid));
220
-			foreach ($this->backends as $backend) {
221
-				if ($backend->implementsActions(\OC\Group\Backend::CREATE_GROUP)) {
222
-					$backend->createGroup($gid);
223
-					$group = $this->getGroupObject($gid);
224
-					$this->emit('\OC\Group', 'postCreate', array($group));
225
-					return $group;
226
-				}
227
-			}
228
-			return null;
229
-		}
230
-	}
231
-
232
-	/**
233
-	 * @param string $search
234
-	 * @param int $limit
235
-	 * @param int $offset
236
-	 * @return \OC\Group\Group[]
237
-	 */
238
-	public function search($search, $limit = null, $offset = null) {
239
-		$groups = array();
240
-		foreach ($this->backends as $backend) {
241
-			$groupIds = $backend->getGroups($search, $limit, $offset);
242
-			foreach ($groupIds as $groupId) {
243
-				$aGroup = $this->get($groupId);
244
-				if ($aGroup instanceof IGroup) {
245
-					$groups[$groupId] = $aGroup;
246
-				} else {
247
-					$this->logger->debug('Group "' . $groupId . '" was returned by search but not found through direct access', ['app' => 'core']);
248
-				}
249
-			}
250
-			if (!is_null($limit) and $limit <= 0) {
251
-				return array_values($groups);
252
-			}
253
-		}
254
-		return array_values($groups);
255
-	}
256
-
257
-	/**
258
-	 * @param IUser|null $user
259
-	 * @return \OC\Group\Group[]
260
-	 */
261
-	public function getUserGroups(IUser $user= null) {
262
-		if (!$user instanceof IUser) {
263
-			return [];
264
-		}
265
-		return $this->getUserIdGroups($user->getUID());
266
-	}
267
-
268
-	/**
269
-	 * @param string $uid the user id
270
-	 * @return \OC\Group\Group[]
271
-	 */
272
-	public function getUserIdGroups($uid) {
273
-		if (isset($this->cachedUserGroups[$uid])) {
274
-			return $this->cachedUserGroups[$uid];
275
-		}
276
-		$groups = array();
277
-		foreach ($this->backends as $backend) {
278
-			$groupIds = $backend->getUserGroups($uid);
279
-			if (is_array($groupIds)) {
280
-				foreach ($groupIds as $groupId) {
281
-					$aGroup = $this->get($groupId);
282
-					if ($aGroup instanceof IGroup) {
283
-						$groups[$groupId] = $aGroup;
284
-					} else {
285
-						$this->logger->debug('User "' . $uid . '" belongs to deleted group: "' . $groupId . '"', ['app' => 'core']);
286
-					}
287
-				}
288
-			}
289
-		}
290
-		$this->cachedUserGroups[$uid] = $groups;
291
-		return $this->cachedUserGroups[$uid];
292
-	}
293
-
294
-	/**
295
-	 * Checks if a userId is in the admin group
296
-	 * @param string $userId
297
-	 * @return bool if admin
298
-	 */
299
-	public function isAdmin($userId) {
300
-		foreach ($this->backends as $backend) {
301
-			if ($backend->implementsActions(\OC\Group\Backend::IS_ADMIN) && $backend->isAdmin($userId)) {
302
-				return true;
303
-			}
304
-		}
305
-		return $this->isInGroup($userId, 'admin');
306
-	}
307
-
308
-	/**
309
-	 * Checks if a userId is in a group
310
-	 * @param string $userId
311
-	 * @param string $group
312
-	 * @return bool if in group
313
-	 */
314
-	public function isInGroup($userId, $group) {
315
-		return array_key_exists($group, $this->getUserIdGroups($userId));
316
-	}
317
-
318
-	/**
319
-	 * get a list of group ids for a user
320
-	 * @param IUser $user
321
-	 * @return array with group ids
322
-	 */
323
-	public function getUserGroupIds(IUser $user) {
324
-		return array_map(function($value) {
325
-			return (string) $value;
326
-		}, array_keys($this->getUserGroups($user)));
327
-	}
328
-
329
-	/**
330
-	 * get a list of all display names in a group
331
-	 * @param string $gid
332
-	 * @param string $search
333
-	 * @param int $limit
334
-	 * @param int $offset
335
-	 * @return array an array of display names (value) and user ids (key)
336
-	 */
337
-	public function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) {
338
-		$group = $this->get($gid);
339
-		if(is_null($group)) {
340
-			return array();
341
-		}
342
-
343
-		$search = trim($search);
344
-		$groupUsers = array();
345
-
346
-		if(!empty($search)) {
347
-			// only user backends have the capability to do a complex search for users
348
-			$searchOffset = 0;
349
-			$searchLimit = $limit * 100;
350
-			if($limit === -1) {
351
-				$searchLimit = 500;
352
-			}
353
-
354
-			do {
355
-				$filteredUsers = $this->userManager->searchDisplayName($search, $searchLimit, $searchOffset);
356
-				foreach($filteredUsers as $filteredUser) {
357
-					if($group->inGroup($filteredUser)) {
358
-						$groupUsers[]= $filteredUser;
359
-					}
360
-				}
361
-				$searchOffset += $searchLimit;
362
-			} while(count($groupUsers) < $searchLimit+$offset && count($filteredUsers) >= $searchLimit);
363
-
364
-			if($limit === -1) {
365
-				$groupUsers = array_slice($groupUsers, $offset);
366
-			} else {
367
-				$groupUsers = array_slice($groupUsers, $offset, $limit);
368
-			}
369
-		} else {
370
-			$groupUsers = $group->searchUsers('', $limit, $offset);
371
-		}
372
-
373
-		$matchingUsers = array();
374
-		foreach($groupUsers as $groupUser) {
375
-			$matchingUsers[$groupUser->getUID()] = $groupUser->getDisplayName();
376
-		}
377
-		return $matchingUsers;
378
-	}
379
-
380
-	/**
381
-	 * @return \OC\SubAdmin
382
-	 */
383
-	public function getSubAdmin() {
384
-		if (!$this->subAdmin) {
385
-			$this->subAdmin = new \OC\SubAdmin(
386
-				$this->userManager,
387
-				$this,
388
-				\OC::$server->getDatabaseConnection()
389
-			);
390
-		}
391
-
392
-		return $this->subAdmin;
393
-	}
61
+    /**
62
+     * @var GroupInterface[] $backends
63
+     */
64
+    private $backends = array();
65
+
66
+    /**
67
+     * @var \OC\User\Manager $userManager
68
+     */
69
+    private $userManager;
70
+
71
+    /**
72
+     * @var \OC\Group\Group[]
73
+     */
74
+    private $cachedGroups = array();
75
+
76
+    /**
77
+     * @var \OC\Group\Group[]
78
+     */
79
+    private $cachedUserGroups = array();
80
+
81
+    /** @var \OC\SubAdmin */
82
+    private $subAdmin = null;
83
+
84
+    /** @var ILogger */
85
+    private $logger;
86
+
87
+    /**
88
+     * @param \OC\User\Manager $userManager
89
+     * @param ILogger $logger
90
+     */
91
+    public function __construct(\OC\User\Manager $userManager, ILogger $logger) {
92
+        $this->userManager = $userManager;
93
+        $this->logger = $logger;
94
+        $cachedGroups = & $this->cachedGroups;
95
+        $cachedUserGroups = & $this->cachedUserGroups;
96
+        $this->listen('\OC\Group', 'postDelete', function ($group) use (&$cachedGroups, &$cachedUserGroups) {
97
+            /**
98
+             * @var \OC\Group\Group $group
99
+             */
100
+            unset($cachedGroups[$group->getGID()]);
101
+            $cachedUserGroups = array();
102
+        });
103
+        $this->listen('\OC\Group', 'postAddUser', function ($group) use (&$cachedUserGroups) {
104
+            /**
105
+             * @var \OC\Group\Group $group
106
+             */
107
+            $cachedUserGroups = array();
108
+        });
109
+        $this->listen('\OC\Group', 'postRemoveUser', function ($group) use (&$cachedUserGroups) {
110
+            /**
111
+             * @var \OC\Group\Group $group
112
+             */
113
+            $cachedUserGroups = array();
114
+        });
115
+    }
116
+
117
+    /**
118
+     * Checks whether a given backend is used
119
+     *
120
+     * @param string $backendClass Full classname including complete namespace
121
+     * @return bool
122
+     */
123
+    public function isBackendUsed($backendClass) {
124
+        $backendClass = strtolower(ltrim($backendClass, '\\'));
125
+
126
+        foreach ($this->backends as $backend) {
127
+            if (strtolower(get_class($backend)) === $backendClass) {
128
+                return true;
129
+            }
130
+        }
131
+
132
+        return false;
133
+    }
134
+
135
+    /**
136
+     * @param \OCP\GroupInterface $backend
137
+     */
138
+    public function addBackend($backend) {
139
+        $this->backends[] = $backend;
140
+        $this->clearCaches();
141
+    }
142
+
143
+    public function clearBackends() {
144
+        $this->backends = array();
145
+        $this->clearCaches();
146
+    }
147
+
148
+    /**
149
+     * Get the active backends
150
+     * @return \OCP\GroupInterface[]
151
+     */
152
+    public function getBackends() {
153
+        return $this->backends;
154
+    }
155
+
156
+
157
+    protected function clearCaches() {
158
+        $this->cachedGroups = array();
159
+        $this->cachedUserGroups = array();
160
+    }
161
+
162
+    /**
163
+     * @param string $gid
164
+     * @return \OC\Group\Group
165
+     */
166
+    public function get($gid) {
167
+        if (isset($this->cachedGroups[$gid])) {
168
+            return $this->cachedGroups[$gid];
169
+        }
170
+        return $this->getGroupObject($gid);
171
+    }
172
+
173
+    /**
174
+     * @param string $gid
175
+     * @param string $displayName
176
+     * @return \OCP\IGroup
177
+     */
178
+    protected function getGroupObject($gid, $displayName = null) {
179
+        $backends = array();
180
+        foreach ($this->backends as $backend) {
181
+            if ($backend->implementsActions(\OC\Group\Backend::GROUP_DETAILS)) {
182
+                $groupData = $backend->getGroupDetails($gid);
183
+                if (is_array($groupData)) {
184
+                    // take the display name from the first backend that has a non-null one
185
+                    if (is_null($displayName) && isset($groupData['displayName'])) {
186
+                        $displayName = $groupData['displayName'];
187
+                    }
188
+                    $backends[] = $backend;
189
+                }
190
+            } else if ($backend->groupExists($gid)) {
191
+                $backends[] = $backend;
192
+            }
193
+        }
194
+        if (count($backends) === 0) {
195
+            return null;
196
+        }
197
+        $this->cachedGroups[$gid] = new Group($gid, $backends, $this->userManager, $this, $displayName);
198
+        return $this->cachedGroups[$gid];
199
+    }
200
+
201
+    /**
202
+     * @param string $gid
203
+     * @return bool
204
+     */
205
+    public function groupExists($gid) {
206
+        return $this->get($gid) instanceof IGroup;
207
+    }
208
+
209
+    /**
210
+     * @param string $gid
211
+     * @return \OC\Group\Group
212
+     */
213
+    public function createGroup($gid) {
214
+        if ($gid === '' || $gid === null) {
215
+            return false;
216
+        } else if ($group = $this->get($gid)) {
217
+            return $group;
218
+        } else {
219
+            $this->emit('\OC\Group', 'preCreate', array($gid));
220
+            foreach ($this->backends as $backend) {
221
+                if ($backend->implementsActions(\OC\Group\Backend::CREATE_GROUP)) {
222
+                    $backend->createGroup($gid);
223
+                    $group = $this->getGroupObject($gid);
224
+                    $this->emit('\OC\Group', 'postCreate', array($group));
225
+                    return $group;
226
+                }
227
+            }
228
+            return null;
229
+        }
230
+    }
231
+
232
+    /**
233
+     * @param string $search
234
+     * @param int $limit
235
+     * @param int $offset
236
+     * @return \OC\Group\Group[]
237
+     */
238
+    public function search($search, $limit = null, $offset = null) {
239
+        $groups = array();
240
+        foreach ($this->backends as $backend) {
241
+            $groupIds = $backend->getGroups($search, $limit, $offset);
242
+            foreach ($groupIds as $groupId) {
243
+                $aGroup = $this->get($groupId);
244
+                if ($aGroup instanceof IGroup) {
245
+                    $groups[$groupId] = $aGroup;
246
+                } else {
247
+                    $this->logger->debug('Group "' . $groupId . '" was returned by search but not found through direct access', ['app' => 'core']);
248
+                }
249
+            }
250
+            if (!is_null($limit) and $limit <= 0) {
251
+                return array_values($groups);
252
+            }
253
+        }
254
+        return array_values($groups);
255
+    }
256
+
257
+    /**
258
+     * @param IUser|null $user
259
+     * @return \OC\Group\Group[]
260
+     */
261
+    public function getUserGroups(IUser $user= null) {
262
+        if (!$user instanceof IUser) {
263
+            return [];
264
+        }
265
+        return $this->getUserIdGroups($user->getUID());
266
+    }
267
+
268
+    /**
269
+     * @param string $uid the user id
270
+     * @return \OC\Group\Group[]
271
+     */
272
+    public function getUserIdGroups($uid) {
273
+        if (isset($this->cachedUserGroups[$uid])) {
274
+            return $this->cachedUserGroups[$uid];
275
+        }
276
+        $groups = array();
277
+        foreach ($this->backends as $backend) {
278
+            $groupIds = $backend->getUserGroups($uid);
279
+            if (is_array($groupIds)) {
280
+                foreach ($groupIds as $groupId) {
281
+                    $aGroup = $this->get($groupId);
282
+                    if ($aGroup instanceof IGroup) {
283
+                        $groups[$groupId] = $aGroup;
284
+                    } else {
285
+                        $this->logger->debug('User "' . $uid . '" belongs to deleted group: "' . $groupId . '"', ['app' => 'core']);
286
+                    }
287
+                }
288
+            }
289
+        }
290
+        $this->cachedUserGroups[$uid] = $groups;
291
+        return $this->cachedUserGroups[$uid];
292
+    }
293
+
294
+    /**
295
+     * Checks if a userId is in the admin group
296
+     * @param string $userId
297
+     * @return bool if admin
298
+     */
299
+    public function isAdmin($userId) {
300
+        foreach ($this->backends as $backend) {
301
+            if ($backend->implementsActions(\OC\Group\Backend::IS_ADMIN) && $backend->isAdmin($userId)) {
302
+                return true;
303
+            }
304
+        }
305
+        return $this->isInGroup($userId, 'admin');
306
+    }
307
+
308
+    /**
309
+     * Checks if a userId is in a group
310
+     * @param string $userId
311
+     * @param string $group
312
+     * @return bool if in group
313
+     */
314
+    public function isInGroup($userId, $group) {
315
+        return array_key_exists($group, $this->getUserIdGroups($userId));
316
+    }
317
+
318
+    /**
319
+     * get a list of group ids for a user
320
+     * @param IUser $user
321
+     * @return array with group ids
322
+     */
323
+    public function getUserGroupIds(IUser $user) {
324
+        return array_map(function($value) {
325
+            return (string) $value;
326
+        }, array_keys($this->getUserGroups($user)));
327
+    }
328
+
329
+    /**
330
+     * get a list of all display names in a group
331
+     * @param string $gid
332
+     * @param string $search
333
+     * @param int $limit
334
+     * @param int $offset
335
+     * @return array an array of display names (value) and user ids (key)
336
+     */
337
+    public function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) {
338
+        $group = $this->get($gid);
339
+        if(is_null($group)) {
340
+            return array();
341
+        }
342
+
343
+        $search = trim($search);
344
+        $groupUsers = array();
345
+
346
+        if(!empty($search)) {
347
+            // only user backends have the capability to do a complex search for users
348
+            $searchOffset = 0;
349
+            $searchLimit = $limit * 100;
350
+            if($limit === -1) {
351
+                $searchLimit = 500;
352
+            }
353
+
354
+            do {
355
+                $filteredUsers = $this->userManager->searchDisplayName($search, $searchLimit, $searchOffset);
356
+                foreach($filteredUsers as $filteredUser) {
357
+                    if($group->inGroup($filteredUser)) {
358
+                        $groupUsers[]= $filteredUser;
359
+                    }
360
+                }
361
+                $searchOffset += $searchLimit;
362
+            } while(count($groupUsers) < $searchLimit+$offset && count($filteredUsers) >= $searchLimit);
363
+
364
+            if($limit === -1) {
365
+                $groupUsers = array_slice($groupUsers, $offset);
366
+            } else {
367
+                $groupUsers = array_slice($groupUsers, $offset, $limit);
368
+            }
369
+        } else {
370
+            $groupUsers = $group->searchUsers('', $limit, $offset);
371
+        }
372
+
373
+        $matchingUsers = array();
374
+        foreach($groupUsers as $groupUser) {
375
+            $matchingUsers[$groupUser->getUID()] = $groupUser->getDisplayName();
376
+        }
377
+        return $matchingUsers;
378
+    }
379
+
380
+    /**
381
+     * @return \OC\SubAdmin
382
+     */
383
+    public function getSubAdmin() {
384
+        if (!$this->subAdmin) {
385
+            $this->subAdmin = new \OC\SubAdmin(
386
+                $this->userManager,
387
+                $this,
388
+                \OC::$server->getDatabaseConnection()
389
+            );
390
+        }
391
+
392
+        return $this->subAdmin;
393
+    }
394 394
 }
Please login to merge, or discard this patch.
lib/private/Memcache/APCu.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 	 * Set a value in the cache if it's not already stored
66 66
 	 *
67 67
 	 * @param string $key
68
-	 * @param mixed $value
68
+	 * @param integer $value
69 69
 	 * @param int $ttl Time To Live in seconds. Defaults to 60*60*24
70 70
 	 * @return bool
71 71
 	 */
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	use CADTrait;
38 38
 
39 39
 	public function get($key) {
40
-		$result = apcu_fetch($this->getPrefix() . $key, $success);
40
+		$result = apcu_fetch($this->getPrefix().$key, $success);
41 41
 		if (!$success) {
42 42
 			return null;
43 43
 		}
@@ -45,24 +45,24 @@  discard block
 block discarded – undo
45 45
 	}
46 46
 
47 47
 	public function set($key, $value, $ttl = 0) {
48
-		return apcu_store($this->getPrefix() . $key, $value, $ttl);
48
+		return apcu_store($this->getPrefix().$key, $value, $ttl);
49 49
 	}
50 50
 
51 51
 	public function hasKey($key) {
52
-		return apcu_exists($this->getPrefix() . $key);
52
+		return apcu_exists($this->getPrefix().$key);
53 53
 	}
54 54
 
55 55
 	public function remove($key) {
56
-		return apcu_delete($this->getPrefix() . $key);
56
+		return apcu_delete($this->getPrefix().$key);
57 57
 	}
58 58
 
59 59
 	public function clear($prefix = '') {
60
-		$ns = $this->getPrefix() . $prefix;
60
+		$ns = $this->getPrefix().$prefix;
61 61
 		$ns = preg_quote($ns, '/');
62
-		if(class_exists('\APCIterator')) {
63
-			$iter = new \APCIterator('user', '/^' . $ns . '/', APC_ITER_KEY);
62
+		if (class_exists('\APCIterator')) {
63
+			$iter = new \APCIterator('user', '/^'.$ns.'/', APC_ITER_KEY);
64 64
 		} else {
65
-			$iter = new \APCUIterator('/^' . $ns . '/', APC_ITER_KEY);
65
+			$iter = new \APCUIterator('/^'.$ns.'/', APC_ITER_KEY);
66 66
 		}
67 67
 		return apcu_delete($iter);
68 68
 	}
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	 * @return bool
77 77
 	 */
78 78
 	public function add($key, $value, $ttl = 0) {
79
-		return apcu_add($this->getPrefix() . $key, $value, $ttl);
79
+		return apcu_add($this->getPrefix().$key, $value, $ttl);
80 80
 	}
81 81
 
82 82
 	/**
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 		 * see https://github.com/krakjoe/apcu/issues/183#issuecomment-244038221
101 101
 		 * for details
102 102
 		 */
103
-		return apcu_exists($this->getPrefix() . $key)
104
-			? apcu_inc($this->getPrefix() . $key, $step)
103
+		return apcu_exists($this->getPrefix().$key)
104
+			? apcu_inc($this->getPrefix().$key, $step)
105 105
 			: false;
106 106
 	}
107 107
 
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
 		 * see https://github.com/krakjoe/apcu/issues/183#issuecomment-244038221
126 126
 		 * for details
127 127
 		 */
128
-		return apcu_exists($this->getPrefix() . $key)
129
-			? apcu_dec($this->getPrefix() . $key, $step)
128
+		return apcu_exists($this->getPrefix().$key)
129
+			? apcu_dec($this->getPrefix().$key, $step)
130 130
 			: false;
131 131
 	}
132 132
 
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 	public function cas($key, $old, $new) {
142 142
 		// apc only does cas for ints
143 143
 		if (is_int($old) and is_int($new)) {
144
-			return apcu_cas($this->getPrefix() . $key, $old, $new);
144
+			return apcu_cas($this->getPrefix().$key, $old, $new);
145 145
 		} else {
146 146
 			return $this->casEmulated($key, $old, $new);
147 147
 		}
Please login to merge, or discard this patch.
Indentation   +125 added lines, -125 removed lines patch added patch discarded remove patch
@@ -30,140 +30,140 @@
 block discarded – undo
30 30
 use OCP\IMemcache;
31 31
 
32 32
 class APCu extends Cache implements IMemcache {
33
-	use CASTrait {
34
-		cas as casEmulated;
35
-	}
33
+    use CASTrait {
34
+        cas as casEmulated;
35
+    }
36 36
 
37
-	use CADTrait;
37
+    use CADTrait;
38 38
 
39
-	public function get($key) {
40
-		$result = apcu_fetch($this->getPrefix() . $key, $success);
41
-		if (!$success) {
42
-			return null;
43
-		}
44
-		return $result;
45
-	}
39
+    public function get($key) {
40
+        $result = apcu_fetch($this->getPrefix() . $key, $success);
41
+        if (!$success) {
42
+            return null;
43
+        }
44
+        return $result;
45
+    }
46 46
 
47
-	public function set($key, $value, $ttl = 0) {
48
-		return apcu_store($this->getPrefix() . $key, $value, $ttl);
49
-	}
47
+    public function set($key, $value, $ttl = 0) {
48
+        return apcu_store($this->getPrefix() . $key, $value, $ttl);
49
+    }
50 50
 
51
-	public function hasKey($key) {
52
-		return apcu_exists($this->getPrefix() . $key);
53
-	}
51
+    public function hasKey($key) {
52
+        return apcu_exists($this->getPrefix() . $key);
53
+    }
54 54
 
55
-	public function remove($key) {
56
-		return apcu_delete($this->getPrefix() . $key);
57
-	}
55
+    public function remove($key) {
56
+        return apcu_delete($this->getPrefix() . $key);
57
+    }
58 58
 
59
-	public function clear($prefix = '') {
60
-		$ns = $this->getPrefix() . $prefix;
61
-		$ns = preg_quote($ns, '/');
62
-		if(class_exists('\APCIterator')) {
63
-			$iter = new \APCIterator('user', '/^' . $ns . '/', APC_ITER_KEY);
64
-		} else {
65
-			$iter = new \APCUIterator('/^' . $ns . '/', APC_ITER_KEY);
66
-		}
67
-		return apcu_delete($iter);
68
-	}
59
+    public function clear($prefix = '') {
60
+        $ns = $this->getPrefix() . $prefix;
61
+        $ns = preg_quote($ns, '/');
62
+        if(class_exists('\APCIterator')) {
63
+            $iter = new \APCIterator('user', '/^' . $ns . '/', APC_ITER_KEY);
64
+        } else {
65
+            $iter = new \APCUIterator('/^' . $ns . '/', APC_ITER_KEY);
66
+        }
67
+        return apcu_delete($iter);
68
+    }
69 69
 
70
-	/**
71
-	 * Set a value in the cache if it's not already stored
72
-	 *
73
-	 * @param string $key
74
-	 * @param mixed $value
75
-	 * @param int $ttl Time To Live in seconds. Defaults to 60*60*24
76
-	 * @return bool
77
-	 */
78
-	public function add($key, $value, $ttl = 0) {
79
-		return apcu_add($this->getPrefix() . $key, $value, $ttl);
80
-	}
70
+    /**
71
+     * Set a value in the cache if it's not already stored
72
+     *
73
+     * @param string $key
74
+     * @param mixed $value
75
+     * @param int $ttl Time To Live in seconds. Defaults to 60*60*24
76
+     * @return bool
77
+     */
78
+    public function add($key, $value, $ttl = 0) {
79
+        return apcu_add($this->getPrefix() . $key, $value, $ttl);
80
+    }
81 81
 
82
-	/**
83
-	 * Increase a stored number
84
-	 *
85
-	 * @param string $key
86
-	 * @param int $step
87
-	 * @return int | bool
88
-	 */
89
-	public function inc($key, $step = 1) {
90
-		$this->add($key, 0);
91
-		/**
92
-		 * TODO - hack around a PHP 7 specific issue in APCu
93
-		 *
94
-		 * on PHP 7 the apcu_inc method on a non-existing object will increment
95
-		 * "0" and result in "1" as value - therefore we check for existence
96
-		 * first
97
-		 *
98
-		 * on PHP 5.6 this is not the case
99
-		 *
100
-		 * see https://github.com/krakjoe/apcu/issues/183#issuecomment-244038221
101
-		 * for details
102
-		 */
103
-		return apcu_exists($this->getPrefix() . $key)
104
-			? apcu_inc($this->getPrefix() . $key, $step)
105
-			: false;
106
-	}
82
+    /**
83
+     * Increase a stored number
84
+     *
85
+     * @param string $key
86
+     * @param int $step
87
+     * @return int | bool
88
+     */
89
+    public function inc($key, $step = 1) {
90
+        $this->add($key, 0);
91
+        /**
92
+         * TODO - hack around a PHP 7 specific issue in APCu
93
+         *
94
+         * on PHP 7 the apcu_inc method on a non-existing object will increment
95
+         * "0" and result in "1" as value - therefore we check for existence
96
+         * first
97
+         *
98
+         * on PHP 5.6 this is not the case
99
+         *
100
+         * see https://github.com/krakjoe/apcu/issues/183#issuecomment-244038221
101
+         * for details
102
+         */
103
+        return apcu_exists($this->getPrefix() . $key)
104
+            ? apcu_inc($this->getPrefix() . $key, $step)
105
+            : false;
106
+    }
107 107
 
108
-	/**
109
-	 * Decrease a stored number
110
-	 *
111
-	 * @param string $key
112
-	 * @param int $step
113
-	 * @return int | bool
114
-	 */
115
-	public function dec($key, $step = 1) {
116
-		/**
117
-		 * TODO - hack around a PHP 7 specific issue in APCu
118
-		 *
119
-		 * on PHP 7 the apcu_dec method on a non-existing object will decrement
120
-		 * "0" and result in "-1" as value - therefore we check for existence
121
-		 * first
122
-		 *
123
-		 * on PHP 5.6 this is not the case
124
-		 *
125
-		 * see https://github.com/krakjoe/apcu/issues/183#issuecomment-244038221
126
-		 * for details
127
-		 */
128
-		return apcu_exists($this->getPrefix() . $key)
129
-			? apcu_dec($this->getPrefix() . $key, $step)
130
-			: false;
131
-	}
108
+    /**
109
+     * Decrease a stored number
110
+     *
111
+     * @param string $key
112
+     * @param int $step
113
+     * @return int | bool
114
+     */
115
+    public function dec($key, $step = 1) {
116
+        /**
117
+         * TODO - hack around a PHP 7 specific issue in APCu
118
+         *
119
+         * on PHP 7 the apcu_dec method on a non-existing object will decrement
120
+         * "0" and result in "-1" as value - therefore we check for existence
121
+         * first
122
+         *
123
+         * on PHP 5.6 this is not the case
124
+         *
125
+         * see https://github.com/krakjoe/apcu/issues/183#issuecomment-244038221
126
+         * for details
127
+         */
128
+        return apcu_exists($this->getPrefix() . $key)
129
+            ? apcu_dec($this->getPrefix() . $key, $step)
130
+            : false;
131
+    }
132 132
 
133
-	/**
134
-	 * Compare and set
135
-	 *
136
-	 * @param string $key
137
-	 * @param mixed $old
138
-	 * @param mixed $new
139
-	 * @return bool
140
-	 */
141
-	public function cas($key, $old, $new) {
142
-		// apc only does cas for ints
143
-		if (is_int($old) and is_int($new)) {
144
-			return apcu_cas($this->getPrefix() . $key, $old, $new);
145
-		} else {
146
-			return $this->casEmulated($key, $old, $new);
147
-		}
148
-	}
133
+    /**
134
+     * Compare and set
135
+     *
136
+     * @param string $key
137
+     * @param mixed $old
138
+     * @param mixed $new
139
+     * @return bool
140
+     */
141
+    public function cas($key, $old, $new) {
142
+        // apc only does cas for ints
143
+        if (is_int($old) and is_int($new)) {
144
+            return apcu_cas($this->getPrefix() . $key, $old, $new);
145
+        } else {
146
+            return $this->casEmulated($key, $old, $new);
147
+        }
148
+    }
149 149
 
150
-	/**
151
-	 * @return bool
152
-	 */
153
-	static public function isAvailable() {
154
-		if (!extension_loaded('apcu')) {
155
-			return false;
156
-		} elseif (!\OC::$server->getIniWrapper()->getBool('apc.enabled')) {
157
-			return false;
158
-		} elseif (!\OC::$server->getIniWrapper()->getBool('apc.enable_cli') && \OC::$CLI) {
159
-			return false;
160
-		} elseif (
161
-				version_compare(phpversion('apc') ?: '0.0.0', '4.0.6') === -1 &&
162
-				version_compare(phpversion('apcu') ?: '0.0.0', '5.1.0') === -1
163
-		) {
164
-			return false;
165
-		} else {
166
-			return true;
167
-		}
168
-	}
150
+    /**
151
+     * @return bool
152
+     */
153
+    static public function isAvailable() {
154
+        if (!extension_loaded('apcu')) {
155
+            return false;
156
+        } elseif (!\OC::$server->getIniWrapper()->getBool('apc.enabled')) {
157
+            return false;
158
+        } elseif (!\OC::$server->getIniWrapper()->getBool('apc.enable_cli') && \OC::$CLI) {
159
+            return false;
160
+        } elseif (
161
+                version_compare(phpversion('apc') ?: '0.0.0', '4.0.6') === -1 &&
162
+                version_compare(phpversion('apcu') ?: '0.0.0', '5.1.0') === -1
163
+        ) {
164
+            return false;
165
+        } else {
166
+            return true;
167
+        }
168
+    }
169 169
 }
Please login to merge, or discard this patch.
lib/private/Memcache/ArrayCache.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 	 * Set a value in the cache if it's not already stored
66 66
 	 *
67 67
 	 * @param string $key
68
-	 * @param mixed $value
68
+	 * @param integer $value
69 69
 	 * @param int $ttl Time To Live in seconds. Defaults to 60*60*24
70 70
 	 * @return bool
71 71
 	 */
Please login to merge, or discard this patch.
Indentation   +117 added lines, -117 removed lines patch added patch discarded remove patch
@@ -27,133 +27,133 @@
 block discarded – undo
27 27
 use OCP\IMemcache;
28 28
 
29 29
 class ArrayCache extends Cache implements IMemcache {
30
-	/** @var array Array with the cached data */
31
-	protected $cachedData = array();
30
+    /** @var array Array with the cached data */
31
+    protected $cachedData = array();
32 32
 
33
-	use CADTrait;
33
+    use CADTrait;
34 34
 
35
-	/**
36
-	 * {@inheritDoc}
37
-	 */
38
-	public function get($key) {
39
-		if ($this->hasKey($key)) {
40
-			return $this->cachedData[$key];
41
-		}
42
-		return null;
43
-	}
35
+    /**
36
+     * {@inheritDoc}
37
+     */
38
+    public function get($key) {
39
+        if ($this->hasKey($key)) {
40
+            return $this->cachedData[$key];
41
+        }
42
+        return null;
43
+    }
44 44
 
45
-	/**
46
-	 * {@inheritDoc}
47
-	 */
48
-	public function set($key, $value, $ttl = 0) {
49
-		$this->cachedData[$key] = $value;
50
-		return true;
51
-	}
45
+    /**
46
+     * {@inheritDoc}
47
+     */
48
+    public function set($key, $value, $ttl = 0) {
49
+        $this->cachedData[$key] = $value;
50
+        return true;
51
+    }
52 52
 
53
-	/**
54
-	 * {@inheritDoc}
55
-	 */
56
-	public function hasKey($key) {
57
-		return isset($this->cachedData[$key]);
58
-	}
53
+    /**
54
+     * {@inheritDoc}
55
+     */
56
+    public function hasKey($key) {
57
+        return isset($this->cachedData[$key]);
58
+    }
59 59
 
60
-	/**
61
-	 * {@inheritDoc}
62
-	 */
63
-	public function remove($key) {
64
-		unset($this->cachedData[$key]);
65
-		return true;
66
-	}
60
+    /**
61
+     * {@inheritDoc}
62
+     */
63
+    public function remove($key) {
64
+        unset($this->cachedData[$key]);
65
+        return true;
66
+    }
67 67
 
68
-	/**
69
-	 * {@inheritDoc}
70
-	 */
71
-	public function clear($prefix = '') {
72
-		if ($prefix === '') {
73
-			$this->cachedData = [];
74
-			return true;
75
-		}
68
+    /**
69
+     * {@inheritDoc}
70
+     */
71
+    public function clear($prefix = '') {
72
+        if ($prefix === '') {
73
+            $this->cachedData = [];
74
+            return true;
75
+        }
76 76
 
77
-		foreach ($this->cachedData as $key => $value) {
78
-			if (strpos($key, $prefix) === 0) {
79
-				$this->remove($key);
80
-			}
81
-		}
82
-		return true;
83
-	}
77
+        foreach ($this->cachedData as $key => $value) {
78
+            if (strpos($key, $prefix) === 0) {
79
+                $this->remove($key);
80
+            }
81
+        }
82
+        return true;
83
+    }
84 84
 
85
-	/**
86
-	 * Set a value in the cache if it's not already stored
87
-	 *
88
-	 * @param string $key
89
-	 * @param mixed $value
90
-	 * @param int $ttl Time To Live in seconds. Defaults to 60*60*24
91
-	 * @return bool
92
-	 */
93
-	public function add($key, $value, $ttl = 0) {
94
-		// since this cache is not shared race conditions aren't an issue
95
-		if ($this->hasKey($key)) {
96
-			return false;
97
-		} else {
98
-			return $this->set($key, $value, $ttl);
99
-		}
100
-	}
85
+    /**
86
+     * Set a value in the cache if it's not already stored
87
+     *
88
+     * @param string $key
89
+     * @param mixed $value
90
+     * @param int $ttl Time To Live in seconds. Defaults to 60*60*24
91
+     * @return bool
92
+     */
93
+    public function add($key, $value, $ttl = 0) {
94
+        // since this cache is not shared race conditions aren't an issue
95
+        if ($this->hasKey($key)) {
96
+            return false;
97
+        } else {
98
+            return $this->set($key, $value, $ttl);
99
+        }
100
+    }
101 101
 
102
-	/**
103
-	 * Increase a stored number
104
-	 *
105
-	 * @param string $key
106
-	 * @param int $step
107
-	 * @return int | bool
108
-	 */
109
-	public function inc($key, $step = 1) {
110
-		$oldValue = $this->get($key);
111
-		if (is_int($oldValue)) {
112
-			$this->set($key, $oldValue + $step);
113
-			return $oldValue + $step;
114
-		} else {
115
-			$success = $this->add($key, $step);
116
-			return $success ? $step : false;
117
-		}
118
-	}
102
+    /**
103
+     * Increase a stored number
104
+     *
105
+     * @param string $key
106
+     * @param int $step
107
+     * @return int | bool
108
+     */
109
+    public function inc($key, $step = 1) {
110
+        $oldValue = $this->get($key);
111
+        if (is_int($oldValue)) {
112
+            $this->set($key, $oldValue + $step);
113
+            return $oldValue + $step;
114
+        } else {
115
+            $success = $this->add($key, $step);
116
+            return $success ? $step : false;
117
+        }
118
+    }
119 119
 
120
-	/**
121
-	 * Decrease a stored number
122
-	 *
123
-	 * @param string $key
124
-	 * @param int $step
125
-	 * @return int | bool
126
-	 */
127
-	public function dec($key, $step = 1) {
128
-		$oldValue = $this->get($key);
129
-		if (is_int($oldValue)) {
130
-			$this->set($key, $oldValue - $step);
131
-			return $oldValue - $step;
132
-		} else {
133
-			return false;
134
-		}
135
-	}
120
+    /**
121
+     * Decrease a stored number
122
+     *
123
+     * @param string $key
124
+     * @param int $step
125
+     * @return int | bool
126
+     */
127
+    public function dec($key, $step = 1) {
128
+        $oldValue = $this->get($key);
129
+        if (is_int($oldValue)) {
130
+            $this->set($key, $oldValue - $step);
131
+            return $oldValue - $step;
132
+        } else {
133
+            return false;
134
+        }
135
+    }
136 136
 
137
-	/**
138
-	 * Compare and set
139
-	 *
140
-	 * @param string $key
141
-	 * @param mixed $old
142
-	 * @param mixed $new
143
-	 * @return bool
144
-	 */
145
-	public function cas($key, $old, $new) {
146
-		if ($this->get($key) === $old) {
147
-			return $this->set($key, $new);
148
-		} else {
149
-			return false;
150
-		}
151
-	}
137
+    /**
138
+     * Compare and set
139
+     *
140
+     * @param string $key
141
+     * @param mixed $old
142
+     * @param mixed $new
143
+     * @return bool
144
+     */
145
+    public function cas($key, $old, $new) {
146
+        if ($this->get($key) === $old) {
147
+            return $this->set($key, $new);
148
+        } else {
149
+            return false;
150
+        }
151
+    }
152 152
 
153
-	/**
154
-	 * {@inheritDoc}
155
-	 */
156
-	static public function isAvailable() {
157
-		return true;
158
-	}
153
+    /**
154
+     * {@inheritDoc}
155
+     */
156
+    static public function isAvailable() {
157
+        return true;
158
+    }
159 159
 }
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Storage/SMB.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -498,6 +498,9 @@
 block discarded – undo
498 498
 		});
499 499
 	}
500 500
 
501
+	/**
502
+	 * @param string $path
503
+	 */
501 504
 	public function notify($path) {
502 505
 		$path = '/' . ltrim($path, '/');
503 506
 		$shareNotifyHandler = $this->share->notify($this->buildPath($path));
Please login to merge, or discard this patch.
Indentation   +480 added lines, -480 removed lines patch added patch discarded remove patch
@@ -55,484 +55,484 @@
 block discarded – undo
55 55
 use OCP\Util;
56 56
 
57 57
 class SMB extends Common implements INotifyStorage {
58
-	/**
59
-	 * @var \Icewind\SMB\Server
60
-	 */
61
-	protected $server;
62
-
63
-	/**
64
-	 * @var \Icewind\SMB\Share
65
-	 */
66
-	protected $share;
67
-
68
-	/**
69
-	 * @var string
70
-	 */
71
-	protected $root;
72
-
73
-	/**
74
-	 * @var \Icewind\SMB\FileInfo[]
75
-	 */
76
-	protected $statCache;
77
-
78
-	public function __construct($params) {
79
-		if (isset($params['host']) && isset($params['user']) && isset($params['password']) && isset($params['share'])) {
80
-			if (Server::NativeAvailable()) {
81
-				$this->server = new NativeServer($params['host'], $params['user'], $params['password']);
82
-			} else {
83
-				$this->server = new Server($params['host'], $params['user'], $params['password']);
84
-			}
85
-			$this->share = $this->server->getShare(trim($params['share'], '/'));
86
-
87
-			$this->root = $params['root'] ?? '/';
88
-			$this->root = '/' . ltrim($this->root, '/');
89
-			$this->root = rtrim($this->root, '/') . '/';
90
-		} else {
91
-			throw new \Exception('Invalid configuration');
92
-		}
93
-		$this->statCache = new CappedMemoryCache();
94
-		parent::__construct($params);
95
-	}
96
-
97
-	/**
98
-	 * @return string
99
-	 */
100
-	public function getId() {
101
-		// FIXME: double slash to keep compatible with the old storage ids,
102
-		// failure to do so will lead to creation of a new storage id and
103
-		// loss of shares from the storage
104
-		return 'smb::' . $this->server->getUser() . '@' . $this->server->getHost() . '//' . $this->share->getName() . '/' . $this->root;
105
-	}
106
-
107
-	/**
108
-	 * @param string $path
109
-	 * @return string
110
-	 */
111
-	protected function buildPath($path) {
112
-		return Filesystem::normalizePath($this->root . '/' . $path, true, false, true);
113
-	}
114
-
115
-	protected function relativePath($fullPath) {
116
-		if ($fullPath === $this->root) {
117
-			return '';
118
-		} else if (substr($fullPath, 0, strlen($this->root)) === $this->root) {
119
-			return substr($fullPath, strlen($this->root));
120
-		} else {
121
-			return null;
122
-		}
123
-	}
124
-
125
-	/**
126
-	 * @param string $path
127
-	 * @return \Icewind\SMB\IFileInfo
128
-	 * @throws StorageNotAvailableException
129
-	 */
130
-	protected function getFileInfo($path) {
131
-		try {
132
-			$path = $this->buildPath($path);
133
-			if (!isset($this->statCache[$path])) {
134
-				$this->statCache[$path] = $this->share->stat($path);
135
-			}
136
-			return $this->statCache[$path];
137
-		} catch (ConnectException $e) {
138
-			throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
139
-		}
140
-	}
141
-
142
-	/**
143
-	 * @param string $path
144
-	 * @return \Icewind\SMB\IFileInfo[]
145
-	 * @throws StorageNotAvailableException
146
-	 */
147
-	protected function getFolderContents($path) {
148
-		try {
149
-			$path = $this->buildPath($path);
150
-			$files = $this->share->dir($path);
151
-			foreach ($files as $file) {
152
-				$this->statCache[$path . '/' . $file->getName()] = $file;
153
-			}
154
-			return array_filter($files, function (IFileInfo $file) {
155
-				try {
156
-					return !$file->isHidden();
157
-				} catch (ForbiddenException $e) {
158
-					return false;
159
-				} catch (NotFoundException $e) {
160
-					return false;
161
-				}
162
-			});
163
-		} catch (ConnectException $e) {
164
-			throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
165
-		}
166
-	}
167
-
168
-	/**
169
-	 * @param \Icewind\SMB\IFileInfo $info
170
-	 * @return array
171
-	 */
172
-	protected function formatInfo($info) {
173
-		$result = [
174
-			'size' => $info->getSize(),
175
-			'mtime' => $info->getMTime(),
176
-		];
177
-		if ($info->isDirectory()) {
178
-			$result['type'] = 'dir';
179
-		} else {
180
-			$result['type'] = 'file';
181
-		}
182
-		return $result;
183
-	}
184
-
185
-	/**
186
-	 * Rename the files. If the source or the target is the root, the rename won't happen.
187
-	 *
188
-	 * @param string $source the old name of the path
189
-	 * @param string $target the new name of the path
190
-	 * @return bool true if the rename is successful, false otherwise
191
-	 */
192
-	public function rename($source, $target) {
193
-		if ($this->isRootDir($source) || $this->isRootDir($target)) {
194
-			return false;
195
-		}
196
-
197
-		$absoluteSource = $this->buildPath($source);
198
-		$absoluteTarget = $this->buildPath($target);
199
-		try {
200
-			$result = $this->share->rename($absoluteSource, $absoluteTarget);
201
-		} catch (AlreadyExistsException $e) {
202
-			$this->remove($target);
203
-			$result = $this->share->rename($absoluteSource, $absoluteTarget);
204
-		} catch (\Exception $e) {
205
-			\OC::$server->getLogger()->logException($e, ['level' => Util::WARN]);
206
-			return false;
207
-		}
208
-		unset($this->statCache[$absoluteSource], $this->statCache[$absoluteTarget]);
209
-		return $result;
210
-	}
211
-
212
-	public function stat($path) {
213
-		try {
214
-			$result = $this->formatInfo($this->getFileInfo($path));
215
-		} catch (ForbiddenException $e) {
216
-			return false;
217
-		} catch (NotFoundException $e) {
218
-			return false;
219
-		}
220
-		if ($this->remoteIsShare() && $this->isRootDir($path)) {
221
-			$result['mtime'] = $this->shareMTime();
222
-		}
223
-		return $result;
224
-	}
225
-
226
-	/**
227
-	 * get the best guess for the modification time of the share
228
-	 *
229
-	 * @return int
230
-	 */
231
-	private function shareMTime() {
232
-		$highestMTime = 0;
233
-		$files = $this->share->dir($this->root);
234
-		foreach ($files as $fileInfo) {
235
-			try {
236
-				if ($fileInfo->getMTime() > $highestMTime) {
237
-					$highestMTime = $fileInfo->getMTime();
238
-				}
239
-			} catch (NotFoundException $e) {
240
-				// Ignore this, can happen on unavailable DFS shares
241
-			}
242
-		}
243
-		return $highestMTime;
244
-	}
245
-
246
-	/**
247
-	 * Check if the path is our root dir (not the smb one)
248
-	 *
249
-	 * @param string $path the path
250
-	 * @return bool
251
-	 */
252
-	private function isRootDir($path) {
253
-		return $path === '' || $path === '/' || $path === '.';
254
-	}
255
-
256
-	/**
257
-	 * Check if our root points to a smb share
258
-	 *
259
-	 * @return bool true if our root points to a share false otherwise
260
-	 */
261
-	private function remoteIsShare() {
262
-		return $this->share->getName() && (!$this->root || $this->root === '/');
263
-	}
264
-
265
-	/**
266
-	 * @param string $path
267
-	 * @return bool
268
-	 */
269
-	public function unlink($path) {
270
-		if ($this->isRootDir($path)) {
271
-			return false;
272
-		}
273
-
274
-		try {
275
-			if ($this->is_dir($path)) {
276
-				return $this->rmdir($path);
277
-			} else {
278
-				$path = $this->buildPath($path);
279
-				unset($this->statCache[$path]);
280
-				$this->share->del($path);
281
-				return true;
282
-			}
283
-		} catch (NotFoundException $e) {
284
-			return false;
285
-		} catch (ForbiddenException $e) {
286
-			return false;
287
-		} catch (ConnectException $e) {
288
-			throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
289
-		}
290
-	}
291
-
292
-	/**
293
-	 * check if a file or folder has been updated since $time
294
-	 *
295
-	 * @param string $path
296
-	 * @param int $time
297
-	 * @return bool
298
-	 */
299
-	public function hasUpdated($path, $time) {
300
-		if (!$path and $this->root === '/') {
301
-			// mtime doesn't work for shares, but giving the nature of the backend,
302
-			// doing a full update is still just fast enough
303
-			return true;
304
-		} else {
305
-			$actualTime = $this->filemtime($path);
306
-			return $actualTime > $time;
307
-		}
308
-	}
309
-
310
-	/**
311
-	 * @param string $path
312
-	 * @param string $mode
313
-	 * @return resource|false
314
-	 */
315
-	public function fopen($path, $mode) {
316
-		$fullPath = $this->buildPath($path);
317
-		try {
318
-			switch ($mode) {
319
-				case 'r':
320
-				case 'rb':
321
-					if (!$this->file_exists($path)) {
322
-						return false;
323
-					}
324
-					return $this->share->read($fullPath);
325
-				case 'w':
326
-				case 'wb':
327
-					$source = $this->share->write($fullPath);
328
-					return CallBackWrapper::wrap($source, null, null, function () use ($fullPath) {
329
-						unset($this->statCache[$fullPath]);
330
-					});
331
-				case 'a':
332
-				case 'ab':
333
-				case 'r+':
334
-				case 'w+':
335
-				case 'wb+':
336
-				case 'a+':
337
-				case 'x':
338
-				case 'x+':
339
-				case 'c':
340
-				case 'c+':
341
-					//emulate these
342
-					if (strrpos($path, '.') !== false) {
343
-						$ext = substr($path, strrpos($path, '.'));
344
-					} else {
345
-						$ext = '';
346
-					}
347
-					if ($this->file_exists($path)) {
348
-						if (!$this->isUpdatable($path)) {
349
-							return false;
350
-						}
351
-						$tmpFile = $this->getCachedFile($path);
352
-					} else {
353
-						if (!$this->isCreatable(dirname($path))) {
354
-							return false;
355
-						}
356
-						$tmpFile = \OCP\Files::tmpFile($ext);
357
-					}
358
-					$source = fopen($tmpFile, $mode);
359
-					$share = $this->share;
360
-					return CallbackWrapper::wrap($source, null, null, function () use ($tmpFile, $fullPath, $share) {
361
-						unset($this->statCache[$fullPath]);
362
-						$share->put($tmpFile, $fullPath);
363
-						unlink($tmpFile);
364
-					});
365
-			}
366
-			return false;
367
-		} catch (NotFoundException $e) {
368
-			return false;
369
-		} catch (ForbiddenException $e) {
370
-			return false;
371
-		} catch (ConnectException $e) {
372
-			throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
373
-		}
374
-	}
375
-
376
-	public function rmdir($path) {
377
-		if ($this->isRootDir($path)) {
378
-			return false;
379
-		}
380
-
381
-		try {
382
-			$this->statCache = array();
383
-			$content = $this->share->dir($this->buildPath($path));
384
-			foreach ($content as $file) {
385
-				if ($file->isDirectory()) {
386
-					$this->rmdir($path . '/' . $file->getName());
387
-				} else {
388
-					$this->share->del($file->getPath());
389
-				}
390
-			}
391
-			$this->share->rmdir($this->buildPath($path));
392
-			return true;
393
-		} catch (NotFoundException $e) {
394
-			return false;
395
-		} catch (ForbiddenException $e) {
396
-			return false;
397
-		} catch (ConnectException $e) {
398
-			throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
399
-		}
400
-	}
401
-
402
-	public function touch($path, $time = null) {
403
-		try {
404
-			if (!$this->file_exists($path)) {
405
-				$fh = $this->share->write($this->buildPath($path));
406
-				fclose($fh);
407
-				return true;
408
-			}
409
-			return false;
410
-		} catch (ConnectException $e) {
411
-			throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
412
-		}
413
-	}
414
-
415
-	public function opendir($path) {
416
-		try {
417
-			$files = $this->getFolderContents($path);
418
-		} catch (NotFoundException $e) {
419
-			return false;
420
-		} catch (ForbiddenException $e) {
421
-			return false;
422
-		}
423
-		$names = array_map(function ($info) {
424
-			/** @var \Icewind\SMB\IFileInfo $info */
425
-			return $info->getName();
426
-		}, $files);
427
-		return IteratorDirectory::wrap($names);
428
-	}
429
-
430
-	public function filetype($path) {
431
-		try {
432
-			return $this->getFileInfo($path)->isDirectory() ? 'dir' : 'file';
433
-		} catch (NotFoundException $e) {
434
-			return false;
435
-		} catch (ForbiddenException $e) {
436
-			return false;
437
-		}
438
-	}
439
-
440
-	public function mkdir($path) {
441
-		$path = $this->buildPath($path);
442
-		try {
443
-			$this->share->mkdir($path);
444
-			return true;
445
-		} catch (ConnectException $e) {
446
-			throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
447
-		} catch (Exception $e) {
448
-			return false;
449
-		}
450
-	}
451
-
452
-	public function file_exists($path) {
453
-		try {
454
-			$this->getFileInfo($path);
455
-			return true;
456
-		} catch (NotFoundException $e) {
457
-			return false;
458
-		} catch (ForbiddenException $e) {
459
-			return false;
460
-		} catch (ConnectException $e) {
461
-			throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
462
-		}
463
-	}
464
-
465
-	public function isReadable($path) {
466
-		try {
467
-			$info = $this->getFileInfo($path);
468
-			return !$info->isHidden();
469
-		} catch (NotFoundException $e) {
470
-			return false;
471
-		} catch (ForbiddenException $e) {
472
-			return false;
473
-		}
474
-	}
475
-
476
-	public function isUpdatable($path) {
477
-		try {
478
-			$info = $this->getFileInfo($path);
479
-			// following windows behaviour for read-only folders: they can be written into
480
-			// (https://support.microsoft.com/en-us/kb/326549 - "cause" section)
481
-			return !$info->isHidden() && (!$info->isReadOnly() || $this->is_dir($path));
482
-		} catch (NotFoundException $e) {
483
-			return false;
484
-		} catch (ForbiddenException $e) {
485
-			return false;
486
-		}
487
-	}
488
-
489
-	public function isDeletable($path) {
490
-		try {
491
-			$info = $this->getFileInfo($path);
492
-			return !$info->isHidden() && !$info->isReadOnly();
493
-		} catch (NotFoundException $e) {
494
-			return false;
495
-		} catch (ForbiddenException $e) {
496
-			return false;
497
-		}
498
-	}
499
-
500
-	/**
501
-	 * check if smbclient is installed
502
-	 */
503
-	public static function checkDependencies() {
504
-		return (
505
-			(bool)\OC_Helper::findBinaryPath('smbclient')
506
-			|| Server::NativeAvailable()
507
-		) ? true : ['smbclient'];
508
-	}
509
-
510
-	/**
511
-	 * Test a storage for availability
512
-	 *
513
-	 * @return bool
514
-	 */
515
-	public function test() {
516
-		try {
517
-			return parent::test();
518
-		} catch (Exception $e) {
519
-			return false;
520
-		}
521
-	}
522
-
523
-	public function listen($path, callable $callback) {
524
-		$this->notify($path)->listen(function (IChange $change) use ($callback) {
525
-			if ($change instanceof IRenameChange) {
526
-				return $callback($change->getType(), $change->getPath(), $change->getTargetPath());
527
-			} else {
528
-				return $callback($change->getType(), $change->getPath());
529
-			}
530
-		});
531
-	}
532
-
533
-	public function notify($path) {
534
-		$path = '/' . ltrim($path, '/');
535
-		$shareNotifyHandler = $this->share->notify($this->buildPath($path));
536
-		return new SMBNotifyHandler($shareNotifyHandler, $this->root);
537
-	}
58
+    /**
59
+     * @var \Icewind\SMB\Server
60
+     */
61
+    protected $server;
62
+
63
+    /**
64
+     * @var \Icewind\SMB\Share
65
+     */
66
+    protected $share;
67
+
68
+    /**
69
+     * @var string
70
+     */
71
+    protected $root;
72
+
73
+    /**
74
+     * @var \Icewind\SMB\FileInfo[]
75
+     */
76
+    protected $statCache;
77
+
78
+    public function __construct($params) {
79
+        if (isset($params['host']) && isset($params['user']) && isset($params['password']) && isset($params['share'])) {
80
+            if (Server::NativeAvailable()) {
81
+                $this->server = new NativeServer($params['host'], $params['user'], $params['password']);
82
+            } else {
83
+                $this->server = new Server($params['host'], $params['user'], $params['password']);
84
+            }
85
+            $this->share = $this->server->getShare(trim($params['share'], '/'));
86
+
87
+            $this->root = $params['root'] ?? '/';
88
+            $this->root = '/' . ltrim($this->root, '/');
89
+            $this->root = rtrim($this->root, '/') . '/';
90
+        } else {
91
+            throw new \Exception('Invalid configuration');
92
+        }
93
+        $this->statCache = new CappedMemoryCache();
94
+        parent::__construct($params);
95
+    }
96
+
97
+    /**
98
+     * @return string
99
+     */
100
+    public function getId() {
101
+        // FIXME: double slash to keep compatible with the old storage ids,
102
+        // failure to do so will lead to creation of a new storage id and
103
+        // loss of shares from the storage
104
+        return 'smb::' . $this->server->getUser() . '@' . $this->server->getHost() . '//' . $this->share->getName() . '/' . $this->root;
105
+    }
106
+
107
+    /**
108
+     * @param string $path
109
+     * @return string
110
+     */
111
+    protected function buildPath($path) {
112
+        return Filesystem::normalizePath($this->root . '/' . $path, true, false, true);
113
+    }
114
+
115
+    protected function relativePath($fullPath) {
116
+        if ($fullPath === $this->root) {
117
+            return '';
118
+        } else if (substr($fullPath, 0, strlen($this->root)) === $this->root) {
119
+            return substr($fullPath, strlen($this->root));
120
+        } else {
121
+            return null;
122
+        }
123
+    }
124
+
125
+    /**
126
+     * @param string $path
127
+     * @return \Icewind\SMB\IFileInfo
128
+     * @throws StorageNotAvailableException
129
+     */
130
+    protected function getFileInfo($path) {
131
+        try {
132
+            $path = $this->buildPath($path);
133
+            if (!isset($this->statCache[$path])) {
134
+                $this->statCache[$path] = $this->share->stat($path);
135
+            }
136
+            return $this->statCache[$path];
137
+        } catch (ConnectException $e) {
138
+            throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
139
+        }
140
+    }
141
+
142
+    /**
143
+     * @param string $path
144
+     * @return \Icewind\SMB\IFileInfo[]
145
+     * @throws StorageNotAvailableException
146
+     */
147
+    protected function getFolderContents($path) {
148
+        try {
149
+            $path = $this->buildPath($path);
150
+            $files = $this->share->dir($path);
151
+            foreach ($files as $file) {
152
+                $this->statCache[$path . '/' . $file->getName()] = $file;
153
+            }
154
+            return array_filter($files, function (IFileInfo $file) {
155
+                try {
156
+                    return !$file->isHidden();
157
+                } catch (ForbiddenException $e) {
158
+                    return false;
159
+                } catch (NotFoundException $e) {
160
+                    return false;
161
+                }
162
+            });
163
+        } catch (ConnectException $e) {
164
+            throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
165
+        }
166
+    }
167
+
168
+    /**
169
+     * @param \Icewind\SMB\IFileInfo $info
170
+     * @return array
171
+     */
172
+    protected function formatInfo($info) {
173
+        $result = [
174
+            'size' => $info->getSize(),
175
+            'mtime' => $info->getMTime(),
176
+        ];
177
+        if ($info->isDirectory()) {
178
+            $result['type'] = 'dir';
179
+        } else {
180
+            $result['type'] = 'file';
181
+        }
182
+        return $result;
183
+    }
184
+
185
+    /**
186
+     * Rename the files. If the source or the target is the root, the rename won't happen.
187
+     *
188
+     * @param string $source the old name of the path
189
+     * @param string $target the new name of the path
190
+     * @return bool true if the rename is successful, false otherwise
191
+     */
192
+    public function rename($source, $target) {
193
+        if ($this->isRootDir($source) || $this->isRootDir($target)) {
194
+            return false;
195
+        }
196
+
197
+        $absoluteSource = $this->buildPath($source);
198
+        $absoluteTarget = $this->buildPath($target);
199
+        try {
200
+            $result = $this->share->rename($absoluteSource, $absoluteTarget);
201
+        } catch (AlreadyExistsException $e) {
202
+            $this->remove($target);
203
+            $result = $this->share->rename($absoluteSource, $absoluteTarget);
204
+        } catch (\Exception $e) {
205
+            \OC::$server->getLogger()->logException($e, ['level' => Util::WARN]);
206
+            return false;
207
+        }
208
+        unset($this->statCache[$absoluteSource], $this->statCache[$absoluteTarget]);
209
+        return $result;
210
+    }
211
+
212
+    public function stat($path) {
213
+        try {
214
+            $result = $this->formatInfo($this->getFileInfo($path));
215
+        } catch (ForbiddenException $e) {
216
+            return false;
217
+        } catch (NotFoundException $e) {
218
+            return false;
219
+        }
220
+        if ($this->remoteIsShare() && $this->isRootDir($path)) {
221
+            $result['mtime'] = $this->shareMTime();
222
+        }
223
+        return $result;
224
+    }
225
+
226
+    /**
227
+     * get the best guess for the modification time of the share
228
+     *
229
+     * @return int
230
+     */
231
+    private function shareMTime() {
232
+        $highestMTime = 0;
233
+        $files = $this->share->dir($this->root);
234
+        foreach ($files as $fileInfo) {
235
+            try {
236
+                if ($fileInfo->getMTime() > $highestMTime) {
237
+                    $highestMTime = $fileInfo->getMTime();
238
+                }
239
+            } catch (NotFoundException $e) {
240
+                // Ignore this, can happen on unavailable DFS shares
241
+            }
242
+        }
243
+        return $highestMTime;
244
+    }
245
+
246
+    /**
247
+     * Check if the path is our root dir (not the smb one)
248
+     *
249
+     * @param string $path the path
250
+     * @return bool
251
+     */
252
+    private function isRootDir($path) {
253
+        return $path === '' || $path === '/' || $path === '.';
254
+    }
255
+
256
+    /**
257
+     * Check if our root points to a smb share
258
+     *
259
+     * @return bool true if our root points to a share false otherwise
260
+     */
261
+    private function remoteIsShare() {
262
+        return $this->share->getName() && (!$this->root || $this->root === '/');
263
+    }
264
+
265
+    /**
266
+     * @param string $path
267
+     * @return bool
268
+     */
269
+    public function unlink($path) {
270
+        if ($this->isRootDir($path)) {
271
+            return false;
272
+        }
273
+
274
+        try {
275
+            if ($this->is_dir($path)) {
276
+                return $this->rmdir($path);
277
+            } else {
278
+                $path = $this->buildPath($path);
279
+                unset($this->statCache[$path]);
280
+                $this->share->del($path);
281
+                return true;
282
+            }
283
+        } catch (NotFoundException $e) {
284
+            return false;
285
+        } catch (ForbiddenException $e) {
286
+            return false;
287
+        } catch (ConnectException $e) {
288
+            throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
289
+        }
290
+    }
291
+
292
+    /**
293
+     * check if a file or folder has been updated since $time
294
+     *
295
+     * @param string $path
296
+     * @param int $time
297
+     * @return bool
298
+     */
299
+    public function hasUpdated($path, $time) {
300
+        if (!$path and $this->root === '/') {
301
+            // mtime doesn't work for shares, but giving the nature of the backend,
302
+            // doing a full update is still just fast enough
303
+            return true;
304
+        } else {
305
+            $actualTime = $this->filemtime($path);
306
+            return $actualTime > $time;
307
+        }
308
+    }
309
+
310
+    /**
311
+     * @param string $path
312
+     * @param string $mode
313
+     * @return resource|false
314
+     */
315
+    public function fopen($path, $mode) {
316
+        $fullPath = $this->buildPath($path);
317
+        try {
318
+            switch ($mode) {
319
+                case 'r':
320
+                case 'rb':
321
+                    if (!$this->file_exists($path)) {
322
+                        return false;
323
+                    }
324
+                    return $this->share->read($fullPath);
325
+                case 'w':
326
+                case 'wb':
327
+                    $source = $this->share->write($fullPath);
328
+                    return CallBackWrapper::wrap($source, null, null, function () use ($fullPath) {
329
+                        unset($this->statCache[$fullPath]);
330
+                    });
331
+                case 'a':
332
+                case 'ab':
333
+                case 'r+':
334
+                case 'w+':
335
+                case 'wb+':
336
+                case 'a+':
337
+                case 'x':
338
+                case 'x+':
339
+                case 'c':
340
+                case 'c+':
341
+                    //emulate these
342
+                    if (strrpos($path, '.') !== false) {
343
+                        $ext = substr($path, strrpos($path, '.'));
344
+                    } else {
345
+                        $ext = '';
346
+                    }
347
+                    if ($this->file_exists($path)) {
348
+                        if (!$this->isUpdatable($path)) {
349
+                            return false;
350
+                        }
351
+                        $tmpFile = $this->getCachedFile($path);
352
+                    } else {
353
+                        if (!$this->isCreatable(dirname($path))) {
354
+                            return false;
355
+                        }
356
+                        $tmpFile = \OCP\Files::tmpFile($ext);
357
+                    }
358
+                    $source = fopen($tmpFile, $mode);
359
+                    $share = $this->share;
360
+                    return CallbackWrapper::wrap($source, null, null, function () use ($tmpFile, $fullPath, $share) {
361
+                        unset($this->statCache[$fullPath]);
362
+                        $share->put($tmpFile, $fullPath);
363
+                        unlink($tmpFile);
364
+                    });
365
+            }
366
+            return false;
367
+        } catch (NotFoundException $e) {
368
+            return false;
369
+        } catch (ForbiddenException $e) {
370
+            return false;
371
+        } catch (ConnectException $e) {
372
+            throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
373
+        }
374
+    }
375
+
376
+    public function rmdir($path) {
377
+        if ($this->isRootDir($path)) {
378
+            return false;
379
+        }
380
+
381
+        try {
382
+            $this->statCache = array();
383
+            $content = $this->share->dir($this->buildPath($path));
384
+            foreach ($content as $file) {
385
+                if ($file->isDirectory()) {
386
+                    $this->rmdir($path . '/' . $file->getName());
387
+                } else {
388
+                    $this->share->del($file->getPath());
389
+                }
390
+            }
391
+            $this->share->rmdir($this->buildPath($path));
392
+            return true;
393
+        } catch (NotFoundException $e) {
394
+            return false;
395
+        } catch (ForbiddenException $e) {
396
+            return false;
397
+        } catch (ConnectException $e) {
398
+            throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
399
+        }
400
+    }
401
+
402
+    public function touch($path, $time = null) {
403
+        try {
404
+            if (!$this->file_exists($path)) {
405
+                $fh = $this->share->write($this->buildPath($path));
406
+                fclose($fh);
407
+                return true;
408
+            }
409
+            return false;
410
+        } catch (ConnectException $e) {
411
+            throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
412
+        }
413
+    }
414
+
415
+    public function opendir($path) {
416
+        try {
417
+            $files = $this->getFolderContents($path);
418
+        } catch (NotFoundException $e) {
419
+            return false;
420
+        } catch (ForbiddenException $e) {
421
+            return false;
422
+        }
423
+        $names = array_map(function ($info) {
424
+            /** @var \Icewind\SMB\IFileInfo $info */
425
+            return $info->getName();
426
+        }, $files);
427
+        return IteratorDirectory::wrap($names);
428
+    }
429
+
430
+    public function filetype($path) {
431
+        try {
432
+            return $this->getFileInfo($path)->isDirectory() ? 'dir' : 'file';
433
+        } catch (NotFoundException $e) {
434
+            return false;
435
+        } catch (ForbiddenException $e) {
436
+            return false;
437
+        }
438
+    }
439
+
440
+    public function mkdir($path) {
441
+        $path = $this->buildPath($path);
442
+        try {
443
+            $this->share->mkdir($path);
444
+            return true;
445
+        } catch (ConnectException $e) {
446
+            throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
447
+        } catch (Exception $e) {
448
+            return false;
449
+        }
450
+    }
451
+
452
+    public function file_exists($path) {
453
+        try {
454
+            $this->getFileInfo($path);
455
+            return true;
456
+        } catch (NotFoundException $e) {
457
+            return false;
458
+        } catch (ForbiddenException $e) {
459
+            return false;
460
+        } catch (ConnectException $e) {
461
+            throw new StorageNotAvailableException($e->getMessage(), $e->getCode(), $e);
462
+        }
463
+    }
464
+
465
+    public function isReadable($path) {
466
+        try {
467
+            $info = $this->getFileInfo($path);
468
+            return !$info->isHidden();
469
+        } catch (NotFoundException $e) {
470
+            return false;
471
+        } catch (ForbiddenException $e) {
472
+            return false;
473
+        }
474
+    }
475
+
476
+    public function isUpdatable($path) {
477
+        try {
478
+            $info = $this->getFileInfo($path);
479
+            // following windows behaviour for read-only folders: they can be written into
480
+            // (https://support.microsoft.com/en-us/kb/326549 - "cause" section)
481
+            return !$info->isHidden() && (!$info->isReadOnly() || $this->is_dir($path));
482
+        } catch (NotFoundException $e) {
483
+            return false;
484
+        } catch (ForbiddenException $e) {
485
+            return false;
486
+        }
487
+    }
488
+
489
+    public function isDeletable($path) {
490
+        try {
491
+            $info = $this->getFileInfo($path);
492
+            return !$info->isHidden() && !$info->isReadOnly();
493
+        } catch (NotFoundException $e) {
494
+            return false;
495
+        } catch (ForbiddenException $e) {
496
+            return false;
497
+        }
498
+    }
499
+
500
+    /**
501
+     * check if smbclient is installed
502
+     */
503
+    public static function checkDependencies() {
504
+        return (
505
+            (bool)\OC_Helper::findBinaryPath('smbclient')
506
+            || Server::NativeAvailable()
507
+        ) ? true : ['smbclient'];
508
+    }
509
+
510
+    /**
511
+     * Test a storage for availability
512
+     *
513
+     * @return bool
514
+     */
515
+    public function test() {
516
+        try {
517
+            return parent::test();
518
+        } catch (Exception $e) {
519
+            return false;
520
+        }
521
+    }
522
+
523
+    public function listen($path, callable $callback) {
524
+        $this->notify($path)->listen(function (IChange $change) use ($callback) {
525
+            if ($change instanceof IRenameChange) {
526
+                return $callback($change->getType(), $change->getPath(), $change->getTargetPath());
527
+            } else {
528
+                return $callback($change->getType(), $change->getPath());
529
+            }
530
+        });
531
+    }
532
+
533
+    public function notify($path) {
534
+        $path = '/' . ltrim($path, '/');
535
+        $shareNotifyHandler = $this->share->notify($this->buildPath($path));
536
+        return new SMBNotifyHandler($shareNotifyHandler, $this->root);
537
+    }
538 538
 }
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -85,8 +85,8 @@  discard block
 block discarded – undo
85 85
 			$this->share = $this->server->getShare(trim($params['share'], '/'));
86 86
 
87 87
 			$this->root = $params['root'] ?? '/';
88
-			$this->root = '/' . ltrim($this->root, '/');
89
-			$this->root = rtrim($this->root, '/') . '/';
88
+			$this->root = '/'.ltrim($this->root, '/');
89
+			$this->root = rtrim($this->root, '/').'/';
90 90
 		} else {
91 91
 			throw new \Exception('Invalid configuration');
92 92
 		}
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 		// FIXME: double slash to keep compatible with the old storage ids,
102 102
 		// failure to do so will lead to creation of a new storage id and
103 103
 		// loss of shares from the storage
104
-		return 'smb::' . $this->server->getUser() . '@' . $this->server->getHost() . '//' . $this->share->getName() . '/' . $this->root;
104
+		return 'smb::'.$this->server->getUser().'@'.$this->server->getHost().'//'.$this->share->getName().'/'.$this->root;
105 105
 	}
106 106
 
107 107
 	/**
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 	 * @return string
110 110
 	 */
111 111
 	protected function buildPath($path) {
112
-		return Filesystem::normalizePath($this->root . '/' . $path, true, false, true);
112
+		return Filesystem::normalizePath($this->root.'/'.$path, true, false, true);
113 113
 	}
114 114
 
115 115
 	protected function relativePath($fullPath) {
@@ -149,9 +149,9 @@  discard block
 block discarded – undo
149 149
 			$path = $this->buildPath($path);
150 150
 			$files = $this->share->dir($path);
151 151
 			foreach ($files as $file) {
152
-				$this->statCache[$path . '/' . $file->getName()] = $file;
152
+				$this->statCache[$path.'/'.$file->getName()] = $file;
153 153
 			}
154
-			return array_filter($files, function (IFileInfo $file) {
154
+			return array_filter($files, function(IFileInfo $file) {
155 155
 				try {
156 156
 					return !$file->isHidden();
157 157
 				} catch (ForbiddenException $e) {
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 				case 'w':
326 326
 				case 'wb':
327 327
 					$source = $this->share->write($fullPath);
328
-					return CallBackWrapper::wrap($source, null, null, function () use ($fullPath) {
328
+					return CallBackWrapper::wrap($source, null, null, function() use ($fullPath) {
329 329
 						unset($this->statCache[$fullPath]);
330 330
 					});
331 331
 				case 'a':
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
 					}
358 358
 					$source = fopen($tmpFile, $mode);
359 359
 					$share = $this->share;
360
-					return CallbackWrapper::wrap($source, null, null, function () use ($tmpFile, $fullPath, $share) {
360
+					return CallbackWrapper::wrap($source, null, null, function() use ($tmpFile, $fullPath, $share) {
361 361
 						unset($this->statCache[$fullPath]);
362 362
 						$share->put($tmpFile, $fullPath);
363 363
 						unlink($tmpFile);
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
 			$content = $this->share->dir($this->buildPath($path));
384 384
 			foreach ($content as $file) {
385 385
 				if ($file->isDirectory()) {
386
-					$this->rmdir($path . '/' . $file->getName());
386
+					$this->rmdir($path.'/'.$file->getName());
387 387
 				} else {
388 388
 					$this->share->del($file->getPath());
389 389
 				}
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
 		} catch (ForbiddenException $e) {
421 421
 			return false;
422 422
 		}
423
-		$names = array_map(function ($info) {
423
+		$names = array_map(function($info) {
424 424
 			/** @var \Icewind\SMB\IFileInfo $info */
425 425
 			return $info->getName();
426 426
 		}, $files);
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
502 502
 	 */
503 503
 	public static function checkDependencies() {
504 504
 		return (
505
-			(bool)\OC_Helper::findBinaryPath('smbclient')
505
+			(bool) \OC_Helper::findBinaryPath('smbclient')
506 506
 			|| Server::NativeAvailable()
507 507
 		) ? true : ['smbclient'];
508 508
 	}
@@ -521,7 +521,7 @@  discard block
 block discarded – undo
521 521
 	}
522 522
 
523 523
 	public function listen($path, callable $callback) {
524
-		$this->notify($path)->listen(function (IChange $change) use ($callback) {
524
+		$this->notify($path)->listen(function(IChange $change) use ($callback) {
525 525
 			if ($change instanceof IRenameChange) {
526 526
 				return $callback($change->getType(), $change->getPath(), $change->getTargetPath());
527 527
 			} else {
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
 	}
532 532
 
533 533
 	public function notify($path) {
534
-		$path = '/' . ltrim($path, '/');
534
+		$path = '/'.ltrim($path, '/');
535 535
 		$shareNotifyHandler = $this->share->notify($this->buildPath($path));
536 536
 		return new SMBNotifyHandler($shareNotifyHandler, $this->root);
537 537
 	}
Please login to merge, or discard this patch.
lib/public/AppFramework/Http/StreamResponse.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
 	private $filePath;
38 38
 
39 39
 	/**
40
-	 * @param string|resource $filePath the path to the file or a file handle which should be streamed
40
+	 * @param string $filePath the path to the file or a file handle which should be streamed
41 41
 	 * @since 8.1.0
42 42
 	 */
43 43
 	public function __construct ($filePath) {
Please login to merge, or discard this patch.
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -33,33 +33,33 @@
 block discarded – undo
33 33
  * @since 8.1.0
34 34
  */
35 35
 class StreamResponse extends Response implements ICallbackResponse {
36
-	/** @var string */
37
-	private $filePath;
36
+    /** @var string */
37
+    private $filePath;
38 38
 
39
-	/**
40
-	 * @param string|resource $filePath the path to the file or a file handle which should be streamed
41
-	 * @since 8.1.0
42
-	 */
43
-	public function __construct ($filePath) {
44
-		$this->filePath = $filePath;
45
-	}
39
+    /**
40
+     * @param string|resource $filePath the path to the file or a file handle which should be streamed
41
+     * @since 8.1.0
42
+     */
43
+    public function __construct ($filePath) {
44
+        $this->filePath = $filePath;
45
+    }
46 46
 
47 47
 
48
-	/**
49
-	 * Streams the file using readfile
50
-	 *
51
-	 * @param IOutput $output a small wrapper that handles output
52
-	 * @since 8.1.0
53
-	 */
54
-	public function callback (IOutput $output) {
55
-		// handle caching
56
-		if ($output->getHttpResponseCode() !== Http::STATUS_NOT_MODIFIED) {
57
-			if (!(is_resource($this->filePath) || file_exists($this->filePath))) {
58
-				$output->setHttpResponseCode(Http::STATUS_NOT_FOUND);
59
-			} elseif ($output->setReadfile($this->filePath) === false) {
60
-				$output->setHttpResponseCode(Http::STATUS_BAD_REQUEST);
61
-			}
62
-		}
63
-	}
48
+    /**
49
+     * Streams the file using readfile
50
+     *
51
+     * @param IOutput $output a small wrapper that handles output
52
+     * @since 8.1.0
53
+     */
54
+    public function callback (IOutput $output) {
55
+        // handle caching
56
+        if ($output->getHttpResponseCode() !== Http::STATUS_NOT_MODIFIED) {
57
+            if (!(is_resource($this->filePath) || file_exists($this->filePath))) {
58
+                $output->setHttpResponseCode(Http::STATUS_NOT_FOUND);
59
+            } elseif ($output->setReadfile($this->filePath) === false) {
60
+                $output->setHttpResponseCode(Http::STATUS_BAD_REQUEST);
61
+            }
62
+        }
63
+    }
64 64
 
65 65
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	 * @param string|resource $filePath the path to the file or a file handle which should be streamed
41 41
 	 * @since 8.1.0
42 42
 	 */
43
-	public function __construct ($filePath) {
43
+	public function __construct($filePath) {
44 44
 		$this->filePath = $filePath;
45 45
 	}
46 46
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 	 * @param IOutput $output a small wrapper that handles output
52 52
 	 * @since 8.1.0
53 53
 	 */
54
-	public function callback (IOutput $output) {
54
+	public function callback(IOutput $output) {
55 55
 		// handle caching
56 56
 		if ($output->getHttpResponseCode() !== Http::STATUS_NOT_MODIFIED) {
57 57
 			if (!(is_resource($this->filePath) || file_exists($this->filePath))) {
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/DavAclPlugin.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@
 block discarded – undo
47 47
 		$this->allowUnauthenticatedAccess = false;
48 48
 	}
49 49
 
50
+	/**
51
+	 * @param string $privileges
52
+	 */
50 53
 	function checkPrivileges($uri, $privileges, $recursion = self::R_PARENT, $throwExceptions = true) {
51 54
 		$access = parent::checkPrivileges($uri, $privileges, $recursion, false);
52 55
 		if($access === false && $throwExceptions) {
Please login to merge, or discard this patch.
Indentation   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -38,50 +38,50 @@
 block discarded – undo
38 38
  * @package OCA\DAV\Connector\Sabre
39 39
  */
40 40
 class DavAclPlugin extends \Sabre\DAVACL\Plugin {
41
-	public function __construct() {
42
-		$this->hideNodesFromListings = true;
43
-		$this->allowUnauthenticatedAccess = false;
44
-	}
41
+    public function __construct() {
42
+        $this->hideNodesFromListings = true;
43
+        $this->allowUnauthenticatedAccess = false;
44
+    }
45 45
 
46
-	function checkPrivileges($uri, $privileges, $recursion = self::R_PARENT, $throwExceptions = true) {
47
-		$access = parent::checkPrivileges($uri, $privileges, $recursion, false);
48
-		if($access === false && $throwExceptions) {
49
-			/** @var INode $node */
50
-			$node = $this->server->tree->getNodeForPath($uri);
46
+    function checkPrivileges($uri, $privileges, $recursion = self::R_PARENT, $throwExceptions = true) {
47
+        $access = parent::checkPrivileges($uri, $privileges, $recursion, false);
48
+        if($access === false && $throwExceptions) {
49
+            /** @var INode $node */
50
+            $node = $this->server->tree->getNodeForPath($uri);
51 51
 
52
-			switch(get_class($node)) {
53
-				case AddressBook::class:
54
-					$type = 'Addressbook';
55
-					break;
56
-				default:
57
-					$type = 'Node';
58
-					break;
59
-			}
60
-			throw new NotFound(
61
-				sprintf(
62
-					"%s with name '%s' could not be found",
63
-					$type,
64
-					$node->getName()
65
-				)
66
-			);
67
-		}
52
+            switch(get_class($node)) {
53
+                case AddressBook::class:
54
+                    $type = 'Addressbook';
55
+                    break;
56
+                default:
57
+                    $type = 'Node';
58
+                    break;
59
+            }
60
+            throw new NotFound(
61
+                sprintf(
62
+                    "%s with name '%s' could not be found",
63
+                    $type,
64
+                    $node->getName()
65
+                )
66
+            );
67
+        }
68 68
 
69
-		return $access;
70
-	}
69
+        return $access;
70
+    }
71 71
 
72
-	public function propFind(PropFind $propFind, INode $node) {
73
-		// If the node is neither readable nor writable then fail unless its of
74
-		// the standard user-principal
75
-		if(!($node instanceof User)) {
76
-			$path = $propFind->getPath();
77
-			$readPermissions = $this->checkPrivileges($path, '{DAV:}read', self::R_PARENT, false);
78
-			$writePermissions = $this->checkPrivileges($path, '{DAV:}write', self::R_PARENT, false);
79
-			if ($readPermissions === false && $writePermissions === false) {
80
-				$this->checkPrivileges($path, '{DAV:}read', self::R_PARENT, true);
81
-				$this->checkPrivileges($path, '{DAV:}write', self::R_PARENT, true);
82
-			}
83
-		}
72
+    public function propFind(PropFind $propFind, INode $node) {
73
+        // If the node is neither readable nor writable then fail unless its of
74
+        // the standard user-principal
75
+        if(!($node instanceof User)) {
76
+            $path = $propFind->getPath();
77
+            $readPermissions = $this->checkPrivileges($path, '{DAV:}read', self::R_PARENT, false);
78
+            $writePermissions = $this->checkPrivileges($path, '{DAV:}write', self::R_PARENT, false);
79
+            if ($readPermissions === false && $writePermissions === false) {
80
+                $this->checkPrivileges($path, '{DAV:}read', self::R_PARENT, true);
81
+                $this->checkPrivileges($path, '{DAV:}write', self::R_PARENT, true);
82
+            }
83
+        }
84 84
 
85
-		return parent::propFind($propFind, $node);
86
-	}
85
+        return parent::propFind($propFind, $node);
86
+    }
87 87
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,11 +45,11 @@  discard block
 block discarded – undo
45 45
 
46 46
 	function checkPrivileges($uri, $privileges, $recursion = self::R_PARENT, $throwExceptions = true) {
47 47
 		$access = parent::checkPrivileges($uri, $privileges, $recursion, false);
48
-		if($access === false && $throwExceptions) {
48
+		if ($access === false && $throwExceptions) {
49 49
 			/** @var INode $node */
50 50
 			$node = $this->server->tree->getNodeForPath($uri);
51 51
 
52
-			switch(get_class($node)) {
52
+			switch (get_class($node)) {
53 53
 				case AddressBook::class:
54 54
 					$type = 'Addressbook';
55 55
 					break;
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 	public function propFind(PropFind $propFind, INode $node) {
73 73
 		// If the node is neither readable nor writable then fail unless its of
74 74
 		// the standard user-principal
75
-		if(!($node instanceof User)) {
75
+		if (!($node instanceof User)) {
76 76
 			$path = $propFind->getPath();
77 77
 			$readPermissions = $this->checkPrivileges($path, '{DAV:}read', self::R_PARENT, false);
78 78
 			$writePermissions = $this->checkPrivileges($path, '{DAV:}write', self::R_PARENT, false);
Please login to merge, or discard this patch.
lib/private/Files/Storage/Storage.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -100,6 +100,7 @@  discard block
 block discarded – undo
100 100
 	 * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
101 101
 	 * @param \OCP\Lock\ILockingProvider $provider
102 102
 	 * @throws \OCP\Lock\LockedException
103
+	 * @return void
103 104
 	 */
104 105
 	public function acquireLock($path, $type, ILockingProvider $provider);
105 106
 
@@ -108,6 +109,7 @@  discard block
 block discarded – undo
108 109
 	 * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
109 110
 	 * @param \OCP\Lock\ILockingProvider $provider
110 111
 	 * @throws \OCP\Lock\LockedException
112
+	 * @return void
111 113
 	 */
112 114
 	public function releaseLock($path, $type, ILockingProvider $provider);
113 115
 
@@ -116,6 +118,7 @@  discard block
 block discarded – undo
116 118
 	 * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
117 119
 	 * @param \OCP\Lock\ILockingProvider $provider
118 120
 	 * @throws \OCP\Lock\LockedException
121
+	 * @return void
119 122
 	 */
120 123
 	public function changeLock($path, $type, ILockingProvider $provider);
121 124
 }
Please login to merge, or discard this patch.
Indentation   +75 added lines, -75 removed lines patch added patch discarded remove patch
@@ -32,90 +32,90 @@
 block discarded – undo
32 32
  */
33 33
 interface Storage extends \OCP\Files\Storage {
34 34
 
35
-	/**
36
-	 * get a cache instance for the storage
37
-	 *
38
-	 * @param string $path
39
-	 * @param \OC\Files\Storage\Storage (optional) the storage to pass to the cache
40
-	 * @return \OC\Files\Cache\Cache
41
-	 */
42
-	public function getCache($path = '', $storage = null);
35
+    /**
36
+     * get a cache instance for the storage
37
+     *
38
+     * @param string $path
39
+     * @param \OC\Files\Storage\Storage (optional) the storage to pass to the cache
40
+     * @return \OC\Files\Cache\Cache
41
+     */
42
+    public function getCache($path = '', $storage = null);
43 43
 
44
-	/**
45
-	 * get a scanner instance for the storage
46
-	 *
47
-	 * @param string $path
48
-	 * @param \OC\Files\Storage\Storage (optional) the storage to pass to the scanner
49
-	 * @return \OC\Files\Cache\Scanner
50
-	 */
51
-	public function getScanner($path = '', $storage = null);
44
+    /**
45
+     * get a scanner instance for the storage
46
+     *
47
+     * @param string $path
48
+     * @param \OC\Files\Storage\Storage (optional) the storage to pass to the scanner
49
+     * @return \OC\Files\Cache\Scanner
50
+     */
51
+    public function getScanner($path = '', $storage = null);
52 52
 
53 53
 
54
-	/**
55
-	 * get the user id of the owner of a file or folder
56
-	 *
57
-	 * @param string $path
58
-	 * @return string
59
-	 */
60
-	public function getOwner($path);
54
+    /**
55
+     * get the user id of the owner of a file or folder
56
+     *
57
+     * @param string $path
58
+     * @return string
59
+     */
60
+    public function getOwner($path);
61 61
 
62
-	/**
63
-	 * get a watcher instance for the cache
64
-	 *
65
-	 * @param string $path
66
-	 * @param \OC\Files\Storage\Storage (optional) the storage to pass to the watcher
67
-	 * @return \OC\Files\Cache\Watcher
68
-	 */
69
-	public function getWatcher($path = '', $storage = null);
62
+    /**
63
+     * get a watcher instance for the cache
64
+     *
65
+     * @param string $path
66
+     * @param \OC\Files\Storage\Storage (optional) the storage to pass to the watcher
67
+     * @return \OC\Files\Cache\Watcher
68
+     */
69
+    public function getWatcher($path = '', $storage = null);
70 70
 
71
-	/**
72
-	 * get a propagator instance for the cache
73
-	 *
74
-	 * @param \OC\Files\Storage\Storage (optional) the storage to pass to the watcher
75
-	 * @return \OC\Files\Cache\Propagator
76
-	 */
77
-	public function getPropagator($storage = null);
71
+    /**
72
+     * get a propagator instance for the cache
73
+     *
74
+     * @param \OC\Files\Storage\Storage (optional) the storage to pass to the watcher
75
+     * @return \OC\Files\Cache\Propagator
76
+     */
77
+    public function getPropagator($storage = null);
78 78
 
79
-	/**
80
-	 * get a updater instance for the cache
81
-	 *
82
-	 * @param \OC\Files\Storage\Storage (optional) the storage to pass to the watcher
83
-	 * @return \OC\Files\Cache\Updater
84
-	 */
85
-	public function getUpdater($storage = null);
79
+    /**
80
+     * get a updater instance for the cache
81
+     *
82
+     * @param \OC\Files\Storage\Storage (optional) the storage to pass to the watcher
83
+     * @return \OC\Files\Cache\Updater
84
+     */
85
+    public function getUpdater($storage = null);
86 86
 
87
-	/**
88
-	 * @return \OC\Files\Cache\Storage
89
-	 */
90
-	public function getStorageCache();
87
+    /**
88
+     * @return \OC\Files\Cache\Storage
89
+     */
90
+    public function getStorageCache();
91 91
 
92
-	/**
93
-	 * @param string $path
94
-	 * @return array
95
-	 */
96
-	public function getMetaData($path);
92
+    /**
93
+     * @param string $path
94
+     * @return array
95
+     */
96
+    public function getMetaData($path);
97 97
 
98
-	/**
99
-	 * @param string $path The path of the file to acquire the lock for
100
-	 * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
101
-	 * @param \OCP\Lock\ILockingProvider $provider
102
-	 * @throws \OCP\Lock\LockedException
103
-	 */
104
-	public function acquireLock($path, $type, ILockingProvider $provider);
98
+    /**
99
+     * @param string $path The path of the file to acquire the lock for
100
+     * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
101
+     * @param \OCP\Lock\ILockingProvider $provider
102
+     * @throws \OCP\Lock\LockedException
103
+     */
104
+    public function acquireLock($path, $type, ILockingProvider $provider);
105 105
 
106
-	/**
107
-	 * @param string $path The path of the file to release the lock for
108
-	 * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
109
-	 * @param \OCP\Lock\ILockingProvider $provider
110
-	 * @throws \OCP\Lock\LockedException
111
-	 */
112
-	public function releaseLock($path, $type, ILockingProvider $provider);
106
+    /**
107
+     * @param string $path The path of the file to release the lock for
108
+     * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
109
+     * @param \OCP\Lock\ILockingProvider $provider
110
+     * @throws \OCP\Lock\LockedException
111
+     */
112
+    public function releaseLock($path, $type, ILockingProvider $provider);
113 113
 
114
-	/**
115
-	 * @param string $path The path of the file to change the lock for
116
-	 * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
117
-	 * @param \OCP\Lock\ILockingProvider $provider
118
-	 * @throws \OCP\Lock\LockedException
119
-	 */
120
-	public function changeLock($path, $type, ILockingProvider $provider);
114
+    /**
115
+     * @param string $path The path of the file to change the lock for
116
+     * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE
117
+     * @param \OCP\Lock\ILockingProvider $provider
118
+     * @throws \OCP\Lock\LockedException
119
+     */
120
+    public function changeLock($path, $type, ILockingProvider $provider);
121 121
 }
Please login to merge, or discard this patch.
apps/files/templates/admin.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,17 +2,17 @@
 block discarded – undo
2 2
 
3 3
 	<div class="section">
4 4
 		<h2><?php p($l->t('File handling')); ?></h2>
5
-		<label for="maxUploadSize"><?php p($l->t( 'Maximum upload size' )); ?> </label>
5
+		<label for="maxUploadSize"><?php p($l->t('Maximum upload size')); ?> </label>
6 6
 		<span id="maxUploadSizeSettingsMsg" class="msg"></span>
7 7
 		<br />
8
-		<input type="text" name='maxUploadSize' id="maxUploadSize" value='<?php p($_['uploadMaxFilesize']) ?>' <?php if(!$_['uploadChangable']) { p('disabled'); } ?> />
9
-		<?php if($_['displayMaxPossibleUploadSize']):?>
8
+		<input type="text" name='maxUploadSize' id="maxUploadSize" value='<?php p($_['uploadMaxFilesize']) ?>' <?php if (!$_['uploadChangable']) { p('disabled'); } ?> />
9
+		<?php if ($_['displayMaxPossibleUploadSize']):?>
10 10
 			(<?php p($l->t('max. possible: ')); p($_['maxPossibleUploadSize']) ?>)
11
-		<?php endif;?>
11
+		<?php endif; ?>
12 12
 		<input type="hidden" value="<?php p($_['requesttoken']); ?>" name="requesttoken" />
13
-		<?php if($_['uploadChangable']): ?>
13
+		<?php if ($_['uploadChangable']): ?>
14 14
 			<input type="submit" id="submitMaxUpload"
15
-				   value="<?php p($l->t( 'Save' )); ?>"/>
15
+				   value="<?php p($l->t('Save')); ?>"/>
16 16
 			<p><em><?php p($l->t('With PHP-FPM it might take 5 minutes for changes to be applied.')); ?></em></p>
17 17
 		<?php else: ?>
18 18
 			<p><em><?php p($l->t('Missing permissions to edit from here.')); ?></em></p>
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,10 @@
 block discarded – undo
14 14
 			<input type="submit" id="submitMaxUpload"
15 15
 				   value="<?php p($l->t( 'Save' )); ?>"/>
16 16
 			<p><em><?php p($l->t('With PHP-FPM it might take 5 minutes for changes to be applied.')); ?></em></p>
17
-		<?php else: ?>
18
-			<p><em><?php p($l->t('Missing permissions to edit from here.')); ?></em></p>
17
+		<?php else {
18
+    : ?>
19
+			<p><em><?php p($l->t('Missing permissions to edit from here.'));
20
+}
21
+?></em></p>
19 22
 		<?php endif; ?>
20 23
 	</div>
Please login to merge, or discard this patch.
apps/files/ajax/getstoragestats.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 $dir = '/';
27 27
 
28 28
 if (isset($_GET['dir'])) {
29
-	$dir = (string)$_GET['dir'];
29
+    $dir = (string)$_GET['dir'];
30 30
 }
31 31
 
32 32
 OCP\JSON::checkLoggedIn();
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
 // send back json
36 36
 try {
37
-	OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir)));
37
+    OCP\JSON::success(array('data' => \OCA\Files\Helper::buildFileStorageStatistics($dir)));
38 38
 } catch (\OCP\Files\NotFoundException $e) {
39
-	OCP\JSON::error(['data' => ['message' => 'Folder not found']]);
39
+    OCP\JSON::error(['data' => ['message' => 'Folder not found']]);
40 40
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 $dir = '/';
27 27
 
28 28
 if (isset($_GET['dir'])) {
29
-	$dir = (string)$_GET['dir'];
29
+	$dir = (string) $_GET['dir'];
30 30
 }
31 31
 
32 32
 OCP\JSON::checkLoggedIn();
Please login to merge, or discard this patch.