aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/lib/proxy.php
Commit message (Collapse)AuthorAgeFilesLines
* remove old encryption appBjoern Schiessle2015-04-071-401/+0
|
* Update license headersJenkins for ownCloud2015-03-261-16/+19
|
* Revert "Updating license headers"Morris Jobke2015-02-261-20/+23
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-23/+20
|
* Merge pull request #13288 from owncloud/enc_fix_public_downloadLukas Reschke2015-01-141-11/+9
|\ | | | | [encryption] fix download of public shared files
| * if we download a public shared file we need to retrieve the user from the pathBjoern Schiessle2015-01-131-11/+9
| |
* | Check array size, before using the 3rd element from itJoas Schilling2015-01-121-0/+9
|/
* make versions of shared files downloadableBjoern Schiessle2015-01-091-1/+3
|
* Update OCA\Encryption to OCA\Files_Encryption in the encryption app itselfJoas Schilling2014-12-091-3/+3
|
* Fix namespace of files_encryption classes and autoload themJoas Schilling2014-12-091-1/+1
|
* harmonize copyright noticeBjoern Schiessle2014-11-261-4/+5
|
* new folder structure for keysBjoern Schiessle2014-11-261-1/+1
| | | | | | all keys are now in files_encryption/key/path_to_file/filename/ share keys are named: user.shareKey file key is named: fileKey
* remove unused variableBjoern Schiessle2014-11-251-1/+0
|
* also try to get file info from part fileBjoern Schiessle2014-11-071-2/+2
|
* still try to encrypt files, even if the session is not initialized. The ↵Bjoern Schiessle2014-11-041-2/+1
| | | | stream wrapper will throw an error which is better than silently continue.
* we also encrypt/decrypt files in the versions folder for previews and if ↵Bjoern Schiessle2014-10-061-3/+8
| | | | encryption is enabled/disabled
* make sure that we really catch the files folder onlyBjoern Schiessle2014-09-191-1/+1
|
* Remove passing by reference to allow for proper GCVincent Petry2014-09-121-1/+1
| | | | | | | | | | | The garbage collector in PHP 5.3.10 does not properly release the file handle when calling fclose() due to the fact that it is passed by reference. This has the side-effect of preventing file locks to be released as well when the files_locking app is enabled. This fix removes the useless passing by reference and now the file handle and file lock are freed properly.
* Kill legacy encryption migrationThomas Müller2014-07-081-15/+0
|
* always take unencrypted sizeBjoern Schiessle2014-07-041-2/+2
|
* Fix checking for external share in encryptionRobin Appelman2014-06-141-1/+4
|
* if file doesn't exist, check parent folderBjoern Schiessle2014-06-141-0/+6
|
* exclude mounted server-to-server shares from encryptionBjoern Schiessle2014-06-141-4/+28
|
* don't ask for fileInfo if we already have oneBjoern Schiessle2014-06-041-5/+4
|
* Remove all occurences of @brief and @returns from PHPDocMorris Jobke2014-05-191-3/+3
| | | | * test case added to avoid adding them later
* Fix more missing or broken PHPDocRobin McCorkell2014-05-161-1/+1
|
* Fix PHPDoc in /appsRobin McCorkell2014-05-161-8/+8
|
* remove legacy aka deprecated code: OC_FilesystemViewThomas Müller2014-05-121-5/+5
|
* remove legacy aka deprecated code: OC_FilesystemThomas Müller2014-05-121-3/+3
|
* only update the values which really changedBjoern Schiessle2014-04-301-8/+6
|
* fix shouldEncrypt() method and improved decryptAll() unit testsBjoern Schiessle2014-04-281-1/+2
|
* Merge pull request #7978 from owncloud/enc_cleanupVincent Petry2014-04-021-45/+0
|\ | | | | there is no need to re-calculate the shares after a touch
| * there is no need to re-calculate the shares after a touchBjoern Schiessle2014-03-311-45/+0
| |
* | Merge pull request #7912 from owncloud/enc_move_checks_to_pre_hookBjörn Schießle2014-04-011-60/+32
|\ \ | |/ |/| move check if a file should be encrypted to the pre hook
| * move check if a file should be encrypted to the pre hookBjoern Schiessle2014-03-311-60/+32
| |
* | don't write file if opening a stream to encrypt the data failsBjoern Schiessle2014-03-281-0/+2
|/
* Fixed warning when browsing Shared folderVincent Petry2014-03-101-1/+1
| | | | | The virtual "Shared" folder doesn't have an unencrypted_size field. This fix adds a check to prevent warnings in the log.
* Return unencrypted_size of folder when queriedVincent Petry2014-03-071-0/+7
| | | | | | This fixes the "used space" to be based on the unencrypted size, not encrypted size, to be consistent with how quota/space is handled when encryption is enabled
* Merge pull request #7454 from owncloud/enc_remember_fopen_modeBjörn Schießle2014-02-281-6/+26
|\ | | | | [enc] remember original fopen access type in pre-proxy
| * remember original fopen access type in pre-proxy because sometimes they changeBjoern Schiessle2014-02-271-6/+26
| | | | | | | | during the fopen call, e.g. 'r' becomes 'r+' if we open an URL
* | Fixed wrong field nameVincent Petry2014-02-271-1/+1
|/ | | | | | | This re-fixes an issue where the unencrypted size isn't updated correctly when saving a text file in the UI multiple times. Fixes #7467
* Merge pull request #7176 from owncloud/styleLukas Reschke2014-02-181-1/+1
|\ | | | | Some style fixes
| * Style fixesBart Visscher2014-02-121-1/+1
| |
* | Merge pull request #6748 from owncloud/fileinfoicewind19912014-02-141-3/+3
|\ \ | |/ |/| Add a FileInfo class which holds all info of a file ...
| * merge master into fileinfoRobin Appelman2014-01-291-7/+24
| |\
| * \ Merge branch 'master' into fileinfoRobin Appelman2014-01-171-2/+2
| |\ \ | | | | | | | | | | | | | | | | Conflicts: tests/lib/files/cache/cache.php
| * | | remove more is_array from encryptionRobin Appelman2014-01-171-2/+2
| | | |
| * | | Don't use is_array on FileInfoRobin Appelman2014-01-171-2/+2
| | | |
* | | | move unlink proxy to a hook which handles pre and post conditionsBjoern Schiessle2014-01-311-41/+0
| |_|/ |/| |
* | | only update file cache with the unenecrypted size when the file was writtenBjoern Schiessle2014-01-241-7/+24
| |/ |/|