2011-05-21 03:56:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2012-02-03 00:21:30 +01:00
|
|
|
* Copyright 2012 Facebook, Inc.
|
2011-05-21 03:56:18 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-07-04 22:04:22 +02:00
|
|
|
/**
|
|
|
|
* @group maniphest
|
|
|
|
*/
|
2012-03-10 00:46:25 +01:00
|
|
|
final class ManiphestTaskDescriptionChangeController
|
|
|
|
extends ManiphestController {
|
2011-05-21 03:56:18 +02:00
|
|
|
|
|
|
|
private $transactionID;
|
|
|
|
|
2012-02-03 00:21:30 +01:00
|
|
|
protected function setTransactionID($transaction_id) {
|
2011-12-08 06:41:33 +01:00
|
|
|
$this->transactionID = $transaction_id;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTransactionID() {
|
|
|
|
return $this->transactionID;
|
|
|
|
}
|
|
|
|
|
2011-05-21 03:56:18 +02:00
|
|
|
public function willProcessRequest(array $data) {
|
2012-03-10 00:46:25 +01:00
|
|
|
$this->setTransactionID(idx($data, 'id'));
|
2011-05-21 03:56:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
2012-03-13 05:39:05 +01:00
|
|
|
$is_show_more = false;
|
2012-03-10 00:46:25 +01:00
|
|
|
if (!$this->getTransactionID()) {
|
|
|
|
$this->setTransactionID($this->getRequest()->getStr('ref'));
|
2012-03-13 05:39:05 +01:00
|
|
|
$is_show_more = true;
|
2012-03-10 00:46:25 +01:00
|
|
|
}
|
|
|
|
|
2011-12-08 06:41:33 +01:00
|
|
|
$transaction_id = $this->getTransactionID();
|
|
|
|
$transaction = id(new ManiphestTransaction())->load($transaction_id);
|
2011-05-21 03:56:18 +02:00
|
|
|
if (!$transaction) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$transactions = array($transaction);
|
|
|
|
|
|
|
|
$phids = array();
|
2012-07-13 06:34:53 +02:00
|
|
|
foreach ($transactions as $xaction) {
|
|
|
|
foreach ($xaction->extractPHIDs() as $phid) {
|
2011-05-21 03:56:18 +02:00
|
|
|
$phids[$phid] = $phid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$handles = id(new PhabricatorObjectHandleData($phids))->loadHandles();
|
|
|
|
|
2012-07-13 06:34:53 +02:00
|
|
|
$engine = new PhabricatorMarkupEngine();
|
|
|
|
$engine->addObject($transaction, ManiphestTransaction::MARKUP_FIELD_BODY);
|
|
|
|
$engine->process();
|
2011-05-21 03:56:18 +02:00
|
|
|
|
|
|
|
$view = new ManiphestTransactionDetailView();
|
|
|
|
$view->setTransactionGroup($transactions);
|
|
|
|
$view->setHandles($handles);
|
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
|
|
|
$view->setUser($user);
|
2011-05-21 03:56:18 +02:00
|
|
|
$view->setMarkupEngine($engine);
|
|
|
|
$view->setRenderSummaryOnly(true);
|
|
|
|
$view->setRenderFullSummary(true);
|
2011-12-08 06:41:33 +01:00
|
|
|
$view->setRangeSpecification($request->getStr('range'));
|
2011-05-21 03:56:18 +02:00
|
|
|
|
2012-03-13 05:39:05 +01:00
|
|
|
if ($is_show_more) {
|
|
|
|
return id(new PhabricatorChangesetResponse())
|
|
|
|
->setRenderedChangeset($view->render());
|
|
|
|
} else {
|
|
|
|
return id(new AphrontAjaxResponse())->setContent($view->render());
|
|
|
|
}
|
2011-05-21 03:56:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|