Fallback to filename based detection if the remote dav server doesn't know the mimetype

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2017-09-28 14:22:42 +02:00
parent 1c2da7d7d3
commit b36dd8b71f
No known key found for this signature in database
GPG Key ID: CBCA68FBAEBF98C9
2 changed files with 29 additions and 10 deletions

View File

@ -28,6 +28,7 @@
namespace OCA\Files_External\Tests\Storage;
use \OC\Files\Storage\DAV;
use OC\Files\Type\Detection;
/**
* Class WebdavTest
@ -43,7 +44,7 @@ class WebdavTest extends \Test\Files\Storage\Storage {
$id = $this->getUniqueID();
$config = include('files_external/tests/config.webdav.php');
if ( ! is_array($config) or !$config['run']) {
if (!is_array($config) or !$config['run']) {
$this->markTestSkipped('WebDAV backend not configured');
}
if (isset($config['wait'])) {
@ -61,4 +62,14 @@ class WebdavTest extends \Test\Files\Storage\Storage {
parent::tearDown();
}
public function testMimetypeFallback() {
$this->instance->file_put_contents('foo.bar', 'asd');
/** @var Detection $mimeDetector */
$mimeDetector = \OC::$server->getMimeTypeDetector();
$mimeDetector->registerType('bar', 'application/x-bar');
$this->assertEquals('application/x-bar', $this->instance->getMimeType('foo.bar'));
}
}

View File

@ -146,7 +146,7 @@ class DAV extends Common {
}
$proxy = \OC::$server->getConfig()->getSystemValue('proxy', '');
if($proxy !== '') {
if ($proxy !== '') {
$settings['proxy'] = $proxy;
}
@ -343,11 +343,11 @@ class DAV extends Common {
case 'rb':
try {
$response = $this->httpClientService
->newClient()
->get($this->createBaseUri() . $this->encodePath($path), [
'auth' => [$this->user, $this->password],
'stream' => true
]);
->newClient()
->get($this->createBaseUri() . $this->encodePath($path), [
'auth' => [$this->user, $this->password],
'stream' => true
]);
} catch (RequestException $e) {
if ($e->getResponse() instanceof ResponseInterface
&& $e->getResponse()->getStatusCode() === 404) {
@ -590,6 +590,15 @@ class DAV extends Common {
/** {@inheritdoc} */
public function getMimeType($path) {
$remoteMimetype = $this->getMimeTypeFromRemote($path);
if ($remoteMimetype === 'application/octet-stream') {
return \OC::$server->getMimeTypeDetector()->detectPath($path);
} else {
return $remoteMimetype;
}
}
public function getMimeTypeFromRemote($path) {
try {
$response = $this->propfind($path);
if ($response === false) {
@ -606,12 +615,11 @@ class DAV extends Common {
} elseif (isset($response['{DAV:}getcontenttype'])) {
return $response['{DAV:}getcontenttype'];
} else {
return false;
return 'application/octet-stream';
}
} catch (\Exception $e) {
$this->convertException($e, $path);
return false;
}
return false;
}
/**