@@ -32,7 +32,6 @@ |
||
| 32 | 32 | |
| 33 | 33 | use OCP\Files\Cache\ICacheEntry; |
| 34 | 34 | use OCP\Files\Mount\IMountPoint; |
| 35 | -use OCP\Files\Storage\IStorage; |
|
| 36 | 35 | use OCP\Files\IHomeStorage; |
| 37 | 36 | use OCP\IUser; |
| 38 | 37 | |
@@ -37,354 +37,354 @@ |
||
| 37 | 37 | use OCP\IUser; |
| 38 | 38 | |
| 39 | 39 | class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess { |
| 40 | - /** |
|
| 41 | - * @var array $data |
|
| 42 | - */ |
|
| 43 | - private $data; |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * @var string $path |
|
| 47 | - */ |
|
| 48 | - private $path; |
|
| 49 | - |
|
| 50 | - /** |
|
| 51 | - * @var \OC\Files\Storage\Storage $storage |
|
| 52 | - */ |
|
| 53 | - private $storage; |
|
| 54 | - |
|
| 55 | - /** |
|
| 56 | - * @var string $internalPath |
|
| 57 | - */ |
|
| 58 | - private $internalPath; |
|
| 59 | - |
|
| 60 | - /** |
|
| 61 | - * @var \OCP\Files\Mount\IMountPoint |
|
| 62 | - */ |
|
| 63 | - private $mount; |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * @var IUser |
|
| 67 | - */ |
|
| 68 | - private $owner; |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * @var string[] |
|
| 72 | - */ |
|
| 73 | - private $childEtags = []; |
|
| 74 | - |
|
| 75 | - /** |
|
| 76 | - * @var IMountPoint[] |
|
| 77 | - */ |
|
| 78 | - private $subMounts = []; |
|
| 79 | - |
|
| 80 | - private $subMountsUsed = false; |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * @param string|boolean $path |
|
| 84 | - * @param Storage\Storage $storage |
|
| 85 | - * @param string $internalPath |
|
| 86 | - * @param array|ICacheEntry $data |
|
| 87 | - * @param \OCP\Files\Mount\IMountPoint $mount |
|
| 88 | - * @param \OCP\IUser|null $owner |
|
| 89 | - */ |
|
| 90 | - public function __construct($path, $storage, $internalPath, $data, $mount, $owner= null) { |
|
| 91 | - $this->path = $path; |
|
| 92 | - $this->storage = $storage; |
|
| 93 | - $this->internalPath = $internalPath; |
|
| 94 | - $this->data = $data; |
|
| 95 | - $this->mount = $mount; |
|
| 96 | - $this->owner = $owner; |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - public function offsetSet($offset, $value) { |
|
| 100 | - $this->data[$offset] = $value; |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - public function offsetExists($offset) { |
|
| 104 | - return isset($this->data[$offset]); |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - public function offsetUnset($offset) { |
|
| 108 | - unset($this->data[$offset]); |
|
| 109 | - } |
|
| 110 | - |
|
| 111 | - public function offsetGet($offset) { |
|
| 112 | - if ($offset === 'type') { |
|
| 113 | - return $this->getType(); |
|
| 114 | - } else if ($offset === 'etag') { |
|
| 115 | - return $this->getEtag(); |
|
| 116 | - } else if ($offset === 'size') { |
|
| 117 | - return $this->getSize(); |
|
| 118 | - } else if ($offset === 'mtime') { |
|
| 119 | - return $this->getMTime(); |
|
| 120 | - } elseif ($offset === 'permissions') { |
|
| 121 | - return $this->getPermissions(); |
|
| 122 | - } elseif (isset($this->data[$offset])) { |
|
| 123 | - return $this->data[$offset]; |
|
| 124 | - } else { |
|
| 125 | - return null; |
|
| 126 | - } |
|
| 127 | - } |
|
| 128 | - |
|
| 129 | - /** |
|
| 130 | - * @return string |
|
| 131 | - */ |
|
| 132 | - public function getPath() { |
|
| 133 | - return $this->path; |
|
| 134 | - } |
|
| 135 | - |
|
| 136 | - /** |
|
| 137 | - * @return \OCP\Files\Storage |
|
| 138 | - */ |
|
| 139 | - public function getStorage() { |
|
| 140 | - return $this->storage; |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - /** |
|
| 144 | - * @return string |
|
| 145 | - */ |
|
| 146 | - public function getInternalPath() { |
|
| 147 | - return $this->internalPath; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - /** |
|
| 151 | - * @return int |
|
| 152 | - */ |
|
| 153 | - public function getId() { |
|
| 154 | - return $this->data['fileid']; |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - /** |
|
| 158 | - * @return string |
|
| 159 | - */ |
|
| 160 | - public function getMimetype() { |
|
| 161 | - return $this->data['mimetype']; |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - /** |
|
| 165 | - * @return string |
|
| 166 | - */ |
|
| 167 | - public function getMimePart() { |
|
| 168 | - return $this->data['mimepart']; |
|
| 169 | - } |
|
| 170 | - |
|
| 171 | - /** |
|
| 172 | - * @return string |
|
| 173 | - */ |
|
| 174 | - public function getName() { |
|
| 175 | - return basename($this->getPath()); |
|
| 176 | - } |
|
| 177 | - |
|
| 178 | - /** |
|
| 179 | - * @return string |
|
| 180 | - */ |
|
| 181 | - public function getEtag() { |
|
| 182 | - $this->updateEntryfromSubMounts(); |
|
| 183 | - if (count($this->childEtags) > 0) { |
|
| 184 | - $combinedEtag = $this->data['etag'] . '::' . implode('::', $this->childEtags); |
|
| 185 | - return md5($combinedEtag); |
|
| 186 | - } else { |
|
| 187 | - return $this->data['etag']; |
|
| 188 | - } |
|
| 189 | - } |
|
| 190 | - |
|
| 191 | - /** |
|
| 192 | - * @return int |
|
| 193 | - */ |
|
| 194 | - public function getSize() { |
|
| 195 | - $this->updateEntryfromSubMounts(); |
|
| 196 | - return isset($this->data['size']) ? $this->data['size'] : 0; |
|
| 197 | - } |
|
| 198 | - |
|
| 199 | - /** |
|
| 200 | - * @return int |
|
| 201 | - */ |
|
| 202 | - public function getMTime() { |
|
| 203 | - $this->updateEntryfromSubMounts(); |
|
| 204 | - return $this->data['mtime']; |
|
| 205 | - } |
|
| 206 | - |
|
| 207 | - /** |
|
| 208 | - * @return bool |
|
| 209 | - */ |
|
| 210 | - public function isEncrypted() { |
|
| 211 | - return $this->data['encrypted']; |
|
| 212 | - } |
|
| 213 | - |
|
| 214 | - /** |
|
| 215 | - * Return the currently version used for the HMAC in the encryption app |
|
| 216 | - * |
|
| 217 | - * @return int |
|
| 218 | - */ |
|
| 219 | - public function getEncryptedVersion() { |
|
| 220 | - return isset($this->data['encryptedVersion']) ? (int) $this->data['encryptedVersion'] : 1; |
|
| 221 | - } |
|
| 222 | - |
|
| 223 | - /** |
|
| 224 | - * @return int |
|
| 225 | - */ |
|
| 226 | - public function getPermissions() { |
|
| 227 | - $perms = $this->data['permissions']; |
|
| 228 | - if (\OCP\Util::isSharingDisabledForUser() || ($this->isShared() && !\OC\Share\Share::isResharingAllowed())) { |
|
| 229 | - $perms = $perms & ~\OCP\Constants::PERMISSION_SHARE; |
|
| 230 | - } |
|
| 231 | - return $perms; |
|
| 232 | - } |
|
| 233 | - |
|
| 234 | - /** |
|
| 235 | - * @return \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER |
|
| 236 | - */ |
|
| 237 | - public function getType() { |
|
| 238 | - if (!isset($this->data['type'])) { |
|
| 239 | - $this->data['type'] = ($this->getMimetype() === 'httpd/unix-directory') ? self::TYPE_FOLDER : self::TYPE_FILE; |
|
| 240 | - } |
|
| 241 | - return $this->data['type']; |
|
| 242 | - } |
|
| 243 | - |
|
| 244 | - public function getData() { |
|
| 245 | - return $this->data; |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - /** |
|
| 249 | - * @param int $permissions |
|
| 250 | - * @return bool |
|
| 251 | - */ |
|
| 252 | - protected function checkPermissions($permissions) { |
|
| 253 | - return ($this->getPermissions() & $permissions) === $permissions; |
|
| 254 | - } |
|
| 255 | - |
|
| 256 | - /** |
|
| 257 | - * @return bool |
|
| 258 | - */ |
|
| 259 | - public function isReadable() { |
|
| 260 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_READ); |
|
| 261 | - } |
|
| 262 | - |
|
| 263 | - /** |
|
| 264 | - * @return bool |
|
| 265 | - */ |
|
| 266 | - public function isUpdateable() { |
|
| 267 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_UPDATE); |
|
| 268 | - } |
|
| 269 | - |
|
| 270 | - /** |
|
| 271 | - * Check whether new files or folders can be created inside this folder |
|
| 272 | - * |
|
| 273 | - * @return bool |
|
| 274 | - */ |
|
| 275 | - public function isCreatable() { |
|
| 276 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_CREATE); |
|
| 277 | - } |
|
| 278 | - |
|
| 279 | - /** |
|
| 280 | - * @return bool |
|
| 281 | - */ |
|
| 282 | - public function isDeletable() { |
|
| 283 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_DELETE); |
|
| 284 | - } |
|
| 285 | - |
|
| 286 | - /** |
|
| 287 | - * @return bool |
|
| 288 | - */ |
|
| 289 | - public function isShareable() { |
|
| 290 | - return $this->checkPermissions(\OCP\Constants::PERMISSION_SHARE); |
|
| 291 | - } |
|
| 292 | - |
|
| 293 | - /** |
|
| 294 | - * Check if a file or folder is shared |
|
| 295 | - * |
|
| 296 | - * @return bool |
|
| 297 | - */ |
|
| 298 | - public function isShared() { |
|
| 299 | - $sid = $this->getStorage()->getId(); |
|
| 300 | - if (!is_null($sid)) { |
|
| 301 | - $sid = explode(':', $sid); |
|
| 302 | - return ($sid[0] === 'shared'); |
|
| 303 | - } |
|
| 304 | - |
|
| 305 | - return false; |
|
| 306 | - } |
|
| 307 | - |
|
| 308 | - public function isMounted() { |
|
| 309 | - $storage = $this->getStorage(); |
|
| 310 | - if ($storage->instanceOfStorage('\OCP\Files\IHomeStorage')) { |
|
| 311 | - return false; |
|
| 312 | - } |
|
| 313 | - $sid = $storage->getId(); |
|
| 314 | - if (!is_null($sid)) { |
|
| 315 | - $sid = explode(':', $sid); |
|
| 316 | - return ($sid[0] !== 'home' and $sid[0] !== 'shared'); |
|
| 317 | - } |
|
| 318 | - |
|
| 319 | - return false; |
|
| 320 | - } |
|
| 321 | - |
|
| 322 | - /** |
|
| 323 | - * Get the mountpoint the file belongs to |
|
| 324 | - * |
|
| 325 | - * @return \OCP\Files\Mount\IMountPoint |
|
| 326 | - */ |
|
| 327 | - public function getMountPoint() { |
|
| 328 | - return $this->mount; |
|
| 329 | - } |
|
| 330 | - |
|
| 331 | - /** |
|
| 332 | - * Get the owner of the file |
|
| 333 | - * |
|
| 334 | - * @return \OCP\IUser |
|
| 335 | - */ |
|
| 336 | - public function getOwner() { |
|
| 337 | - return $this->owner; |
|
| 338 | - } |
|
| 339 | - |
|
| 340 | - /** |
|
| 341 | - * @param IMountPoint[] $mounts |
|
| 342 | - */ |
|
| 343 | - public function setSubMounts(array $mounts) { |
|
| 344 | - $this->subMounts = $mounts; |
|
| 345 | - } |
|
| 346 | - |
|
| 347 | - private function updateEntryfromSubMounts() { |
|
| 348 | - if ($this->subMountsUsed) { |
|
| 349 | - return; |
|
| 350 | - } |
|
| 351 | - $this->subMountsUsed = true; |
|
| 352 | - foreach ($this->subMounts as $mount) { |
|
| 353 | - $subStorage = $mount->getStorage(); |
|
| 354 | - if ($subStorage) { |
|
| 355 | - $subCache = $subStorage->getCache(''); |
|
| 356 | - $rootEntry = $subCache->get(''); |
|
| 357 | - $this->addSubEntry($rootEntry, $mount->getMountPoint()); |
|
| 358 | - } |
|
| 359 | - } |
|
| 360 | - } |
|
| 361 | - |
|
| 362 | - /** |
|
| 363 | - * Add a cache entry which is the child of this folder |
|
| 364 | - * |
|
| 365 | - * Sets the size, etag and size to for cross-storage childs |
|
| 366 | - * |
|
| 367 | - * @param array|ICacheEntry $data cache entry for the child |
|
| 368 | - * @param string $entryPath full path of the child entry |
|
| 369 | - */ |
|
| 370 | - public function addSubEntry($data, $entryPath) { |
|
| 371 | - $this->data['size'] += isset($data['size']) ? $data['size'] : 0; |
|
| 372 | - if (isset($data['mtime'])) { |
|
| 373 | - $this->data['mtime'] = max($this->data['mtime'], $data['mtime']); |
|
| 374 | - } |
|
| 375 | - if (isset($data['etag'])) { |
|
| 376 | - // prefix the etag with the relative path of the subentry to propagate etag on mount moves |
|
| 377 | - $relativeEntryPath = substr($entryPath, strlen($this->getPath())); |
|
| 378 | - // attach the permissions to propagate etag on permision changes of submounts |
|
| 379 | - $permissions = isset($data['permissions']) ? $data['permissions'] : 0; |
|
| 380 | - $this->childEtags[] = $relativeEntryPath . '/' . $data['etag'] . $permissions; |
|
| 381 | - } |
|
| 382 | - } |
|
| 383 | - |
|
| 384 | - /** |
|
| 385 | - * @inheritdoc |
|
| 386 | - */ |
|
| 387 | - public function getChecksum() { |
|
| 388 | - return $this->data['checksum']; |
|
| 389 | - } |
|
| 40 | + /** |
|
| 41 | + * @var array $data |
|
| 42 | + */ |
|
| 43 | + private $data; |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * @var string $path |
|
| 47 | + */ |
|
| 48 | + private $path; |
|
| 49 | + |
|
| 50 | + /** |
|
| 51 | + * @var \OC\Files\Storage\Storage $storage |
|
| 52 | + */ |
|
| 53 | + private $storage; |
|
| 54 | + |
|
| 55 | + /** |
|
| 56 | + * @var string $internalPath |
|
| 57 | + */ |
|
| 58 | + private $internalPath; |
|
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * @var \OCP\Files\Mount\IMountPoint |
|
| 62 | + */ |
|
| 63 | + private $mount; |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * @var IUser |
|
| 67 | + */ |
|
| 68 | + private $owner; |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * @var string[] |
|
| 72 | + */ |
|
| 73 | + private $childEtags = []; |
|
| 74 | + |
|
| 75 | + /** |
|
| 76 | + * @var IMountPoint[] |
|
| 77 | + */ |
|
| 78 | + private $subMounts = []; |
|
| 79 | + |
|
| 80 | + private $subMountsUsed = false; |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * @param string|boolean $path |
|
| 84 | + * @param Storage\Storage $storage |
|
| 85 | + * @param string $internalPath |
|
| 86 | + * @param array|ICacheEntry $data |
|
| 87 | + * @param \OCP\Files\Mount\IMountPoint $mount |
|
| 88 | + * @param \OCP\IUser|null $owner |
|
| 89 | + */ |
|
| 90 | + public function __construct($path, $storage, $internalPath, $data, $mount, $owner= null) { |
|
| 91 | + $this->path = $path; |
|
| 92 | + $this->storage = $storage; |
|
| 93 | + $this->internalPath = $internalPath; |
|
| 94 | + $this->data = $data; |
|
| 95 | + $this->mount = $mount; |
|
| 96 | + $this->owner = $owner; |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + public function offsetSet($offset, $value) { |
|
| 100 | + $this->data[$offset] = $value; |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + public function offsetExists($offset) { |
|
| 104 | + return isset($this->data[$offset]); |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + public function offsetUnset($offset) { |
|
| 108 | + unset($this->data[$offset]); |
|
| 109 | + } |
|
| 110 | + |
|
| 111 | + public function offsetGet($offset) { |
|
| 112 | + if ($offset === 'type') { |
|
| 113 | + return $this->getType(); |
|
| 114 | + } else if ($offset === 'etag') { |
|
| 115 | + return $this->getEtag(); |
|
| 116 | + } else if ($offset === 'size') { |
|
| 117 | + return $this->getSize(); |
|
| 118 | + } else if ($offset === 'mtime') { |
|
| 119 | + return $this->getMTime(); |
|
| 120 | + } elseif ($offset === 'permissions') { |
|
| 121 | + return $this->getPermissions(); |
|
| 122 | + } elseif (isset($this->data[$offset])) { |
|
| 123 | + return $this->data[$offset]; |
|
| 124 | + } else { |
|
| 125 | + return null; |
|
| 126 | + } |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + /** |
|
| 130 | + * @return string |
|
| 131 | + */ |
|
| 132 | + public function getPath() { |
|
| 133 | + return $this->path; |
|
| 134 | + } |
|
| 135 | + |
|
| 136 | + /** |
|
| 137 | + * @return \OCP\Files\Storage |
|
| 138 | + */ |
|
| 139 | + public function getStorage() { |
|
| 140 | + return $this->storage; |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + /** |
|
| 144 | + * @return string |
|
| 145 | + */ |
|
| 146 | + public function getInternalPath() { |
|
| 147 | + return $this->internalPath; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + /** |
|
| 151 | + * @return int |
|
| 152 | + */ |
|
| 153 | + public function getId() { |
|
| 154 | + return $this->data['fileid']; |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + /** |
|
| 158 | + * @return string |
|
| 159 | + */ |
|
| 160 | + public function getMimetype() { |
|
| 161 | + return $this->data['mimetype']; |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + /** |
|
| 165 | + * @return string |
|
| 166 | + */ |
|
| 167 | + public function getMimePart() { |
|
| 168 | + return $this->data['mimepart']; |
|
| 169 | + } |
|
| 170 | + |
|
| 171 | + /** |
|
| 172 | + * @return string |
|
| 173 | + */ |
|
| 174 | + public function getName() { |
|
| 175 | + return basename($this->getPath()); |
|
| 176 | + } |
|
| 177 | + |
|
| 178 | + /** |
|
| 179 | + * @return string |
|
| 180 | + */ |
|
| 181 | + public function getEtag() { |
|
| 182 | + $this->updateEntryfromSubMounts(); |
|
| 183 | + if (count($this->childEtags) > 0) { |
|
| 184 | + $combinedEtag = $this->data['etag'] . '::' . implode('::', $this->childEtags); |
|
| 185 | + return md5($combinedEtag); |
|
| 186 | + } else { |
|
| 187 | + return $this->data['etag']; |
|
| 188 | + } |
|
| 189 | + } |
|
| 190 | + |
|
| 191 | + /** |
|
| 192 | + * @return int |
|
| 193 | + */ |
|
| 194 | + public function getSize() { |
|
| 195 | + $this->updateEntryfromSubMounts(); |
|
| 196 | + return isset($this->data['size']) ? $this->data['size'] : 0; |
|
| 197 | + } |
|
| 198 | + |
|
| 199 | + /** |
|
| 200 | + * @return int |
|
| 201 | + */ |
|
| 202 | + public function getMTime() { |
|
| 203 | + $this->updateEntryfromSubMounts(); |
|
| 204 | + return $this->data['mtime']; |
|
| 205 | + } |
|
| 206 | + |
|
| 207 | + /** |
|
| 208 | + * @return bool |
|
| 209 | + */ |
|
| 210 | + public function isEncrypted() { |
|
| 211 | + return $this->data['encrypted']; |
|
| 212 | + } |
|
| 213 | + |
|
| 214 | + /** |
|
| 215 | + * Return the currently version used for the HMAC in the encryption app |
|
| 216 | + * |
|
| 217 | + * @return int |
|
| 218 | + */ |
|
| 219 | + public function getEncryptedVersion() { |
|
| 220 | + return isset($this->data['encryptedVersion']) ? (int) $this->data['encryptedVersion'] : 1; |
|
| 221 | + } |
|
| 222 | + |
|
| 223 | + /** |
|
| 224 | + * @return int |
|
| 225 | + */ |
|
| 226 | + public function getPermissions() { |
|
| 227 | + $perms = $this->data['permissions']; |
|
| 228 | + if (\OCP\Util::isSharingDisabledForUser() || ($this->isShared() && !\OC\Share\Share::isResharingAllowed())) { |
|
| 229 | + $perms = $perms & ~\OCP\Constants::PERMISSION_SHARE; |
|
| 230 | + } |
|
| 231 | + return $perms; |
|
| 232 | + } |
|
| 233 | + |
|
| 234 | + /** |
|
| 235 | + * @return \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER |
|
| 236 | + */ |
|
| 237 | + public function getType() { |
|
| 238 | + if (!isset($this->data['type'])) { |
|
| 239 | + $this->data['type'] = ($this->getMimetype() === 'httpd/unix-directory') ? self::TYPE_FOLDER : self::TYPE_FILE; |
|
| 240 | + } |
|
| 241 | + return $this->data['type']; |
|
| 242 | + } |
|
| 243 | + |
|
| 244 | + public function getData() { |
|
| 245 | + return $this->data; |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + /** |
|
| 249 | + * @param int $permissions |
|
| 250 | + * @return bool |
|
| 251 | + */ |
|
| 252 | + protected function checkPermissions($permissions) { |
|
| 253 | + return ($this->getPermissions() & $permissions) === $permissions; |
|
| 254 | + } |
|
| 255 | + |
|
| 256 | + /** |
|
| 257 | + * @return bool |
|
| 258 | + */ |
|
| 259 | + public function isReadable() { |
|
| 260 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_READ); |
|
| 261 | + } |
|
| 262 | + |
|
| 263 | + /** |
|
| 264 | + * @return bool |
|
| 265 | + */ |
|
| 266 | + public function isUpdateable() { |
|
| 267 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_UPDATE); |
|
| 268 | + } |
|
| 269 | + |
|
| 270 | + /** |
|
| 271 | + * Check whether new files or folders can be created inside this folder |
|
| 272 | + * |
|
| 273 | + * @return bool |
|
| 274 | + */ |
|
| 275 | + public function isCreatable() { |
|
| 276 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_CREATE); |
|
| 277 | + } |
|
| 278 | + |
|
| 279 | + /** |
|
| 280 | + * @return bool |
|
| 281 | + */ |
|
| 282 | + public function isDeletable() { |
|
| 283 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_DELETE); |
|
| 284 | + } |
|
| 285 | + |
|
| 286 | + /** |
|
| 287 | + * @return bool |
|
| 288 | + */ |
|
| 289 | + public function isShareable() { |
|
| 290 | + return $this->checkPermissions(\OCP\Constants::PERMISSION_SHARE); |
|
| 291 | + } |
|
| 292 | + |
|
| 293 | + /** |
|
| 294 | + * Check if a file or folder is shared |
|
| 295 | + * |
|
| 296 | + * @return bool |
|
| 297 | + */ |
|
| 298 | + public function isShared() { |
|
| 299 | + $sid = $this->getStorage()->getId(); |
|
| 300 | + if (!is_null($sid)) { |
|
| 301 | + $sid = explode(':', $sid); |
|
| 302 | + return ($sid[0] === 'shared'); |
|
| 303 | + } |
|
| 304 | + |
|
| 305 | + return false; |
|
| 306 | + } |
|
| 307 | + |
|
| 308 | + public function isMounted() { |
|
| 309 | + $storage = $this->getStorage(); |
|
| 310 | + if ($storage->instanceOfStorage('\OCP\Files\IHomeStorage')) { |
|
| 311 | + return false; |
|
| 312 | + } |
|
| 313 | + $sid = $storage->getId(); |
|
| 314 | + if (!is_null($sid)) { |
|
| 315 | + $sid = explode(':', $sid); |
|
| 316 | + return ($sid[0] !== 'home' and $sid[0] !== 'shared'); |
|
| 317 | + } |
|
| 318 | + |
|
| 319 | + return false; |
|
| 320 | + } |
|
| 321 | + |
|
| 322 | + /** |
|
| 323 | + * Get the mountpoint the file belongs to |
|
| 324 | + * |
|
| 325 | + * @return \OCP\Files\Mount\IMountPoint |
|
| 326 | + */ |
|
| 327 | + public function getMountPoint() { |
|
| 328 | + return $this->mount; |
|
| 329 | + } |
|
| 330 | + |
|
| 331 | + /** |
|
| 332 | + * Get the owner of the file |
|
| 333 | + * |
|
| 334 | + * @return \OCP\IUser |
|
| 335 | + */ |
|
| 336 | + public function getOwner() { |
|
| 337 | + return $this->owner; |
|
| 338 | + } |
|
| 339 | + |
|
| 340 | + /** |
|
| 341 | + * @param IMountPoint[] $mounts |
|
| 342 | + */ |
|
| 343 | + public function setSubMounts(array $mounts) { |
|
| 344 | + $this->subMounts = $mounts; |
|
| 345 | + } |
|
| 346 | + |
|
| 347 | + private function updateEntryfromSubMounts() { |
|
| 348 | + if ($this->subMountsUsed) { |
|
| 349 | + return; |
|
| 350 | + } |
|
| 351 | + $this->subMountsUsed = true; |
|
| 352 | + foreach ($this->subMounts as $mount) { |
|
| 353 | + $subStorage = $mount->getStorage(); |
|
| 354 | + if ($subStorage) { |
|
| 355 | + $subCache = $subStorage->getCache(''); |
|
| 356 | + $rootEntry = $subCache->get(''); |
|
| 357 | + $this->addSubEntry($rootEntry, $mount->getMountPoint()); |
|
| 358 | + } |
|
| 359 | + } |
|
| 360 | + } |
|
| 361 | + |
|
| 362 | + /** |
|
| 363 | + * Add a cache entry which is the child of this folder |
|
| 364 | + * |
|
| 365 | + * Sets the size, etag and size to for cross-storage childs |
|
| 366 | + * |
|
| 367 | + * @param array|ICacheEntry $data cache entry for the child |
|
| 368 | + * @param string $entryPath full path of the child entry |
|
| 369 | + */ |
|
| 370 | + public function addSubEntry($data, $entryPath) { |
|
| 371 | + $this->data['size'] += isset($data['size']) ? $data['size'] : 0; |
|
| 372 | + if (isset($data['mtime'])) { |
|
| 373 | + $this->data['mtime'] = max($this->data['mtime'], $data['mtime']); |
|
| 374 | + } |
|
| 375 | + if (isset($data['etag'])) { |
|
| 376 | + // prefix the etag with the relative path of the subentry to propagate etag on mount moves |
|
| 377 | + $relativeEntryPath = substr($entryPath, strlen($this->getPath())); |
|
| 378 | + // attach the permissions to propagate etag on permision changes of submounts |
|
| 379 | + $permissions = isset($data['permissions']) ? $data['permissions'] : 0; |
|
| 380 | + $this->childEtags[] = $relativeEntryPath . '/' . $data['etag'] . $permissions; |
|
| 381 | + } |
|
| 382 | + } |
|
| 383 | + |
|
| 384 | + /** |
|
| 385 | + * @inheritdoc |
|
| 386 | + */ |
|
| 387 | + public function getChecksum() { |
|
| 388 | + return $this->data['checksum']; |
|
| 389 | + } |
|
| 390 | 390 | } |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * @param \OCP\Files\Mount\IMountPoint $mount |
| 88 | 88 | * @param \OCP\IUser|null $owner |
| 89 | 89 | */ |
| 90 | - public function __construct($path, $storage, $internalPath, $data, $mount, $owner= null) { |
|
| 90 | + public function __construct($path, $storage, $internalPath, $data, $mount, $owner = null) { |
|
| 91 | 91 | $this->path = $path; |
| 92 | 92 | $this->storage = $storage; |
| 93 | 93 | $this->internalPath = $internalPath; |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | public function getEtag() { |
| 182 | 182 | $this->updateEntryfromSubMounts(); |
| 183 | 183 | if (count($this->childEtags) > 0) { |
| 184 | - $combinedEtag = $this->data['etag'] . '::' . implode('::', $this->childEtags); |
|
| 184 | + $combinedEtag = $this->data['etag'].'::'.implode('::', $this->childEtags); |
|
| 185 | 185 | return md5($combinedEtag); |
| 186 | 186 | } else { |
| 187 | 187 | return $this->data['etag']; |
@@ -377,7 +377,7 @@ discard block |
||
| 377 | 377 | $relativeEntryPath = substr($entryPath, strlen($this->getPath())); |
| 378 | 378 | // attach the permissions to propagate etag on permision changes of submounts |
| 379 | 379 | $permissions = isset($data['permissions']) ? $data['permissions'] : 0; |
| 380 | - $this->childEtags[] = $relativeEntryPath . '/' . $data['etag'] . $permissions; |
|
| 380 | + $this->childEtags[] = $relativeEntryPath.'/'.$data['etag'].$permissions; |
|
| 381 | 381 | } |
| 382 | 382 | } |
| 383 | 383 | |
@@ -156,7 +156,7 @@ |
||
| 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(); |
@@ -58,323 +58,323 @@ |
||
| 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 | - } |
|
| 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 | 147 | |
| 148 | - protected function clearCaches() { |
|
| 149 | - $this->cachedGroups = array(); |
|
| 150 | - $this->cachedUserGroups = array(); |
|
| 151 | - } |
|
| 152 | - |
|
| 153 | - /** |
|
| 154 | - * @param string $gid |
|
| 155 | - * @return \OC\Group\Group |
|
| 156 | - */ |
|
| 157 | - public function get($gid) { |
|
| 158 | - if (isset($this->cachedGroups[$gid])) { |
|
| 159 | - return $this->cachedGroups[$gid]; |
|
| 160 | - } |
|
| 161 | - return $this->getGroupObject($gid); |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - /** |
|
| 165 | - * @param string $gid |
|
| 166 | - * @param string $displayName |
|
| 167 | - * @return \OCP\IGroup |
|
| 168 | - */ |
|
| 169 | - protected function getGroupObject($gid, $displayName = null) { |
|
| 170 | - $backends = array(); |
|
| 171 | - foreach ($this->backends as $backend) { |
|
| 172 | - if ($backend->implementsActions(\OC\Group\Backend::GROUP_DETAILS)) { |
|
| 173 | - $groupData = $backend->getGroupDetails($gid); |
|
| 174 | - if (is_array($groupData)) { |
|
| 175 | - // take the display name from the first backend that has a non-null one |
|
| 176 | - if (is_null($displayName) && isset($groupData['displayName'])) { |
|
| 177 | - $displayName = $groupData['displayName']; |
|
| 178 | - } |
|
| 179 | - $backends[] = $backend; |
|
| 180 | - } |
|
| 181 | - } else if ($backend->groupExists($gid)) { |
|
| 182 | - $backends[] = $backend; |
|
| 183 | - } |
|
| 184 | - } |
|
| 185 | - if (count($backends) === 0) { |
|
| 186 | - return null; |
|
| 187 | - } |
|
| 188 | - $this->cachedGroups[$gid] = new Group($gid, $backends, $this->userManager, $this, $displayName); |
|
| 189 | - return $this->cachedGroups[$gid]; |
|
| 190 | - } |
|
| 191 | - |
|
| 192 | - /** |
|
| 193 | - * @param string $gid |
|
| 194 | - * @return bool |
|
| 195 | - */ |
|
| 196 | - public function groupExists($gid) { |
|
| 197 | - return $this->get($gid) instanceof IGroup; |
|
| 198 | - } |
|
| 199 | - |
|
| 200 | - /** |
|
| 201 | - * @param string $gid |
|
| 202 | - * @return \OC\Group\Group |
|
| 203 | - */ |
|
| 204 | - public function createGroup($gid) { |
|
| 205 | - if ($gid === '' || $gid === null) { |
|
| 206 | - return false; |
|
| 207 | - } else if ($group = $this->get($gid)) { |
|
| 208 | - return $group; |
|
| 209 | - } else { |
|
| 210 | - $this->emit('\OC\Group', 'preCreate', array($gid)); |
|
| 211 | - foreach ($this->backends as $backend) { |
|
| 212 | - if ($backend->implementsActions(\OC\Group\Backend::CREATE_GROUP)) { |
|
| 213 | - $backend->createGroup($gid); |
|
| 214 | - $group = $this->getGroupObject($gid); |
|
| 215 | - $this->emit('\OC\Group', 'postCreate', array($group)); |
|
| 216 | - return $group; |
|
| 217 | - } |
|
| 218 | - } |
|
| 219 | - return null; |
|
| 220 | - } |
|
| 221 | - } |
|
| 222 | - |
|
| 223 | - /** |
|
| 224 | - * @param string $search |
|
| 225 | - * @param int $limit |
|
| 226 | - * @param int $offset |
|
| 227 | - * @return \OC\Group\Group[] |
|
| 228 | - */ |
|
| 229 | - public function search($search, $limit = null, $offset = null) { |
|
| 230 | - $groups = array(); |
|
| 231 | - foreach ($this->backends as $backend) { |
|
| 232 | - $groupIds = $backend->getGroups($search, $limit, $offset); |
|
| 233 | - foreach ($groupIds as $groupId) { |
|
| 234 | - $aGroup = $this->get($groupId); |
|
| 235 | - if ($aGroup instanceof IGroup) { |
|
| 236 | - $groups[$groupId] = $aGroup; |
|
| 237 | - } else { |
|
| 238 | - $this->logger->debug('Group "' . $groupId . '" was returned by search but not found through direct access', ['app' => 'core']); |
|
| 239 | - } |
|
| 240 | - } |
|
| 241 | - if (!is_null($limit) and $limit <= 0) { |
|
| 242 | - return array_values($groups); |
|
| 243 | - } |
|
| 244 | - } |
|
| 245 | - return array_values($groups); |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - /** |
|
| 249 | - * @param \OC\User\User|null $user |
|
| 250 | - * @return \OC\Group\Group[] |
|
| 251 | - */ |
|
| 252 | - public function getUserGroups($user) { |
|
| 253 | - if (!$user instanceof IUser) { |
|
| 254 | - return []; |
|
| 255 | - } |
|
| 256 | - return $this->getUserIdGroups($user->getUID()); |
|
| 257 | - } |
|
| 258 | - |
|
| 259 | - /** |
|
| 260 | - * @param string $uid the user id |
|
| 261 | - * @return \OC\Group\Group[] |
|
| 262 | - */ |
|
| 263 | - public function getUserIdGroups($uid) { |
|
| 264 | - if (isset($this->cachedUserGroups[$uid])) { |
|
| 265 | - return $this->cachedUserGroups[$uid]; |
|
| 266 | - } |
|
| 267 | - $groups = array(); |
|
| 268 | - foreach ($this->backends as $backend) { |
|
| 269 | - $groupIds = $backend->getUserGroups($uid); |
|
| 270 | - if (is_array($groupIds)) { |
|
| 271 | - foreach ($groupIds as $groupId) { |
|
| 272 | - $aGroup = $this->get($groupId); |
|
| 273 | - if ($aGroup instanceof IGroup) { |
|
| 274 | - $groups[$groupId] = $aGroup; |
|
| 275 | - } else { |
|
| 276 | - $this->logger->debug('User "' . $uid . '" belongs to deleted group: "' . $groupId . '"', ['app' => 'core']); |
|
| 277 | - } |
|
| 278 | - } |
|
| 279 | - } |
|
| 280 | - } |
|
| 281 | - $this->cachedUserGroups[$uid] = $groups; |
|
| 282 | - return $this->cachedUserGroups[$uid]; |
|
| 283 | - } |
|
| 284 | - |
|
| 285 | - /** |
|
| 286 | - * Checks if a userId is in the admin group |
|
| 287 | - * @param string $userId |
|
| 288 | - * @return bool if admin |
|
| 289 | - */ |
|
| 290 | - public function isAdmin($userId) { |
|
| 291 | - return $this->isInGroup($userId, 'admin'); |
|
| 292 | - } |
|
| 293 | - |
|
| 294 | - /** |
|
| 295 | - * Checks if a userId is in a group |
|
| 296 | - * @param string $userId |
|
| 297 | - * @param string $group |
|
| 298 | - * @return bool if in group |
|
| 299 | - */ |
|
| 300 | - public function isInGroup($userId, $group) { |
|
| 301 | - return array_key_exists($group, $this->getUserIdGroups($userId)); |
|
| 302 | - } |
|
| 303 | - |
|
| 304 | - /** |
|
| 305 | - * get a list of group ids for a user |
|
| 306 | - * @param \OC\User\User $user |
|
| 307 | - * @return array with group ids |
|
| 308 | - */ |
|
| 309 | - public function getUserGroupIds($user) { |
|
| 310 | - return array_map(function($value) { |
|
| 311 | - return (string) $value; |
|
| 312 | - }, array_keys($this->getUserGroups($user))); |
|
| 313 | - } |
|
| 314 | - |
|
| 315 | - /** |
|
| 316 | - * get a list of all display names in a group |
|
| 317 | - * @param string $gid |
|
| 318 | - * @param string $search |
|
| 319 | - * @param int $limit |
|
| 320 | - * @param int $offset |
|
| 321 | - * @return array an array of display names (value) and user ids (key) |
|
| 322 | - */ |
|
| 323 | - public function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { |
|
| 324 | - $group = $this->get($gid); |
|
| 325 | - if(is_null($group)) { |
|
| 326 | - return array(); |
|
| 327 | - } |
|
| 328 | - |
|
| 329 | - $search = trim($search); |
|
| 330 | - $groupUsers = array(); |
|
| 331 | - |
|
| 332 | - if(!empty($search)) { |
|
| 333 | - // only user backends have the capability to do a complex search for users |
|
| 334 | - $searchOffset = 0; |
|
| 335 | - $searchLimit = $limit * 100; |
|
| 336 | - if($limit === -1) { |
|
| 337 | - $searchLimit = 500; |
|
| 338 | - } |
|
| 339 | - |
|
| 340 | - do { |
|
| 341 | - $filteredUsers = $this->userManager->searchDisplayName($search, $searchLimit, $searchOffset); |
|
| 342 | - foreach($filteredUsers as $filteredUser) { |
|
| 343 | - if($group->inGroup($filteredUser)) { |
|
| 344 | - $groupUsers[]= $filteredUser; |
|
| 345 | - } |
|
| 346 | - } |
|
| 347 | - $searchOffset += $searchLimit; |
|
| 348 | - } while(count($groupUsers) < $searchLimit+$offset && count($filteredUsers) >= $searchLimit); |
|
| 349 | - |
|
| 350 | - if($limit === -1) { |
|
| 351 | - $groupUsers = array_slice($groupUsers, $offset); |
|
| 352 | - } else { |
|
| 353 | - $groupUsers = array_slice($groupUsers, $offset, $limit); |
|
| 354 | - } |
|
| 355 | - } else { |
|
| 356 | - $groupUsers = $group->searchUsers('', $limit, $offset); |
|
| 357 | - } |
|
| 358 | - |
|
| 359 | - $matchingUsers = array(); |
|
| 360 | - foreach($groupUsers as $groupUser) { |
|
| 361 | - $matchingUsers[$groupUser->getUID()] = $groupUser->getDisplayName(); |
|
| 362 | - } |
|
| 363 | - return $matchingUsers; |
|
| 364 | - } |
|
| 365 | - |
|
| 366 | - /** |
|
| 367 | - * @return \OC\SubAdmin |
|
| 368 | - */ |
|
| 369 | - public function getSubAdmin() { |
|
| 370 | - if (!$this->subAdmin) { |
|
| 371 | - $this->subAdmin = new \OC\SubAdmin( |
|
| 372 | - $this->userManager, |
|
| 373 | - $this, |
|
| 374 | - \OC::$server->getDatabaseConnection() |
|
| 375 | - ); |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - return $this->subAdmin; |
|
| 379 | - } |
|
| 148 | + protected function clearCaches() { |
|
| 149 | + $this->cachedGroups = array(); |
|
| 150 | + $this->cachedUserGroups = array(); |
|
| 151 | + } |
|
| 152 | + |
|
| 153 | + /** |
|
| 154 | + * @param string $gid |
|
| 155 | + * @return \OC\Group\Group |
|
| 156 | + */ |
|
| 157 | + public function get($gid) { |
|
| 158 | + if (isset($this->cachedGroups[$gid])) { |
|
| 159 | + return $this->cachedGroups[$gid]; |
|
| 160 | + } |
|
| 161 | + return $this->getGroupObject($gid); |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + /** |
|
| 165 | + * @param string $gid |
|
| 166 | + * @param string $displayName |
|
| 167 | + * @return \OCP\IGroup |
|
| 168 | + */ |
|
| 169 | + protected function getGroupObject($gid, $displayName = null) { |
|
| 170 | + $backends = array(); |
|
| 171 | + foreach ($this->backends as $backend) { |
|
| 172 | + if ($backend->implementsActions(\OC\Group\Backend::GROUP_DETAILS)) { |
|
| 173 | + $groupData = $backend->getGroupDetails($gid); |
|
| 174 | + if (is_array($groupData)) { |
|
| 175 | + // take the display name from the first backend that has a non-null one |
|
| 176 | + if (is_null($displayName) && isset($groupData['displayName'])) { |
|
| 177 | + $displayName = $groupData['displayName']; |
|
| 178 | + } |
|
| 179 | + $backends[] = $backend; |
|
| 180 | + } |
|
| 181 | + } else if ($backend->groupExists($gid)) { |
|
| 182 | + $backends[] = $backend; |
|
| 183 | + } |
|
| 184 | + } |
|
| 185 | + if (count($backends) === 0) { |
|
| 186 | + return null; |
|
| 187 | + } |
|
| 188 | + $this->cachedGroups[$gid] = new Group($gid, $backends, $this->userManager, $this, $displayName); |
|
| 189 | + return $this->cachedGroups[$gid]; |
|
| 190 | + } |
|
| 191 | + |
|
| 192 | + /** |
|
| 193 | + * @param string $gid |
|
| 194 | + * @return bool |
|
| 195 | + */ |
|
| 196 | + public function groupExists($gid) { |
|
| 197 | + return $this->get($gid) instanceof IGroup; |
|
| 198 | + } |
|
| 199 | + |
|
| 200 | + /** |
|
| 201 | + * @param string $gid |
|
| 202 | + * @return \OC\Group\Group |
|
| 203 | + */ |
|
| 204 | + public function createGroup($gid) { |
|
| 205 | + if ($gid === '' || $gid === null) { |
|
| 206 | + return false; |
|
| 207 | + } else if ($group = $this->get($gid)) { |
|
| 208 | + return $group; |
|
| 209 | + } else { |
|
| 210 | + $this->emit('\OC\Group', 'preCreate', array($gid)); |
|
| 211 | + foreach ($this->backends as $backend) { |
|
| 212 | + if ($backend->implementsActions(\OC\Group\Backend::CREATE_GROUP)) { |
|
| 213 | + $backend->createGroup($gid); |
|
| 214 | + $group = $this->getGroupObject($gid); |
|
| 215 | + $this->emit('\OC\Group', 'postCreate', array($group)); |
|
| 216 | + return $group; |
|
| 217 | + } |
|
| 218 | + } |
|
| 219 | + return null; |
|
| 220 | + } |
|
| 221 | + } |
|
| 222 | + |
|
| 223 | + /** |
|
| 224 | + * @param string $search |
|
| 225 | + * @param int $limit |
|
| 226 | + * @param int $offset |
|
| 227 | + * @return \OC\Group\Group[] |
|
| 228 | + */ |
|
| 229 | + public function search($search, $limit = null, $offset = null) { |
|
| 230 | + $groups = array(); |
|
| 231 | + foreach ($this->backends as $backend) { |
|
| 232 | + $groupIds = $backend->getGroups($search, $limit, $offset); |
|
| 233 | + foreach ($groupIds as $groupId) { |
|
| 234 | + $aGroup = $this->get($groupId); |
|
| 235 | + if ($aGroup instanceof IGroup) { |
|
| 236 | + $groups[$groupId] = $aGroup; |
|
| 237 | + } else { |
|
| 238 | + $this->logger->debug('Group "' . $groupId . '" was returned by search but not found through direct access', ['app' => 'core']); |
|
| 239 | + } |
|
| 240 | + } |
|
| 241 | + if (!is_null($limit) and $limit <= 0) { |
|
| 242 | + return array_values($groups); |
|
| 243 | + } |
|
| 244 | + } |
|
| 245 | + return array_values($groups); |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + /** |
|
| 249 | + * @param \OC\User\User|null $user |
|
| 250 | + * @return \OC\Group\Group[] |
|
| 251 | + */ |
|
| 252 | + public function getUserGroups($user) { |
|
| 253 | + if (!$user instanceof IUser) { |
|
| 254 | + return []; |
|
| 255 | + } |
|
| 256 | + return $this->getUserIdGroups($user->getUID()); |
|
| 257 | + } |
|
| 258 | + |
|
| 259 | + /** |
|
| 260 | + * @param string $uid the user id |
|
| 261 | + * @return \OC\Group\Group[] |
|
| 262 | + */ |
|
| 263 | + public function getUserIdGroups($uid) { |
|
| 264 | + if (isset($this->cachedUserGroups[$uid])) { |
|
| 265 | + return $this->cachedUserGroups[$uid]; |
|
| 266 | + } |
|
| 267 | + $groups = array(); |
|
| 268 | + foreach ($this->backends as $backend) { |
|
| 269 | + $groupIds = $backend->getUserGroups($uid); |
|
| 270 | + if (is_array($groupIds)) { |
|
| 271 | + foreach ($groupIds as $groupId) { |
|
| 272 | + $aGroup = $this->get($groupId); |
|
| 273 | + if ($aGroup instanceof IGroup) { |
|
| 274 | + $groups[$groupId] = $aGroup; |
|
| 275 | + } else { |
|
| 276 | + $this->logger->debug('User "' . $uid . '" belongs to deleted group: "' . $groupId . '"', ['app' => 'core']); |
|
| 277 | + } |
|
| 278 | + } |
|
| 279 | + } |
|
| 280 | + } |
|
| 281 | + $this->cachedUserGroups[$uid] = $groups; |
|
| 282 | + return $this->cachedUserGroups[$uid]; |
|
| 283 | + } |
|
| 284 | + |
|
| 285 | + /** |
|
| 286 | + * Checks if a userId is in the admin group |
|
| 287 | + * @param string $userId |
|
| 288 | + * @return bool if admin |
|
| 289 | + */ |
|
| 290 | + public function isAdmin($userId) { |
|
| 291 | + return $this->isInGroup($userId, 'admin'); |
|
| 292 | + } |
|
| 293 | + |
|
| 294 | + /** |
|
| 295 | + * Checks if a userId is in a group |
|
| 296 | + * @param string $userId |
|
| 297 | + * @param string $group |
|
| 298 | + * @return bool if in group |
|
| 299 | + */ |
|
| 300 | + public function isInGroup($userId, $group) { |
|
| 301 | + return array_key_exists($group, $this->getUserIdGroups($userId)); |
|
| 302 | + } |
|
| 303 | + |
|
| 304 | + /** |
|
| 305 | + * get a list of group ids for a user |
|
| 306 | + * @param \OC\User\User $user |
|
| 307 | + * @return array with group ids |
|
| 308 | + */ |
|
| 309 | + public function getUserGroupIds($user) { |
|
| 310 | + return array_map(function($value) { |
|
| 311 | + return (string) $value; |
|
| 312 | + }, array_keys($this->getUserGroups($user))); |
|
| 313 | + } |
|
| 314 | + |
|
| 315 | + /** |
|
| 316 | + * get a list of all display names in a group |
|
| 317 | + * @param string $gid |
|
| 318 | + * @param string $search |
|
| 319 | + * @param int $limit |
|
| 320 | + * @param int $offset |
|
| 321 | + * @return array an array of display names (value) and user ids (key) |
|
| 322 | + */ |
|
| 323 | + public function displayNamesInGroup($gid, $search = '', $limit = -1, $offset = 0) { |
|
| 324 | + $group = $this->get($gid); |
|
| 325 | + if(is_null($group)) { |
|
| 326 | + return array(); |
|
| 327 | + } |
|
| 328 | + |
|
| 329 | + $search = trim($search); |
|
| 330 | + $groupUsers = array(); |
|
| 331 | + |
|
| 332 | + if(!empty($search)) { |
|
| 333 | + // only user backends have the capability to do a complex search for users |
|
| 334 | + $searchOffset = 0; |
|
| 335 | + $searchLimit = $limit * 100; |
|
| 336 | + if($limit === -1) { |
|
| 337 | + $searchLimit = 500; |
|
| 338 | + } |
|
| 339 | + |
|
| 340 | + do { |
|
| 341 | + $filteredUsers = $this->userManager->searchDisplayName($search, $searchLimit, $searchOffset); |
|
| 342 | + foreach($filteredUsers as $filteredUser) { |
|
| 343 | + if($group->inGroup($filteredUser)) { |
|
| 344 | + $groupUsers[]= $filteredUser; |
|
| 345 | + } |
|
| 346 | + } |
|
| 347 | + $searchOffset += $searchLimit; |
|
| 348 | + } while(count($groupUsers) < $searchLimit+$offset && count($filteredUsers) >= $searchLimit); |
|
| 349 | + |
|
| 350 | + if($limit === -1) { |
|
| 351 | + $groupUsers = array_slice($groupUsers, $offset); |
|
| 352 | + } else { |
|
| 353 | + $groupUsers = array_slice($groupUsers, $offset, $limit); |
|
| 354 | + } |
|
| 355 | + } else { |
|
| 356 | + $groupUsers = $group->searchUsers('', $limit, $offset); |
|
| 357 | + } |
|
| 358 | + |
|
| 359 | + $matchingUsers = array(); |
|
| 360 | + foreach($groupUsers as $groupUser) { |
|
| 361 | + $matchingUsers[$groupUser->getUID()] = $groupUser->getDisplayName(); |
|
| 362 | + } |
|
| 363 | + return $matchingUsers; |
|
| 364 | + } |
|
| 365 | + |
|
| 366 | + /** |
|
| 367 | + * @return \OC\SubAdmin |
|
| 368 | + */ |
|
| 369 | + public function getSubAdmin() { |
|
| 370 | + if (!$this->subAdmin) { |
|
| 371 | + $this->subAdmin = new \OC\SubAdmin( |
|
| 372 | + $this->userManager, |
|
| 373 | + $this, |
|
| 374 | + \OC::$server->getDatabaseConnection() |
|
| 375 | + ); |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + return $this->subAdmin; |
|
| 379 | + } |
|
| 380 | 380 | } |
@@ -93,20 +93,20 @@ discard block |
||
| 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 |
||
| 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) { |
@@ -273,7 +273,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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; |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | * make preview_icon available as a simple function |
| 184 | 184 | * Returns the path to the preview of the image. |
| 185 | 185 | * @param string $path path of file |
| 186 | - * @return link to the preview |
|
| 186 | + * @return string to the preview |
|
| 187 | 187 | */ |
| 188 | 188 | function preview_icon( $path ) { |
| 189 | 189 | return \OC::$server->getURLGenerator()->linkToRoute('core.Preview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path]); |
@@ -191,6 +191,7 @@ discard block |
||
| 191 | 191 | |
| 192 | 192 | /** |
| 193 | 193 | * @param string $path |
| 194 | + * @param string $token |
|
| 194 | 195 | */ |
| 195 | 196 | function publicPreview_icon ( $path, $token ) { |
| 196 | 197 | return \OC::$server->getURLGenerator()->linkToRoute('files_sharing.PublicPreview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path, 't' => $token]); |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | * @param string $string the string which will be escaped and printed |
| 35 | 35 | */ |
| 36 | 36 | function p($string) { |
| 37 | - print(\OCP\Util::sanitizeHTML($string)); |
|
| 37 | + print(\OCP\Util::sanitizeHTML($string)); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | /** |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | * @param string|array $string the string which will be printed as it is |
| 44 | 44 | */ |
| 45 | 45 | function print_unescaped($string) { |
| 46 | - print($string); |
|
| 46 | + print($string); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -53,13 +53,13 @@ discard block |
||
| 53 | 53 | * if an array is given it will add all scripts |
| 54 | 54 | */ |
| 55 | 55 | function script($app, $file = null) { |
| 56 | - if(is_array($file)) { |
|
| 57 | - foreach($file as $f) { |
|
| 58 | - OC_Util::addScript($app, $f); |
|
| 59 | - } |
|
| 60 | - } else { |
|
| 61 | - OC_Util::addScript($app, $file); |
|
| 62 | - } |
|
| 56 | + if(is_array($file)) { |
|
| 57 | + foreach($file as $f) { |
|
| 58 | + OC_Util::addScript($app, $f); |
|
| 59 | + } |
|
| 60 | + } else { |
|
| 61 | + OC_Util::addScript($app, $file); |
|
| 62 | + } |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | /** |
@@ -69,13 +69,13 @@ discard block |
||
| 69 | 69 | * if an array is given it will add all scripts |
| 70 | 70 | */ |
| 71 | 71 | function vendor_script($app, $file = null) { |
| 72 | - if(is_array($file)) { |
|
| 73 | - foreach($file as $f) { |
|
| 74 | - OC_Util::addVendorScript($app, $f); |
|
| 75 | - } |
|
| 76 | - } else { |
|
| 77 | - OC_Util::addVendorScript($app, $file); |
|
| 78 | - } |
|
| 72 | + if(is_array($file)) { |
|
| 73 | + foreach($file as $f) { |
|
| 74 | + OC_Util::addVendorScript($app, $f); |
|
| 75 | + } |
|
| 76 | + } else { |
|
| 77 | + OC_Util::addVendorScript($app, $file); |
|
| 78 | + } |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | /** |
@@ -85,13 +85,13 @@ discard block |
||
| 85 | 85 | * if an array is given it will add all styles |
| 86 | 86 | */ |
| 87 | 87 | function style($app, $file = null) { |
| 88 | - if(is_array($file)) { |
|
| 89 | - foreach($file as $f) { |
|
| 90 | - OC_Util::addStyle($app, $f); |
|
| 91 | - } |
|
| 92 | - } else { |
|
| 93 | - OC_Util::addStyle($app, $file); |
|
| 94 | - } |
|
| 88 | + if(is_array($file)) { |
|
| 89 | + foreach($file as $f) { |
|
| 90 | + OC_Util::addStyle($app, $f); |
|
| 91 | + } |
|
| 92 | + } else { |
|
| 93 | + OC_Util::addStyle($app, $file); |
|
| 94 | + } |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /** |
@@ -101,13 +101,13 @@ discard block |
||
| 101 | 101 | * if an array is given it will add all styles |
| 102 | 102 | */ |
| 103 | 103 | function vendor_style($app, $file = null) { |
| 104 | - if(is_array($file)) { |
|
| 105 | - foreach($file as $f) { |
|
| 106 | - OC_Util::addVendorStyle($app, $f); |
|
| 107 | - } |
|
| 108 | - } else { |
|
| 109 | - OC_Util::addVendorStyle($app, $file); |
|
| 110 | - } |
|
| 104 | + if(is_array($file)) { |
|
| 105 | + foreach($file as $f) { |
|
| 106 | + OC_Util::addVendorStyle($app, $f); |
|
| 107 | + } |
|
| 108 | + } else { |
|
| 109 | + OC_Util::addVendorStyle($app, $file); |
|
| 110 | + } |
|
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | /** |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | * if an array is given it will add all styles |
| 117 | 117 | */ |
| 118 | 118 | function translation($app) { |
| 119 | - OC_Util::addTranslations($app); |
|
| 119 | + OC_Util::addTranslations($app); |
|
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | /** |
@@ -126,15 +126,15 @@ discard block |
||
| 126 | 126 | * if an array is given it will add all components |
| 127 | 127 | */ |
| 128 | 128 | function component($app, $file) { |
| 129 | - if(is_array($file)) { |
|
| 130 | - foreach($file as $f) { |
|
| 131 | - $url = link_to($app, 'component/' . $f . '.html'); |
|
| 132 | - OC_Util::addHeader('link', array('rel' => 'import', 'href' => $url)); |
|
| 133 | - } |
|
| 134 | - } else { |
|
| 135 | - $url = link_to($app, 'component/' . $file . '.html'); |
|
| 136 | - OC_Util::addHeader('link', array('rel' => 'import', 'href' => $url)); |
|
| 137 | - } |
|
| 129 | + if(is_array($file)) { |
|
| 130 | + foreach($file as $f) { |
|
| 131 | + $url = link_to($app, 'component/' . $f . '.html'); |
|
| 132 | + OC_Util::addHeader('link', array('rel' => 'import', 'href' => $url)); |
|
| 133 | + } |
|
| 134 | + } else { |
|
| 135 | + $url = link_to($app, 'component/' . $file . '.html'); |
|
| 136 | + OC_Util::addHeader('link', array('rel' => 'import', 'href' => $url)); |
|
| 137 | + } |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | * For further information have a look at \OCP\IURLGenerator::linkTo |
| 148 | 148 | */ |
| 149 | 149 | function link_to( $app, $file, $args = array() ) { |
| 150 | - return \OC::$server->getURLGenerator()->linkTo($app, $file, $args); |
|
| 150 | + return \OC::$server->getURLGenerator()->linkTo($app, $file, $args); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | /** |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | * @return string url to the online documentation |
| 156 | 156 | */ |
| 157 | 157 | function link_to_docs($key) { |
| 158 | - return \OC::$server->getURLGenerator()->linkToDocs($key); |
|
| 158 | + return \OC::$server->getURLGenerator()->linkToDocs($key); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | * For further information have a look at \OCP\IURLGenerator::imagePath |
| 168 | 168 | */ |
| 169 | 169 | function image_path( $app, $image ) { |
| 170 | - return \OC::$server->getURLGenerator()->imagePath( $app, $image ); |
|
| 170 | + return \OC::$server->getURLGenerator()->imagePath( $app, $image ); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | /** |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | * @return string link to the image |
| 177 | 177 | */ |
| 178 | 178 | function mimetype_icon( $mimetype ) { |
| 179 | - return \OC::$server->getMimeTypeDetector()->mimeTypeIcon( $mimetype ); |
|
| 179 | + return \OC::$server->getMimeTypeDetector()->mimeTypeIcon( $mimetype ); |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | /** |
@@ -186,14 +186,14 @@ discard block |
||
| 186 | 186 | * @return link to the preview |
| 187 | 187 | */ |
| 188 | 188 | function preview_icon( $path ) { |
| 189 | - return \OC::$server->getURLGenerator()->linkToRoute('core.Preview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path]); |
|
| 189 | + return \OC::$server->getURLGenerator()->linkToRoute('core.Preview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path]); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
| 193 | 193 | * @param string $path |
| 194 | 194 | */ |
| 195 | 195 | function publicPreview_icon ( $path, $token ) { |
| 196 | - return \OC::$server->getURLGenerator()->linkToRoute('files_sharing.PublicPreview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path, 't' => $token]); |
|
| 196 | + return \OC::$server->getURLGenerator()->linkToRoute('files_sharing.PublicPreview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path, 't' => $token]); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | /** |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | * For further information have a look at OC_Helper::humanFileSize |
| 205 | 205 | */ |
| 206 | 206 | function human_file_size( $bytes ) { |
| 207 | - return OC_Helper::humanFileSize( $bytes ); |
|
| 207 | + return OC_Helper::humanFileSize( $bytes ); |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | /** |
@@ -213,9 +213,9 @@ discard block |
||
| 213 | 213 | * @return $timestamp without time value |
| 214 | 214 | */ |
| 215 | 215 | function strip_time($timestamp){ |
| 216 | - $date = new \DateTime("@{$timestamp}"); |
|
| 217 | - $date->setTime(0, 0, 0); |
|
| 218 | - return intval($date->format('U')); |
|
| 216 | + $date = new \DateTime("@{$timestamp}"); |
|
| 217 | + $date->setTime(0, 0, 0); |
|
| 218 | + return intval($date->format('U')); |
|
| 219 | 219 | } |
| 220 | 220 | |
| 221 | 221 | /** |
@@ -227,39 +227,39 @@ discard block |
||
| 227 | 227 | * @return string timestamp |
| 228 | 228 | */ |
| 229 | 229 | function relative_modified_date($timestamp, $fromTime = null, $dateOnly = false) { |
| 230 | - /** @var \OC\DateTimeFormatter $formatter */ |
|
| 231 | - $formatter = \OC::$server->query('DateTimeFormatter'); |
|
| 230 | + /** @var \OC\DateTimeFormatter $formatter */ |
|
| 231 | + $formatter = \OC::$server->query('DateTimeFormatter'); |
|
| 232 | 232 | |
| 233 | - if ($dateOnly){ |
|
| 234 | - return $formatter->formatDateSpan($timestamp, $fromTime); |
|
| 235 | - } |
|
| 236 | - return $formatter->formatTimeSpan($timestamp, $fromTime); |
|
| 233 | + if ($dateOnly){ |
|
| 234 | + return $formatter->formatDateSpan($timestamp, $fromTime); |
|
| 235 | + } |
|
| 236 | + return $formatter->formatTimeSpan($timestamp, $fromTime); |
|
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | function html_select_options($options, $selected, $params=array()) { |
| 240 | - if (!is_array($selected)) { |
|
| 241 | - $selected=array($selected); |
|
| 242 | - } |
|
| 243 | - if (isset($params['combine']) && $params['combine']) { |
|
| 244 | - $options = array_combine($options, $options); |
|
| 245 | - } |
|
| 246 | - $value_name = $label_name = false; |
|
| 247 | - if (isset($params['value'])) { |
|
| 248 | - $value_name = $params['value']; |
|
| 249 | - } |
|
| 250 | - if (isset($params['label'])) { |
|
| 251 | - $label_name = $params['label']; |
|
| 252 | - } |
|
| 253 | - $html = ''; |
|
| 254 | - foreach($options as $value => $label) { |
|
| 255 | - if ($value_name && is_array($label)) { |
|
| 256 | - $value = $label[$value_name]; |
|
| 257 | - } |
|
| 258 | - if ($label_name && is_array($label)) { |
|
| 259 | - $label = $label[$label_name]; |
|
| 260 | - } |
|
| 261 | - $select = in_array($value, $selected) ? ' selected="selected"' : ''; |
|
| 262 | - $html .= '<option value="' . \OCP\Util::sanitizeHTML($value) . '"' . $select . '>' . \OCP\Util::sanitizeHTML($label) . '</option>'."\n"; |
|
| 263 | - } |
|
| 264 | - return $html; |
|
| 240 | + if (!is_array($selected)) { |
|
| 241 | + $selected=array($selected); |
|
| 242 | + } |
|
| 243 | + if (isset($params['combine']) && $params['combine']) { |
|
| 244 | + $options = array_combine($options, $options); |
|
| 245 | + } |
|
| 246 | + $value_name = $label_name = false; |
|
| 247 | + if (isset($params['value'])) { |
|
| 248 | + $value_name = $params['value']; |
|
| 249 | + } |
|
| 250 | + if (isset($params['label'])) { |
|
| 251 | + $label_name = $params['label']; |
|
| 252 | + } |
|
| 253 | + $html = ''; |
|
| 254 | + foreach($options as $value => $label) { |
|
| 255 | + if ($value_name && is_array($label)) { |
|
| 256 | + $value = $label[$value_name]; |
|
| 257 | + } |
|
| 258 | + if ($label_name && is_array($label)) { |
|
| 259 | + $label = $label[$label_name]; |
|
| 260 | + } |
|
| 261 | + $select = in_array($value, $selected) ? ' selected="selected"' : ''; |
|
| 262 | + $html .= '<option value="' . \OCP\Util::sanitizeHTML($value) . '"' . $select . '>' . \OCP\Util::sanitizeHTML($label) . '</option>'."\n"; |
|
| 263 | + } |
|
| 264 | + return $html; |
|
| 265 | 265 | } |
@@ -53,8 +53,8 @@ discard block |
||
| 53 | 53 | * if an array is given it will add all scripts |
| 54 | 54 | */ |
| 55 | 55 | function script($app, $file = null) { |
| 56 | - if(is_array($file)) { |
|
| 57 | - foreach($file as $f) { |
|
| 56 | + if (is_array($file)) { |
|
| 57 | + foreach ($file as $f) { |
|
| 58 | 58 | OC_Util::addScript($app, $f); |
| 59 | 59 | } |
| 60 | 60 | } else { |
@@ -69,8 +69,8 @@ discard block |
||
| 69 | 69 | * if an array is given it will add all scripts |
| 70 | 70 | */ |
| 71 | 71 | function vendor_script($app, $file = null) { |
| 72 | - if(is_array($file)) { |
|
| 73 | - foreach($file as $f) { |
|
| 72 | + if (is_array($file)) { |
|
| 73 | + foreach ($file as $f) { |
|
| 74 | 74 | OC_Util::addVendorScript($app, $f); |
| 75 | 75 | } |
| 76 | 76 | } else { |
@@ -85,8 +85,8 @@ discard block |
||
| 85 | 85 | * if an array is given it will add all styles |
| 86 | 86 | */ |
| 87 | 87 | function style($app, $file = null) { |
| 88 | - if(is_array($file)) { |
|
| 89 | - foreach($file as $f) { |
|
| 88 | + if (is_array($file)) { |
|
| 89 | + foreach ($file as $f) { |
|
| 90 | 90 | OC_Util::addStyle($app, $f); |
| 91 | 91 | } |
| 92 | 92 | } else { |
@@ -101,8 +101,8 @@ discard block |
||
| 101 | 101 | * if an array is given it will add all styles |
| 102 | 102 | */ |
| 103 | 103 | function vendor_style($app, $file = null) { |
| 104 | - if(is_array($file)) { |
|
| 105 | - foreach($file as $f) { |
|
| 104 | + if (is_array($file)) { |
|
| 105 | + foreach ($file as $f) { |
|
| 106 | 106 | OC_Util::addVendorStyle($app, $f); |
| 107 | 107 | } |
| 108 | 108 | } else { |
@@ -126,13 +126,13 @@ discard block |
||
| 126 | 126 | * if an array is given it will add all components |
| 127 | 127 | */ |
| 128 | 128 | function component($app, $file) { |
| 129 | - if(is_array($file)) { |
|
| 130 | - foreach($file as $f) { |
|
| 131 | - $url = link_to($app, 'component/' . $f . '.html'); |
|
| 129 | + if (is_array($file)) { |
|
| 130 | + foreach ($file as $f) { |
|
| 131 | + $url = link_to($app, 'component/'.$f.'.html'); |
|
| 132 | 132 | OC_Util::addHeader('link', array('rel' => 'import', 'href' => $url)); |
| 133 | 133 | } |
| 134 | 134 | } else { |
| 135 | - $url = link_to($app, 'component/' . $file . '.html'); |
|
| 135 | + $url = link_to($app, 'component/'.$file.'.html'); |
|
| 136 | 136 | OC_Util::addHeader('link', array('rel' => 'import', 'href' => $url)); |
| 137 | 137 | } |
| 138 | 138 | } |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | * |
| 147 | 147 | * For further information have a look at \OCP\IURLGenerator::linkTo |
| 148 | 148 | */ |
| 149 | -function link_to( $app, $file, $args = array() ) { |
|
| 149 | +function link_to($app, $file, $args = array()) { |
|
| 150 | 150 | return \OC::$server->getURLGenerator()->linkTo($app, $file, $args); |
| 151 | 151 | } |
| 152 | 152 | |
@@ -166,8 +166,8 @@ discard block |
||
| 166 | 166 | * |
| 167 | 167 | * For further information have a look at \OCP\IURLGenerator::imagePath |
| 168 | 168 | */ |
| 169 | -function image_path( $app, $image ) { |
|
| 170 | - return \OC::$server->getURLGenerator()->imagePath( $app, $image ); |
|
| 169 | +function image_path($app, $image) { |
|
| 170 | + return \OC::$server->getURLGenerator()->imagePath($app, $image); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | /** |
@@ -175,8 +175,8 @@ discard block |
||
| 175 | 175 | * @param string $mimetype mimetype |
| 176 | 176 | * @return string link to the image |
| 177 | 177 | */ |
| 178 | -function mimetype_icon( $mimetype ) { |
|
| 179 | - return \OC::$server->getMimeTypeDetector()->mimeTypeIcon( $mimetype ); |
|
| 178 | +function mimetype_icon($mimetype) { |
|
| 179 | + return \OC::$server->getMimeTypeDetector()->mimeTypeIcon($mimetype); |
|
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | /** |
@@ -185,14 +185,14 @@ discard block |
||
| 185 | 185 | * @param string $path path of file |
| 186 | 186 | * @return link to the preview |
| 187 | 187 | */ |
| 188 | -function preview_icon( $path ) { |
|
| 188 | +function preview_icon($path) { |
|
| 189 | 189 | return \OC::$server->getURLGenerator()->linkToRoute('core.Preview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path]); |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
| 193 | 193 | * @param string $path |
| 194 | 194 | */ |
| 195 | -function publicPreview_icon ( $path, $token ) { |
|
| 195 | +function publicPreview_icon($path, $token) { |
|
| 196 | 196 | return \OC::$server->getURLGenerator()->linkToRoute('files_sharing.PublicPreview.getPreview', ['x' => 32, 'y' => 32, 'file' => $path, 't' => $token]); |
| 197 | 197 | } |
| 198 | 198 | |
@@ -203,8 +203,8 @@ discard block |
||
| 203 | 203 | * |
| 204 | 204 | * For further information have a look at OC_Helper::humanFileSize |
| 205 | 205 | */ |
| 206 | -function human_file_size( $bytes ) { |
|
| 207 | - return OC_Helper::humanFileSize( $bytes ); |
|
| 206 | +function human_file_size($bytes) { |
|
| 207 | + return OC_Helper::humanFileSize($bytes); |
|
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | /** |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | * @param int $timestamp UNIX timestamp to strip |
| 213 | 213 | * @return $timestamp without time value |
| 214 | 214 | */ |
| 215 | -function strip_time($timestamp){ |
|
| 215 | +function strip_time($timestamp) { |
|
| 216 | 216 | $date = new \DateTime("@{$timestamp}"); |
| 217 | 217 | $date->setTime(0, 0, 0); |
| 218 | 218 | return intval($date->format('U')); |
@@ -230,15 +230,15 @@ discard block |
||
| 230 | 230 | /** @var \OC\DateTimeFormatter $formatter */ |
| 231 | 231 | $formatter = \OC::$server->query('DateTimeFormatter'); |
| 232 | 232 | |
| 233 | - if ($dateOnly){ |
|
| 233 | + if ($dateOnly) { |
|
| 234 | 234 | return $formatter->formatDateSpan($timestamp, $fromTime); |
| 235 | 235 | } |
| 236 | 236 | return $formatter->formatTimeSpan($timestamp, $fromTime); |
| 237 | 237 | } |
| 238 | 238 | |
| 239 | -function html_select_options($options, $selected, $params=array()) { |
|
| 239 | +function html_select_options($options, $selected, $params = array()) { |
|
| 240 | 240 | if (!is_array($selected)) { |
| 241 | - $selected=array($selected); |
|
| 241 | + $selected = array($selected); |
|
| 242 | 242 | } |
| 243 | 243 | if (isset($params['combine']) && $params['combine']) { |
| 244 | 244 | $options = array_combine($options, $options); |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | $label_name = $params['label']; |
| 252 | 252 | } |
| 253 | 253 | $html = ''; |
| 254 | - foreach($options as $value => $label) { |
|
| 254 | + foreach ($options as $value => $label) { |
|
| 255 | 255 | if ($value_name && is_array($label)) { |
| 256 | 256 | $value = $label[$value_name]; |
| 257 | 257 | } |
@@ -259,7 +259,7 @@ discard block |
||
| 259 | 259 | $label = $label[$label_name]; |
| 260 | 260 | } |
| 261 | 261 | $select = in_array($value, $selected) ? ' selected="selected"' : ''; |
| 262 | - $html .= '<option value="' . \OCP\Util::sanitizeHTML($value) . '"' . $select . '>' . \OCP\Util::sanitizeHTML($label) . '</option>'."\n"; |
|
| 262 | + $html .= '<option value="'.\OCP\Util::sanitizeHTML($value).'"'.$select.'>'.\OCP\Util::sanitizeHTML($label).'</option>'."\n"; |
|
| 263 | 263 | } |
| 264 | 264 | return $html; |
| 265 | 265 | } |
@@ -65,7 +65,7 @@ |
||
| 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 | */ |
@@ -30,140 +30,140 @@ |
||
| 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'), '4.0.6') === -1 && |
|
| 162 | - version_compare(phpversion('apcu'), '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'), '4.0.6') === -1 && |
|
| 162 | + version_compare(phpversion('apcu'), '5.1.0') === -1 |
|
| 163 | + ) { |
|
| 164 | + return false; |
|
| 165 | + } else { |
|
| 166 | + return true; |
|
| 167 | + } |
|
| 168 | + } |
|
| 169 | 169 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | } |
@@ -65,7 +65,7 @@ |
||
| 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 | */ |
@@ -27,133 +27,133 @@ |
||
| 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 | } |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | * @param OC\Security\Bruteforce\Throttler $throttler |
| 312 | 312 | * @throws LoginException |
| 313 | 313 | * @throws PasswordLoginForbiddenException |
| 314 | - * @return boolean |
|
| 314 | + * @return boolean|null |
|
| 315 | 315 | */ |
| 316 | 316 | public function logClientIn($user, |
| 317 | 317 | $password, |
@@ -361,6 +361,9 @@ discard block |
||
| 361 | 361 | return $this->config->getSystemValue('token_auth_enforced', false); |
| 362 | 362 | } |
| 363 | 363 | |
| 364 | + /** |
|
| 365 | + * @param string $username |
|
| 366 | + */ |
|
| 364 | 367 | protected function isTwoFactorEnforced($username) { |
| 365 | 368 | Util::emitHook( |
| 366 | 369 | '\OCA\Files_Sharing\API\Server2Server', |
@@ -345,14 +345,14 @@ discard block |
||
| 345 | 345 | if (!$isTokenPassword && $this->isTwoFactorEnforced($user)) { |
| 346 | 346 | throw new PasswordLoginForbiddenException(); |
| 347 | 347 | } |
| 348 | - if (!$this->login($user, $password) ) { |
|
| 348 | + if (!$this->login($user, $password)) { |
|
| 349 | 349 | $users = $this->manager->getByEmail($user); |
| 350 | 350 | if (count($users) === 1) { |
| 351 | 351 | return $this->login($users[0]->getUID(), $password); |
| 352 | 352 | } |
| 353 | 353 | |
| 354 | 354 | $throttler->registerAttempt('login', $request->getRemoteAddress(), ['uid' => $user]); |
| 355 | - if($currentDelay === 0) { |
|
| 355 | + if ($currentDelay === 0) { |
|
| 356 | 356 | $throttler->sleepDelay($request->getRemoteAddress(), 'login'); |
| 357 | 357 | } |
| 358 | 358 | return false; |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | |
| 361 | 361 | if ($isTokenPassword) { |
| 362 | 362 | $this->session->set('app_password', $password); |
| 363 | - } else if($this->supportsCookies($request)) { |
|
| 363 | + } else if ($this->supportsCookies($request)) { |
|
| 364 | 364 | // Password login, but cookies supported -> create (browser) session token |
| 365 | 365 | $this->createSessionToken($request, $this->getUser()->getUID(), $user, $password); |
| 366 | 366 | } |
@@ -433,7 +433,7 @@ discard block |
||
| 433 | 433 | \OC_Util::copySkeleton($user, $userFolder); |
| 434 | 434 | |
| 435 | 435 | // trigger any other initialization |
| 436 | - \OC::$server->getEventDispatcher()->dispatch(IUser::class . '::firstLogin', new GenericEvent($this->getUser())); |
|
| 436 | + \OC::$server->getEventDispatcher()->dispatch(IUser::class.'::firstLogin', new GenericEvent($this->getUser())); |
|
| 437 | 437 | } |
| 438 | 438 | } |
| 439 | 439 | |
@@ -623,7 +623,7 @@ discard block |
||
| 623 | 623 | private function checkTokenCredentials(IToken $dbToken, $token) { |
| 624 | 624 | // Check whether login credentials are still valid and the user was not disabled |
| 625 | 625 | // This check is performed each 5 minutes |
| 626 | - $lastCheck = $dbToken->getLastCheck() ? : 0; |
|
| 626 | + $lastCheck = $dbToken->getLastCheck() ?: 0; |
|
| 627 | 627 | $now = $this->timeFacory->getTime(); |
| 628 | 628 | if ($lastCheck > ($now - 60 * 5)) { |
| 629 | 629 | // Checked performed recently, nothing to do now |
@@ -713,7 +713,7 @@ discard block |
||
| 713 | 713 | if (!$this->loginWithToken($token)) { |
| 714 | 714 | return false; |
| 715 | 715 | } |
| 716 | - if(!$this->validateToken($token)) { |
|
| 716 | + if (!$this->validateToken($token)) { |
|
| 717 | 717 | return false; |
| 718 | 718 | } |
| 719 | 719 | return true; |
@@ -836,9 +836,9 @@ discard block |
||
| 836 | 836 | setcookie('nc_session_id', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT, '', $secureCookie, true); |
| 837 | 837 | // old cookies might be stored under /webroot/ instead of /webroot |
| 838 | 838 | // and Firefox doesn't like it! |
| 839 | - setcookie('nc_username', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT . '/', '', $secureCookie, true); |
|
| 840 | - setcookie('nc_token', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT . '/', '', $secureCookie, true); |
|
| 841 | - setcookie('nc_session_id', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT . '/', '', $secureCookie, true); |
|
| 839 | + setcookie('nc_username', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT.'/', '', $secureCookie, true); |
|
| 840 | + setcookie('nc_token', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT.'/', '', $secureCookie, true); |
|
| 841 | + setcookie('nc_session_id', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT.'/', '', $secureCookie, true); |
|
| 842 | 842 | } |
| 843 | 843 | |
| 844 | 844 | /** |
@@ -77,789 +77,789 @@ |
||
| 77 | 77 | */ |
| 78 | 78 | class Session implements IUserSession, Emitter { |
| 79 | 79 | |
| 80 | - /** @var IUserManager $manager */ |
|
| 81 | - private $manager; |
|
| 82 | - |
|
| 83 | - /** @var ISession $session */ |
|
| 84 | - private $session; |
|
| 85 | - |
|
| 86 | - /** @var ITimeFactory */ |
|
| 87 | - private $timeFacory; |
|
| 88 | - |
|
| 89 | - /** @var IProvider */ |
|
| 90 | - private $tokenProvider; |
|
| 91 | - |
|
| 92 | - /** @var IConfig */ |
|
| 93 | - private $config; |
|
| 94 | - |
|
| 95 | - /** @var User $activeUser */ |
|
| 96 | - protected $activeUser; |
|
| 97 | - |
|
| 98 | - /** @var ISecureRandom */ |
|
| 99 | - private $random; |
|
| 100 | - |
|
| 101 | - /** |
|
| 102 | - * @param IUserManager $manager |
|
| 103 | - * @param ISession $session |
|
| 104 | - * @param ITimeFactory $timeFacory |
|
| 105 | - * @param IProvider $tokenProvider |
|
| 106 | - * @param IConfig $config |
|
| 107 | - * @param ISecureRandom $random |
|
| 108 | - */ |
|
| 109 | - public function __construct(IUserManager $manager, |
|
| 110 | - ISession $session, |
|
| 111 | - ITimeFactory $timeFacory, |
|
| 112 | - $tokenProvider, |
|
| 113 | - IConfig $config, |
|
| 114 | - ISecureRandom $random) { |
|
| 115 | - $this->manager = $manager; |
|
| 116 | - $this->session = $session; |
|
| 117 | - $this->timeFacory = $timeFacory; |
|
| 118 | - $this->tokenProvider = $tokenProvider; |
|
| 119 | - $this->config = $config; |
|
| 120 | - $this->random = $random; |
|
| 121 | - } |
|
| 122 | - |
|
| 123 | - /** |
|
| 124 | - * @param IProvider $provider |
|
| 125 | - */ |
|
| 126 | - public function setTokenProvider(IProvider $provider) { |
|
| 127 | - $this->tokenProvider = $provider; |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - /** |
|
| 131 | - * @param string $scope |
|
| 132 | - * @param string $method |
|
| 133 | - * @param callable $callback |
|
| 134 | - */ |
|
| 135 | - public function listen($scope, $method, callable $callback) { |
|
| 136 | - $this->manager->listen($scope, $method, $callback); |
|
| 137 | - } |
|
| 138 | - |
|
| 139 | - /** |
|
| 140 | - * @param string $scope optional |
|
| 141 | - * @param string $method optional |
|
| 142 | - * @param callable $callback optional |
|
| 143 | - */ |
|
| 144 | - public function removeListener($scope = null, $method = null, callable $callback = null) { |
|
| 145 | - $this->manager->removeListener($scope, $method, $callback); |
|
| 146 | - } |
|
| 147 | - |
|
| 148 | - /** |
|
| 149 | - * get the manager object |
|
| 150 | - * |
|
| 151 | - * @return Manager |
|
| 152 | - */ |
|
| 153 | - public function getManager() { |
|
| 154 | - return $this->manager; |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - /** |
|
| 158 | - * get the session object |
|
| 159 | - * |
|
| 160 | - * @return ISession |
|
| 161 | - */ |
|
| 162 | - public function getSession() { |
|
| 163 | - return $this->session; |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - /** |
|
| 167 | - * set the session object |
|
| 168 | - * |
|
| 169 | - * @param ISession $session |
|
| 170 | - */ |
|
| 171 | - public function setSession(ISession $session) { |
|
| 172 | - if ($this->session instanceof ISession) { |
|
| 173 | - $this->session->close(); |
|
| 174 | - } |
|
| 175 | - $this->session = $session; |
|
| 176 | - $this->activeUser = null; |
|
| 177 | - } |
|
| 178 | - |
|
| 179 | - /** |
|
| 180 | - * set the currently active user |
|
| 181 | - * |
|
| 182 | - * @param IUser|null $user |
|
| 183 | - */ |
|
| 184 | - public function setUser($user) { |
|
| 185 | - if (is_null($user)) { |
|
| 186 | - $this->session->remove('user_id'); |
|
| 187 | - } else { |
|
| 188 | - $this->session->set('user_id', $user->getUID()); |
|
| 189 | - } |
|
| 190 | - $this->activeUser = $user; |
|
| 191 | - } |
|
| 192 | - |
|
| 193 | - /** |
|
| 194 | - * get the current active user |
|
| 195 | - * |
|
| 196 | - * @return IUser|null Current user, otherwise null |
|
| 197 | - */ |
|
| 198 | - public function getUser() { |
|
| 199 | - // FIXME: This is a quick'n dirty work-around for the incognito mode as |
|
| 200 | - // described at https://github.com/owncloud/core/pull/12912#issuecomment-67391155 |
|
| 201 | - if (OC_User::isIncognitoMode()) { |
|
| 202 | - return null; |
|
| 203 | - } |
|
| 204 | - if (is_null($this->activeUser)) { |
|
| 205 | - $uid = $this->session->get('user_id'); |
|
| 206 | - if (is_null($uid)) { |
|
| 207 | - return null; |
|
| 208 | - } |
|
| 209 | - $this->activeUser = $this->manager->get($uid); |
|
| 210 | - if (is_null($this->activeUser)) { |
|
| 211 | - return null; |
|
| 212 | - } |
|
| 213 | - $this->validateSession(); |
|
| 214 | - } |
|
| 215 | - return $this->activeUser; |
|
| 216 | - } |
|
| 217 | - |
|
| 218 | - /** |
|
| 219 | - * Validate whether the current session is valid |
|
| 220 | - * |
|
| 221 | - * - For token-authenticated clients, the token validity is checked |
|
| 222 | - * - For browsers, the session token validity is checked |
|
| 223 | - */ |
|
| 224 | - protected function validateSession() { |
|
| 225 | - $token = null; |
|
| 226 | - $appPassword = $this->session->get('app_password'); |
|
| 227 | - |
|
| 228 | - if (is_null($appPassword)) { |
|
| 229 | - try { |
|
| 230 | - $token = $this->session->getId(); |
|
| 231 | - } catch (SessionNotAvailableException $ex) { |
|
| 232 | - return; |
|
| 233 | - } |
|
| 234 | - } else { |
|
| 235 | - $token = $appPassword; |
|
| 236 | - } |
|
| 237 | - |
|
| 238 | - if (!$this->validateToken($token)) { |
|
| 239 | - // Session was invalidated |
|
| 240 | - $this->logout(); |
|
| 241 | - } |
|
| 242 | - } |
|
| 243 | - |
|
| 244 | - /** |
|
| 245 | - * Checks whether the user is logged in |
|
| 246 | - * |
|
| 247 | - * @return bool if logged in |
|
| 248 | - */ |
|
| 249 | - public function isLoggedIn() { |
|
| 250 | - $user = $this->getUser(); |
|
| 251 | - if (is_null($user)) { |
|
| 252 | - return false; |
|
| 253 | - } |
|
| 254 | - |
|
| 255 | - return $user->isEnabled(); |
|
| 256 | - } |
|
| 257 | - |
|
| 258 | - /** |
|
| 259 | - * set the login name |
|
| 260 | - * |
|
| 261 | - * @param string|null $loginName for the logged in user |
|
| 262 | - */ |
|
| 263 | - public function setLoginName($loginName) { |
|
| 264 | - if (is_null($loginName)) { |
|
| 265 | - $this->session->remove('loginname'); |
|
| 266 | - } else { |
|
| 267 | - $this->session->set('loginname', $loginName); |
|
| 268 | - } |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - /** |
|
| 272 | - * get the login name of the current user |
|
| 273 | - * |
|
| 274 | - * @return string |
|
| 275 | - */ |
|
| 276 | - public function getLoginName() { |
|
| 277 | - if ($this->activeUser) { |
|
| 278 | - return $this->session->get('loginname'); |
|
| 279 | - } else { |
|
| 280 | - $uid = $this->session->get('user_id'); |
|
| 281 | - if ($uid) { |
|
| 282 | - $this->activeUser = $this->manager->get($uid); |
|
| 283 | - return $this->session->get('loginname'); |
|
| 284 | - } else { |
|
| 285 | - return null; |
|
| 286 | - } |
|
| 287 | - } |
|
| 288 | - } |
|
| 289 | - |
|
| 290 | - /** |
|
| 291 | - * set the token id |
|
| 292 | - * |
|
| 293 | - * @param int|null $token that was used to log in |
|
| 294 | - */ |
|
| 295 | - protected function setToken($token) { |
|
| 296 | - if ($token === null) { |
|
| 297 | - $this->session->remove('token-id'); |
|
| 298 | - } else { |
|
| 299 | - $this->session->set('token-id', $token); |
|
| 300 | - } |
|
| 301 | - } |
|
| 302 | - |
|
| 303 | - /** |
|
| 304 | - * try to log in with the provided credentials |
|
| 305 | - * |
|
| 306 | - * @param string $uid |
|
| 307 | - * @param string $password |
|
| 308 | - * @return boolean|null |
|
| 309 | - * @throws LoginException |
|
| 310 | - */ |
|
| 311 | - public function login($uid, $password) { |
|
| 312 | - $this->session->regenerateId(); |
|
| 313 | - if ($this->validateToken($password, $uid)) { |
|
| 314 | - return $this->loginWithToken($password); |
|
| 315 | - } |
|
| 316 | - return $this->loginWithPassword($uid, $password); |
|
| 317 | - } |
|
| 318 | - |
|
| 319 | - /** |
|
| 320 | - * Tries to log in a client |
|
| 321 | - * |
|
| 322 | - * Checks token auth enforced |
|
| 323 | - * Checks 2FA enabled |
|
| 324 | - * |
|
| 325 | - * @param string $user |
|
| 326 | - * @param string $password |
|
| 327 | - * @param IRequest $request |
|
| 328 | - * @param OC\Security\Bruteforce\Throttler $throttler |
|
| 329 | - * @throws LoginException |
|
| 330 | - * @throws PasswordLoginForbiddenException |
|
| 331 | - * @return boolean |
|
| 332 | - */ |
|
| 333 | - public function logClientIn($user, |
|
| 334 | - $password, |
|
| 335 | - IRequest $request, |
|
| 336 | - OC\Security\Bruteforce\Throttler $throttler) { |
|
| 337 | - $currentDelay = $throttler->sleepDelay($request->getRemoteAddress(), 'login'); |
|
| 338 | - |
|
| 339 | - if ($this->manager instanceof PublicEmitter) { |
|
| 340 | - $this->manager->emit('\OC\User', 'preLogin', array($user, $password)); |
|
| 341 | - } |
|
| 342 | - |
|
| 343 | - $isTokenPassword = $this->isTokenPassword($password); |
|
| 344 | - if (!$isTokenPassword && $this->isTokenAuthEnforced()) { |
|
| 345 | - throw new PasswordLoginForbiddenException(); |
|
| 346 | - } |
|
| 347 | - if (!$isTokenPassword && $this->isTwoFactorEnforced($user)) { |
|
| 348 | - throw new PasswordLoginForbiddenException(); |
|
| 349 | - } |
|
| 350 | - if (!$this->login($user, $password) ) { |
|
| 351 | - $users = $this->manager->getByEmail($user); |
|
| 352 | - if (count($users) === 1) { |
|
| 353 | - return $this->login($users[0]->getUID(), $password); |
|
| 354 | - } |
|
| 355 | - |
|
| 356 | - $throttler->registerAttempt('login', $request->getRemoteAddress(), ['uid' => $user]); |
|
| 357 | - if($currentDelay === 0) { |
|
| 358 | - $throttler->sleepDelay($request->getRemoteAddress(), 'login'); |
|
| 359 | - } |
|
| 360 | - return false; |
|
| 361 | - } |
|
| 362 | - |
|
| 363 | - if ($isTokenPassword) { |
|
| 364 | - $this->session->set('app_password', $password); |
|
| 365 | - } else if($this->supportsCookies($request)) { |
|
| 366 | - // Password login, but cookies supported -> create (browser) session token |
|
| 367 | - $this->createSessionToken($request, $this->getUser()->getUID(), $user, $password); |
|
| 368 | - } |
|
| 369 | - |
|
| 370 | - return true; |
|
| 371 | - } |
|
| 372 | - |
|
| 373 | - protected function supportsCookies(IRequest $request) { |
|
| 374 | - if (!is_null($request->getCookie('cookie_test'))) { |
|
| 375 | - return true; |
|
| 376 | - } |
|
| 377 | - setcookie('cookie_test', 'test', $this->timeFacory->getTime() + 3600); |
|
| 378 | - return false; |
|
| 379 | - } |
|
| 380 | - |
|
| 381 | - private function isTokenAuthEnforced() { |
|
| 382 | - return $this->config->getSystemValue('token_auth_enforced', false); |
|
| 383 | - } |
|
| 384 | - |
|
| 385 | - protected function isTwoFactorEnforced($username) { |
|
| 386 | - Util::emitHook( |
|
| 387 | - '\OCA\Files_Sharing\API\Server2Server', |
|
| 388 | - 'preLoginNameUsedAsUserName', |
|
| 389 | - array('uid' => &$username) |
|
| 390 | - ); |
|
| 391 | - $user = $this->manager->get($username); |
|
| 392 | - if (is_null($user)) { |
|
| 393 | - $users = $this->manager->getByEmail($username); |
|
| 394 | - if (empty($users)) { |
|
| 395 | - return false; |
|
| 396 | - } |
|
| 397 | - if (count($users) !== 1) { |
|
| 398 | - return true; |
|
| 399 | - } |
|
| 400 | - $user = $users[0]; |
|
| 401 | - } |
|
| 402 | - // DI not possible due to cyclic dependencies :'-/ |
|
| 403 | - return OC::$server->getTwoFactorAuthManager()->isTwoFactorAuthenticated($user); |
|
| 404 | - } |
|
| 405 | - |
|
| 406 | - /** |
|
| 407 | - * Check if the given 'password' is actually a device token |
|
| 408 | - * |
|
| 409 | - * @param string $password |
|
| 410 | - * @return boolean |
|
| 411 | - */ |
|
| 412 | - public function isTokenPassword($password) { |
|
| 413 | - try { |
|
| 414 | - $this->tokenProvider->getToken($password); |
|
| 415 | - return true; |
|
| 416 | - } catch (InvalidTokenException $ex) { |
|
| 417 | - return false; |
|
| 418 | - } |
|
| 419 | - } |
|
| 420 | - |
|
| 421 | - protected function prepareUserLogin($firstTimeLogin) { |
|
| 422 | - // TODO: mock/inject/use non-static |
|
| 423 | - // Refresh the token |
|
| 424 | - \OC::$server->getCsrfTokenManager()->refreshToken(); |
|
| 425 | - //we need to pass the user name, which may differ from login name |
|
| 426 | - $user = $this->getUser()->getUID(); |
|
| 427 | - OC_Util::setupFS($user); |
|
| 428 | - |
|
| 429 | - if ($firstTimeLogin) { |
|
| 430 | - // TODO: lock necessary? |
|
| 431 | - //trigger creation of user home and /files folder |
|
| 432 | - $userFolder = \OC::$server->getUserFolder($user); |
|
| 433 | - |
|
| 434 | - // copy skeleton |
|
| 435 | - \OC_Util::copySkeleton($user, $userFolder); |
|
| 436 | - |
|
| 437 | - // trigger any other initialization |
|
| 438 | - \OC::$server->getEventDispatcher()->dispatch(IUser::class . '::firstLogin', new GenericEvent($this->getUser())); |
|
| 439 | - } |
|
| 440 | - } |
|
| 441 | - |
|
| 442 | - /** |
|
| 443 | - * Tries to login the user with HTTP Basic Authentication |
|
| 444 | - * |
|
| 445 | - * @todo do not allow basic auth if the user is 2FA enforced |
|
| 446 | - * @param IRequest $request |
|
| 447 | - * @param OC\Security\Bruteforce\Throttler $throttler |
|
| 448 | - * @return boolean if the login was successful |
|
| 449 | - */ |
|
| 450 | - public function tryBasicAuthLogin(IRequest $request, |
|
| 451 | - OC\Security\Bruteforce\Throttler $throttler) { |
|
| 452 | - if (!empty($request->server['PHP_AUTH_USER']) && !empty($request->server['PHP_AUTH_PW'])) { |
|
| 453 | - try { |
|
| 454 | - if ($this->logClientIn($request->server['PHP_AUTH_USER'], $request->server['PHP_AUTH_PW'], $request, $throttler)) { |
|
| 455 | - /** |
|
| 456 | - * Add DAV authenticated. This should in an ideal world not be |
|
| 457 | - * necessary but the iOS App reads cookies from anywhere instead |
|
| 458 | - * only the DAV endpoint. |
|
| 459 | - * This makes sure that the cookies will be valid for the whole scope |
|
| 460 | - * @see https://github.com/owncloud/core/issues/22893 |
|
| 461 | - */ |
|
| 462 | - $this->session->set( |
|
| 463 | - Auth::DAV_AUTHENTICATED, $this->getUser()->getUID() |
|
| 464 | - ); |
|
| 465 | - |
|
| 466 | - // Set the last-password-confirm session to make the sudo mode work |
|
| 467 | - $this->session->set('last-password-confirm', $this->timeFacory->getTime()); |
|
| 468 | - |
|
| 469 | - return true; |
|
| 470 | - } |
|
| 471 | - } catch (PasswordLoginForbiddenException $ex) { |
|
| 472 | - // Nothing to do |
|
| 473 | - } |
|
| 474 | - } |
|
| 475 | - return false; |
|
| 476 | - } |
|
| 477 | - |
|
| 478 | - /** |
|
| 479 | - * Log an user in via login name and password |
|
| 480 | - * |
|
| 481 | - * @param string $uid |
|
| 482 | - * @param string $password |
|
| 483 | - * @return boolean |
|
| 484 | - * @throws LoginException if an app canceld the login process or the user is not enabled |
|
| 485 | - */ |
|
| 486 | - private function loginWithPassword($uid, $password) { |
|
| 487 | - $user = $this->manager->checkPassword($uid, $password); |
|
| 488 | - if ($user === false) { |
|
| 489 | - // Password check failed |
|
| 490 | - return false; |
|
| 491 | - } |
|
| 492 | - |
|
| 493 | - if ($user->isEnabled()) { |
|
| 494 | - $this->setUser($user); |
|
| 495 | - $this->setLoginName($uid); |
|
| 496 | - $this->setToken(null); |
|
| 497 | - $firstTimeLogin = $user->updateLastLoginTimestamp(); |
|
| 498 | - $this->manager->emit('\OC\User', 'postLogin', [$user, $password]); |
|
| 499 | - if ($this->isLoggedIn()) { |
|
| 500 | - $this->prepareUserLogin($firstTimeLogin); |
|
| 501 | - return true; |
|
| 502 | - } else { |
|
| 503 | - // injecting l10n does not work - there is a circular dependency between session and \OCP\L10N\IFactory |
|
| 504 | - $message = \OC::$server->getL10N('lib')->t('Login canceled by app'); |
|
| 505 | - throw new LoginException($message); |
|
| 506 | - } |
|
| 507 | - } else { |
|
| 508 | - // injecting l10n does not work - there is a circular dependency between session and \OCP\L10N\IFactory |
|
| 509 | - $message = \OC::$server->getL10N('lib')->t('User disabled'); |
|
| 510 | - throw new LoginException($message); |
|
| 511 | - } |
|
| 512 | - } |
|
| 513 | - |
|
| 514 | - /** |
|
| 515 | - * Log an user in with a given token (id) |
|
| 516 | - * |
|
| 517 | - * @param string $token |
|
| 518 | - * @return boolean |
|
| 519 | - * @throws LoginException if an app canceled the login process or the user is not enabled |
|
| 520 | - */ |
|
| 521 | - private function loginWithToken($token) { |
|
| 522 | - try { |
|
| 523 | - $dbToken = $this->tokenProvider->getToken($token); |
|
| 524 | - } catch (InvalidTokenException $ex) { |
|
| 525 | - return false; |
|
| 526 | - } |
|
| 527 | - $uid = $dbToken->getUID(); |
|
| 528 | - |
|
| 529 | - // When logging in with token, the password must be decrypted first before passing to login hook |
|
| 530 | - $password = ''; |
|
| 531 | - try { |
|
| 532 | - $password = $this->tokenProvider->getPassword($dbToken, $token); |
|
| 533 | - } catch (PasswordlessTokenException $ex) { |
|
| 534 | - // Ignore and use empty string instead |
|
| 535 | - } |
|
| 536 | - |
|
| 537 | - $user = $this->manager->get($uid); |
|
| 538 | - if (is_null($user)) { |
|
| 539 | - // user does not exist |
|
| 540 | - return false; |
|
| 541 | - } |
|
| 542 | - if (!$user->isEnabled()) { |
|
| 543 | - // disabled users can not log in |
|
| 544 | - // injecting l10n does not work - there is a circular dependency between session and \OCP\L10N\IFactory |
|
| 545 | - $message = \OC::$server->getL10N('lib')->t('User disabled'); |
|
| 546 | - throw new LoginException($message); |
|
| 547 | - } |
|
| 548 | - |
|
| 549 | - //login |
|
| 550 | - $this->setUser($user); |
|
| 551 | - $this->setLoginName($dbToken->getLoginName()); |
|
| 552 | - $this->setToken($dbToken->getId()); |
|
| 553 | - \OC::$server->getLockdownManager()->setToken($dbToken); |
|
| 554 | - $this->manager->emit('\OC\User', 'postLogin', array($user, $password)); |
|
| 555 | - |
|
| 556 | - if ($this->isLoggedIn()) { |
|
| 557 | - $this->prepareUserLogin(false); // token login cant be the first |
|
| 558 | - } else { |
|
| 559 | - // injecting l10n does not work - there is a circular dependency between session and \OCP\L10N\IFactory |
|
| 560 | - $message = \OC::$server->getL10N('lib')->t('Login canceled by app'); |
|
| 561 | - throw new LoginException($message); |
|
| 562 | - } |
|
| 563 | - |
|
| 564 | - return true; |
|
| 565 | - } |
|
| 566 | - |
|
| 567 | - /** |
|
| 568 | - * Create a new session token for the given user credentials |
|
| 569 | - * |
|
| 570 | - * @param IRequest $request |
|
| 571 | - * @param string $uid user UID |
|
| 572 | - * @param string $loginName login name |
|
| 573 | - * @param string $password |
|
| 574 | - * @param int $remember |
|
| 575 | - * @return boolean |
|
| 576 | - */ |
|
| 577 | - public function createSessionToken(IRequest $request, $uid, $loginName, $password = null, $remember = IToken::DO_NOT_REMEMBER) { |
|
| 578 | - if (is_null($this->manager->get($uid))) { |
|
| 579 | - // User does not exist |
|
| 580 | - return false; |
|
| 581 | - } |
|
| 582 | - $name = isset($request->server['HTTP_USER_AGENT']) ? $request->server['HTTP_USER_AGENT'] : 'unknown browser'; |
|
| 583 | - try { |
|
| 584 | - $sessionId = $this->session->getId(); |
|
| 585 | - $pwd = $this->getPassword($password); |
|
| 586 | - $this->tokenProvider->generateToken($sessionId, $uid, $loginName, $pwd, $name, IToken::TEMPORARY_TOKEN, $remember); |
|
| 587 | - return true; |
|
| 588 | - } catch (SessionNotAvailableException $ex) { |
|
| 589 | - // This can happen with OCC, where a memory session is used |
|
| 590 | - // if a memory session is used, we shouldn't create a session token anyway |
|
| 591 | - return false; |
|
| 592 | - } |
|
| 593 | - } |
|
| 594 | - |
|
| 595 | - /** |
|
| 596 | - * Checks if the given password is a token. |
|
| 597 | - * If yes, the password is extracted from the token. |
|
| 598 | - * If no, the same password is returned. |
|
| 599 | - * |
|
| 600 | - * @param string $password either the login password or a device token |
|
| 601 | - * @return string|null the password or null if none was set in the token |
|
| 602 | - */ |
|
| 603 | - private function getPassword($password) { |
|
| 604 | - if (is_null($password)) { |
|
| 605 | - // This is surely no token ;-) |
|
| 606 | - return null; |
|
| 607 | - } |
|
| 608 | - try { |
|
| 609 | - $token = $this->tokenProvider->getToken($password); |
|
| 610 | - try { |
|
| 611 | - return $this->tokenProvider->getPassword($token, $password); |
|
| 612 | - } catch (PasswordlessTokenException $ex) { |
|
| 613 | - return null; |
|
| 614 | - } |
|
| 615 | - } catch (InvalidTokenException $ex) { |
|
| 616 | - return $password; |
|
| 617 | - } |
|
| 618 | - } |
|
| 619 | - |
|
| 620 | - /** |
|
| 621 | - * @param IToken $dbToken |
|
| 622 | - * @param string $token |
|
| 623 | - * @return boolean |
|
| 624 | - */ |
|
| 625 | - private function checkTokenCredentials(IToken $dbToken, $token) { |
|
| 626 | - // Check whether login credentials are still valid and the user was not disabled |
|
| 627 | - // This check is performed each 5 minutes |
|
| 628 | - $lastCheck = $dbToken->getLastCheck() ? : 0; |
|
| 629 | - $now = $this->timeFacory->getTime(); |
|
| 630 | - if ($lastCheck > ($now - 60 * 5)) { |
|
| 631 | - // Checked performed recently, nothing to do now |
|
| 632 | - return true; |
|
| 633 | - } |
|
| 634 | - |
|
| 635 | - try { |
|
| 636 | - $pwd = $this->tokenProvider->getPassword($dbToken, $token); |
|
| 637 | - } catch (InvalidTokenException $ex) { |
|
| 638 | - // An invalid token password was used -> log user out |
|
| 639 | - return false; |
|
| 640 | - } catch (PasswordlessTokenException $ex) { |
|
| 641 | - // Token has no password |
|
| 642 | - |
|
| 643 | - if (!is_null($this->activeUser) && !$this->activeUser->isEnabled()) { |
|
| 644 | - $this->tokenProvider->invalidateToken($token); |
|
| 645 | - return false; |
|
| 646 | - } |
|
| 647 | - |
|
| 648 | - $dbToken->setLastCheck($now); |
|
| 649 | - return true; |
|
| 650 | - } |
|
| 651 | - |
|
| 652 | - if ($this->manager->checkPassword($dbToken->getLoginName(), $pwd) === false |
|
| 653 | - || (!is_null($this->activeUser) && !$this->activeUser->isEnabled())) { |
|
| 654 | - $this->tokenProvider->invalidateToken($token); |
|
| 655 | - // Password has changed or user was disabled -> log user out |
|
| 656 | - return false; |
|
| 657 | - } |
|
| 658 | - $dbToken->setLastCheck($now); |
|
| 659 | - return true; |
|
| 660 | - } |
|
| 661 | - |
|
| 662 | - /** |
|
| 663 | - * Check if the given token exists and performs password/user-enabled checks |
|
| 664 | - * |
|
| 665 | - * Invalidates the token if checks fail |
|
| 666 | - * |
|
| 667 | - * @param string $token |
|
| 668 | - * @param string $user login name |
|
| 669 | - * @return boolean |
|
| 670 | - */ |
|
| 671 | - private function validateToken($token, $user = null) { |
|
| 672 | - try { |
|
| 673 | - $dbToken = $this->tokenProvider->getToken($token); |
|
| 674 | - } catch (InvalidTokenException $ex) { |
|
| 675 | - return false; |
|
| 676 | - } |
|
| 677 | - |
|
| 678 | - // Check if login names match |
|
| 679 | - if (!is_null($user) && $dbToken->getLoginName() !== $user) { |
|
| 680 | - // TODO: this makes it imposssible to use different login names on browser and client |
|
| 681 | - // e.g. login by e-mail '[email protected]' on browser for generating the token will not |
|
| 682 | - // allow to use the client token with the login name 'user'. |
|
| 683 | - return false; |
|
| 684 | - } |
|
| 685 | - |
|
| 686 | - if (!$this->checkTokenCredentials($dbToken, $token)) { |
|
| 687 | - return false; |
|
| 688 | - } |
|
| 689 | - |
|
| 690 | - $this->tokenProvider->updateTokenActivity($dbToken); |
|
| 691 | - |
|
| 692 | - return true; |
|
| 693 | - } |
|
| 694 | - |
|
| 695 | - /** |
|
| 696 | - * Tries to login the user with auth token header |
|
| 697 | - * |
|
| 698 | - * @param IRequest $request |
|
| 699 | - * @todo check remember me cookie |
|
| 700 | - * @return boolean |
|
| 701 | - */ |
|
| 702 | - public function tryTokenLogin(IRequest $request) { |
|
| 703 | - $authHeader = $request->getHeader('Authorization'); |
|
| 704 | - if (strpos($authHeader, 'token ') === false) { |
|
| 705 | - // No auth header, let's try session id |
|
| 706 | - try { |
|
| 707 | - $token = $this->session->getId(); |
|
| 708 | - } catch (SessionNotAvailableException $ex) { |
|
| 709 | - return false; |
|
| 710 | - } |
|
| 711 | - } else { |
|
| 712 | - $token = substr($authHeader, 6); |
|
| 713 | - } |
|
| 714 | - |
|
| 715 | - if (!$this->loginWithToken($token)) { |
|
| 716 | - return false; |
|
| 717 | - } |
|
| 718 | - if(!$this->validateToken($token)) { |
|
| 719 | - return false; |
|
| 720 | - } |
|
| 721 | - return true; |
|
| 722 | - } |
|
| 723 | - |
|
| 724 | - /** |
|
| 725 | - * perform login using the magic cookie (remember login) |
|
| 726 | - * |
|
| 727 | - * @param string $uid the username |
|
| 728 | - * @param string $currentToken |
|
| 729 | - * @param string $oldSessionId |
|
| 730 | - * @return bool |
|
| 731 | - */ |
|
| 732 | - public function loginWithCookie($uid, $currentToken, $oldSessionId) { |
|
| 733 | - $this->session->regenerateId(); |
|
| 734 | - $this->manager->emit('\OC\User', 'preRememberedLogin', array($uid)); |
|
| 735 | - $user = $this->manager->get($uid); |
|
| 736 | - if (is_null($user)) { |
|
| 737 | - // user does not exist |
|
| 738 | - return false; |
|
| 739 | - } |
|
| 740 | - |
|
| 741 | - // get stored tokens |
|
| 742 | - $tokens = $this->config->getUserKeys($uid, 'login_token'); |
|
| 743 | - // test cookies token against stored tokens |
|
| 744 | - if (!in_array($currentToken, $tokens, true)) { |
|
| 745 | - return false; |
|
| 746 | - } |
|
| 747 | - // replace successfully used token with a new one |
|
| 748 | - $this->config->deleteUserValue($uid, 'login_token', $currentToken); |
|
| 749 | - $newToken = $this->random->generate(32); |
|
| 750 | - $this->config->setUserValue($uid, 'login_token', $newToken, $this->timeFacory->getTime()); |
|
| 751 | - |
|
| 752 | - try { |
|
| 753 | - $sessionId = $this->session->getId(); |
|
| 754 | - $this->tokenProvider->renewSessionToken($oldSessionId, $sessionId); |
|
| 755 | - } catch (SessionNotAvailableException $ex) { |
|
| 756 | - return false; |
|
| 757 | - } catch (InvalidTokenException $ex) { |
|
| 758 | - \OC::$server->getLogger()->warning('Renewing session token failed', ['app' => 'core']); |
|
| 759 | - return false; |
|
| 760 | - } |
|
| 761 | - |
|
| 762 | - $this->setMagicInCookie($user->getUID(), $newToken); |
|
| 763 | - $token = $this->tokenProvider->getToken($sessionId); |
|
| 764 | - |
|
| 765 | - //login |
|
| 766 | - $this->setUser($user); |
|
| 767 | - $this->setLoginName($token->getLoginName()); |
|
| 768 | - $this->setToken($token->getId()); |
|
| 769 | - $user->updateLastLoginTimestamp(); |
|
| 770 | - $this->manager->emit('\OC\User', 'postRememberedLogin', [$user]); |
|
| 771 | - return true; |
|
| 772 | - } |
|
| 773 | - |
|
| 774 | - /** |
|
| 775 | - * @param IUser $user |
|
| 776 | - */ |
|
| 777 | - public function createRememberMeToken(IUser $user) { |
|
| 778 | - $token = $this->random->generate(32); |
|
| 779 | - $this->config->setUserValue($user->getUID(), 'login_token', $token, $this->timeFacory->getTime()); |
|
| 780 | - $this->setMagicInCookie($user->getUID(), $token); |
|
| 781 | - } |
|
| 782 | - |
|
| 783 | - /** |
|
| 784 | - * logout the user from the session |
|
| 785 | - */ |
|
| 786 | - public function logout() { |
|
| 787 | - $this->manager->emit('\OC\User', 'logout'); |
|
| 788 | - $user = $this->getUser(); |
|
| 789 | - if (!is_null($user)) { |
|
| 790 | - try { |
|
| 791 | - $this->tokenProvider->invalidateToken($this->session->getId()); |
|
| 792 | - } catch (SessionNotAvailableException $ex) { |
|
| 793 | - |
|
| 794 | - } |
|
| 795 | - } |
|
| 796 | - $this->setUser(null); |
|
| 797 | - $this->setLoginName(null); |
|
| 798 | - $this->setToken(null); |
|
| 799 | - $this->unsetMagicInCookie(); |
|
| 800 | - $this->session->clear(); |
|
| 801 | - $this->manager->emit('\OC\User', 'postLogout'); |
|
| 802 | - } |
|
| 803 | - |
|
| 804 | - /** |
|
| 805 | - * Set cookie value to use in next page load |
|
| 806 | - * |
|
| 807 | - * @param string $username username to be set |
|
| 808 | - * @param string $token |
|
| 809 | - */ |
|
| 810 | - public function setMagicInCookie($username, $token) { |
|
| 811 | - $secureCookie = OC::$server->getRequest()->getServerProtocol() === 'https'; |
|
| 812 | - $webRoot = \OC::$WEBROOT; |
|
| 813 | - if ($webRoot === '') { |
|
| 814 | - $webRoot = '/'; |
|
| 815 | - } |
|
| 816 | - |
|
| 817 | - $expires = $this->timeFacory->getTime() + $this->config->getSystemValue('remember_login_cookie_lifetime', 60 * 60 * 24 * 15); |
|
| 818 | - setcookie('nc_username', $username, $expires, $webRoot, '', $secureCookie, true); |
|
| 819 | - setcookie('nc_token', $token, $expires, $webRoot, '', $secureCookie, true); |
|
| 820 | - try { |
|
| 821 | - setcookie('nc_session_id', $this->session->getId(), $expires, $webRoot, '', $secureCookie, true); |
|
| 822 | - } catch (SessionNotAvailableException $ex) { |
|
| 823 | - // ignore |
|
| 824 | - } |
|
| 825 | - } |
|
| 826 | - |
|
| 827 | - /** |
|
| 828 | - * Remove cookie for "remember username" |
|
| 829 | - */ |
|
| 830 | - public function unsetMagicInCookie() { |
|
| 831 | - //TODO: DI for cookies and IRequest |
|
| 832 | - $secureCookie = OC::$server->getRequest()->getServerProtocol() === 'https'; |
|
| 833 | - |
|
| 834 | - unset($_COOKIE['nc_username']); //TODO: DI |
|
| 835 | - unset($_COOKIE['nc_token']); |
|
| 836 | - unset($_COOKIE['nc_session_id']); |
|
| 837 | - setcookie('nc_username', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT, '', $secureCookie, true); |
|
| 838 | - setcookie('nc_token', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT, '', $secureCookie, true); |
|
| 839 | - setcookie('nc_session_id', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT, '', $secureCookie, true); |
|
| 840 | - // old cookies might be stored under /webroot/ instead of /webroot |
|
| 841 | - // and Firefox doesn't like it! |
|
| 842 | - setcookie('nc_username', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT . '/', '', $secureCookie, true); |
|
| 843 | - setcookie('nc_token', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT . '/', '', $secureCookie, true); |
|
| 844 | - setcookie('nc_session_id', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT . '/', '', $secureCookie, true); |
|
| 845 | - } |
|
| 846 | - |
|
| 847 | - /** |
|
| 848 | - * Update password of the browser session token if there is one |
|
| 849 | - * |
|
| 850 | - * @param string $password |
|
| 851 | - */ |
|
| 852 | - public function updateSessionTokenPassword($password) { |
|
| 853 | - try { |
|
| 854 | - $sessionId = $this->session->getId(); |
|
| 855 | - $token = $this->tokenProvider->getToken($sessionId); |
|
| 856 | - $this->tokenProvider->setPassword($token, $sessionId, $password); |
|
| 857 | - } catch (SessionNotAvailableException $ex) { |
|
| 858 | - // Nothing to do |
|
| 859 | - } catch (InvalidTokenException $ex) { |
|
| 860 | - // Nothing to do |
|
| 861 | - } |
|
| 862 | - } |
|
| 80 | + /** @var IUserManager $manager */ |
|
| 81 | + private $manager; |
|
| 82 | + |
|
| 83 | + /** @var ISession $session */ |
|
| 84 | + private $session; |
|
| 85 | + |
|
| 86 | + /** @var ITimeFactory */ |
|
| 87 | + private $timeFacory; |
|
| 88 | + |
|
| 89 | + /** @var IProvider */ |
|
| 90 | + private $tokenProvider; |
|
| 91 | + |
|
| 92 | + /** @var IConfig */ |
|
| 93 | + private $config; |
|
| 94 | + |
|
| 95 | + /** @var User $activeUser */ |
|
| 96 | + protected $activeUser; |
|
| 97 | + |
|
| 98 | + /** @var ISecureRandom */ |
|
| 99 | + private $random; |
|
| 100 | + |
|
| 101 | + /** |
|
| 102 | + * @param IUserManager $manager |
|
| 103 | + * @param ISession $session |
|
| 104 | + * @param ITimeFactory $timeFacory |
|
| 105 | + * @param IProvider $tokenProvider |
|
| 106 | + * @param IConfig $config |
|
| 107 | + * @param ISecureRandom $random |
|
| 108 | + */ |
|
| 109 | + public function __construct(IUserManager $manager, |
|
| 110 | + ISession $session, |
|
| 111 | + ITimeFactory $timeFacory, |
|
| 112 | + $tokenProvider, |
|
| 113 | + IConfig $config, |
|
| 114 | + ISecureRandom $random) { |
|
| 115 | + $this->manager = $manager; |
|
| 116 | + $this->session = $session; |
|
| 117 | + $this->timeFacory = $timeFacory; |
|
| 118 | + $this->tokenProvider = $tokenProvider; |
|
| 119 | + $this->config = $config; |
|
| 120 | + $this->random = $random; |
|
| 121 | + } |
|
| 122 | + |
|
| 123 | + /** |
|
| 124 | + * @param IProvider $provider |
|
| 125 | + */ |
|
| 126 | + public function setTokenProvider(IProvider $provider) { |
|
| 127 | + $this->tokenProvider = $provider; |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + /** |
|
| 131 | + * @param string $scope |
|
| 132 | + * @param string $method |
|
| 133 | + * @param callable $callback |
|
| 134 | + */ |
|
| 135 | + public function listen($scope, $method, callable $callback) { |
|
| 136 | + $this->manager->listen($scope, $method, $callback); |
|
| 137 | + } |
|
| 138 | + |
|
| 139 | + /** |
|
| 140 | + * @param string $scope optional |
|
| 141 | + * @param string $method optional |
|
| 142 | + * @param callable $callback optional |
|
| 143 | + */ |
|
| 144 | + public function removeListener($scope = null, $method = null, callable $callback = null) { |
|
| 145 | + $this->manager->removeListener($scope, $method, $callback); |
|
| 146 | + } |
|
| 147 | + |
|
| 148 | + /** |
|
| 149 | + * get the manager object |
|
| 150 | + * |
|
| 151 | + * @return Manager |
|
| 152 | + */ |
|
| 153 | + public function getManager() { |
|
| 154 | + return $this->manager; |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + /** |
|
| 158 | + * get the session object |
|
| 159 | + * |
|
| 160 | + * @return ISession |
|
| 161 | + */ |
|
| 162 | + public function getSession() { |
|
| 163 | + return $this->session; |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + /** |
|
| 167 | + * set the session object |
|
| 168 | + * |
|
| 169 | + * @param ISession $session |
|
| 170 | + */ |
|
| 171 | + public function setSession(ISession $session) { |
|
| 172 | + if ($this->session instanceof ISession) { |
|
| 173 | + $this->session->close(); |
|
| 174 | + } |
|
| 175 | + $this->session = $session; |
|
| 176 | + $this->activeUser = null; |
|
| 177 | + } |
|
| 178 | + |
|
| 179 | + /** |
|
| 180 | + * set the currently active user |
|
| 181 | + * |
|
| 182 | + * @param IUser|null $user |
|
| 183 | + */ |
|
| 184 | + public function setUser($user) { |
|
| 185 | + if (is_null($user)) { |
|
| 186 | + $this->session->remove('user_id'); |
|
| 187 | + } else { |
|
| 188 | + $this->session->set('user_id', $user->getUID()); |
|
| 189 | + } |
|
| 190 | + $this->activeUser = $user; |
|
| 191 | + } |
|
| 192 | + |
|
| 193 | + /** |
|
| 194 | + * get the current active user |
|
| 195 | + * |
|
| 196 | + * @return IUser|null Current user, otherwise null |
|
| 197 | + */ |
|
| 198 | + public function getUser() { |
|
| 199 | + // FIXME: This is a quick'n dirty work-around for the incognito mode as |
|
| 200 | + // described at https://github.com/owncloud/core/pull/12912#issuecomment-67391155 |
|
| 201 | + if (OC_User::isIncognitoMode()) { |
|
| 202 | + return null; |
|
| 203 | + } |
|
| 204 | + if (is_null($this->activeUser)) { |
|
| 205 | + $uid = $this->session->get('user_id'); |
|
| 206 | + if (is_null($uid)) { |
|
| 207 | + return null; |
|
| 208 | + } |
|
| 209 | + $this->activeUser = $this->manager->get($uid); |
|
| 210 | + if (is_null($this->activeUser)) { |
|
| 211 | + return null; |
|
| 212 | + } |
|
| 213 | + $this->validateSession(); |
|
| 214 | + } |
|
| 215 | + return $this->activeUser; |
|
| 216 | + } |
|
| 217 | + |
|
| 218 | + /** |
|
| 219 | + * Validate whether the current session is valid |
|
| 220 | + * |
|
| 221 | + * - For token-authenticated clients, the token validity is checked |
|
| 222 | + * - For browsers, the session token validity is checked |
|
| 223 | + */ |
|
| 224 | + protected function validateSession() { |
|
| 225 | + $token = null; |
|
| 226 | + $appPassword = $this->session->get('app_password'); |
|
| 227 | + |
|
| 228 | + if (is_null($appPassword)) { |
|
| 229 | + try { |
|
| 230 | + $token = $this->session->getId(); |
|
| 231 | + } catch (SessionNotAvailableException $ex) { |
|
| 232 | + return; |
|
| 233 | + } |
|
| 234 | + } else { |
|
| 235 | + $token = $appPassword; |
|
| 236 | + } |
|
| 237 | + |
|
| 238 | + if (!$this->validateToken($token)) { |
|
| 239 | + // Session was invalidated |
|
| 240 | + $this->logout(); |
|
| 241 | + } |
|
| 242 | + } |
|
| 243 | + |
|
| 244 | + /** |
|
| 245 | + * Checks whether the user is logged in |
|
| 246 | + * |
|
| 247 | + * @return bool if logged in |
|
| 248 | + */ |
|
| 249 | + public function isLoggedIn() { |
|
| 250 | + $user = $this->getUser(); |
|
| 251 | + if (is_null($user)) { |
|
| 252 | + return false; |
|
| 253 | + } |
|
| 254 | + |
|
| 255 | + return $user->isEnabled(); |
|
| 256 | + } |
|
| 257 | + |
|
| 258 | + /** |
|
| 259 | + * set the login name |
|
| 260 | + * |
|
| 261 | + * @param string|null $loginName for the logged in user |
|
| 262 | + */ |
|
| 263 | + public function setLoginName($loginName) { |
|
| 264 | + if (is_null($loginName)) { |
|
| 265 | + $this->session->remove('loginname'); |
|
| 266 | + } else { |
|
| 267 | + $this->session->set('loginname', $loginName); |
|
| 268 | + } |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + /** |
|
| 272 | + * get the login name of the current user |
|
| 273 | + * |
|
| 274 | + * @return string |
|
| 275 | + */ |
|
| 276 | + public function getLoginName() { |
|
| 277 | + if ($this->activeUser) { |
|
| 278 | + return $this->session->get('loginname'); |
|
| 279 | + } else { |
|
| 280 | + $uid = $this->session->get('user_id'); |
|
| 281 | + if ($uid) { |
|
| 282 | + $this->activeUser = $this->manager->get($uid); |
|
| 283 | + return $this->session->get('loginname'); |
|
| 284 | + } else { |
|
| 285 | + return null; |
|
| 286 | + } |
|
| 287 | + } |
|
| 288 | + } |
|
| 289 | + |
|
| 290 | + /** |
|
| 291 | + * set the token id |
|
| 292 | + * |
|
| 293 | + * @param int|null $token that was used to log in |
|
| 294 | + */ |
|
| 295 | + protected function setToken($token) { |
|
| 296 | + if ($token === null) { |
|
| 297 | + $this->session->remove('token-id'); |
|
| 298 | + } else { |
|
| 299 | + $this->session->set('token-id', $token); |
|
| 300 | + } |
|
| 301 | + } |
|
| 302 | + |
|
| 303 | + /** |
|
| 304 | + * try to log in with the provided credentials |
|
| 305 | + * |
|
| 306 | + * @param string $uid |
|
| 307 | + * @param string $password |
|
| 308 | + * @return boolean|null |
|
| 309 | + * @throws LoginException |
|
| 310 | + */ |
|
| 311 | + public function login($uid, $password) { |
|
| 312 | + $this->session->regenerateId(); |
|
| 313 | + if ($this->validateToken($password, $uid)) { |
|
| 314 | + return $this->loginWithToken($password); |
|
| 315 | + } |
|
| 316 | + return $this->loginWithPassword($uid, $password); |
|
| 317 | + } |
|
| 318 | + |
|
| 319 | + /** |
|
| 320 | + * Tries to log in a client |
|
| 321 | + * |
|
| 322 | + * Checks token auth enforced |
|
| 323 | + * Checks 2FA enabled |
|
| 324 | + * |
|
| 325 | + * @param string $user |
|
| 326 | + * @param string $password |
|
| 327 | + * @param IRequest $request |
|
| 328 | + * @param OC\Security\Bruteforce\Throttler $throttler |
|
| 329 | + * @throws LoginException |
|
| 330 | + * @throws PasswordLoginForbiddenException |
|
| 331 | + * @return boolean |
|
| 332 | + */ |
|
| 333 | + public function logClientIn($user, |
|
| 334 | + $password, |
|
| 335 | + IRequest $request, |
|
| 336 | + OC\Security\Bruteforce\Throttler $throttler) { |
|
| 337 | + $currentDelay = $throttler->sleepDelay($request->getRemoteAddress(), 'login'); |
|
| 338 | + |
|
| 339 | + if ($this->manager instanceof PublicEmitter) { |
|
| 340 | + $this->manager->emit('\OC\User', 'preLogin', array($user, $password)); |
|
| 341 | + } |
|
| 342 | + |
|
| 343 | + $isTokenPassword = $this->isTokenPassword($password); |
|
| 344 | + if (!$isTokenPassword && $this->isTokenAuthEnforced()) { |
|
| 345 | + throw new PasswordLoginForbiddenException(); |
|
| 346 | + } |
|
| 347 | + if (!$isTokenPassword && $this->isTwoFactorEnforced($user)) { |
|
| 348 | + throw new PasswordLoginForbiddenException(); |
|
| 349 | + } |
|
| 350 | + if (!$this->login($user, $password) ) { |
|
| 351 | + $users = $this->manager->getByEmail($user); |
|
| 352 | + if (count($users) === 1) { |
|
| 353 | + return $this->login($users[0]->getUID(), $password); |
|
| 354 | + } |
|
| 355 | + |
|
| 356 | + $throttler->registerAttempt('login', $request->getRemoteAddress(), ['uid' => $user]); |
|
| 357 | + if($currentDelay === 0) { |
|
| 358 | + $throttler->sleepDelay($request->getRemoteAddress(), 'login'); |
|
| 359 | + } |
|
| 360 | + return false; |
|
| 361 | + } |
|
| 362 | + |
|
| 363 | + if ($isTokenPassword) { |
|
| 364 | + $this->session->set('app_password', $password); |
|
| 365 | + } else if($this->supportsCookies($request)) { |
|
| 366 | + // Password login, but cookies supported -> create (browser) session token |
|
| 367 | + $this->createSessionToken($request, $this->getUser()->getUID(), $user, $password); |
|
| 368 | + } |
|
| 369 | + |
|
| 370 | + return true; |
|
| 371 | + } |
|
| 372 | + |
|
| 373 | + protected function supportsCookies(IRequest $request) { |
|
| 374 | + if (!is_null($request->getCookie('cookie_test'))) { |
|
| 375 | + return true; |
|
| 376 | + } |
|
| 377 | + setcookie('cookie_test', 'test', $this->timeFacory->getTime() + 3600); |
|
| 378 | + return false; |
|
| 379 | + } |
|
| 380 | + |
|
| 381 | + private function isTokenAuthEnforced() { |
|
| 382 | + return $this->config->getSystemValue('token_auth_enforced', false); |
|
| 383 | + } |
|
| 384 | + |
|
| 385 | + protected function isTwoFactorEnforced($username) { |
|
| 386 | + Util::emitHook( |
|
| 387 | + '\OCA\Files_Sharing\API\Server2Server', |
|
| 388 | + 'preLoginNameUsedAsUserName', |
|
| 389 | + array('uid' => &$username) |
|
| 390 | + ); |
|
| 391 | + $user = $this->manager->get($username); |
|
| 392 | + if (is_null($user)) { |
|
| 393 | + $users = $this->manager->getByEmail($username); |
|
| 394 | + if (empty($users)) { |
|
| 395 | + return false; |
|
| 396 | + } |
|
| 397 | + if (count($users) !== 1) { |
|
| 398 | + return true; |
|
| 399 | + } |
|
| 400 | + $user = $users[0]; |
|
| 401 | + } |
|
| 402 | + // DI not possible due to cyclic dependencies :'-/ |
|
| 403 | + return OC::$server->getTwoFactorAuthManager()->isTwoFactorAuthenticated($user); |
|
| 404 | + } |
|
| 405 | + |
|
| 406 | + /** |
|
| 407 | + * Check if the given 'password' is actually a device token |
|
| 408 | + * |
|
| 409 | + * @param string $password |
|
| 410 | + * @return boolean |
|
| 411 | + */ |
|
| 412 | + public function isTokenPassword($password) { |
|
| 413 | + try { |
|
| 414 | + $this->tokenProvider->getToken($password); |
|
| 415 | + return true; |
|
| 416 | + } catch (InvalidTokenException $ex) { |
|
| 417 | + return false; |
|
| 418 | + } |
|
| 419 | + } |
|
| 420 | + |
|
| 421 | + protected function prepareUserLogin($firstTimeLogin) { |
|
| 422 | + // TODO: mock/inject/use non-static |
|
| 423 | + // Refresh the token |
|
| 424 | + \OC::$server->getCsrfTokenManager()->refreshToken(); |
|
| 425 | + //we need to pass the user name, which may differ from login name |
|
| 426 | + $user = $this->getUser()->getUID(); |
|
| 427 | + OC_Util::setupFS($user); |
|
| 428 | + |
|
| 429 | + if ($firstTimeLogin) { |
|
| 430 | + // TODO: lock necessary? |
|
| 431 | + //trigger creation of user home and /files folder |
|
| 432 | + $userFolder = \OC::$server->getUserFolder($user); |
|
| 433 | + |
|
| 434 | + // copy skeleton |
|
| 435 | + \OC_Util::copySkeleton($user, $userFolder); |
|
| 436 | + |
|
| 437 | + // trigger any other initialization |
|
| 438 | + \OC::$server->getEventDispatcher()->dispatch(IUser::class . '::firstLogin', new GenericEvent($this->getUser())); |
|
| 439 | + } |
|
| 440 | + } |
|
| 441 | + |
|
| 442 | + /** |
|
| 443 | + * Tries to login the user with HTTP Basic Authentication |
|
| 444 | + * |
|
| 445 | + * @todo do not allow basic auth if the user is 2FA enforced |
|
| 446 | + * @param IRequest $request |
|
| 447 | + * @param OC\Security\Bruteforce\Throttler $throttler |
|
| 448 | + * @return boolean if the login was successful |
|
| 449 | + */ |
|
| 450 | + public function tryBasicAuthLogin(IRequest $request, |
|
| 451 | + OC\Security\Bruteforce\Throttler $throttler) { |
|
| 452 | + if (!empty($request->server['PHP_AUTH_USER']) && !empty($request->server['PHP_AUTH_PW'])) { |
|
| 453 | + try { |
|
| 454 | + if ($this->logClientIn($request->server['PHP_AUTH_USER'], $request->server['PHP_AUTH_PW'], $request, $throttler)) { |
|
| 455 | + /** |
|
| 456 | + * Add DAV authenticated. This should in an ideal world not be |
|
| 457 | + * necessary but the iOS App reads cookies from anywhere instead |
|
| 458 | + * only the DAV endpoint. |
|
| 459 | + * This makes sure that the cookies will be valid for the whole scope |
|
| 460 | + * @see https://github.com/owncloud/core/issues/22893 |
|
| 461 | + */ |
|
| 462 | + $this->session->set( |
|
| 463 | + Auth::DAV_AUTHENTICATED, $this->getUser()->getUID() |
|
| 464 | + ); |
|
| 465 | + |
|
| 466 | + // Set the last-password-confirm session to make the sudo mode work |
|
| 467 | + $this->session->set('last-password-confirm', $this->timeFacory->getTime()); |
|
| 468 | + |
|
| 469 | + return true; |
|
| 470 | + } |
|
| 471 | + } catch (PasswordLoginForbiddenException $ex) { |
|
| 472 | + // Nothing to do |
|
| 473 | + } |
|
| 474 | + } |
|
| 475 | + return false; |
|
| 476 | + } |
|
| 477 | + |
|
| 478 | + /** |
|
| 479 | + * Log an user in via login name and password |
|
| 480 | + * |
|
| 481 | + * @param string $uid |
|
| 482 | + * @param string $password |
|
| 483 | + * @return boolean |
|
| 484 | + * @throws LoginException if an app canceld the login process or the user is not enabled |
|
| 485 | + */ |
|
| 486 | + private function loginWithPassword($uid, $password) { |
|
| 487 | + $user = $this->manager->checkPassword($uid, $password); |
|
| 488 | + if ($user === false) { |
|
| 489 | + // Password check failed |
|
| 490 | + return false; |
|
| 491 | + } |
|
| 492 | + |
|
| 493 | + if ($user->isEnabled()) { |
|
| 494 | + $this->setUser($user); |
|
| 495 | + $this->setLoginName($uid); |
|
| 496 | + $this->setToken(null); |
|
| 497 | + $firstTimeLogin = $user->updateLastLoginTimestamp(); |
|
| 498 | + $this->manager->emit('\OC\User', 'postLogin', [$user, $password]); |
|
| 499 | + if ($this->isLoggedIn()) { |
|
| 500 | + $this->prepareUserLogin($firstTimeLogin); |
|
| 501 | + return true; |
|
| 502 | + } else { |
|
| 503 | + // injecting l10n does not work - there is a circular dependency between session and \OCP\L10N\IFactory |
|
| 504 | + $message = \OC::$server->getL10N('lib')->t('Login canceled by app'); |
|
| 505 | + throw new LoginException($message); |
|
| 506 | + } |
|
| 507 | + } else { |
|
| 508 | + // injecting l10n does not work - there is a circular dependency between session and \OCP\L10N\IFactory |
|
| 509 | + $message = \OC::$server->getL10N('lib')->t('User disabled'); |
|
| 510 | + throw new LoginException($message); |
|
| 511 | + } |
|
| 512 | + } |
|
| 513 | + |
|
| 514 | + /** |
|
| 515 | + * Log an user in with a given token (id) |
|
| 516 | + * |
|
| 517 | + * @param string $token |
|
| 518 | + * @return boolean |
|
| 519 | + * @throws LoginException if an app canceled the login process or the user is not enabled |
|
| 520 | + */ |
|
| 521 | + private function loginWithToken($token) { |
|
| 522 | + try { |
|
| 523 | + $dbToken = $this->tokenProvider->getToken($token); |
|
| 524 | + } catch (InvalidTokenException $ex) { |
|
| 525 | + return false; |
|
| 526 | + } |
|
| 527 | + $uid = $dbToken->getUID(); |
|
| 528 | + |
|
| 529 | + // When logging in with token, the password must be decrypted first before passing to login hook |
|
| 530 | + $password = ''; |
|
| 531 | + try { |
|
| 532 | + $password = $this->tokenProvider->getPassword($dbToken, $token); |
|
| 533 | + } catch (PasswordlessTokenException $ex) { |
|
| 534 | + // Ignore and use empty string instead |
|
| 535 | + } |
|
| 536 | + |
|
| 537 | + $user = $this->manager->get($uid); |
|
| 538 | + if (is_null($user)) { |
|
| 539 | + // user does not exist |
|
| 540 | + return false; |
|
| 541 | + } |
|
| 542 | + if (!$user->isEnabled()) { |
|
| 543 | + // disabled users can not log in |
|
| 544 | + // injecting l10n does not work - there is a circular dependency between session and \OCP\L10N\IFactory |
|
| 545 | + $message = \OC::$server->getL10N('lib')->t('User disabled'); |
|
| 546 | + throw new LoginException($message); |
|
| 547 | + } |
|
| 548 | + |
|
| 549 | + //login |
|
| 550 | + $this->setUser($user); |
|
| 551 | + $this->setLoginName($dbToken->getLoginName()); |
|
| 552 | + $this->setToken($dbToken->getId()); |
|
| 553 | + \OC::$server->getLockdownManager()->setToken($dbToken); |
|
| 554 | + $this->manager->emit('\OC\User', 'postLogin', array($user, $password)); |
|
| 555 | + |
|
| 556 | + if ($this->isLoggedIn()) { |
|
| 557 | + $this->prepareUserLogin(false); // token login cant be the first |
|
| 558 | + } else { |
|
| 559 | + // injecting l10n does not work - there is a circular dependency between session and \OCP\L10N\IFactory |
|
| 560 | + $message = \OC::$server->getL10N('lib')->t('Login canceled by app'); |
|
| 561 | + throw new LoginException($message); |
|
| 562 | + } |
|
| 563 | + |
|
| 564 | + return true; |
|
| 565 | + } |
|
| 566 | + |
|
| 567 | + /** |
|
| 568 | + * Create a new session token for the given user credentials |
|
| 569 | + * |
|
| 570 | + * @param IRequest $request |
|
| 571 | + * @param string $uid user UID |
|
| 572 | + * @param string $loginName login name |
|
| 573 | + * @param string $password |
|
| 574 | + * @param int $remember |
|
| 575 | + * @return boolean |
|
| 576 | + */ |
|
| 577 | + public function createSessionToken(IRequest $request, $uid, $loginName, $password = null, $remember = IToken::DO_NOT_REMEMBER) { |
|
| 578 | + if (is_null($this->manager->get($uid))) { |
|
| 579 | + // User does not exist |
|
| 580 | + return false; |
|
| 581 | + } |
|
| 582 | + $name = isset($request->server['HTTP_USER_AGENT']) ? $request->server['HTTP_USER_AGENT'] : 'unknown browser'; |
|
| 583 | + try { |
|
| 584 | + $sessionId = $this->session->getId(); |
|
| 585 | + $pwd = $this->getPassword($password); |
|
| 586 | + $this->tokenProvider->generateToken($sessionId, $uid, $loginName, $pwd, $name, IToken::TEMPORARY_TOKEN, $remember); |
|
| 587 | + return true; |
|
| 588 | + } catch (SessionNotAvailableException $ex) { |
|
| 589 | + // This can happen with OCC, where a memory session is used |
|
| 590 | + // if a memory session is used, we shouldn't create a session token anyway |
|
| 591 | + return false; |
|
| 592 | + } |
|
| 593 | + } |
|
| 594 | + |
|
| 595 | + /** |
|
| 596 | + * Checks if the given password is a token. |
|
| 597 | + * If yes, the password is extracted from the token. |
|
| 598 | + * If no, the same password is returned. |
|
| 599 | + * |
|
| 600 | + * @param string $password either the login password or a device token |
|
| 601 | + * @return string|null the password or null if none was set in the token |
|
| 602 | + */ |
|
| 603 | + private function getPassword($password) { |
|
| 604 | + if (is_null($password)) { |
|
| 605 | + // This is surely no token ;-) |
|
| 606 | + return null; |
|
| 607 | + } |
|
| 608 | + try { |
|
| 609 | + $token = $this->tokenProvider->getToken($password); |
|
| 610 | + try { |
|
| 611 | + return $this->tokenProvider->getPassword($token, $password); |
|
| 612 | + } catch (PasswordlessTokenException $ex) { |
|
| 613 | + return null; |
|
| 614 | + } |
|
| 615 | + } catch (InvalidTokenException $ex) { |
|
| 616 | + return $password; |
|
| 617 | + } |
|
| 618 | + } |
|
| 619 | + |
|
| 620 | + /** |
|
| 621 | + * @param IToken $dbToken |
|
| 622 | + * @param string $token |
|
| 623 | + * @return boolean |
|
| 624 | + */ |
|
| 625 | + private function checkTokenCredentials(IToken $dbToken, $token) { |
|
| 626 | + // Check whether login credentials are still valid and the user was not disabled |
|
| 627 | + // This check is performed each 5 minutes |
|
| 628 | + $lastCheck = $dbToken->getLastCheck() ? : 0; |
|
| 629 | + $now = $this->timeFacory->getTime(); |
|
| 630 | + if ($lastCheck > ($now - 60 * 5)) { |
|
| 631 | + // Checked performed recently, nothing to do now |
|
| 632 | + return true; |
|
| 633 | + } |
|
| 634 | + |
|
| 635 | + try { |
|
| 636 | + $pwd = $this->tokenProvider->getPassword($dbToken, $token); |
|
| 637 | + } catch (InvalidTokenException $ex) { |
|
| 638 | + // An invalid token password was used -> log user out |
|
| 639 | + return false; |
|
| 640 | + } catch (PasswordlessTokenException $ex) { |
|
| 641 | + // Token has no password |
|
| 642 | + |
|
| 643 | + if (!is_null($this->activeUser) && !$this->activeUser->isEnabled()) { |
|
| 644 | + $this->tokenProvider->invalidateToken($token); |
|
| 645 | + return false; |
|
| 646 | + } |
|
| 647 | + |
|
| 648 | + $dbToken->setLastCheck($now); |
|
| 649 | + return true; |
|
| 650 | + } |
|
| 651 | + |
|
| 652 | + if ($this->manager->checkPassword($dbToken->getLoginName(), $pwd) === false |
|
| 653 | + || (!is_null($this->activeUser) && !$this->activeUser->isEnabled())) { |
|
| 654 | + $this->tokenProvider->invalidateToken($token); |
|
| 655 | + // Password has changed or user was disabled -> log user out |
|
| 656 | + return false; |
|
| 657 | + } |
|
| 658 | + $dbToken->setLastCheck($now); |
|
| 659 | + return true; |
|
| 660 | + } |
|
| 661 | + |
|
| 662 | + /** |
|
| 663 | + * Check if the given token exists and performs password/user-enabled checks |
|
| 664 | + * |
|
| 665 | + * Invalidates the token if checks fail |
|
| 666 | + * |
|
| 667 | + * @param string $token |
|
| 668 | + * @param string $user login name |
|
| 669 | + * @return boolean |
|
| 670 | + */ |
|
| 671 | + private function validateToken($token, $user = null) { |
|
| 672 | + try { |
|
| 673 | + $dbToken = $this->tokenProvider->getToken($token); |
|
| 674 | + } catch (InvalidTokenException $ex) { |
|
| 675 | + return false; |
|
| 676 | + } |
|
| 677 | + |
|
| 678 | + // Check if login names match |
|
| 679 | + if (!is_null($user) && $dbToken->getLoginName() !== $user) { |
|
| 680 | + // TODO: this makes it imposssible to use different login names on browser and client |
|
| 681 | + // e.g. login by e-mail '[email protected]' on browser for generating the token will not |
|
| 682 | + // allow to use the client token with the login name 'user'. |
|
| 683 | + return false; |
|
| 684 | + } |
|
| 685 | + |
|
| 686 | + if (!$this->checkTokenCredentials($dbToken, $token)) { |
|
| 687 | + return false; |
|
| 688 | + } |
|
| 689 | + |
|
| 690 | + $this->tokenProvider->updateTokenActivity($dbToken); |
|
| 691 | + |
|
| 692 | + return true; |
|
| 693 | + } |
|
| 694 | + |
|
| 695 | + /** |
|
| 696 | + * Tries to login the user with auth token header |
|
| 697 | + * |
|
| 698 | + * @param IRequest $request |
|
| 699 | + * @todo check remember me cookie |
|
| 700 | + * @return boolean |
|
| 701 | + */ |
|
| 702 | + public function tryTokenLogin(IRequest $request) { |
|
| 703 | + $authHeader = $request->getHeader('Authorization'); |
|
| 704 | + if (strpos($authHeader, 'token ') === false) { |
|
| 705 | + // No auth header, let's try session id |
|
| 706 | + try { |
|
| 707 | + $token = $this->session->getId(); |
|
| 708 | + } catch (SessionNotAvailableException $ex) { |
|
| 709 | + return false; |
|
| 710 | + } |
|
| 711 | + } else { |
|
| 712 | + $token = substr($authHeader, 6); |
|
| 713 | + } |
|
| 714 | + |
|
| 715 | + if (!$this->loginWithToken($token)) { |
|
| 716 | + return false; |
|
| 717 | + } |
|
| 718 | + if(!$this->validateToken($token)) { |
|
| 719 | + return false; |
|
| 720 | + } |
|
| 721 | + return true; |
|
| 722 | + } |
|
| 723 | + |
|
| 724 | + /** |
|
| 725 | + * perform login using the magic cookie (remember login) |
|
| 726 | + * |
|
| 727 | + * @param string $uid the username |
|
| 728 | + * @param string $currentToken |
|
| 729 | + * @param string $oldSessionId |
|
| 730 | + * @return bool |
|
| 731 | + */ |
|
| 732 | + public function loginWithCookie($uid, $currentToken, $oldSessionId) { |
|
| 733 | + $this->session->regenerateId(); |
|
| 734 | + $this->manager->emit('\OC\User', 'preRememberedLogin', array($uid)); |
|
| 735 | + $user = $this->manager->get($uid); |
|
| 736 | + if (is_null($user)) { |
|
| 737 | + // user does not exist |
|
| 738 | + return false; |
|
| 739 | + } |
|
| 740 | + |
|
| 741 | + // get stored tokens |
|
| 742 | + $tokens = $this->config->getUserKeys($uid, 'login_token'); |
|
| 743 | + // test cookies token against stored tokens |
|
| 744 | + if (!in_array($currentToken, $tokens, true)) { |
|
| 745 | + return false; |
|
| 746 | + } |
|
| 747 | + // replace successfully used token with a new one |
|
| 748 | + $this->config->deleteUserValue($uid, 'login_token', $currentToken); |
|
| 749 | + $newToken = $this->random->generate(32); |
|
| 750 | + $this->config->setUserValue($uid, 'login_token', $newToken, $this->timeFacory->getTime()); |
|
| 751 | + |
|
| 752 | + try { |
|
| 753 | + $sessionId = $this->session->getId(); |
|
| 754 | + $this->tokenProvider->renewSessionToken($oldSessionId, $sessionId); |
|
| 755 | + } catch (SessionNotAvailableException $ex) { |
|
| 756 | + return false; |
|
| 757 | + } catch (InvalidTokenException $ex) { |
|
| 758 | + \OC::$server->getLogger()->warning('Renewing session token failed', ['app' => 'core']); |
|
| 759 | + return false; |
|
| 760 | + } |
|
| 761 | + |
|
| 762 | + $this->setMagicInCookie($user->getUID(), $newToken); |
|
| 763 | + $token = $this->tokenProvider->getToken($sessionId); |
|
| 764 | + |
|
| 765 | + //login |
|
| 766 | + $this->setUser($user); |
|
| 767 | + $this->setLoginName($token->getLoginName()); |
|
| 768 | + $this->setToken($token->getId()); |
|
| 769 | + $user->updateLastLoginTimestamp(); |
|
| 770 | + $this->manager->emit('\OC\User', 'postRememberedLogin', [$user]); |
|
| 771 | + return true; |
|
| 772 | + } |
|
| 773 | + |
|
| 774 | + /** |
|
| 775 | + * @param IUser $user |
|
| 776 | + */ |
|
| 777 | + public function createRememberMeToken(IUser $user) { |
|
| 778 | + $token = $this->random->generate(32); |
|
| 779 | + $this->config->setUserValue($user->getUID(), 'login_token', $token, $this->timeFacory->getTime()); |
|
| 780 | + $this->setMagicInCookie($user->getUID(), $token); |
|
| 781 | + } |
|
| 782 | + |
|
| 783 | + /** |
|
| 784 | + * logout the user from the session |
|
| 785 | + */ |
|
| 786 | + public function logout() { |
|
| 787 | + $this->manager->emit('\OC\User', 'logout'); |
|
| 788 | + $user = $this->getUser(); |
|
| 789 | + if (!is_null($user)) { |
|
| 790 | + try { |
|
| 791 | + $this->tokenProvider->invalidateToken($this->session->getId()); |
|
| 792 | + } catch (SessionNotAvailableException $ex) { |
|
| 793 | + |
|
| 794 | + } |
|
| 795 | + } |
|
| 796 | + $this->setUser(null); |
|
| 797 | + $this->setLoginName(null); |
|
| 798 | + $this->setToken(null); |
|
| 799 | + $this->unsetMagicInCookie(); |
|
| 800 | + $this->session->clear(); |
|
| 801 | + $this->manager->emit('\OC\User', 'postLogout'); |
|
| 802 | + } |
|
| 803 | + |
|
| 804 | + /** |
|
| 805 | + * Set cookie value to use in next page load |
|
| 806 | + * |
|
| 807 | + * @param string $username username to be set |
|
| 808 | + * @param string $token |
|
| 809 | + */ |
|
| 810 | + public function setMagicInCookie($username, $token) { |
|
| 811 | + $secureCookie = OC::$server->getRequest()->getServerProtocol() === 'https'; |
|
| 812 | + $webRoot = \OC::$WEBROOT; |
|
| 813 | + if ($webRoot === '') { |
|
| 814 | + $webRoot = '/'; |
|
| 815 | + } |
|
| 816 | + |
|
| 817 | + $expires = $this->timeFacory->getTime() + $this->config->getSystemValue('remember_login_cookie_lifetime', 60 * 60 * 24 * 15); |
|
| 818 | + setcookie('nc_username', $username, $expires, $webRoot, '', $secureCookie, true); |
|
| 819 | + setcookie('nc_token', $token, $expires, $webRoot, '', $secureCookie, true); |
|
| 820 | + try { |
|
| 821 | + setcookie('nc_session_id', $this->session->getId(), $expires, $webRoot, '', $secureCookie, true); |
|
| 822 | + } catch (SessionNotAvailableException $ex) { |
|
| 823 | + // ignore |
|
| 824 | + } |
|
| 825 | + } |
|
| 826 | + |
|
| 827 | + /** |
|
| 828 | + * Remove cookie for "remember username" |
|
| 829 | + */ |
|
| 830 | + public function unsetMagicInCookie() { |
|
| 831 | + //TODO: DI for cookies and IRequest |
|
| 832 | + $secureCookie = OC::$server->getRequest()->getServerProtocol() === 'https'; |
|
| 833 | + |
|
| 834 | + unset($_COOKIE['nc_username']); //TODO: DI |
|
| 835 | + unset($_COOKIE['nc_token']); |
|
| 836 | + unset($_COOKIE['nc_session_id']); |
|
| 837 | + setcookie('nc_username', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT, '', $secureCookie, true); |
|
| 838 | + setcookie('nc_token', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT, '', $secureCookie, true); |
|
| 839 | + setcookie('nc_session_id', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT, '', $secureCookie, true); |
|
| 840 | + // old cookies might be stored under /webroot/ instead of /webroot |
|
| 841 | + // and Firefox doesn't like it! |
|
| 842 | + setcookie('nc_username', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT . '/', '', $secureCookie, true); |
|
| 843 | + setcookie('nc_token', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT . '/', '', $secureCookie, true); |
|
| 844 | + setcookie('nc_session_id', '', $this->timeFacory->getTime() - 3600, OC::$WEBROOT . '/', '', $secureCookie, true); |
|
| 845 | + } |
|
| 846 | + |
|
| 847 | + /** |
|
| 848 | + * Update password of the browser session token if there is one |
|
| 849 | + * |
|
| 850 | + * @param string $password |
|
| 851 | + */ |
|
| 852 | + public function updateSessionTokenPassword($password) { |
|
| 853 | + try { |
|
| 854 | + $sessionId = $this->session->getId(); |
|
| 855 | + $token = $this->tokenProvider->getToken($sessionId); |
|
| 856 | + $this->tokenProvider->setPassword($token, $sessionId, $password); |
|
| 857 | + } catch (SessionNotAvailableException $ex) { |
|
| 858 | + // Nothing to do |
|
| 859 | + } catch (InvalidTokenException $ex) { |
|
| 860 | + // Nothing to do |
|
| 861 | + } |
|
| 862 | + } |
|
| 863 | 863 | |
| 864 | 864 | |
| 865 | 865 | } |
@@ -104,6 +104,10 @@ |
||
| 104 | 104 | } |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | + /** |
|
| 108 | + * @param string $href |
|
| 109 | + * @param string $path |
|
| 110 | + */ |
|
| 107 | 111 | public function getPropertyDefinitionsForScope($href, $path) { |
| 108 | 112 | // all valid scopes support the same schema |
| 109 | 113 | |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | /** @var Folder $folder $results */ |
| 156 | 156 | $results = $folder->search($query); |
| 157 | 157 | |
| 158 | - return array_map(function (Node $node) { |
|
| 158 | + return array_map(function(Node $node) { |
|
| 159 | 159 | if ($node instanceof Folder) { |
| 160 | 160 | return new SearchResult(new \OCA\DAV\Connector\Sabre\Directory($this->view, $node, $this->tree, $this->shareManager), $this->getHrefForNode($node)); |
| 161 | 161 | } else { |
@@ -169,8 +169,8 @@ discard block |
||
| 169 | 169 | * @return string |
| 170 | 170 | */ |
| 171 | 171 | private function getHrefForNode(Node $node) { |
| 172 | - $base = '/files/' . $this->user->getUID(); |
|
| 173 | - return $base . $this->view->getRelativePath($node->getPath()); |
|
| 172 | + $base = '/files/'.$this->user->getUID(); |
|
| 173 | + return $base.$this->view->getRelativePath($node->getPath()); |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | /** |
@@ -210,19 +210,19 @@ discard block |
||
| 210 | 210 | case Operator::OPERATION_LESS_THAN: |
| 211 | 211 | case Operator::OPERATION_IS_LIKE: |
| 212 | 212 | if (count($operator->arguments) !== 2) { |
| 213 | - throw new \InvalidArgumentException('Invalid number of arguments for ' . $trimmedType . ' operation'); |
|
| 213 | + throw new \InvalidArgumentException('Invalid number of arguments for '.$trimmedType.' operation'); |
|
| 214 | 214 | } |
| 215 | 215 | if (!is_string($operator->arguments[0])) { |
| 216 | - throw new \InvalidArgumentException('Invalid argument 1 for ' . $trimmedType . ' operation, expected property'); |
|
| 216 | + throw new \InvalidArgumentException('Invalid argument 1 for '.$trimmedType.' operation, expected property'); |
|
| 217 | 217 | } |
| 218 | 218 | if (!($operator->arguments[1] instanceof Literal)) { |
| 219 | - throw new \InvalidArgumentException('Invalid argument 2 for ' . $trimmedType . ' operation, expected literal'); |
|
| 219 | + throw new \InvalidArgumentException('Invalid argument 2 for '.$trimmedType.' operation, expected literal'); |
|
| 220 | 220 | } |
| 221 | 221 | return new SearchComparison($trimmedType, $this->mapPropertyNameToColumn($operator->arguments[0]), $this->castValue($operator->arguments[0], $operator->arguments[1]->value)); |
| 222 | 222 | case Operator::OPERATION_IS_COLLECTION: |
| 223 | 223 | return new SearchComparison('eq', 'mimetype', ICacheEntry::DIRECTORY_MIMETYPE); |
| 224 | 224 | default: |
| 225 | - throw new \InvalidArgumentException('Unsupported operation ' . $trimmedType. ' (' . $operator->type . ')'); |
|
| 225 | + throw new \InvalidArgumentException('Unsupported operation '.$trimmedType.' ('.$operator->type.')'); |
|
| 226 | 226 | } |
| 227 | 227 | } |
| 228 | 228 | |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | case TagsPlugin::TAGS_PROPERTYNAME: |
| 246 | 246 | return 'tagname'; |
| 247 | 247 | default: |
| 248 | - throw new \InvalidArgumentException('Unsupported property for search or order: ' . $propertyName); |
|
| 248 | + throw new \InvalidArgumentException('Unsupported property for search or order: '.$propertyName); |
|
| 249 | 249 | } |
| 250 | 250 | } |
| 251 | 251 | |
@@ -49,229 +49,229 @@ |
||
| 49 | 49 | use SearchDAV\XML\Order; |
| 50 | 50 | |
| 51 | 51 | class FileSearchBackend implements ISearchBackend { |
| 52 | - /** @var Tree */ |
|
| 53 | - private $tree; |
|
| 52 | + /** @var Tree */ |
|
| 53 | + private $tree; |
|
| 54 | 54 | |
| 55 | - /** @var IUser */ |
|
| 56 | - private $user; |
|
| 55 | + /** @var IUser */ |
|
| 56 | + private $user; |
|
| 57 | 57 | |
| 58 | - /** @var IRootFolder */ |
|
| 59 | - private $rootFolder; |
|
| 58 | + /** @var IRootFolder */ |
|
| 59 | + private $rootFolder; |
|
| 60 | 60 | |
| 61 | - /** @var IManager */ |
|
| 62 | - private $shareManager; |
|
| 61 | + /** @var IManager */ |
|
| 62 | + private $shareManager; |
|
| 63 | 63 | |
| 64 | - /** @var View */ |
|
| 65 | - private $view; |
|
| 64 | + /** @var View */ |
|
| 65 | + private $view; |
|
| 66 | 66 | |
| 67 | - /** |
|
| 68 | - * FileSearchBackend constructor. |
|
| 69 | - * |
|
| 70 | - * @param Tree $tree |
|
| 71 | - * @param IUser $user |
|
| 72 | - * @param IRootFolder $rootFolder |
|
| 73 | - * @param IManager $shareManager |
|
| 74 | - * @param View $view |
|
| 75 | - * @internal param IRootFolder $rootFolder |
|
| 76 | - */ |
|
| 77 | - public function __construct(Tree $tree, IUser $user, IRootFolder $rootFolder, IManager $shareManager, View $view) { |
|
| 78 | - $this->tree = $tree; |
|
| 79 | - $this->user = $user; |
|
| 80 | - $this->rootFolder = $rootFolder; |
|
| 81 | - $this->shareManager = $shareManager; |
|
| 82 | - $this->view = $view; |
|
| 83 | - } |
|
| 67 | + /** |
|
| 68 | + * FileSearchBackend constructor. |
|
| 69 | + * |
|
| 70 | + * @param Tree $tree |
|
| 71 | + * @param IUser $user |
|
| 72 | + * @param IRootFolder $rootFolder |
|
| 73 | + * @param IManager $shareManager |
|
| 74 | + * @param View $view |
|
| 75 | + * @internal param IRootFolder $rootFolder |
|
| 76 | + */ |
|
| 77 | + public function __construct(Tree $tree, IUser $user, IRootFolder $rootFolder, IManager $shareManager, View $view) { |
|
| 78 | + $this->tree = $tree; |
|
| 79 | + $this->user = $user; |
|
| 80 | + $this->rootFolder = $rootFolder; |
|
| 81 | + $this->shareManager = $shareManager; |
|
| 82 | + $this->view = $view; |
|
| 83 | + } |
|
| 84 | 84 | |
| 85 | - /** |
|
| 86 | - * Search endpoint will be remote.php/dav |
|
| 87 | - * |
|
| 88 | - * @return string |
|
| 89 | - */ |
|
| 90 | - public function getArbiterPath() { |
|
| 91 | - return ''; |
|
| 92 | - } |
|
| 85 | + /** |
|
| 86 | + * Search endpoint will be remote.php/dav |
|
| 87 | + * |
|
| 88 | + * @return string |
|
| 89 | + */ |
|
| 90 | + public function getArbiterPath() { |
|
| 91 | + return ''; |
|
| 92 | + } |
|
| 93 | 93 | |
| 94 | - public function isValidScope($href, $depth, $path) { |
|
| 95 | - // only allow scopes inside the dav server |
|
| 96 | - if (is_null($path)) { |
|
| 97 | - return false; |
|
| 98 | - } |
|
| 94 | + public function isValidScope($href, $depth, $path) { |
|
| 95 | + // only allow scopes inside the dav server |
|
| 96 | + if (is_null($path)) { |
|
| 97 | + return false; |
|
| 98 | + } |
|
| 99 | 99 | |
| 100 | - try { |
|
| 101 | - $node = $this->tree->getNodeForPath($path); |
|
| 102 | - return $node instanceof Directory; |
|
| 103 | - } catch (NotFound $e) { |
|
| 104 | - return false; |
|
| 105 | - } |
|
| 106 | - } |
|
| 100 | + try { |
|
| 101 | + $node = $this->tree->getNodeForPath($path); |
|
| 102 | + return $node instanceof Directory; |
|
| 103 | + } catch (NotFound $e) { |
|
| 104 | + return false; |
|
| 105 | + } |
|
| 106 | + } |
|
| 107 | 107 | |
| 108 | - public function getPropertyDefinitionsForScope($href, $path) { |
|
| 109 | - // all valid scopes support the same schema |
|
| 108 | + public function getPropertyDefinitionsForScope($href, $path) { |
|
| 109 | + // all valid scopes support the same schema |
|
| 110 | 110 | |
| 111 | - //todo dynamically load all propfind properties that are supported |
|
| 112 | - return [ |
|
| 113 | - // queryable properties |
|
| 114 | - new SearchPropertyDefinition('{DAV:}displayname', true, false, true), |
|
| 115 | - new SearchPropertyDefinition('{DAV:}getcontenttype', true, true, true), |
|
| 116 | - new SearchPropertyDefinition('{DAV:}getlastmodified', true, true, true, SearchPropertyDefinition::DATATYPE_DATETIME), |
|
| 117 | - new SearchPropertyDefinition(FilesPlugin::SIZE_PROPERTYNAME, true, true, true, SearchPropertyDefinition::DATATYPE_NONNEGATIVE_INTEGER), |
|
| 118 | - new SearchPropertyDefinition(TagsPlugin::FAVORITE_PROPERTYNAME, true, true, true, SearchPropertyDefinition::DATATYPE_BOOLEAN), |
|
| 111 | + //todo dynamically load all propfind properties that are supported |
|
| 112 | + return [ |
|
| 113 | + // queryable properties |
|
| 114 | + new SearchPropertyDefinition('{DAV:}displayname', true, false, true), |
|
| 115 | + new SearchPropertyDefinition('{DAV:}getcontenttype', true, true, true), |
|
| 116 | + new SearchPropertyDefinition('{DAV:}getlastmodified', true, true, true, SearchPropertyDefinition::DATATYPE_DATETIME), |
|
| 117 | + new SearchPropertyDefinition(FilesPlugin::SIZE_PROPERTYNAME, true, true, true, SearchPropertyDefinition::DATATYPE_NONNEGATIVE_INTEGER), |
|
| 118 | + new SearchPropertyDefinition(TagsPlugin::FAVORITE_PROPERTYNAME, true, true, true, SearchPropertyDefinition::DATATYPE_BOOLEAN), |
|
| 119 | 119 | |
| 120 | - // select only properties |
|
| 121 | - new SearchPropertyDefinition('{DAV:}resourcetype', false, true, false), |
|
| 122 | - new SearchPropertyDefinition('{DAV:}getcontentlength', false, true, false), |
|
| 123 | - new SearchPropertyDefinition(FilesPlugin::CHECKSUMS_PROPERTYNAME, false, true, false), |
|
| 124 | - new SearchPropertyDefinition(FilesPlugin::PERMISSIONS_PROPERTYNAME, false, true, false), |
|
| 125 | - new SearchPropertyDefinition(FilesPlugin::GETETAG_PROPERTYNAME, false, true, false), |
|
| 126 | - new SearchPropertyDefinition(FilesPlugin::OWNER_ID_PROPERTYNAME, false, true, false), |
|
| 127 | - new SearchPropertyDefinition(FilesPlugin::OWNER_DISPLAY_NAME_PROPERTYNAME, false, true, false), |
|
| 128 | - new SearchPropertyDefinition(FilesPlugin::DATA_FINGERPRINT_PROPERTYNAME, false, true, false), |
|
| 129 | - new SearchPropertyDefinition(FilesPlugin::HAS_PREVIEW_PROPERTYNAME, false, true, false, SearchPropertyDefinition::DATATYPE_BOOLEAN), |
|
| 130 | - new SearchPropertyDefinition(FilesPlugin::INTERNAL_FILEID_PROPERTYNAME, false, true, false, SearchPropertyDefinition::DATATYPE_NONNEGATIVE_INTEGER), |
|
| 131 | - new SearchPropertyDefinition(FilesPlugin::FILEID_PROPERTYNAME, false, true, false, SearchPropertyDefinition::DATATYPE_NONNEGATIVE_INTEGER), |
|
| 132 | - ]; |
|
| 133 | - } |
|
| 120 | + // select only properties |
|
| 121 | + new SearchPropertyDefinition('{DAV:}resourcetype', false, true, false), |
|
| 122 | + new SearchPropertyDefinition('{DAV:}getcontentlength', false, true, false), |
|
| 123 | + new SearchPropertyDefinition(FilesPlugin::CHECKSUMS_PROPERTYNAME, false, true, false), |
|
| 124 | + new SearchPropertyDefinition(FilesPlugin::PERMISSIONS_PROPERTYNAME, false, true, false), |
|
| 125 | + new SearchPropertyDefinition(FilesPlugin::GETETAG_PROPERTYNAME, false, true, false), |
|
| 126 | + new SearchPropertyDefinition(FilesPlugin::OWNER_ID_PROPERTYNAME, false, true, false), |
|
| 127 | + new SearchPropertyDefinition(FilesPlugin::OWNER_DISPLAY_NAME_PROPERTYNAME, false, true, false), |
|
| 128 | + new SearchPropertyDefinition(FilesPlugin::DATA_FINGERPRINT_PROPERTYNAME, false, true, false), |
|
| 129 | + new SearchPropertyDefinition(FilesPlugin::HAS_PREVIEW_PROPERTYNAME, false, true, false, SearchPropertyDefinition::DATATYPE_BOOLEAN), |
|
| 130 | + new SearchPropertyDefinition(FilesPlugin::INTERNAL_FILEID_PROPERTYNAME, false, true, false, SearchPropertyDefinition::DATATYPE_NONNEGATIVE_INTEGER), |
|
| 131 | + new SearchPropertyDefinition(FilesPlugin::FILEID_PROPERTYNAME, false, true, false, SearchPropertyDefinition::DATATYPE_NONNEGATIVE_INTEGER), |
|
| 132 | + ]; |
|
| 133 | + } |
|
| 134 | 134 | |
| 135 | - /** |
|
| 136 | - * @param BasicSearch $search |
|
| 137 | - * @return SearchResult[] |
|
| 138 | - */ |
|
| 139 | - public function search(BasicSearch $search) { |
|
| 140 | - if (count($search->from) !== 1) { |
|
| 141 | - throw new \InvalidArgumentException('Searching more than one folder is not supported'); |
|
| 142 | - } |
|
| 143 | - $query = $this->transformQuery($search); |
|
| 144 | - $scope = $search->from[0]; |
|
| 145 | - if ($scope->path === null) { |
|
| 146 | - throw new \InvalidArgumentException('Using uri\'s as scope is not supported, please use a path relative to the search arbiter instead'); |
|
| 147 | - } |
|
| 148 | - $node = $this->tree->getNodeForPath($scope->path); |
|
| 149 | - if (!$node instanceof Directory) { |
|
| 150 | - throw new \InvalidArgumentException('Search is only supported on directories'); |
|
| 151 | - } |
|
| 135 | + /** |
|
| 136 | + * @param BasicSearch $search |
|
| 137 | + * @return SearchResult[] |
|
| 138 | + */ |
|
| 139 | + public function search(BasicSearch $search) { |
|
| 140 | + if (count($search->from) !== 1) { |
|
| 141 | + throw new \InvalidArgumentException('Searching more than one folder is not supported'); |
|
| 142 | + } |
|
| 143 | + $query = $this->transformQuery($search); |
|
| 144 | + $scope = $search->from[0]; |
|
| 145 | + if ($scope->path === null) { |
|
| 146 | + throw new \InvalidArgumentException('Using uri\'s as scope is not supported, please use a path relative to the search arbiter instead'); |
|
| 147 | + } |
|
| 148 | + $node = $this->tree->getNodeForPath($scope->path); |
|
| 149 | + if (!$node instanceof Directory) { |
|
| 150 | + throw new \InvalidArgumentException('Search is only supported on directories'); |
|
| 151 | + } |
|
| 152 | 152 | |
| 153 | - $fileInfo = $node->getFileInfo(); |
|
| 154 | - $folder = $this->rootFolder->get($fileInfo->getPath()); |
|
| 155 | - /** @var Folder $folder $results */ |
|
| 156 | - $results = $folder->search($query); |
|
| 153 | + $fileInfo = $node->getFileInfo(); |
|
| 154 | + $folder = $this->rootFolder->get($fileInfo->getPath()); |
|
| 155 | + /** @var Folder $folder $results */ |
|
| 156 | + $results = $folder->search($query); |
|
| 157 | 157 | |
| 158 | - return array_map(function (Node $node) { |
|
| 159 | - if ($node instanceof Folder) { |
|
| 160 | - return new SearchResult(new \OCA\DAV\Connector\Sabre\Directory($this->view, $node, $this->tree, $this->shareManager), $this->getHrefForNode($node)); |
|
| 161 | - } else { |
|
| 162 | - return new SearchResult(new \OCA\DAV\Connector\Sabre\File($this->view, $node, $this->shareManager), $this->getHrefForNode($node)); |
|
| 163 | - } |
|
| 164 | - }, $results); |
|
| 165 | - } |
|
| 158 | + return array_map(function (Node $node) { |
|
| 159 | + if ($node instanceof Folder) { |
|
| 160 | + return new SearchResult(new \OCA\DAV\Connector\Sabre\Directory($this->view, $node, $this->tree, $this->shareManager), $this->getHrefForNode($node)); |
|
| 161 | + } else { |
|
| 162 | + return new SearchResult(new \OCA\DAV\Connector\Sabre\File($this->view, $node, $this->shareManager), $this->getHrefForNode($node)); |
|
| 163 | + } |
|
| 164 | + }, $results); |
|
| 165 | + } |
|
| 166 | 166 | |
| 167 | - /** |
|
| 168 | - * @param Node $node |
|
| 169 | - * @return string |
|
| 170 | - */ |
|
| 171 | - private function getHrefForNode(Node $node) { |
|
| 172 | - $base = '/files/' . $this->user->getUID(); |
|
| 173 | - return $base . $this->view->getRelativePath($node->getPath()); |
|
| 174 | - } |
|
| 167 | + /** |
|
| 168 | + * @param Node $node |
|
| 169 | + * @return string |
|
| 170 | + */ |
|
| 171 | + private function getHrefForNode(Node $node) { |
|
| 172 | + $base = '/files/' . $this->user->getUID(); |
|
| 173 | + return $base . $this->view->getRelativePath($node->getPath()); |
|
| 174 | + } |
|
| 175 | 175 | |
| 176 | - /** |
|
| 177 | - * @param BasicSearch $query |
|
| 178 | - * @return ISearchQuery |
|
| 179 | - */ |
|
| 180 | - private function transformQuery(BasicSearch $query) { |
|
| 181 | - // TODO offset, limit |
|
| 182 | - $orders = array_map([$this, 'mapSearchOrder'], $query->orderBy); |
|
| 183 | - return new SearchQuery($this->transformSearchOperation($query->where), 0, 0, $orders, $this->user); |
|
| 184 | - } |
|
| 176 | + /** |
|
| 177 | + * @param BasicSearch $query |
|
| 178 | + * @return ISearchQuery |
|
| 179 | + */ |
|
| 180 | + private function transformQuery(BasicSearch $query) { |
|
| 181 | + // TODO offset, limit |
|
| 182 | + $orders = array_map([$this, 'mapSearchOrder'], $query->orderBy); |
|
| 183 | + return new SearchQuery($this->transformSearchOperation($query->where), 0, 0, $orders, $this->user); |
|
| 184 | + } |
|
| 185 | 185 | |
| 186 | - /** |
|
| 187 | - * @param Order $order |
|
| 188 | - * @return ISearchOrder |
|
| 189 | - */ |
|
| 190 | - private function mapSearchOrder(Order $order) { |
|
| 191 | - return new SearchOrder($order->order === Order::ASC ? ISearchOrder::DIRECTION_ASCENDING : ISearchOrder::DIRECTION_DESCENDING, $this->mapPropertyNameToColumn($order->property)); |
|
| 192 | - } |
|
| 186 | + /** |
|
| 187 | + * @param Order $order |
|
| 188 | + * @return ISearchOrder |
|
| 189 | + */ |
|
| 190 | + private function mapSearchOrder(Order $order) { |
|
| 191 | + return new SearchOrder($order->order === Order::ASC ? ISearchOrder::DIRECTION_ASCENDING : ISearchOrder::DIRECTION_DESCENDING, $this->mapPropertyNameToColumn($order->property)); |
|
| 192 | + } |
|
| 193 | 193 | |
| 194 | - /** |
|
| 195 | - * @param Operator $operator |
|
| 196 | - * @return ISearchOperator |
|
| 197 | - */ |
|
| 198 | - private function transformSearchOperation(Operator $operator) { |
|
| 199 | - list(, $trimmedType) = explode('}', $operator->type); |
|
| 200 | - switch ($operator->type) { |
|
| 201 | - case Operator::OPERATION_AND: |
|
| 202 | - case Operator::OPERATION_OR: |
|
| 203 | - case Operator::OPERATION_NOT: |
|
| 204 | - $arguments = array_map([$this, 'transformSearchOperation'], $operator->arguments); |
|
| 205 | - return new SearchBinaryOperator($trimmedType, $arguments); |
|
| 206 | - case Operator::OPERATION_EQUAL: |
|
| 207 | - case Operator::OPERATION_GREATER_OR_EQUAL_THAN: |
|
| 208 | - case Operator::OPERATION_GREATER_THAN: |
|
| 209 | - case Operator::OPERATION_LESS_OR_EQUAL_THAN: |
|
| 210 | - case Operator::OPERATION_LESS_THAN: |
|
| 211 | - case Operator::OPERATION_IS_LIKE: |
|
| 212 | - if (count($operator->arguments) !== 2) { |
|
| 213 | - throw new \InvalidArgumentException('Invalid number of arguments for ' . $trimmedType . ' operation'); |
|
| 214 | - } |
|
| 215 | - if (!is_string($operator->arguments[0])) { |
|
| 216 | - throw new \InvalidArgumentException('Invalid argument 1 for ' . $trimmedType . ' operation, expected property'); |
|
| 217 | - } |
|
| 218 | - if (!($operator->arguments[1] instanceof Literal)) { |
|
| 219 | - throw new \InvalidArgumentException('Invalid argument 2 for ' . $trimmedType . ' operation, expected literal'); |
|
| 220 | - } |
|
| 221 | - return new SearchComparison($trimmedType, $this->mapPropertyNameToColumn($operator->arguments[0]), $this->castValue($operator->arguments[0], $operator->arguments[1]->value)); |
|
| 222 | - case Operator::OPERATION_IS_COLLECTION: |
|
| 223 | - return new SearchComparison('eq', 'mimetype', ICacheEntry::DIRECTORY_MIMETYPE); |
|
| 224 | - default: |
|
| 225 | - throw new \InvalidArgumentException('Unsupported operation ' . $trimmedType. ' (' . $operator->type . ')'); |
|
| 226 | - } |
|
| 227 | - } |
|
| 194 | + /** |
|
| 195 | + * @param Operator $operator |
|
| 196 | + * @return ISearchOperator |
|
| 197 | + */ |
|
| 198 | + private function transformSearchOperation(Operator $operator) { |
|
| 199 | + list(, $trimmedType) = explode('}', $operator->type); |
|
| 200 | + switch ($operator->type) { |
|
| 201 | + case Operator::OPERATION_AND: |
|
| 202 | + case Operator::OPERATION_OR: |
|
| 203 | + case Operator::OPERATION_NOT: |
|
| 204 | + $arguments = array_map([$this, 'transformSearchOperation'], $operator->arguments); |
|
| 205 | + return new SearchBinaryOperator($trimmedType, $arguments); |
|
| 206 | + case Operator::OPERATION_EQUAL: |
|
| 207 | + case Operator::OPERATION_GREATER_OR_EQUAL_THAN: |
|
| 208 | + case Operator::OPERATION_GREATER_THAN: |
|
| 209 | + case Operator::OPERATION_LESS_OR_EQUAL_THAN: |
|
| 210 | + case Operator::OPERATION_LESS_THAN: |
|
| 211 | + case Operator::OPERATION_IS_LIKE: |
|
| 212 | + if (count($operator->arguments) !== 2) { |
|
| 213 | + throw new \InvalidArgumentException('Invalid number of arguments for ' . $trimmedType . ' operation'); |
|
| 214 | + } |
|
| 215 | + if (!is_string($operator->arguments[0])) { |
|
| 216 | + throw new \InvalidArgumentException('Invalid argument 1 for ' . $trimmedType . ' operation, expected property'); |
|
| 217 | + } |
|
| 218 | + if (!($operator->arguments[1] instanceof Literal)) { |
|
| 219 | + throw new \InvalidArgumentException('Invalid argument 2 for ' . $trimmedType . ' operation, expected literal'); |
|
| 220 | + } |
|
| 221 | + return new SearchComparison($trimmedType, $this->mapPropertyNameToColumn($operator->arguments[0]), $this->castValue($operator->arguments[0], $operator->arguments[1]->value)); |
|
| 222 | + case Operator::OPERATION_IS_COLLECTION: |
|
| 223 | + return new SearchComparison('eq', 'mimetype', ICacheEntry::DIRECTORY_MIMETYPE); |
|
| 224 | + default: |
|
| 225 | + throw new \InvalidArgumentException('Unsupported operation ' . $trimmedType. ' (' . $operator->type . ')'); |
|
| 226 | + } |
|
| 227 | + } |
|
| 228 | 228 | |
| 229 | - /** |
|
| 230 | - * @param string $propertyName |
|
| 231 | - * @return string |
|
| 232 | - */ |
|
| 233 | - private function mapPropertyNameToColumn($propertyName) { |
|
| 234 | - switch ($propertyName) { |
|
| 235 | - case '{DAV:}displayname': |
|
| 236 | - return 'name'; |
|
| 237 | - case '{DAV:}getcontenttype': |
|
| 238 | - return 'mimetype'; |
|
| 239 | - case '{DAV:}getlastmodified': |
|
| 240 | - return 'mtime'; |
|
| 241 | - case FilesPlugin::SIZE_PROPERTYNAME: |
|
| 242 | - return 'size'; |
|
| 243 | - case TagsPlugin::FAVORITE_PROPERTYNAME: |
|
| 244 | - return 'favorite'; |
|
| 245 | - case TagsPlugin::TAGS_PROPERTYNAME: |
|
| 246 | - return 'tagname'; |
|
| 247 | - default: |
|
| 248 | - throw new \InvalidArgumentException('Unsupported property for search or order: ' . $propertyName); |
|
| 249 | - } |
|
| 250 | - } |
|
| 229 | + /** |
|
| 230 | + * @param string $propertyName |
|
| 231 | + * @return string |
|
| 232 | + */ |
|
| 233 | + private function mapPropertyNameToColumn($propertyName) { |
|
| 234 | + switch ($propertyName) { |
|
| 235 | + case '{DAV:}displayname': |
|
| 236 | + return 'name'; |
|
| 237 | + case '{DAV:}getcontenttype': |
|
| 238 | + return 'mimetype'; |
|
| 239 | + case '{DAV:}getlastmodified': |
|
| 240 | + return 'mtime'; |
|
| 241 | + case FilesPlugin::SIZE_PROPERTYNAME: |
|
| 242 | + return 'size'; |
|
| 243 | + case TagsPlugin::FAVORITE_PROPERTYNAME: |
|
| 244 | + return 'favorite'; |
|
| 245 | + case TagsPlugin::TAGS_PROPERTYNAME: |
|
| 246 | + return 'tagname'; |
|
| 247 | + default: |
|
| 248 | + throw new \InvalidArgumentException('Unsupported property for search or order: ' . $propertyName); |
|
| 249 | + } |
|
| 250 | + } |
|
| 251 | 251 | |
| 252 | - private function castValue($propertyName, $value) { |
|
| 253 | - $allProps = $this->getPropertyDefinitionsForScope('', ''); |
|
| 254 | - foreach ($allProps as $prop) { |
|
| 255 | - if ($prop->name === $propertyName) { |
|
| 256 | - $dataType = $prop->dataType; |
|
| 257 | - switch ($dataType) { |
|
| 258 | - case SearchPropertyDefinition::DATATYPE_BOOLEAN: |
|
| 259 | - return $value === 'yes'; |
|
| 260 | - case SearchPropertyDefinition::DATATYPE_DECIMAL: |
|
| 261 | - case SearchPropertyDefinition::DATATYPE_INTEGER: |
|
| 262 | - case SearchPropertyDefinition::DATATYPE_NONNEGATIVE_INTEGER: |
|
| 263 | - return 0 + $value; |
|
| 264 | - case SearchPropertyDefinition::DATATYPE_DATETIME: |
|
| 265 | - if (is_numeric($value)) { |
|
| 266 | - return 0 + $value; |
|
| 267 | - } |
|
| 268 | - $date = \DateTime::createFromFormat(\DateTime::ATOM, $value); |
|
| 269 | - return ($date instanceof \DateTime) ? $date->getTimestamp() : 0; |
|
| 270 | - default: |
|
| 271 | - return $value; |
|
| 272 | - } |
|
| 273 | - } |
|
| 274 | - } |
|
| 275 | - return $value; |
|
| 276 | - } |
|
| 252 | + private function castValue($propertyName, $value) { |
|
| 253 | + $allProps = $this->getPropertyDefinitionsForScope('', ''); |
|
| 254 | + foreach ($allProps as $prop) { |
|
| 255 | + if ($prop->name === $propertyName) { |
|
| 256 | + $dataType = $prop->dataType; |
|
| 257 | + switch ($dataType) { |
|
| 258 | + case SearchPropertyDefinition::DATATYPE_BOOLEAN: |
|
| 259 | + return $value === 'yes'; |
|
| 260 | + case SearchPropertyDefinition::DATATYPE_DECIMAL: |
|
| 261 | + case SearchPropertyDefinition::DATATYPE_INTEGER: |
|
| 262 | + case SearchPropertyDefinition::DATATYPE_NONNEGATIVE_INTEGER: |
|
| 263 | + return 0 + $value; |
|
| 264 | + case SearchPropertyDefinition::DATATYPE_DATETIME: |
|
| 265 | + if (is_numeric($value)) { |
|
| 266 | + return 0 + $value; |
|
| 267 | + } |
|
| 268 | + $date = \DateTime::createFromFormat(\DateTime::ATOM, $value); |
|
| 269 | + return ($date instanceof \DateTime) ? $date->getTimestamp() : 0; |
|
| 270 | + default: |
|
| 271 | + return $value; |
|
| 272 | + } |
|
| 273 | + } |
|
| 274 | + } |
|
| 275 | + return $value; |
|
| 276 | + } |
|
| 277 | 277 | } |
@@ -22,7 +22,6 @@ |
||
| 22 | 22 | use OC\Files\Cache\CacheEntry; |
| 23 | 23 | use OCP\Constants; |
| 24 | 24 | use OCP\Files\Cache\ICache; |
| 25 | -use OCP\Files\Cache\ICacheEntry; |
|
| 26 | 25 | use OCP\Files\FileInfo; |
| 27 | 26 | use OCP\Files\Search\ISearchQuery; |
| 28 | 27 | |
@@ -31,8 +31,7 @@ |
||
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | public function get($file) { |
| 34 | - return $file !== '' ? null : |
|
| 35 | - new CacheEntry([ |
|
| 34 | + return $file !== '' ? null : new CacheEntry([ |
|
| 36 | 35 | 'fileid' => -1, |
| 37 | 36 | 'parent' => -1, |
| 38 | 37 | 'name' => '', |
@@ -27,101 +27,101 @@ |
||
| 27 | 27 | use OCP\Files\Search\ISearchQuery; |
| 28 | 28 | |
| 29 | 29 | class NullCache implements ICache { |
| 30 | - public function getNumericStorageId() { |
|
| 31 | - return -1; |
|
| 32 | - } |
|
| 33 | - |
|
| 34 | - public function get($file) { |
|
| 35 | - return $file !== '' ? null : |
|
| 36 | - new CacheEntry([ |
|
| 37 | - 'fileid' => -1, |
|
| 38 | - 'parent' => -1, |
|
| 39 | - 'name' => '', |
|
| 40 | - 'path' => '', |
|
| 41 | - 'size' => '0', |
|
| 42 | - 'mtime' => time(), |
|
| 43 | - 'storage_mtime' => time(), |
|
| 44 | - 'etag' => '', |
|
| 45 | - 'mimetype' => FileInfo::MIMETYPE_FOLDER, |
|
| 46 | - 'mimepart' => 'httpd', |
|
| 47 | - 'permissions' => Constants::PERMISSION_READ |
|
| 48 | - ]); |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - public function getFolderContents($folder) { |
|
| 52 | - return []; |
|
| 53 | - } |
|
| 54 | - |
|
| 55 | - public function getFolderContentsById($fileId) { |
|
| 56 | - return []; |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - public function put($file, array $data) { |
|
| 60 | - throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - public function insert($file, array $data) { |
|
| 64 | - throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 65 | - } |
|
| 66 | - |
|
| 67 | - public function update($id, array $data) { |
|
| 68 | - throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - public function getId($file) { |
|
| 72 | - return -1; |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - public function getParentId($file) { |
|
| 76 | - return -1; |
|
| 77 | - } |
|
| 78 | - |
|
| 79 | - public function inCache($file) { |
|
| 80 | - return $file === ''; |
|
| 81 | - } |
|
| 82 | - |
|
| 83 | - public function remove($file) { |
|
| 84 | - throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - public function move($source, $target) { |
|
| 88 | - throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath) { |
|
| 92 | - throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - public function getStatus($file) { |
|
| 96 | - return ICache::COMPLETE; |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - public function search($pattern) { |
|
| 100 | - return []; |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - public function searchByMime($mimetype) { |
|
| 104 | - return []; |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - public function searchQuery(ISearchQuery $query) { |
|
| 108 | - return []; |
|
| 109 | - } |
|
| 110 | - |
|
| 111 | - public function searchByTag($tag, $userId) { |
|
| 112 | - return []; |
|
| 113 | - } |
|
| 114 | - |
|
| 115 | - public function getIncomplete() { |
|
| 116 | - return []; |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - public function getPathById($id) { |
|
| 120 | - return ''; |
|
| 121 | - } |
|
| 122 | - |
|
| 123 | - public function normalize($path) { |
|
| 124 | - return $path; |
|
| 125 | - } |
|
| 30 | + public function getNumericStorageId() { |
|
| 31 | + return -1; |
|
| 32 | + } |
|
| 33 | + |
|
| 34 | + public function get($file) { |
|
| 35 | + return $file !== '' ? null : |
|
| 36 | + new CacheEntry([ |
|
| 37 | + 'fileid' => -1, |
|
| 38 | + 'parent' => -1, |
|
| 39 | + 'name' => '', |
|
| 40 | + 'path' => '', |
|
| 41 | + 'size' => '0', |
|
| 42 | + 'mtime' => time(), |
|
| 43 | + 'storage_mtime' => time(), |
|
| 44 | + 'etag' => '', |
|
| 45 | + 'mimetype' => FileInfo::MIMETYPE_FOLDER, |
|
| 46 | + 'mimepart' => 'httpd', |
|
| 47 | + 'permissions' => Constants::PERMISSION_READ |
|
| 48 | + ]); |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + public function getFolderContents($folder) { |
|
| 52 | + return []; |
|
| 53 | + } |
|
| 54 | + |
|
| 55 | + public function getFolderContentsById($fileId) { |
|
| 56 | + return []; |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + public function put($file, array $data) { |
|
| 60 | + throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + public function insert($file, array $data) { |
|
| 64 | + throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 65 | + } |
|
| 66 | + |
|
| 67 | + public function update($id, array $data) { |
|
| 68 | + throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + public function getId($file) { |
|
| 72 | + return -1; |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + public function getParentId($file) { |
|
| 76 | + return -1; |
|
| 77 | + } |
|
| 78 | + |
|
| 79 | + public function inCache($file) { |
|
| 80 | + return $file === ''; |
|
| 81 | + } |
|
| 82 | + |
|
| 83 | + public function remove($file) { |
|
| 84 | + throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + public function move($source, $target) { |
|
| 88 | + throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + public function moveFromCache(ICache $sourceCache, $sourcePath, $targetPath) { |
|
| 92 | + throw new \OC\ForbiddenException('This request is not allowed to access the filesystem'); |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + public function getStatus($file) { |
|
| 96 | + return ICache::COMPLETE; |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + public function search($pattern) { |
|
| 100 | + return []; |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + public function searchByMime($mimetype) { |
|
| 104 | + return []; |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + public function searchQuery(ISearchQuery $query) { |
|
| 108 | + return []; |
|
| 109 | + } |
|
| 110 | + |
|
| 111 | + public function searchByTag($tag, $userId) { |
|
| 112 | + return []; |
|
| 113 | + } |
|
| 114 | + |
|
| 115 | + public function getIncomplete() { |
|
| 116 | + return []; |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + public function getPathById($id) { |
|
| 120 | + return ''; |
|
| 121 | + } |
|
| 122 | + |
|
| 123 | + public function normalize($path) { |
|
| 124 | + return $path; |
|
| 125 | + } |
|
| 126 | 126 | |
| 127 | 127 | } |
@@ -37,7 +37,7 @@ |
||
| 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) { |
@@ -33,33 +33,33 @@ |
||
| 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 | } |
@@ -40,7 +40,7 @@ discard block |
||
| 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 |
||
| 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))) { |