@@ -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 | } |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | <div class="warning title"> |
| 19 | 19 | <?php p($l->t('Please renew your password.')); ?><br> |
| 20 | 20 | </div> |
| 21 | - <?php foreach($_['messages'] as $message): ?> |
|
| 21 | + <?php foreach ($_['messages'] as $message): ?> |
|
| 22 | 22 | <div class="warning"> |
| 23 | 23 | <?php p($message); ?><br> |
| 24 | 24 | </div> |
@@ -31,14 +31,14 @@ discard block |
||
| 31 | 31 | <?php endif; ?> |
| 32 | 32 | <div id="message" class="hidden"> |
| 33 | 33 | <img class="float-spinner" alt="" |
| 34 | - src="<?php p(image_path('core', 'loading-dark.gif'));?>"> |
|
| 34 | + src="<?php p(image_path('core', 'loading-dark.gif')); ?>"> |
|
| 35 | 35 | <span id="messageText"></span> |
| 36 | 36 | <!-- the following div ensures that the spinner is always inside the #message div --> |
| 37 | 37 | <div style="clear: both;"></div> |
| 38 | 38 | </div> |
| 39 | 39 | <p class="grouptop"> |
| 40 | 40 | <input type="password" id="oldPassword" name="oldPassword" |
| 41 | - placeholder="<?php echo $l->t('Current password');?>" |
|
| 41 | + placeholder="<?php echo $l->t('Current password'); ?>" |
|
| 42 | 42 | autofocus autocomplete="off" autocapitalize="off" autocorrect="off" required/> |
| 43 | 43 | <label for="oldPassword" class="infield"><?php p($l->t('Current password')); ?></label> |
| 44 | 44 | </p> |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | <input type="checkbox" id="personal-show" name="show" /><label for="personal-show"></label> |
| 48 | 48 | <label id="newPassword-label" for="newPassword" class="infield"><?php p($l->t('New password')); ?></label> |
| 49 | 49 | <input type="password" id="newPassword" name="newPassword" |
| 50 | - placeholder="<?php echo $l->t('New password');?>" |
|
| 50 | + placeholder="<?php echo $l->t('New password'); ?>" |
|
| 51 | 51 | data-typetoggle="#personal-show" autofocus autocomplete="off" autocapitalize="off" autocorrect="off" required/> |
| 52 | 52 | </p> |
| 53 | 53 | |
@@ -1,10 +1,10 @@ |
||
| 1 | 1 | <?php /** @var $l OC_L10N */ ?> |
| 2 | 2 | <?php |
| 3 | 3 | script('core', [ |
| 4 | - 'jquery-showpassword', |
|
| 4 | + 'jquery-showpassword', |
|
| 5 | 5 | ]); |
| 6 | 6 | script('user_ldap', [ |
| 7 | - 'renewPassword', |
|
| 7 | + 'renewPassword', |
|
| 8 | 8 | ]); |
| 9 | 9 | style('user_ldap', 'renewPassword'); |
| 10 | 10 | ?> |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | $updatedEntries = $builder->execute(); |
| 73 | 73 | if ($updatedEntries > 0) { |
| 74 | - $out->info('Fixed file share permissions for ' . $updatedEntries . ' shares'); |
|
| 74 | + $out->info('Fixed file share permissions for '.$updatedEntries.' shares'); |
|
| 75 | 75 | } |
| 76 | 76 | } |
| 77 | 77 | |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | if ($deletedEntries) { |
| 110 | - $out->info('Removed ' . $deletedEntries . ' shares where the parent did not exist'); |
|
| 110 | + $out->info('Removed '.$deletedEntries.' shares where the parent did not exist'); |
|
| 111 | 111 | } |
| 112 | 112 | } |
| 113 | 113 | |
@@ -33,90 +33,90 @@ |
||
| 33 | 33 | */ |
| 34 | 34 | class RepairInvalidShares implements IRepairStep { |
| 35 | 35 | |
| 36 | - const CHUNK_SIZE = 200; |
|
| 37 | - |
|
| 38 | - /** @var \OCP\IConfig */ |
|
| 39 | - protected $config; |
|
| 40 | - |
|
| 41 | - /** @var \OCP\IDBConnection */ |
|
| 42 | - protected $connection; |
|
| 43 | - |
|
| 44 | - /** |
|
| 45 | - * @param \OCP\IConfig $config |
|
| 46 | - * @param \OCP\IDBConnection $connection |
|
| 47 | - */ |
|
| 48 | - public function __construct($config, $connection) { |
|
| 49 | - $this->connection = $connection; |
|
| 50 | - $this->config = $config; |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - public function getName() { |
|
| 54 | - return 'Repair invalid shares'; |
|
| 55 | - } |
|
| 56 | - |
|
| 57 | - /** |
|
| 58 | - * Adjust file share permissions |
|
| 59 | - * @suppress SqlInjectionChecker |
|
| 60 | - */ |
|
| 61 | - private function adjustFileSharePermissions(IOutput $out) { |
|
| 62 | - $mask = \OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_SHARE; |
|
| 63 | - $builder = $this->connection->getQueryBuilder(); |
|
| 64 | - |
|
| 65 | - $permsFunc = $builder->expr()->bitwiseAnd('permissions', $mask); |
|
| 66 | - $builder |
|
| 67 | - ->update('share') |
|
| 68 | - ->set('permissions', $permsFunc) |
|
| 69 | - ->where($builder->expr()->eq('item_type', $builder->expr()->literal('file'))) |
|
| 70 | - ->andWhere($builder->expr()->neq('permissions', $permsFunc)); |
|
| 71 | - |
|
| 72 | - $updatedEntries = $builder->execute(); |
|
| 73 | - if ($updatedEntries > 0) { |
|
| 74 | - $out->info('Fixed file share permissions for ' . $updatedEntries . ' shares'); |
|
| 75 | - } |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - /** |
|
| 79 | - * Remove shares where the parent share does not exist anymore |
|
| 80 | - */ |
|
| 81 | - private function removeSharesNonExistingParent(IOutput $out) { |
|
| 82 | - $deletedEntries = 0; |
|
| 83 | - |
|
| 84 | - $query = $this->connection->getQueryBuilder(); |
|
| 85 | - $query->select('s1.parent') |
|
| 86 | - ->from('share', 's1') |
|
| 87 | - ->where($query->expr()->isNotNull('s1.parent')) |
|
| 88 | - ->andWhere($query->expr()->isNull('s2.id')) |
|
| 89 | - ->leftJoin('s1', 'share', 's2', $query->expr()->eq('s1.parent', 's2.id')) |
|
| 90 | - ->groupBy('s1.parent') |
|
| 91 | - ->setMaxResults(self::CHUNK_SIZE); |
|
| 92 | - |
|
| 93 | - $deleteQuery = $this->connection->getQueryBuilder(); |
|
| 94 | - $deleteQuery->delete('share') |
|
| 95 | - ->where($deleteQuery->expr()->eq('parent', $deleteQuery->createParameter('parent'))); |
|
| 96 | - |
|
| 97 | - $deletedInLastChunk = self::CHUNK_SIZE; |
|
| 98 | - while ($deletedInLastChunk === self::CHUNK_SIZE) { |
|
| 99 | - $deletedInLastChunk = 0; |
|
| 100 | - $result = $query->execute(); |
|
| 101 | - while ($row = $result->fetch()) { |
|
| 102 | - $deletedInLastChunk++; |
|
| 103 | - $deletedEntries += $deleteQuery->setParameter('parent', (int) $row['parent']) |
|
| 104 | - ->execute(); |
|
| 105 | - } |
|
| 106 | - $result->closeCursor(); |
|
| 107 | - } |
|
| 108 | - |
|
| 109 | - if ($deletedEntries) { |
|
| 110 | - $out->info('Removed ' . $deletedEntries . ' shares where the parent did not exist'); |
|
| 111 | - } |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - public function run(IOutput $out) { |
|
| 115 | - $ocVersionFromBeforeUpdate = $this->config->getSystemValue('version', '0.0.0'); |
|
| 116 | - if (version_compare($ocVersionFromBeforeUpdate, '12.0.0.11', '<')) { |
|
| 117 | - $this->adjustFileSharePermissions($out); |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - $this->removeSharesNonExistingParent($out); |
|
| 121 | - } |
|
| 36 | + const CHUNK_SIZE = 200; |
|
| 37 | + |
|
| 38 | + /** @var \OCP\IConfig */ |
|
| 39 | + protected $config; |
|
| 40 | + |
|
| 41 | + /** @var \OCP\IDBConnection */ |
|
| 42 | + protected $connection; |
|
| 43 | + |
|
| 44 | + /** |
|
| 45 | + * @param \OCP\IConfig $config |
|
| 46 | + * @param \OCP\IDBConnection $connection |
|
| 47 | + */ |
|
| 48 | + public function __construct($config, $connection) { |
|
| 49 | + $this->connection = $connection; |
|
| 50 | + $this->config = $config; |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + public function getName() { |
|
| 54 | + return 'Repair invalid shares'; |
|
| 55 | + } |
|
| 56 | + |
|
| 57 | + /** |
|
| 58 | + * Adjust file share permissions |
|
| 59 | + * @suppress SqlInjectionChecker |
|
| 60 | + */ |
|
| 61 | + private function adjustFileSharePermissions(IOutput $out) { |
|
| 62 | + $mask = \OCP\Constants::PERMISSION_READ | \OCP\Constants::PERMISSION_UPDATE | \OCP\Constants::PERMISSION_SHARE; |
|
| 63 | + $builder = $this->connection->getQueryBuilder(); |
|
| 64 | + |
|
| 65 | + $permsFunc = $builder->expr()->bitwiseAnd('permissions', $mask); |
|
| 66 | + $builder |
|
| 67 | + ->update('share') |
|
| 68 | + ->set('permissions', $permsFunc) |
|
| 69 | + ->where($builder->expr()->eq('item_type', $builder->expr()->literal('file'))) |
|
| 70 | + ->andWhere($builder->expr()->neq('permissions', $permsFunc)); |
|
| 71 | + |
|
| 72 | + $updatedEntries = $builder->execute(); |
|
| 73 | + if ($updatedEntries > 0) { |
|
| 74 | + $out->info('Fixed file share permissions for ' . $updatedEntries . ' shares'); |
|
| 75 | + } |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + /** |
|
| 79 | + * Remove shares where the parent share does not exist anymore |
|
| 80 | + */ |
|
| 81 | + private function removeSharesNonExistingParent(IOutput $out) { |
|
| 82 | + $deletedEntries = 0; |
|
| 83 | + |
|
| 84 | + $query = $this->connection->getQueryBuilder(); |
|
| 85 | + $query->select('s1.parent') |
|
| 86 | + ->from('share', 's1') |
|
| 87 | + ->where($query->expr()->isNotNull('s1.parent')) |
|
| 88 | + ->andWhere($query->expr()->isNull('s2.id')) |
|
| 89 | + ->leftJoin('s1', 'share', 's2', $query->expr()->eq('s1.parent', 's2.id')) |
|
| 90 | + ->groupBy('s1.parent') |
|
| 91 | + ->setMaxResults(self::CHUNK_SIZE); |
|
| 92 | + |
|
| 93 | + $deleteQuery = $this->connection->getQueryBuilder(); |
|
| 94 | + $deleteQuery->delete('share') |
|
| 95 | + ->where($deleteQuery->expr()->eq('parent', $deleteQuery->createParameter('parent'))); |
|
| 96 | + |
|
| 97 | + $deletedInLastChunk = self::CHUNK_SIZE; |
|
| 98 | + while ($deletedInLastChunk === self::CHUNK_SIZE) { |
|
| 99 | + $deletedInLastChunk = 0; |
|
| 100 | + $result = $query->execute(); |
|
| 101 | + while ($row = $result->fetch()) { |
|
| 102 | + $deletedInLastChunk++; |
|
| 103 | + $deletedEntries += $deleteQuery->setParameter('parent', (int) $row['parent']) |
|
| 104 | + ->execute(); |
|
| 105 | + } |
|
| 106 | + $result->closeCursor(); |
|
| 107 | + } |
|
| 108 | + |
|
| 109 | + if ($deletedEntries) { |
|
| 110 | + $out->info('Removed ' . $deletedEntries . ' shares where the parent did not exist'); |
|
| 111 | + } |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + public function run(IOutput $out) { |
|
| 115 | + $ocVersionFromBeforeUpdate = $this->config->getSystemValue('version', '0.0.0'); |
|
| 116 | + if (version_compare($ocVersionFromBeforeUpdate, '12.0.0.11', '<')) { |
|
| 117 | + $this->adjustFileSharePermissions($out); |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + $this->removeSharesNonExistingParent($out); |
|
| 121 | + } |
|
| 122 | 122 | } |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | ], |
| 55 | 55 | ]; |
| 56 | 56 | |
| 57 | - if($this->appManager->isEnabledForUser('files_sharing')) { |
|
| 57 | + if ($this->appManager->isEnabledForUser('files_sharing')) { |
|
| 58 | 58 | $services['SHARING'] = [ |
| 59 | 59 | 'version' => 1, |
| 60 | 60 | 'endpoints' => [ |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | } |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - if($this->appManager->isEnabledForUser('activity')) { |
|
| 88 | + if ($this->appManager->isEnabledForUser('activity')) { |
|
| 89 | 89 | $services['ACTIVITY'] = [ |
| 90 | 90 | 'version' => 1, |
| 91 | 91 | 'endpoints' => [ |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | ]; |
| 95 | 95 | } |
| 96 | 96 | |
| 97 | - if($this->appManager->isEnabledForUser('provisioning_api')) { |
|
| 97 | + if ($this->appManager->isEnabledForUser('provisioning_api')) { |
|
| 98 | 98 | $services['PROVISIONING'] = [ |
| 99 | 99 | 'version' => 1, |
| 100 | 100 | 'endpoints' => [ |
@@ -24,92 +24,92 @@ |
||
| 24 | 24 | namespace OC\OCS; |
| 25 | 25 | |
| 26 | 26 | class Provider extends \OCP\AppFramework\Controller { |
| 27 | - /** @var \OCP\App\IAppManager */ |
|
| 28 | - private $appManager; |
|
| 27 | + /** @var \OCP\App\IAppManager */ |
|
| 28 | + private $appManager; |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @param string $appName |
|
| 32 | - * @param \OCP\IRequest $request |
|
| 33 | - * @param \OCP\App\IAppManager $appManager |
|
| 34 | - */ |
|
| 35 | - public function __construct($appName, |
|
| 36 | - \OCP\IRequest $request, |
|
| 37 | - \OCP\App\IAppManager $appManager) { |
|
| 38 | - parent::__construct($appName, $request); |
|
| 39 | - $this->appManager = $appManager; |
|
| 40 | - } |
|
| 30 | + /** |
|
| 31 | + * @param string $appName |
|
| 32 | + * @param \OCP\IRequest $request |
|
| 33 | + * @param \OCP\App\IAppManager $appManager |
|
| 34 | + */ |
|
| 35 | + public function __construct($appName, |
|
| 36 | + \OCP\IRequest $request, |
|
| 37 | + \OCP\App\IAppManager $appManager) { |
|
| 38 | + parent::__construct($appName, $request); |
|
| 39 | + $this->appManager = $appManager; |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | - /** |
|
| 43 | - * @return \OCP\AppFramework\Http\JSONResponse |
|
| 44 | - */ |
|
| 45 | - public function buildProviderList() { |
|
| 46 | - $services = [ |
|
| 47 | - 'PRIVATE_DATA' => [ |
|
| 48 | - 'version' => 1, |
|
| 49 | - 'endpoints' => [ |
|
| 50 | - 'store' => '/ocs/v2.php/privatedata/setattribute', |
|
| 51 | - 'read' => '/ocs/v2.php/privatedata/getattribute', |
|
| 52 | - 'delete' => '/ocs/v2.php/privatedata/deleteattribute', |
|
| 53 | - ], |
|
| 54 | - ], |
|
| 55 | - ]; |
|
| 42 | + /** |
|
| 43 | + * @return \OCP\AppFramework\Http\JSONResponse |
|
| 44 | + */ |
|
| 45 | + public function buildProviderList() { |
|
| 46 | + $services = [ |
|
| 47 | + 'PRIVATE_DATA' => [ |
|
| 48 | + 'version' => 1, |
|
| 49 | + 'endpoints' => [ |
|
| 50 | + 'store' => '/ocs/v2.php/privatedata/setattribute', |
|
| 51 | + 'read' => '/ocs/v2.php/privatedata/getattribute', |
|
| 52 | + 'delete' => '/ocs/v2.php/privatedata/deleteattribute', |
|
| 53 | + ], |
|
| 54 | + ], |
|
| 55 | + ]; |
|
| 56 | 56 | |
| 57 | - if($this->appManager->isEnabledForUser('files_sharing')) { |
|
| 58 | - $services['SHARING'] = [ |
|
| 59 | - 'version' => 1, |
|
| 60 | - 'endpoints' => [ |
|
| 61 | - 'share' => '/ocs/v2.php/apps/files_sharing/api/v1/shares', |
|
| 62 | - ], |
|
| 63 | - ]; |
|
| 64 | - $services['FEDERATED_SHARING'] = [ |
|
| 65 | - 'version' => 1, |
|
| 66 | - 'endpoints' => [ |
|
| 67 | - 'share' => '/ocs/v2.php/cloud/shares', |
|
| 68 | - 'webdav' => '/public.php/webdav/', |
|
| 69 | - ], |
|
| 70 | - ]; |
|
| 71 | - } |
|
| 57 | + if($this->appManager->isEnabledForUser('files_sharing')) { |
|
| 58 | + $services['SHARING'] = [ |
|
| 59 | + 'version' => 1, |
|
| 60 | + 'endpoints' => [ |
|
| 61 | + 'share' => '/ocs/v2.php/apps/files_sharing/api/v1/shares', |
|
| 62 | + ], |
|
| 63 | + ]; |
|
| 64 | + $services['FEDERATED_SHARING'] = [ |
|
| 65 | + 'version' => 1, |
|
| 66 | + 'endpoints' => [ |
|
| 67 | + 'share' => '/ocs/v2.php/cloud/shares', |
|
| 68 | + 'webdav' => '/public.php/webdav/', |
|
| 69 | + ], |
|
| 70 | + ]; |
|
| 71 | + } |
|
| 72 | 72 | |
| 73 | - if ($this->appManager->isEnabledForUser('federation')) { |
|
| 74 | - if (isset($services['FEDERATED_SHARING'])) { |
|
| 75 | - $services['FEDERATED_SHARING']['endpoints']['shared-secret'] = '/ocs/v2.php/cloud/shared-secret'; |
|
| 76 | - $services['FEDERATED_SHARING']['endpoints']['system-address-book'] = '/remote.php/dav/addressbooks/system/system/system'; |
|
| 77 | - $services['FEDERATED_SHARING']['endpoints']['carddav-user'] = 'system'; |
|
| 78 | - } else { |
|
| 79 | - $services['FEDERATED_SHARING'] = [ |
|
| 80 | - 'version' => 1, |
|
| 81 | - 'endpoints' => [ |
|
| 82 | - 'shared-secret' => '/ocs/v2.php/cloud/shared-secret', |
|
| 83 | - 'system-address-book' => '/remote.php/dav/addressbooks/system/system/system', |
|
| 84 | - 'carddav-user' => 'system' |
|
| 85 | - ], |
|
| 86 | - ]; |
|
| 87 | - } |
|
| 88 | - } |
|
| 73 | + if ($this->appManager->isEnabledForUser('federation')) { |
|
| 74 | + if (isset($services['FEDERATED_SHARING'])) { |
|
| 75 | + $services['FEDERATED_SHARING']['endpoints']['shared-secret'] = '/ocs/v2.php/cloud/shared-secret'; |
|
| 76 | + $services['FEDERATED_SHARING']['endpoints']['system-address-book'] = '/remote.php/dav/addressbooks/system/system/system'; |
|
| 77 | + $services['FEDERATED_SHARING']['endpoints']['carddav-user'] = 'system'; |
|
| 78 | + } else { |
|
| 79 | + $services['FEDERATED_SHARING'] = [ |
|
| 80 | + 'version' => 1, |
|
| 81 | + 'endpoints' => [ |
|
| 82 | + 'shared-secret' => '/ocs/v2.php/cloud/shared-secret', |
|
| 83 | + 'system-address-book' => '/remote.php/dav/addressbooks/system/system/system', |
|
| 84 | + 'carddav-user' => 'system' |
|
| 85 | + ], |
|
| 86 | + ]; |
|
| 87 | + } |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | - if($this->appManager->isEnabledForUser('activity')) { |
|
| 91 | - $services['ACTIVITY'] = [ |
|
| 92 | - 'version' => 1, |
|
| 93 | - 'endpoints' => [ |
|
| 94 | - 'list' => '/ocs/v2.php/cloud/activity', |
|
| 95 | - ], |
|
| 96 | - ]; |
|
| 97 | - } |
|
| 90 | + if($this->appManager->isEnabledForUser('activity')) { |
|
| 91 | + $services['ACTIVITY'] = [ |
|
| 92 | + 'version' => 1, |
|
| 93 | + 'endpoints' => [ |
|
| 94 | + 'list' => '/ocs/v2.php/cloud/activity', |
|
| 95 | + ], |
|
| 96 | + ]; |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - if($this->appManager->isEnabledForUser('provisioning_api')) { |
|
| 100 | - $services['PROVISIONING'] = [ |
|
| 101 | - 'version' => 1, |
|
| 102 | - 'endpoints' => [ |
|
| 103 | - 'user' => '/ocs/v2.php/cloud/users', |
|
| 104 | - 'groups' => '/ocs/v2.php/cloud/groups', |
|
| 105 | - 'apps' => '/ocs/v2.php/cloud/apps', |
|
| 106 | - ], |
|
| 107 | - ]; |
|
| 108 | - } |
|
| 99 | + if($this->appManager->isEnabledForUser('provisioning_api')) { |
|
| 100 | + $services['PROVISIONING'] = [ |
|
| 101 | + 'version' => 1, |
|
| 102 | + 'endpoints' => [ |
|
| 103 | + 'user' => '/ocs/v2.php/cloud/users', |
|
| 104 | + 'groups' => '/ocs/v2.php/cloud/groups', |
|
| 105 | + 'apps' => '/ocs/v2.php/cloud/apps', |
|
| 106 | + ], |
|
| 107 | + ]; |
|
| 108 | + } |
|
| 109 | 109 | |
| 110 | - return new \OCP\AppFramework\Http\JSONResponse([ |
|
| 111 | - 'version' => 2, |
|
| 112 | - 'services' => $services, |
|
| 113 | - ]); |
|
| 114 | - } |
|
| 110 | + return new \OCP\AppFramework\Http\JSONResponse([ |
|
| 111 | + 'version' => 2, |
|
| 112 | + 'services' => $services, |
|
| 113 | + ]); |
|
| 114 | + } |
|
| 115 | 115 | } |
@@ -16,8 +16,11 @@ |
||
| 16 | 16 | <?php if ($error): ?> |
| 17 | 17 | <?php if($error_message): ?> |
| 18 | 18 | <p><strong><?php p($error_message); ?></strong></p> |
| 19 | - <?php else: ?> |
|
| 20 | - <p><strong><?php p($l->t('Error while validating your second factor')); ?></strong></p> |
|
| 19 | + <?php else { |
|
| 20 | + : ?> |
|
| 21 | + <p><strong><?php p($l->t('Error while validating your second factor')); |
|
| 22 | +} |
|
| 23 | +?></strong></p> |
|
| 21 | 24 | <?php endif; ?> |
| 22 | 25 | <?php endif; ?> |
| 23 | 26 | <?php print_unescaped($template); ?> |
@@ -24,11 +24,11 @@ |
||
| 24 | 24 | <?php if (!is_null($_['backupProvider'])): ?> |
| 25 | 25 | <p> |
| 26 | 26 | <a class="two-factor-secondary" href="<?php p(\OC::$server->getURLGenerator()->linkToRoute('core.TwoFactorChallenge.showChallenge', |
| 27 | - [ |
|
| 28 | - 'challengeProviderId' => $_['backupProvider']->getId(), |
|
| 29 | - 'redirect_url' => $_['redirect_url'], |
|
| 30 | - ] |
|
| 31 | - )) ?>"> |
|
| 27 | + [ |
|
| 28 | + 'challengeProviderId' => $_['backupProvider']->getId(), |
|
| 29 | + 'redirect_url' => $_['redirect_url'], |
|
| 30 | + ] |
|
| 31 | + )) ?>"> |
|
| 32 | 32 | <?php p($l->t('Use backup code')) ?> |
| 33 | 33 | </a> |
| 34 | 34 | </p> |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | <div class="body-login-container update"> |
| 15 | 15 | <h2 class="two-factor-header"><?php p($provider->getDisplayName()); ?></h2> |
| 16 | 16 | <?php if ($error): ?> |
| 17 | - <?php if($error_message): ?> |
|
| 17 | + <?php if ($error_message): ?> |
|
| 18 | 18 | <p><strong><?php p($error_message); ?></strong></p> |
| 19 | 19 | <?php else: ?> |
| 20 | 20 | <p><strong><?php p($l->t('Error while validating your second factor')); ?></strong></p> |
@@ -88,7 +88,7 @@ |
||
| 88 | 88 | if (strpos($path, '/webdav/') === 0) { |
| 89 | 89 | $path = substr($path, strlen('/webdav')); |
| 90 | 90 | } |
| 91 | - $path = $this->path . $path; |
|
| 91 | + $path = $this->path.$path; |
|
| 92 | 92 | $this->mimeType[$this->storage->getId()][$path] = $this->mimeTypeDetector->detectPath($path); |
| 93 | 93 | return $this->mimeType[$this->storage->getId()][$path]; |
| 94 | 94 | } |
@@ -29,170 +29,170 @@ |
||
| 29 | 29 | |
| 30 | 30 | class FileMimeType extends AbstractStringCheck { |
| 31 | 31 | |
| 32 | - /** @var array */ |
|
| 33 | - protected $mimeType; |
|
| 34 | - |
|
| 35 | - /** @var IRequest */ |
|
| 36 | - protected $request; |
|
| 37 | - |
|
| 38 | - /** @var IMimeTypeDetector */ |
|
| 39 | - protected $mimeTypeDetector; |
|
| 40 | - |
|
| 41 | - /** @var IStorage */ |
|
| 42 | - protected $storage; |
|
| 43 | - |
|
| 44 | - /** @var string */ |
|
| 45 | - protected $path; |
|
| 46 | - |
|
| 47 | - /** |
|
| 48 | - * @param IL10N $l |
|
| 49 | - * @param IRequest $request |
|
| 50 | - * @param IMimeTypeDetector $mimeTypeDetector |
|
| 51 | - */ |
|
| 52 | - public function __construct(IL10N $l, IRequest $request, IMimeTypeDetector $mimeTypeDetector) { |
|
| 53 | - parent::__construct($l); |
|
| 54 | - $this->request = $request; |
|
| 55 | - $this->mimeTypeDetector = $mimeTypeDetector; |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * @param IStorage $storage |
|
| 60 | - * @param string $path |
|
| 61 | - */ |
|
| 62 | - public function setFileInfo(IStorage $storage, $path) { |
|
| 63 | - $this->storage = $storage; |
|
| 64 | - $this->path = $path; |
|
| 65 | - if (!isset($this->mimeType[$this->storage->getId()][$this->path]) |
|
| 66 | - || $this->mimeType[$this->storage->getId()][$this->path] === '') { |
|
| 67 | - $this->mimeType[$this->storage->getId()][$this->path] = null; |
|
| 68 | - } |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * @return string |
|
| 73 | - */ |
|
| 74 | - protected function getActualValue() { |
|
| 75 | - if ($this->mimeType[$this->storage->getId()][$this->path] !== null) { |
|
| 76 | - return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 77 | - } |
|
| 78 | - |
|
| 79 | - if ($this->storage->is_dir($this->path)) { |
|
| 80 | - $this->mimeType[$this->storage->getId()][$this->path] = 'httpd/unix-directory'; |
|
| 81 | - return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 82 | - } |
|
| 83 | - |
|
| 84 | - if ($this->isWebDAVRequest()) { |
|
| 85 | - // Creating a folder |
|
| 86 | - if ($this->request->getMethod() === 'MKCOL') { |
|
| 87 | - $this->mimeType[$this->storage->getId()][$this->path] = 'httpd/unix-directory'; |
|
| 88 | - return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - if ($this->request->getMethod() === 'PUT' || $this->request->getMethod() === 'MOVE') { |
|
| 92 | - if ($this->request->getMethod() === 'MOVE') { |
|
| 93 | - $this->mimeType[$this->storage->getId()][$this->path] = $this->mimeTypeDetector->detectPath($this->path); |
|
| 94 | - } else { |
|
| 95 | - $path = $this->request->getPathInfo(); |
|
| 96 | - $this->mimeType[$this->storage->getId()][$this->path] = $this->mimeTypeDetector->detectPath($path); |
|
| 97 | - } |
|
| 98 | - return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 99 | - } |
|
| 100 | - } else if ($this->isPublicWebDAVRequest()) { |
|
| 101 | - if ($this->request->getMethod() === 'PUT') { |
|
| 102 | - $path = $this->request->getPathInfo(); |
|
| 103 | - if (strpos($path, '/webdav/') === 0) { |
|
| 104 | - $path = substr($path, strlen('/webdav')); |
|
| 105 | - } |
|
| 106 | - $path = $this->path . $path; |
|
| 107 | - $this->mimeType[$this->storage->getId()][$path] = $this->mimeTypeDetector->detectPath($path); |
|
| 108 | - return $this->mimeType[$this->storage->getId()][$path]; |
|
| 109 | - } |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - if (in_array($this->request->getMethod(), ['POST', 'PUT'])) { |
|
| 113 | - $files = $this->request->getUploadedFile('files'); |
|
| 114 | - if (isset($files['type'][0])) { |
|
| 115 | - $mimeType = $files['type'][0]; |
|
| 116 | - if ($this->mimeType === 'application/octet-stream') { |
|
| 117 | - // Maybe not... |
|
| 118 | - $mimeTypeTest = $this->mimeTypeDetector->detectPath($files['name'][0]); |
|
| 119 | - if ($mimeTypeTest !== 'application/octet-stream' && $mimeTypeTest !== false) { |
|
| 120 | - $mimeType = $mimeTypeTest; |
|
| 121 | - } else { |
|
| 122 | - $mimeTypeTest = $this->mimeTypeDetector->detect($files['tmp_name'][0]); |
|
| 123 | - if ($mimeTypeTest !== 'application/octet-stream' && $mimeTypeTest !== false) { |
|
| 124 | - $mimeType = $mimeTypeTest; |
|
| 125 | - } |
|
| 126 | - } |
|
| 127 | - } |
|
| 128 | - $this->mimeType[$this->storage->getId()][$this->path] = $mimeType; |
|
| 129 | - return $mimeType; |
|
| 130 | - } |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - $this->mimeType[$this->storage->getId()][$this->path] = $this->storage->getMimeType($this->path); |
|
| 134 | - if ($this->mimeType[$this->storage->getId()][$this->path] === 'application/octet-stream') { |
|
| 135 | - $this->mimeType[$this->storage->getId()][$this->path] = $this->detectMimetypeFromPath(); |
|
| 136 | - } |
|
| 137 | - |
|
| 138 | - return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 139 | - } |
|
| 140 | - |
|
| 141 | - /** |
|
| 142 | - * @return string |
|
| 143 | - */ |
|
| 144 | - protected function detectMimetypeFromPath() { |
|
| 145 | - $mimeType = $this->mimeTypeDetector->detectPath($this->path); |
|
| 146 | - if ($mimeType !== 'application/octet-stream' && $mimeType !== false) { |
|
| 147 | - return $mimeType; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - if ($this->storage->instanceOfStorage('\OC\Files\Storage\Local') |
|
| 151 | - || $this->storage->instanceOfStorage('\OC\Files\Storage\Home') |
|
| 152 | - || $this->storage->instanceOfStorage('\OC\Files\ObjectStore\HomeObjectStoreStorage')) { |
|
| 153 | - $localFile = $this->storage->getLocalFile($this->path); |
|
| 154 | - if ($localFile !== false) { |
|
| 155 | - $mimeType = $this->mimeTypeDetector->detect($localFile); |
|
| 156 | - if ($mimeType !== false) { |
|
| 157 | - return $mimeType; |
|
| 158 | - } |
|
| 159 | - } |
|
| 160 | - |
|
| 161 | - return 'application/octet-stream'; |
|
| 162 | - } else { |
|
| 163 | - $handle = $this->storage->fopen($this->path, 'r'); |
|
| 164 | - $data = fread($handle, 8024); |
|
| 165 | - fclose($handle); |
|
| 166 | - $mimeType = $this->mimeTypeDetector->detectString($data); |
|
| 167 | - if ($mimeType !== false) { |
|
| 168 | - return $mimeType; |
|
| 169 | - } |
|
| 170 | - |
|
| 171 | - return 'application/octet-stream'; |
|
| 172 | - } |
|
| 173 | - } |
|
| 174 | - |
|
| 175 | - /** |
|
| 176 | - * @return bool |
|
| 177 | - */ |
|
| 178 | - protected function isWebDAVRequest() { |
|
| 179 | - return substr($this->request->getScriptName(), 0 - strlen('/remote.php')) === '/remote.php' && ( |
|
| 180 | - $this->request->getPathInfo() === '/webdav' || |
|
| 181 | - strpos($this->request->getPathInfo(), '/webdav/') === 0 || |
|
| 182 | - $this->request->getPathInfo() === '/dav/files' || |
|
| 183 | - strpos($this->request->getPathInfo(), '/dav/files/') === 0 || |
|
| 184 | - $this->request->getPathInfo() === '/dav/uploads' || |
|
| 185 | - strpos($this->request->getPathInfo(), '/dav/uploads/') === 0 |
|
| 186 | - ); |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - /** |
|
| 190 | - * @return bool |
|
| 191 | - */ |
|
| 192 | - protected function isPublicWebDAVRequest() { |
|
| 193 | - return substr($this->request->getScriptName(), 0 - strlen('/public.php')) === '/public.php' && ( |
|
| 194 | - $this->request->getPathInfo() === '/webdav' || |
|
| 195 | - strpos($this->request->getPathInfo(), '/webdav/') === 0 |
|
| 196 | - ); |
|
| 197 | - } |
|
| 32 | + /** @var array */ |
|
| 33 | + protected $mimeType; |
|
| 34 | + |
|
| 35 | + /** @var IRequest */ |
|
| 36 | + protected $request; |
|
| 37 | + |
|
| 38 | + /** @var IMimeTypeDetector */ |
|
| 39 | + protected $mimeTypeDetector; |
|
| 40 | + |
|
| 41 | + /** @var IStorage */ |
|
| 42 | + protected $storage; |
|
| 43 | + |
|
| 44 | + /** @var string */ |
|
| 45 | + protected $path; |
|
| 46 | + |
|
| 47 | + /** |
|
| 48 | + * @param IL10N $l |
|
| 49 | + * @param IRequest $request |
|
| 50 | + * @param IMimeTypeDetector $mimeTypeDetector |
|
| 51 | + */ |
|
| 52 | + public function __construct(IL10N $l, IRequest $request, IMimeTypeDetector $mimeTypeDetector) { |
|
| 53 | + parent::__construct($l); |
|
| 54 | + $this->request = $request; |
|
| 55 | + $this->mimeTypeDetector = $mimeTypeDetector; |
|
| 56 | + } |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * @param IStorage $storage |
|
| 60 | + * @param string $path |
|
| 61 | + */ |
|
| 62 | + public function setFileInfo(IStorage $storage, $path) { |
|
| 63 | + $this->storage = $storage; |
|
| 64 | + $this->path = $path; |
|
| 65 | + if (!isset($this->mimeType[$this->storage->getId()][$this->path]) |
|
| 66 | + || $this->mimeType[$this->storage->getId()][$this->path] === '') { |
|
| 67 | + $this->mimeType[$this->storage->getId()][$this->path] = null; |
|
| 68 | + } |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * @return string |
|
| 73 | + */ |
|
| 74 | + protected function getActualValue() { |
|
| 75 | + if ($this->mimeType[$this->storage->getId()][$this->path] !== null) { |
|
| 76 | + return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 77 | + } |
|
| 78 | + |
|
| 79 | + if ($this->storage->is_dir($this->path)) { |
|
| 80 | + $this->mimeType[$this->storage->getId()][$this->path] = 'httpd/unix-directory'; |
|
| 81 | + return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 82 | + } |
|
| 83 | + |
|
| 84 | + if ($this->isWebDAVRequest()) { |
|
| 85 | + // Creating a folder |
|
| 86 | + if ($this->request->getMethod() === 'MKCOL') { |
|
| 87 | + $this->mimeType[$this->storage->getId()][$this->path] = 'httpd/unix-directory'; |
|
| 88 | + return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + if ($this->request->getMethod() === 'PUT' || $this->request->getMethod() === 'MOVE') { |
|
| 92 | + if ($this->request->getMethod() === 'MOVE') { |
|
| 93 | + $this->mimeType[$this->storage->getId()][$this->path] = $this->mimeTypeDetector->detectPath($this->path); |
|
| 94 | + } else { |
|
| 95 | + $path = $this->request->getPathInfo(); |
|
| 96 | + $this->mimeType[$this->storage->getId()][$this->path] = $this->mimeTypeDetector->detectPath($path); |
|
| 97 | + } |
|
| 98 | + return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 99 | + } |
|
| 100 | + } else if ($this->isPublicWebDAVRequest()) { |
|
| 101 | + if ($this->request->getMethod() === 'PUT') { |
|
| 102 | + $path = $this->request->getPathInfo(); |
|
| 103 | + if (strpos($path, '/webdav/') === 0) { |
|
| 104 | + $path = substr($path, strlen('/webdav')); |
|
| 105 | + } |
|
| 106 | + $path = $this->path . $path; |
|
| 107 | + $this->mimeType[$this->storage->getId()][$path] = $this->mimeTypeDetector->detectPath($path); |
|
| 108 | + return $this->mimeType[$this->storage->getId()][$path]; |
|
| 109 | + } |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + if (in_array($this->request->getMethod(), ['POST', 'PUT'])) { |
|
| 113 | + $files = $this->request->getUploadedFile('files'); |
|
| 114 | + if (isset($files['type'][0])) { |
|
| 115 | + $mimeType = $files['type'][0]; |
|
| 116 | + if ($this->mimeType === 'application/octet-stream') { |
|
| 117 | + // Maybe not... |
|
| 118 | + $mimeTypeTest = $this->mimeTypeDetector->detectPath($files['name'][0]); |
|
| 119 | + if ($mimeTypeTest !== 'application/octet-stream' && $mimeTypeTest !== false) { |
|
| 120 | + $mimeType = $mimeTypeTest; |
|
| 121 | + } else { |
|
| 122 | + $mimeTypeTest = $this->mimeTypeDetector->detect($files['tmp_name'][0]); |
|
| 123 | + if ($mimeTypeTest !== 'application/octet-stream' && $mimeTypeTest !== false) { |
|
| 124 | + $mimeType = $mimeTypeTest; |
|
| 125 | + } |
|
| 126 | + } |
|
| 127 | + } |
|
| 128 | + $this->mimeType[$this->storage->getId()][$this->path] = $mimeType; |
|
| 129 | + return $mimeType; |
|
| 130 | + } |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + $this->mimeType[$this->storage->getId()][$this->path] = $this->storage->getMimeType($this->path); |
|
| 134 | + if ($this->mimeType[$this->storage->getId()][$this->path] === 'application/octet-stream') { |
|
| 135 | + $this->mimeType[$this->storage->getId()][$this->path] = $this->detectMimetypeFromPath(); |
|
| 136 | + } |
|
| 137 | + |
|
| 138 | + return $this->mimeType[$this->storage->getId()][$this->path]; |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + /** |
|
| 142 | + * @return string |
|
| 143 | + */ |
|
| 144 | + protected function detectMimetypeFromPath() { |
|
| 145 | + $mimeType = $this->mimeTypeDetector->detectPath($this->path); |
|
| 146 | + if ($mimeType !== 'application/octet-stream' && $mimeType !== false) { |
|
| 147 | + return $mimeType; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + if ($this->storage->instanceOfStorage('\OC\Files\Storage\Local') |
|
| 151 | + || $this->storage->instanceOfStorage('\OC\Files\Storage\Home') |
|
| 152 | + || $this->storage->instanceOfStorage('\OC\Files\ObjectStore\HomeObjectStoreStorage')) { |
|
| 153 | + $localFile = $this->storage->getLocalFile($this->path); |
|
| 154 | + if ($localFile !== false) { |
|
| 155 | + $mimeType = $this->mimeTypeDetector->detect($localFile); |
|
| 156 | + if ($mimeType !== false) { |
|
| 157 | + return $mimeType; |
|
| 158 | + } |
|
| 159 | + } |
|
| 160 | + |
|
| 161 | + return 'application/octet-stream'; |
|
| 162 | + } else { |
|
| 163 | + $handle = $this->storage->fopen($this->path, 'r'); |
|
| 164 | + $data = fread($handle, 8024); |
|
| 165 | + fclose($handle); |
|
| 166 | + $mimeType = $this->mimeTypeDetector->detectString($data); |
|
| 167 | + if ($mimeType !== false) { |
|
| 168 | + return $mimeType; |
|
| 169 | + } |
|
| 170 | + |
|
| 171 | + return 'application/octet-stream'; |
|
| 172 | + } |
|
| 173 | + } |
|
| 174 | + |
|
| 175 | + /** |
|
| 176 | + * @return bool |
|
| 177 | + */ |
|
| 178 | + protected function isWebDAVRequest() { |
|
| 179 | + return substr($this->request->getScriptName(), 0 - strlen('/remote.php')) === '/remote.php' && ( |
|
| 180 | + $this->request->getPathInfo() === '/webdav' || |
|
| 181 | + strpos($this->request->getPathInfo(), '/webdav/') === 0 || |
|
| 182 | + $this->request->getPathInfo() === '/dav/files' || |
|
| 183 | + strpos($this->request->getPathInfo(), '/dav/files/') === 0 || |
|
| 184 | + $this->request->getPathInfo() === '/dav/uploads' || |
|
| 185 | + strpos($this->request->getPathInfo(), '/dav/uploads/') === 0 |
|
| 186 | + ); |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + /** |
|
| 190 | + * @return bool |
|
| 191 | + */ |
|
| 192 | + protected function isPublicWebDAVRequest() { |
|
| 193 | + return substr($this->request->getScriptName(), 0 - strlen('/public.php')) === '/public.php' && ( |
|
| 194 | + $this->request->getPathInfo() === '/webdav' || |
|
| 195 | + strpos($this->request->getPathInfo(), '/webdav/') === 0 |
|
| 196 | + ); |
|
| 197 | + } |
|
| 198 | 198 | } |
@@ -27,41 +27,41 @@ |
||
| 27 | 27 | * @since 12.0.0 |
| 28 | 28 | */ |
| 29 | 29 | interface ISearchQuery { |
| 30 | - /** |
|
| 31 | - * @return ISearchOperator |
|
| 32 | - * @since 12.0.0 |
|
| 33 | - */ |
|
| 34 | - public function getSearchOperation(); |
|
| 30 | + /** |
|
| 31 | + * @return ISearchOperator |
|
| 32 | + * @since 12.0.0 |
|
| 33 | + */ |
|
| 34 | + public function getSearchOperation(); |
|
| 35 | 35 | |
| 36 | - /** |
|
| 37 | - * Get the maximum number of results to return |
|
| 38 | - * |
|
| 39 | - * @return integer |
|
| 40 | - * @since 12.0.0 |
|
| 41 | - */ |
|
| 42 | - public function getLimit(); |
|
| 36 | + /** |
|
| 37 | + * Get the maximum number of results to return |
|
| 38 | + * |
|
| 39 | + * @return integer |
|
| 40 | + * @since 12.0.0 |
|
| 41 | + */ |
|
| 42 | + public function getLimit(); |
|
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * Get the offset for returned results |
|
| 46 | - * |
|
| 47 | - * @return integer |
|
| 48 | - * @since 12.0.0 |
|
| 49 | - */ |
|
| 50 | - public function getOffset(); |
|
| 44 | + /** |
|
| 45 | + * Get the offset for returned results |
|
| 46 | + * |
|
| 47 | + * @return integer |
|
| 48 | + * @since 12.0.0 |
|
| 49 | + */ |
|
| 50 | + public function getOffset(); |
|
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * The fields and directions to order by |
|
| 54 | - * |
|
| 55 | - * @return ISearchOrder[] |
|
| 56 | - * @since 12.0.0 |
|
| 57 | - */ |
|
| 58 | - public function getOrder(); |
|
| 52 | + /** |
|
| 53 | + * The fields and directions to order by |
|
| 54 | + * |
|
| 55 | + * @return ISearchOrder[] |
|
| 56 | + * @since 12.0.0 |
|
| 57 | + */ |
|
| 58 | + public function getOrder(); |
|
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * The user that issued the search |
|
| 62 | - * |
|
| 63 | - * @return IUser |
|
| 64 | - * @since 12.0.0 |
|
| 65 | - */ |
|
| 66 | - public function getUser(); |
|
| 60 | + /** |
|
| 61 | + * The user that issued the search |
|
| 62 | + * |
|
| 63 | + * @return IUser |
|
| 64 | + * @since 12.0.0 |
|
| 65 | + */ |
|
| 66 | + public function getUser(); |
|
| 67 | 67 | } |
@@ -27,66 +27,66 @@ |
||
| 27 | 27 | use OCP\IUser; |
| 28 | 28 | |
| 29 | 29 | class SearchQuery implements ISearchQuery { |
| 30 | - /** @var ISearchOperator */ |
|
| 31 | - private $searchOperation; |
|
| 32 | - /** @var integer */ |
|
| 33 | - private $limit; |
|
| 34 | - /** @var integer */ |
|
| 35 | - private $offset; |
|
| 36 | - /** @var ISearchOrder[] */ |
|
| 37 | - private $order; |
|
| 38 | - /** @var IUser */ |
|
| 39 | - private $user; |
|
| 30 | + /** @var ISearchOperator */ |
|
| 31 | + private $searchOperation; |
|
| 32 | + /** @var integer */ |
|
| 33 | + private $limit; |
|
| 34 | + /** @var integer */ |
|
| 35 | + private $offset; |
|
| 36 | + /** @var ISearchOrder[] */ |
|
| 37 | + private $order; |
|
| 38 | + /** @var IUser */ |
|
| 39 | + private $user; |
|
| 40 | 40 | |
| 41 | - /** |
|
| 42 | - * SearchQuery constructor. |
|
| 43 | - * |
|
| 44 | - * @param ISearchOperator $searchOperation |
|
| 45 | - * @param int $limit |
|
| 46 | - * @param int $offset |
|
| 47 | - * @param array $order |
|
| 48 | - * @param IUser $user |
|
| 49 | - */ |
|
| 50 | - public function __construct(ISearchOperator $searchOperation, $limit, $offset, array $order, IUser $user) { |
|
| 51 | - $this->searchOperation = $searchOperation; |
|
| 52 | - $this->limit = $limit; |
|
| 53 | - $this->offset = $offset; |
|
| 54 | - $this->order = $order; |
|
| 55 | - $this->user = $user; |
|
| 56 | - } |
|
| 41 | + /** |
|
| 42 | + * SearchQuery constructor. |
|
| 43 | + * |
|
| 44 | + * @param ISearchOperator $searchOperation |
|
| 45 | + * @param int $limit |
|
| 46 | + * @param int $offset |
|
| 47 | + * @param array $order |
|
| 48 | + * @param IUser $user |
|
| 49 | + */ |
|
| 50 | + public function __construct(ISearchOperator $searchOperation, $limit, $offset, array $order, IUser $user) { |
|
| 51 | + $this->searchOperation = $searchOperation; |
|
| 52 | + $this->limit = $limit; |
|
| 53 | + $this->offset = $offset; |
|
| 54 | + $this->order = $order; |
|
| 55 | + $this->user = $user; |
|
| 56 | + } |
|
| 57 | 57 | |
| 58 | - /** |
|
| 59 | - * @return ISearchOperator |
|
| 60 | - */ |
|
| 61 | - public function getSearchOperation() { |
|
| 62 | - return $this->searchOperation; |
|
| 63 | - } |
|
| 58 | + /** |
|
| 59 | + * @return ISearchOperator |
|
| 60 | + */ |
|
| 61 | + public function getSearchOperation() { |
|
| 62 | + return $this->searchOperation; |
|
| 63 | + } |
|
| 64 | 64 | |
| 65 | - /** |
|
| 66 | - * @return int |
|
| 67 | - */ |
|
| 68 | - public function getLimit() { |
|
| 69 | - return $this->limit; |
|
| 70 | - } |
|
| 65 | + /** |
|
| 66 | + * @return int |
|
| 67 | + */ |
|
| 68 | + public function getLimit() { |
|
| 69 | + return $this->limit; |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - /** |
|
| 73 | - * @return int |
|
| 74 | - */ |
|
| 75 | - public function getOffset() { |
|
| 76 | - return $this->offset; |
|
| 77 | - } |
|
| 72 | + /** |
|
| 73 | + * @return int |
|
| 74 | + */ |
|
| 75 | + public function getOffset() { |
|
| 76 | + return $this->offset; |
|
| 77 | + } |
|
| 78 | 78 | |
| 79 | - /** |
|
| 80 | - * @return ISearchOrder[] |
|
| 81 | - */ |
|
| 82 | - public function getOrder() { |
|
| 83 | - return $this->order; |
|
| 84 | - } |
|
| 79 | + /** |
|
| 80 | + * @return ISearchOrder[] |
|
| 81 | + */ |
|
| 82 | + public function getOrder() { |
|
| 83 | + return $this->order; |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | - /** |
|
| 87 | - * @return IUser |
|
| 88 | - */ |
|
| 89 | - public function getUser() { |
|
| 90 | - return $this->user; |
|
| 91 | - } |
|
| 86 | + /** |
|
| 87 | + * @return IUser |
|
| 88 | + */ |
|
| 89 | + public function getUser() { |
|
| 90 | + return $this->user; |
|
| 91 | + } |
|
| 92 | 92 | } |
@@ -29,38 +29,38 @@ |
||
| 29 | 29 | use ID3Parser\ID3Parser; |
| 30 | 30 | |
| 31 | 31 | class MP3 extends Provider { |
| 32 | - /** |
|
| 33 | - * {@inheritDoc} |
|
| 34 | - */ |
|
| 35 | - public function getMimeType() { |
|
| 36 | - return '/audio\/mpeg/'; |
|
| 37 | - } |
|
| 32 | + /** |
|
| 33 | + * {@inheritDoc} |
|
| 34 | + */ |
|
| 35 | + public function getMimeType() { |
|
| 36 | + return '/audio\/mpeg/'; |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * {@inheritDoc} |
|
| 41 | - */ |
|
| 42 | - public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { |
|
| 43 | - $getID3 = new ID3Parser(); |
|
| 39 | + /** |
|
| 40 | + * {@inheritDoc} |
|
| 41 | + */ |
|
| 42 | + public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) { |
|
| 43 | + $getID3 = new ID3Parser(); |
|
| 44 | 44 | |
| 45 | - $tmpPath = $fileview->toTmpFile($path); |
|
| 46 | - $tags = $getID3->analyze($tmpPath); |
|
| 47 | - unlink($tmpPath); |
|
| 48 | - $picture = isset($tags['id3v2']['APIC'][0]['data']) ? $tags['id3v2']['APIC'][0]['data'] : null; |
|
| 49 | - if(is_null($picture) && isset($tags['id3v2']['PIC'][0]['data'])) { |
|
| 50 | - $picture = $tags['id3v2']['PIC'][0]['data']; |
|
| 51 | - } |
|
| 45 | + $tmpPath = $fileview->toTmpFile($path); |
|
| 46 | + $tags = $getID3->analyze($tmpPath); |
|
| 47 | + unlink($tmpPath); |
|
| 48 | + $picture = isset($tags['id3v2']['APIC'][0]['data']) ? $tags['id3v2']['APIC'][0]['data'] : null; |
|
| 49 | + if(is_null($picture) && isset($tags['id3v2']['PIC'][0]['data'])) { |
|
| 50 | + $picture = $tags['id3v2']['PIC'][0]['data']; |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - if(!is_null($picture)) { |
|
| 54 | - $image = new \OC_Image(); |
|
| 55 | - $image->loadFromData($picture); |
|
| 53 | + if(!is_null($picture)) { |
|
| 54 | + $image = new \OC_Image(); |
|
| 55 | + $image->loadFromData($picture); |
|
| 56 | 56 | |
| 57 | - if ($image->valid()) { |
|
| 58 | - $image->scaleDownToFit($maxX, $maxY); |
|
| 57 | + if ($image->valid()) { |
|
| 58 | + $image->scaleDownToFit($maxX, $maxY); |
|
| 59 | 59 | |
| 60 | - return $image; |
|
| 61 | - } |
|
| 62 | - } |
|
| 60 | + return $image; |
|
| 61 | + } |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | - return false; |
|
| 65 | - } |
|
| 64 | + return false; |
|
| 65 | + } |
|
| 66 | 66 | } |
@@ -46,11 +46,11 @@ |
||
| 46 | 46 | $tags = $getID3->analyze($tmpPath); |
| 47 | 47 | unlink($tmpPath); |
| 48 | 48 | $picture = isset($tags['id3v2']['APIC'][0]['data']) ? $tags['id3v2']['APIC'][0]['data'] : null; |
| 49 | - if(is_null($picture) && isset($tags['id3v2']['PIC'][0]['data'])) { |
|
| 49 | + if (is_null($picture) && isset($tags['id3v2']['PIC'][0]['data'])) { |
|
| 50 | 50 | $picture = $tags['id3v2']['PIC'][0]['data']; |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | - if(!is_null($picture)) { |
|
| 53 | + if (!is_null($picture)) { |
|
| 54 | 54 | $image = new \OC_Image(); |
| 55 | 55 | $image->loadFromData($picture); |
| 56 | 56 | |