Page MenuHomePhabricator

Make the Files "TTL" API more structured
ClosedPublic

Authored by epriestley on Apr 4 2017, 7:28 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 16, 2:32 AM
Unknown Object (File)
Sat, Apr 13, 8:35 PM
Unknown Object (File)
Sat, Apr 13, 7:32 PM
Unknown Object (File)
Sat, Apr 13, 5:56 PM
Unknown Object (File)
Sat, Apr 13, 1:22 PM
Unknown Object (File)
Sat, Apr 13, 1:22 PM
Unknown Object (File)
Sat, Apr 13, 8:57 AM
Unknown Object (File)
Sat, Apr 13, 8:14 AM
Subscribers

Details

Summary

Ref T11357. When creating a file, callers can currently specify a ttl. However, it isn't unambiguous what you're supposed to pass, and some callers get it wrong.

For example, to mean "this file expires in 60 minutes", you might pass either of these:

  • time() + phutil_units('60 minutes in seconds')
  • phutil_units('60 minutes in seconds')

The former means "60 minutes from now". The latter means "1 AM, January 1, 1970". In practice, because the GC normally runs only once every four hours (at least, until recently), and all the bad TTLs are cases where files are normally accessed immediately, these 1970 TTLs didn't cause any real problems.

Split ttl into ttl.relative and ttl.absolute, and make sure the values are sane. Then correct all callers, and simplify out the time() calls where possible to make switching to PhabricatorTime easier.

Test Plan
  • Generated an SSH keypair.
  • Viewed a changeset.
  • Viewed a raw diff.
  • Viewed a commit's file data.
  • Viewed a temporary file's details, saw expiration date and relative time.
  • Ran unit tests.
  • (Didn't really test Phragment.)

Diff Detail

Repository
rP Phabricator
Branch
files6
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 16294
Build 21661: Run Core Tests
Build 21660: arc lint + arc unit

Unit TestsFailed

TimeTest
9 msPhabricatorFileStorageFormatTestCase::Unknown Unit Message ("")
EXCEPTION (PhutilTypeCheckException): Parameter 'format' has invalid type. Expected type 'optional string', got type 'PhabricatorFileAES256StorageFormat'. #0 /core/data/drydock/workingcopy-87/repo/libphutil/src/parser/PhutilTypeSpec.php(169): PhutilTypeSpec->check(Object(PhabricatorFileAES256StorageFormat), 'format') #1 /core/data/drydock/workingcopy-87/repo/phabricator/src/applications/files/storage/PhabricatorFile.php(1301): PhutilTypeSpec::checkMap(Array, Array)
1 msAlmanacNamesTestCase::Unknown Unit Message ("")
30 assertions passed.
0 msAlmanacServiceTypeTestCase::Unknown Unit Message ("")
1 assertion passed.
0 msAphrontHTTPSinkTestCase::Unknown Unit Message ("")
3 assertions passed.
0 msAphrontHTTPSinkTestCase::Unknown Unit Message ("")
6 assertions passed.
View Full Test Results (1 Failed · 350 Passed)

Event Timeline

  • Recognize profile key in parameter dictionary.
  • Also recognize format key in parameter dictionary.
  • Also allow format to accept objects.
This revision is now accepted and ready to land.Apr 4 2017, 9:28 PM
This revision was automatically updated to reflect the committed changes.