]> source.dussan.org Git - nextcloud-server.git/commit
Properly expire ext storage versions (#26601) 2824/head
authorVincent Petry <pvince81@owncloud.com>
Tue, 22 Nov 2016 09:22:00 +0000 (10:22 +0100)
committerMorris Jobke <hey@morrisjobke.de>
Fri, 10 Mar 2017 21:58:44 +0000 (15:58 -0600)
commit5dbb32fb81e5e11c5ba4386ec54457da4483f86e
tree3b15fca59b0b661dd7eba8ca98fcf88d45178b4d
parenta10476a3c6409d97b49e1c55210d6b25044f08d7
Properly expire ext storage versions (#26601)

* Properly expire ext storage versions

System-wide external storages have no real owner so the current user is
used as owner. However when running cron.php there is no current user,
so no expiry can be done.

This fix adds an user argument to the expire() function to tell for
which user to expire files. This information is anyway always available
now through the expire command job.

* Move version expire setupFS into the expire function

* Add comment about not tearing down in version Storage::expire()

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
apps/files_versions/lib/Command/Expire.php
apps/files_versions/lib/Storage.php
apps/files_versions/tests/VersioningTest.php