Fix displaying of raw files in Differential
Summary: See D1533#5. Also deduplicates logic of what is stored to blob in ArcanistDiffWorkflow. Blame Rev: D1533 Test Plan: Display raw version of text file. Display raw version of image. Reviewers: epriestley, nh Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1583
This commit is contained in:
@@ -48,20 +48,17 @@ class DifferentialChangesetViewController extends DifferentialController {
|
||||
$view = $request->getStr('view');
|
||||
if ($view) {
|
||||
$changeset->attachHunks($changeset->loadHunks());
|
||||
$type = $changeset->getFileType();
|
||||
if ($type === DifferentialChangeType::FILE_TEXT) {
|
||||
switch ($view) {
|
||||
case 'new':
|
||||
return $this->buildRawFileResponse($changeset->makeNewFile());
|
||||
case 'old':
|
||||
return $this->buildRawFileResponse($changeset->makeOldFile());
|
||||
default:
|
||||
return new Aphront400Response();
|
||||
}
|
||||
} else if ($type === DifferentialChangeType::FILE_IMAGE ||
|
||||
$type === DifferentialChangeType::FILE_BINARY) {
|
||||
$phid = idx($changeset->getMetadata(), "$view:binary-phid");
|
||||
return id(new AphrontRedirectResponse())->setURI("/file/info/$phid/");
|
||||
$phid = idx($changeset->getMetadata(), "$view:binary-phid");
|
||||
if ($phid) {
|
||||
return id(new AphrontRedirectResponse())->setURI("/file/info/$phid/");
|
||||
}
|
||||
switch ($view) {
|
||||
case 'new':
|
||||
return $this->buildRawFileResponse($changeset->makeNewFile());
|
||||
case 'old':
|
||||
return $this->buildRawFileResponse($changeset->makeOldFile());
|
||||
default:
|
||||
return new Aphront400Response();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user