Merge pull request #17538 from nextcloud/backport/17332/stable17

[stable17] Only cache the mimetype if the file exists
This commit is contained in:
Roeland Jago Douma 2019-10-17 13:44:02 +02:00 committed by GitHub
commit 3a45dfa09a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,6 +68,29 @@ class FileMimeType extends AbstractStringCheck {
} }
} }
/**
* The mimetype is only cached if the file exists. Otherwise files access
* control will cache "application/octet-stream" for all the target node on:
* rename, move, copy and all other methods which create a new item
*
* To check this:
* 1. Add an automated tagging rule which tags on mimetype NOT "httpd/unix-directory"
* 2. Add an access control rule which checks for any mimetype
* 3. Create a folder and rename it, the folder should not be tagged, but it is
*
* @param string $storageId
* @param string|null $path
* @param string $mimeType
* @return string
*/
protected function cacheAndReturnMimeType(string $storageId, ?string $path, string $mimeType): string {
if ($path !== null && $this->storage->file_exists($path)) {
$this->mimeType[$storageId][$path] = $mimeType;
}
return $mimeType;
}
/** /**
* @return string * @return string
*/ */
@ -77,25 +100,23 @@ class FileMimeType extends AbstractStringCheck {
} }
if ($this->storage->is_dir($this->path)) { if ($this->storage->is_dir($this->path)) {
$this->mimeType[$this->storage->getId()][$this->path] = 'httpd/unix-directory'; return $this->cacheAndReturnMimeType($this->storage->getId(), $this->path, 'httpd/unix-directory');
return $this->mimeType[$this->storage->getId()][$this->path];
} }
if ($this->isWebDAVRequest()) { if ($this->isWebDAVRequest()) {
// Creating a folder // Creating a folder
if ($this->request->getMethod() === 'MKCOL') { if ($this->request->getMethod() === 'MKCOL') {
$this->mimeType[$this->storage->getId()][$this->path] = 'httpd/unix-directory'; return $this->cacheAndReturnMimeType($this->storage->getId(), $this->path, 'httpd/unix-directory');
return $this->mimeType[$this->storage->getId()][$this->path];
} }
if ($this->request->getMethod() === 'PUT' || $this->request->getMethod() === 'MOVE') { if ($this->request->getMethod() === 'PUT' || $this->request->getMethod() === 'MOVE') {
if ($this->request->getMethod() === 'MOVE') { if ($this->request->getMethod() === 'MOVE') {
$this->mimeType[$this->storage->getId()][$this->path] = $this->mimeTypeDetector->detectPath($this->path); $mimeType = $this->mimeTypeDetector->detectPath($this->path);
} else { } else {
$path = $this->request->getPathInfo(); $path = $this->request->getPathInfo();
$this->mimeType[$this->storage->getId()][$this->path] = $this->mimeTypeDetector->detectPath($path); $mimeType = $this->mimeTypeDetector->detectPath($path);
} }
return $this->mimeType[$this->storage->getId()][$this->path]; return $this->cacheAndReturnMimeType($this->storage->getId(), $this->path, $mimeType);
} }
} else if ($this->isPublicWebDAVRequest()) { } else if ($this->isPublicWebDAVRequest()) {
if ($this->request->getMethod() === 'PUT') { if ($this->request->getMethod() === 'PUT') {
@ -104,8 +125,8 @@ class FileMimeType extends AbstractStringCheck {
$path = substr($path, strlen('/webdav')); $path = substr($path, strlen('/webdav'));
} }
$path = $this->path . $path; $path = $this->path . $path;
$this->mimeType[$this->storage->getId()][$path] = $this->mimeTypeDetector->detectPath($path); $mimeType = $this->mimeTypeDetector->detectPath($path);
return $this->mimeType[$this->storage->getId()][$path]; return $this->cacheAndReturnMimeType($this->storage->getId(), $path, $mimeType);
} }
} }
@ -125,17 +146,16 @@ class FileMimeType extends AbstractStringCheck {
} }
} }
} }
$this->mimeType[$this->storage->getId()][$this->path] = $mimeType; return $this->cacheAndReturnMimeType($this->storage->getId(), $this->path, $mimeType);
return $mimeType;
} }
} }
$this->mimeType[$this->storage->getId()][$this->path] = $this->storage->getMimeType($this->path); $mimeType = $this->storage->getMimeType($this->path);
if ($this->mimeType[$this->storage->getId()][$this->path] === 'application/octet-stream') { if ($mimeType === 'application/octet-stream') {
$this->mimeType[$this->storage->getId()][$this->path] = $this->detectMimetypeFromPath(); $mimeType = $this->detectMimetypeFromPath();
} }
return $this->mimeType[$this->storage->getId()][$this->path]; return $this->cacheAndReturnMimeType($this->storage->getId(), $this->path, $mimeType);
} }
/** /**