2011-01-23 03:33:00 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class PhabricatorFileViewController extends PhabricatorFileController {
|
|
|
|
|
|
|
|
private $phid;
|
|
|
|
private $view;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->phid = $data['phid'];
|
|
|
|
$this->view = $data['view'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
|
Use phabricator_ time functions in more places
Summary:
Replace some more date() calls with locale-aware calls.
Also, at least on my system, the DateTimeZone / DateTime stuff didn't actually
work and always rendered in UTC. Fixed that.
Test Plan:
Viewed daemon console, differential revisions, files, and maniphest timestamps
in multiple timezones.
Reviewed By: toulouse
Reviewers: toulouse, fratrik, jungejason, aran, tuomaspelkonen
CC: aran, toulouse
Differential Revision: 530
2011-06-26 18:22:52 +02:00
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
2011-01-23 03:33:00 +01:00
|
|
|
$file = id(new PhabricatorFile())->loadOneWhere(
|
|
|
|
'phid = %s',
|
|
|
|
$this->phid);
|
|
|
|
if (!$file) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
2011-02-22 18:22:57 +01:00
|
|
|
|
2011-01-23 03:33:00 +01:00
|
|
|
switch ($this->view) {
|
|
|
|
case 'download':
|
|
|
|
case 'view':
|
|
|
|
$data = $file->loadFileData();
|
|
|
|
$response = new AphrontFileResponse();
|
|
|
|
$response->setContent($data);
|
2011-04-11 11:24:39 +02:00
|
|
|
$response->setCacheDurationInSeconds(60 * 60 * 24 * 30);
|
2011-02-22 18:22:57 +01:00
|
|
|
|
2011-02-22 18:19:14 +01:00
|
|
|
if ($this->view == 'view') {
|
|
|
|
if (!$file->isViewableInBrowser()) {
|
|
|
|
return new Aphront400Response();
|
|
|
|
}
|
|
|
|
$download = false;
|
|
|
|
} else {
|
|
|
|
$download = true;
|
|
|
|
}
|
2011-02-22 18:22:57 +01:00
|
|
|
|
2011-02-22 18:19:14 +01:00
|
|
|
if ($download) {
|
|
|
|
$mime_type = $file->getMimeType();
|
|
|
|
} else {
|
|
|
|
$mime_type = $file->getViewableMimeType();
|
|
|
|
}
|
|
|
|
|
|
|
|
$response->setMimeType($mime_type);
|
2011-02-22 18:22:57 +01:00
|
|
|
|
2011-02-22 18:19:14 +01:00
|
|
|
if ($download) {
|
2011-01-23 03:33:00 +01:00
|
|
|
$response->setDownload($file->getName());
|
|
|
|
}
|
|
|
|
return $response;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-07-08 06:17:00 +02:00
|
|
|
$author_child = null;
|
|
|
|
if ($file->getAuthorPHID()) {
|
|
|
|
$author = id(new PhabricatorUser())->loadOneWhere(
|
|
|
|
'phid = %s',
|
|
|
|
$file->getAuthorPHID());
|
|
|
|
|
|
|
|
if ($author) {
|
|
|
|
$author_child = id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('Author')
|
|
|
|
->setName('author')
|
|
|
|
->setValue($author->getUserName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-23 03:33:00 +01:00
|
|
|
$form = new AphrontFormView();
|
2011-02-22 18:22:57 +01:00
|
|
|
|
2011-02-22 18:19:14 +01:00
|
|
|
if ($file->isViewableInBrowser()) {
|
|
|
|
$form->setAction('/file/view/'.$file->getPHID().'/');
|
|
|
|
$button_name = 'View File';
|
|
|
|
} else {
|
|
|
|
$form->setAction('/file/download/'.$file->getPHID().'/');
|
|
|
|
$button_name = 'Download File';
|
|
|
|
}
|
2011-07-30 01:01:59 +02:00
|
|
|
|
|
|
|
$file_id = 'F'.$file->getID();
|
|
|
|
|
2011-07-08 06:17:00 +02:00
|
|
|
$form->setUser($user);
|
2011-01-23 03:33:00 +01:00
|
|
|
$form
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('Name')
|
|
|
|
->setName('name')
|
|
|
|
->setValue($file->getName()))
|
2011-07-30 01:01:59 +02:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('ID')
|
|
|
|
->setName('id')
|
|
|
|
->setValue($file_id)
|
|
|
|
->setCaption(
|
|
|
|
'Download this file with: <tt>arc download '.
|
|
|
|
phutil_escape_html($file_id).'</tt>'))
|
2011-01-23 03:33:00 +01:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('PHID')
|
|
|
|
->setName('phid')
|
|
|
|
->setValue($file->getPHID()))
|
2011-07-08 06:17:00 +02:00
|
|
|
->appendChild($author_child)
|
2011-01-23 03:33:00 +01:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('Created')
|
|
|
|
->setName('created')
|
Use phabricator_ time functions in more places
Summary:
Replace some more date() calls with locale-aware calls.
Also, at least on my system, the DateTimeZone / DateTime stuff didn't actually
work and always rendered in UTC. Fixed that.
Test Plan:
Viewed daemon console, differential revisions, files, and maniphest timestamps
in multiple timezones.
Reviewed By: toulouse
Reviewers: toulouse, fratrik, jungejason, aran, tuomaspelkonen
CC: aran, toulouse
Differential Revision: 530
2011-06-26 18:22:52 +02:00
|
|
|
->setValue(phabricator_datetime($file->getDateCreated(), $user)))
|
2011-01-23 03:33:00 +01:00
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('Mime Type')
|
|
|
|
->setName('mime')
|
|
|
|
->setValue($file->getMimeType()))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('Size')
|
|
|
|
->setName('size')
|
|
|
|
->setValue($file->getByteSize().' bytes'))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('Engine')
|
|
|
|
->setName('storageEngine')
|
|
|
|
->setValue($file->getStorageEngine()))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('Format')
|
|
|
|
->setName('storageFormat')
|
|
|
|
->setValue($file->getStorageFormat()))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormStaticControl())
|
|
|
|
->setLabel('Handle')
|
|
|
|
->setName('storageHandle')
|
|
|
|
->setValue($file->getStorageHandle()))
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
2011-02-22 18:19:14 +01:00
|
|
|
->setValue($button_name));
|
2011-01-23 03:33:00 +01:00
|
|
|
|
|
|
|
$panel = new AphrontPanelView();
|
|
|
|
$panel->setHeader('File Info - '.$file->getName());
|
|
|
|
|
|
|
|
$panel->appendChild($form);
|
|
|
|
$panel->setWidth(AphrontPanelView::WIDTH_FORM);
|
|
|
|
|
2011-05-22 23:40:51 +02:00
|
|
|
|
|
|
|
$transformations = id(new PhabricatorTransformedFile())->loadAllWhere(
|
|
|
|
'originalPHID = %s',
|
|
|
|
$file->getPHID());
|
|
|
|
$rows = array();
|
|
|
|
foreach ($transformations as $transformed) {
|
|
|
|
$phid = $transformed->getTransformedPHID();
|
|
|
|
$rows[] = array(
|
|
|
|
phutil_escape_html($transformed->getTransform()),
|
|
|
|
phutil_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => PhabricatorFileURI::getViewURIForPHID($phid),
|
|
|
|
),
|
|
|
|
$phid));
|
|
|
|
}
|
|
|
|
|
|
|
|
$table = new AphrontTableView($rows);
|
|
|
|
$table->setHeaders(
|
|
|
|
array(
|
|
|
|
'Transform',
|
|
|
|
'File',
|
|
|
|
));
|
|
|
|
|
|
|
|
$xform_panel = new AphrontPanelView();
|
|
|
|
$xform_panel->appendChild($table);
|
|
|
|
$xform_panel->setWidth(AphrontPanelView::WIDTH_FORM);
|
|
|
|
$xform_panel->setHeader('Transformations');
|
|
|
|
|
2011-01-23 03:33:00 +01:00
|
|
|
return $this->buildStandardPageResponse(
|
2011-05-22 23:40:51 +02:00
|
|
|
array($panel, $xform_panel),
|
2011-01-23 03:33:00 +01:00
|
|
|
array(
|
|
|
|
'title' => 'File Info - '.$file->getName(),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|