aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/sftp.php
Commit message (Collapse)AuthorAgeFilesLines
* Fix storage backend class namespaces and move to subdirRobin McCorkell2016-04-141-467/+0
| | | | | All classes that were previously \OC\Files\Storage\FooBar are now \OCA\Files_External\Lib\Storage\FooBar
* Merge pull request #23274 from Senorsen/add-urlencode-ftp-sftpThomas Müller2016-03-311-1/+1
|\ | | | | Add urlencode to username part of ftp and sftp links
| * Add urlencode to username part of ftp and sftp linksSenorsen2016-03-161-1/+1
| | | | | | | | according to #17796
* | Use RetryWrapper for SFTP storageLukas Reschke2016-03-301-1/+3
|/ | | | | | Equivalent to https://github.com/owncloud/core/pull/23442 Required for making encryption work with external storage reliable.
* Remove Scrutinizer Auto FixerLukas Reschke2016-03-011-1/+0
|
* Handle no user set in sftp constructorRobin Appelman2016-01-261-0/+3
|
* Happy new year!Thomas Müller2016-01-121-2/+3
|
* Scrutinizer Auto-FixesScrutinizer Auto-Fixer2015-11-301-1/+1
| | | | This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
* Fix parsing of sftp hosts when using ipv6Robin Appelman2015-11-161-14/+24
|
* deduplicate @xenopathicMorris Jobke2015-10-061-1/+0
|
* update licence headers via scriptMorris Jobke2015-10-051-0/+2
|
* Migrate SFTP_Key external storage to new APIRobin McCorkell2015-08-281-5/+12
| | | | | The SFTP backend now supports public key authentication alongside password authentication.
* Merge pull request #14779 from owncloud/use-iterator-directoryRobin McCorkell2015-08-071-2/+2
|\ | | | | Use the new IteratorDirectory instead of the fakedir wrapper
| * Use the new IteratorDirectory instead of the fakedir wrapperRobin Appelman2015-07-151-2/+2
| |
* | Use absolute namespaceLukas Reschke2015-08-051-4/+2
| |
* | Update phpseclib to 2.0Andreas Fischer2015-08-031-6/+10
|/
* Workaround for empty dir deletion for SFTPVincent Petry2015-06-181-1/+5
| | | | | | | | Explicitly clear the stat cache after deleting an empty folder to make sure it is properly detected as deleted in subsequent requests. This works around a problem with phpseclib where the folder is properly deleted remotely but the stat cache was not updated.
* Fix SFTP storage id to be compatible with older idsVincent Petry2015-04-151-1/+9
| | | | | | Remove port from SFTP storage id if it is 22. This will prevent recreating a different storage entry due to id mismatch after upgrade.
* Update license headersJenkins for ownCloud2015-03-261-4/+27
|
* Revert "Updating license headers"Morris Jobke2015-02-261-25/+4
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Merge pull request #14462 from owncloud/add-some-php-docsThomas Müller2015-02-251-2/+70
|\ | | | | Add some PHPDocs
| * Add some PHPDocsLukas Reschke2015-02-241-2/+70
| | | | | | | | My IDE was crying...
* | Merge pull request #14460 from owncloud/revive/12971Thomas Müller2015-02-251-3/+15
|\ \ | | | | | | Add support for sftp custom port
| * | Fix code style as per reviewLukas Reschke2015-02-241-2/+2
| | |
| * | Add support for sftp custom portSA2015-02-241-3/+15
| |/
* / Fix code that never workedLukas Reschke2015-02-241-1/+1
|/ | | | Introduced with https://github.com/owncloud/core/commit/1df8a5a774ae5d665849daf74540d967826d5e11 in February 2013…
* Updating license headersJenkins for ownCloud2015-02-231-4/+25
|
* Update phpseclib to version 0.3.9.Andreas Fischer2015-02-181-10/+2
|
* Add support for SFTP key authenticationRoss Nicoll2015-01-141-4/+17
| | | | | | | | | | Add support for external files accessed via SFTP using public key exchange authentication. Keys are generated automatically when the configuration is added, or can be regenerated on demand if a key is compromised. Creation of a new configuration row now triggers focus on that row. This is used to trigger auto-configuration for SFTP keys. Generated public keys are saved in user's data directory for easy retrieval by an external application. Add controller for SFTP key generation AJAX SFTP class initialisation no longer produces a warning if the password field is missing. Add unit tests for SFTP with key authentication backend
* first step to drop \OCP\Config:: in favour of IConfigMorris Jobke2014-12-171-1/+1
|
* Lazy initialize external storagesVincent Petry2014-10-221-13/+26
| | | | | | | | Fixed the following external storages to not connect in the constructor, but do it on-demand when getConnection() is called. - S3 - SWIFT - SFTP
* Prevent errors on broken SFTP configRobin McCorkell2014-08-271-0/+3
|
* Pass existing Net_SFTP object into Net_SFTP_Stream.Andreas Fischer2014-07-181-3/+9
|
* login() must be called after getServerPublicHostKey().Andreas Fischer2014-07-121-5/+5
|
* Add short description explaining how SFTP ext storage class works.Andreas Fischer2014-07-121-0/+4
|
* The file providing the sftp:// scheme needs to be included manually.Andreas Fischer2014-07-121-0/+11
|
* use phpseclib from 3rdpartyThomas Müller2014-06-031-5/+0
| | | | rename class Crypt_Blowfish to Legacy_Crypt_Blowfish
* polish documentation based on scrutinizer patchesJörn Friedrich Dreyer2014-02-061-0/+6
|
* Removed unused writeBack methodVincent Petry2014-01-231-8/+0
|
* Now using SFTP stream wrapper from phpseclibVincent Petry2014-01-231-28/+8
| | | | | | - Upgraded phpseclib to master version (post 0.3.5) - Now using fopen() on sftp URL for both read and write - Fixes #4063
* Fixed SFTP storage to overwrite on renameVincent Petry2013-11-261-0/+3
|
* Moved default isReadable/isUpdatable impl into Common classVincent Petry2013-11-221-8/+0
| | | | | Also adjusted all ext storage backends to not override these when the default behavior is expected.
* Fixed error-checking error in sftp.phphkjolhede2013-11-151-6/+8
|
* Update file to meet coding standartsLennart Rosam2013-10-071-47/+77
|
* Actually test the connectionLennart Rosam2013-10-071-1/+1
|
* Fixes #4129Lennart Rosam2013-10-071-2/+3
|
* Compare result are already true/falseBart Visscher2013-08-171-1/+1
|
* Dont task external storages with creating their own rootRobin Appelman2013-04-261-4/+0
|
* Whitespace fixesBart Visscher2013-02-221-7/+7
|
* Merge pull request #1731 from owncloud/unknown-freespaceFrank Karlitschek2013-02-191-4/+0
|\ | | | | Give storage backends the option to define having no known free space