Page MenuHomePhabricator

Make Images in Pholio refer to mocks by PHID instead of ID
ClosedPublic

Authored by epriestley on Dec 19 2018, 7:21 PM.
Tags
None
Referenced Files
F19071727: D19914.diff
Sun, Nov 30, 8:36 PM
F19071725: D19914.diff
Sun, Nov 30, 8:33 PM
F19071712: D19914.diff
Sun, Nov 30, 8:28 PM
F19071706: D19914.diff
Sun, Nov 30, 8:25 PM
F19071704: D19914.diff
Sun, Nov 30, 8:23 PM
F19071673: D19914.diff
Sun, Nov 30, 8:08 PM
F19071526: D19914.diff
Sun, Nov 30, 7:57 PM
F19071524: D19914.diff
Sun, Nov 30, 7:56 PM
Subscribers
Restricted Owners Package

Details

Summary

Ref T11351. In Pholio, we currently use a mockID, but a mockPHID is generally preferable / more modern / more flexible. In particular, we need PHIDs to load handles and prefer PHIDs when exposing information to the API, and using PHIDs internally makes a bunch of things easier/better/faster and ~nothing harder/worse/slower.

I'll add some inlines about a few things.

Test Plan

Ran migrations, spot-checked database for sanity. Loaded Pholio, saw data unchanged. Created and edited images.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Owners added a subscriber: Restricted Owners Package.Dec 19 2018, 7:21 PM
src/applications/pholio/query/PholioImageQuery.php
29–32

This has no callers, so I removed it for now. Previously, I believe Pholio only showed current versions of images, so this probably dates to that earlier time.

src/applications/pholio/storage/PholioImage.php
40–47

For now, I've just removed these keys:

  • We'll get an automatic key_phid on bin/storage upgrade by default now that we're no longer suppressing it with null.
  • We should have some kind of key_mock, but since isObsolete is never queried for it probably shouldn't be <mock, isObsolete, ...>. I'll add this key back once I figure out what it should be.
This revision is now accepted and ready to land.Dec 19 2018, 9:49 PM
This revision was automatically updated to reflect the committed changes.
src/applications/pholio/storage/PholioMock.php
262

I missed updating the actual method call here, later fixed in D21081.