aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/lib/util.php
Commit message (Collapse)AuthorAgeFilesLines
...
* fixed re-share problemsFlorin Peter2013-05-041-0/+19
|
* Fixed recoveryadmin settings in user and admin settings pages (js, ↵Sam Tuke2013-05-011-27/+52
| | | | | | | | templates, ajax) Renamed recovery methods in Util{} for clarity Added note about bug causing slow page load and redundant keypair generation recoveryAdmin functionality not yet complete
* fixed re-share problemsFlorin Peter2013-05-011-4/+11
|
* fixed tests, now tests should work via autotest.shFlorin Peter2013-04-301-1/+6
| | | | files_encryption app is now enabled in enable_all.php
* improved file sizeFlorin Peter2013-04-271-17/+42
|
* check if file exists before fixing file sizeFlorin Peter2013-04-271-1/+1
|
* improved file sizeFlorin Peter2013-04-271-5/+65
| | | | created new method fixFileSize in Util so it can be used with files_trashbin
* webdav fix for file chunkingFlorin Peter2013-04-251-1/+1
| | | | | upload with big files should now work @samtuke and @schiesbn we need a solution for the cache files created by webdav
* Development snapshotSam Tuke2013-04-231-24/+26
| | | | working on stream handling (large files) in Util->encryptAll()
* Stream writing improved: working with dolphin + kate, gedit & nautilus give ↵Sam Tuke2013-04-231-1/+1
| | | | | | errors, suspect those issues are clientside .part file paths fixed in stream{}
* Updated buglistSam Tuke2013-04-231-4/+0
|
* Merge branch 'files_encryption' of https://github.com/owncloud/core into ↵Florin Peter2013-04-221-10/+5
|\ | | | | | | files_encryption
| * fix encryption to owncloud user for public link sharesBjörn Schießle2013-04-221-1/+1
| |
| * fix comment, remove unused variableBjörn Schießle2013-04-221-7/+2
| |
| * removed some leftover code; use already existing var for path to users file ↵Björn Schießle2013-04-221-2/+2
| | | | | | | | folder
* | fix wrong file path in utilFlorin Peter2013-04-221-1/+1
| |
* | Merge branch 'files_encryption' of https://github.com/owncloud/core into ↵Florin Peter2013-04-221-51/+0
|\| | | | | | | files_encryption
| * remove util::getPaths(), this function was broken and is replaced my ↵Björn Schießle2013-04-221-51/+0
| | | | | | | | util::getAllFiles(). When unsharing a folder only remove the share key for sub files if the user really no longer have access to the file. Can happen that a sub-file/-folder is shared to a group the user is a member of or explicitly once more to the same user
* | improved handling for getSharingUsersArrayFlorin Peter2013-04-221-2/+7
|/
* fix sharing of folders. First we need to collect all files. Than we need to ↵Björn Schießle2013-04-221-0/+20
| | | | find all users with access to the file because this can vary from file to file and than we can encrypt it for all recipients
* getUsersSharingFile() no longer needed, use getSharingUsersArray() instead; ↵Björn Schießle2013-04-181-27/+3
| | | | fix filterShareReadyUsers() to return the correct results
* necessary changes in util.php after the changes in ↵Björn Schießle2013-04-181-3/+6
| | | | \OCP\Share::getUsersSharingFile() (fe58e4b1a6a0f3b63afe74690986493facdad2c4)
* rename $shareFilePath to $path to avoid confusions, it is not about paths to ↵Björn Schießle2013-04-181-8/+8
| | | | share files but about general path to files stored in ownCloud
* return filename relative to users file dir and not relative to data dirBjörn Schießle2013-04-181-1/+1
|
* Development snapshotSam Tuke2013-04-171-0/+3
| | | | Working on stream{} write
* Working on stream{} writingSam Tuke2013-04-161-0/+39
| | | | Development snapshot
* Fixed proxy class handing of read / write filesSam Tuke2013-04-161-14/+56
| | | | Various work on other classes
* fix some more pathsBjörn Schießle2013-04-121-9/+12
|
* fix some confusion about paths relative to the files dir and to the data dirBjörn Schießle2013-04-121-1/+1
|
* fix stream wrapper to make initial encryption workBjörn Schießle2013-04-121-4/+7
|
* add $view as parameter for getFileKey() callBjörn Schießle2013-04-101-1/+1
|
* Development snapshot;Sam Tuke2013-03-291-9/+47
| | | | | | Fixed errors from Hooks::login(); Work on enable/disable recoveryAdmin for lost passwords in settings page (template, ajax, js); Work on fixing sharing files to users (still broken);
* move getUidAndFilename() tu util.phpBjörn Schießle2013-03-261-0/+17
|
* Added method for setting user keyfile recovery preferenceSam Tuke2013-03-201-10/+68
| | | | | | | | Fixed method for checking if keyfile recovery is enabled for a user Added unit test for above 2 methods Made proxy{} always use sharing Made proxy{} work regardless of sharing API enabled or not Implemented proxy-based sharing to admin if user keyfile recovery is enabled
* Improved folder creation codeSam Tuke2013-03-191-37/+31
| | | | | | Created stub method for checking user pwd recovery preference from db Added pwd recovery column to db Added comments
* Fixed stream wrapper bugsSam Tuke2013-03-091-13/+65
| | | | | Switched encryptAll() to use stream-based instead of file-at-a-time encryption Development snapshot
* Added notes where to reuse old keys instead of generating new onesSam Tuke2013-02-271-0/+1
|
* Made proxy class reuse existing keyfiles not gen new ones;Sam Tuke2013-02-271-17/+33
| | | | Added notes about reusing shareKeys
* Deleting encrypted files with missing keyfiles/shareKeys now succeedsSam Tuke2013-02-271-3/+0
|
* Started work on post unshare hookSam Tuke2013-02-261-1/+2
| | | | Development snapshot
* Shared encrypted files now readable by both sharer and shareeSam Tuke2013-02-261-11/+26
|
* Development snapshotSam Tuke2013-02-201-8/+161
| | | | | Added comments Added methods
* Moved dependencies out of Crypt methods (encKeyfileToMultipleUsers)(DI)Sam Tuke2013-02-191-0/+41
| | | | | | | Fixed bug preventing sharing with users other than 'ownCloud' Added comments Moved functionality into filterShareReadyUsers() Other changes
* also find users with access to the file if a folder above the actual file ↵Björn Schießle2013-02-121-0/+14
| | | | was already shared
* Fixed bug causing encrypted files to be doubly encrypted at loginSam Tuke2013-02-061-8/+6
| | | | Added comments and docblocks
* Removed debugging outputSam Tuke2013-02-051-6/+0
|
* Cleaned up path formatting with new method stripUserFilesPath()Sam Tuke2013-02-051-11/+18
|
* Recryption of legacy encrypted files now working on loginSam Tuke2013-02-051-6/+12
|
* Added debugging output relating to recrypting legacy filesSam Tuke2013-02-011-2/+9
|
* Improved support for detecting and recrypting legacy files. Bugs remain.Sam Tuke2013-01-311-7/+28
|