Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #23274 from Senorsen/add-urlencode-ftp-sftp | Thomas Müller | 2016-03-31 | 2 | -2/+2 |
|\ | | | | | Add urlencode to username part of ftp and sftp links | ||||
| * | Add urlencode to username part of ftp and sftp links | Senorsen | 2016-03-16 | 2 | -2/+2 |
| | | | | | | | | according to #17796 | ||||
* | | Merge pull request #23517 from owncloud/gdrive-stream-download | Frank Karlitschek | 2016-03-31 | 1 | -4/+5 |
|\ \ | | | | | | | GDrive stream download with RetryWrapper | ||||
| * | | GDrive stream download with RetryWrapper | Vincent Petry | 2016-03-30 | 1 | -4/+5 |
| | | | |||||
* | | | Merge pull request #23516 from owncloud/dropbox-stream-download | Thomas Müller | 2016-03-31 | 1 | -4/+6 |
|\ \ \ | | | | | | | | | Dropbox stream download with RetryWrapper | ||||
| * | | | Dropbox stream download with RetryWrapper | Vincent Petry | 2016-03-23 | 1 | -4/+6 |
| | | | | |||||
* | | | | Merge pull request #23672 from owncloud/use-retry-wrapper-for-sftp | Thomas Müller | 2016-03-31 | 1 | -1/+3 |
|\ \ \ \ | |_|/ / |/| | | | Use RetryWrapper for SFTP storage | ||||
| * | | | Use RetryWrapper for SFTP storage | Lukas Reschke | 2016-03-30 | 1 | -1/+3 |
| |/ / | | | | | | | | | | | | | | | | Equivalent to https://github.com/owncloud/core/pull/23442 Required for making encryption work with external storage reliable. | ||||
* / / | Use the shipped cacerts.pem instead of the global one | Lukas Reschke | 2016-03-30 | 1 | -0/+1 |
|/ / | | | | | | | The one we ship may cause problems since Equifax is not included anymore (SHA-1 certs) are deprecated. We should just be consistent here and also use the certificate file which is used by the other calls in the library. | ||||
* | | Merge pull request #23440 from owncloud/fix_22286 | Thomas Müller | 2016-03-22 | 1 | -1/+4 |
|\ \ | | | | | | | apply retry wrapper to make sure that we always read/write a complete block | ||||
| * | | apply retry wrapper to make sure that we always read/write a complete block | Bjoern Schiessle | 2016-03-21 | 1 | -1/+4 |
| | | | |||||
* | | | Merge pull request #23439 from owncloud/smb-permissions | Thomas Müller | 2016-03-21 | 1 | -0/+22 |
|\ \ \ | | | | | | | | | properly use smb permissions | ||||
| * | | | properly use smb permissions | Robin Appelman | 2016-03-21 | 1 | -0/+22 |
| |/ / | |||||
* | | | Merge pull request #23323 from owncloud/gdrive-chunkupload | Thomas Müller | 2016-03-21 | 1 | -5/+52 |
|\ \ \ | |/ / |/| | | Chunk upload for GDrive | ||||
| * | | Only use GDrive chunks when needed | Vincent Petry | 2016-03-17 | 1 | -29/+43 |
| | | | |||||
| * | | Chunk upload for GDrive | Vincent Petry | 2016-03-16 | 1 | -6/+39 |
| |/ | | | | | | | | | Instead of storing the WHOLE file in memory in a PHP variable, use the library's chunk upload support. | ||||
* | | Merge pull request #23272 from owncloud/dropbox-downloadnotthefullfileinmemory | Thomas Müller | 2016-03-17 | 1 | -6/+28 |
|\ \ | | | | | | | Fix dropbox storage to not store the whole file in memory | ||||
| * | | Fix dropbox storage to not store the whole file in memory | Vincent Petry | 2016-03-15 | 1 | -6/+28 |
| |/ | | | | | | | | | | | Since the library can only store the full response in memory on download, we use an alternate client lib and set the correct headers to be able to stream the content to a temp file. | ||||
* / | handle connection errors as storage not available in smb | Robin Appelman | 2016-03-16 | 1 | -14/+40 |
|/ | |||||
* | move failedstorage to core | Robin Appelman | 2016-03-11 | 3 | -358/+1 |
| | |||||
* | dont break when there is an invalid share | Robin Appelman | 2016-03-11 | 1 | -1/+12 |
| | |||||
* | Fix compatibility with PHP 5.4 | Lukas Reschke | 2016-03-08 | 1 | -1/+2 |
| | | | | Fixes https://github.com/owncloud/core/issues/22960 | ||||
* | Properly set exception in FailedStorage | Vincent Petry | 2016-03-03 | 2 | -1/+7 |
| | |||||
* | allow availability recheck for external storages | Robin Appelman | 2016-03-03 | 1 | -1/+2 |
| | |||||
* | Remove Scrutinizer Auto Fixer | Lukas Reschke | 2016-03-01 | 4 | -4/+0 |
| | |||||
* | Update author information | Lukas Reschke | 2016-03-01 | 10 | -1/+10 |
| | | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :) | ||||
* | Merge pull request #22636 from owncloud/fix-ssl-on-external-storages | Thomas Müller | 2016-02-25 | 1 | -0/+14 |
|\ | | | | | Fix HTTPS support on external storages | ||||
| * | Properly cast type | Lukas Reschke | 2016-02-24 | 1 | -0/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The current logic is checking whether: 1. The returned value is a boolen 2. The returned value is a string and then matches for "true" Since the config is now written to the database the data is now a string with the value "1" if HTTPS is set to true. Effectively this option was thus always disabled at the moment, falling back to plain HTTP. This change casts the data to a boolean if it is defined as boolean. Fixes https://github.com/owncloud/core/issues/22605 Fixes https://github.com/owncloud/core/issues/22016 | ||||
* | | Merge pull request #22604 from owncloud/fix-google-drive-encryption | Thomas Müller | 2016-02-25 | 1 | -5/+11 |
|\ \ | | | | | | | Copy into local file | ||||
| * | | More error handling | Lukas Reschke | 2016-02-25 | 1 | -2/+6 |
| | | | |||||
| * | | Copy into local file | Lukas Reschke | 2016-02-25 | 1 | -3/+5 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | Using the Guzzle stream directly here will only return 1739 characters for `fread` instead of all data. This leads to the problem that the stream is read incorrectly and thus the data cannot be properly decrypted => :bomb: This approach copies the data into a local temporary file, as done before in all stable releases as well as other storage connectors. While this approach will load the whole file into memory, this is already was has happened before in any stable release as well. See https://github.com/owncloud/core/commit/d608c37c90c308d0518d854de908ec4be5f462dc for the breaking change. To test this enable Google Drive as external storage and upload some files with encryption enabled. Reading the file should fail now. Fixes https://github.com/owncloud/core/issues/22590 | ||||
* / | Disable sharing by default for external storage mounts | Vincent Petry | 2016-02-24 | 1 | -0/+1 |
|/ | | | | | | This is for newly created mount points. Migrated mount points will have sharing enabled as before. | ||||
* | Merge pull request #22405 from owncloud/gdrive-mimetype-and-office-fixes | Thomas Müller | 2016-02-19 | 1 | -4/+13 |
|\ | | | | | Fix GDrive handling of office files | ||||
| * | Fix GDrive handling of office files | Vincent Petry | 2016-02-15 | 1 | -4/+13 |
| | | | | | | | | | | | | | | | | | | | | 1) Properly detect empty file extension, can be null. 2) When renaming part file to final file, use the correct file name without extension, if it exists 3) When renaming a file, do not delete the original file if it had the same id, which can happen with part files | ||||
* | | Merge pull request #22408 from owncloud/gdrive-remove-mimetype-detection | Thomas Müller | 2016-02-18 | 1 | -1/+2 |
|\ \ | | | | | | | Fix GDrive mime type detection with encryption | ||||
| * | | Fix GDrive mime type detection with encryption | Vincent Petry | 2016-02-15 | 1 | -1/+2 |
| |/ | | | | | | | | | | | When encryption is enabled, GDrive would think that all files are text files. This fix falls back to the extension based detection when a non-special mime type is returned | ||||
* | | remove global credentials | Robin Appelman | 2016-02-17 | 1 | -88/+0 |
| | | |||||
* | | remove login credentails and user provided backends | Robin Appelman | 2016-02-16 | 2 | -180/+0 |
|/ | |||||
* | handle forbidden exceptions in smb backend | Robin Appelman | 2016-02-10 | 1 | -1/+18 |
| | |||||
* | Add tests | Robin Appelman | 2016-02-08 | 1 | -2/+0 |
| | |||||
* | handle no user set for personal global auth | Robin Appelman | 2016-02-08 | 1 | -0/+2 |
| | |||||
* | Add occ files_external:create command to add new mounts | Robin Appelman | 2016-02-05 | 1 | -0/+16 |
| | |||||
* | Merge pull request #20920 from owncloud/issue_20888 | Thomas Müller | 2016-02-05 | 5 | -1/+38 |
|\ | | | | | Add dialog to enter credentials on errored mount point | ||||
| * | fix error code for unconfigured user provided auth | Robin Appelman | 2016-02-04 | 1 | -0/+11 |
| | | |||||
| * | set read permissions on failed mount root | Robin Appelman | 2016-02-04 | 1 | -1/+2 |
| | | |||||
| * | handle exception in availibilty check | Robin Appelman | 2016-02-04 | 1 | -3/+8 |
| | | |||||
| * | show failed external storages properly | Robin Appelman | 2016-02-04 | 1 | -0/+5 |
| | | |||||
| * | Add credentials dialog for user provided auth | Jesús Macias | 2016-02-04 | 2 | -0/+15 |
| | | |||||
* | | fix warning caused by global auth | Robin Appelman | 2016-02-04 | 1 | -1/+4 |
|/ | |||||
* | Add global auth backend for files external | Robin Appelman | 2016-02-04 | 2 | -0/+89 |
| |