2013-07-13 02:04:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorFeedDetailController extends PhabricatorFeedController {
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = $data['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$story = id(new PhabricatorFeedQuery())
|
|
|
|
->setViewer($user)
|
|
|
|
->withChronologicalKeys(array($this->id))
|
|
|
|
->executeOne();
|
|
|
|
if (!$story) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$feed = array($story);
|
|
|
|
$builder = new PhabricatorFeedBuilder($feed);
|
|
|
|
$builder->setUser($user);
|
|
|
|
$feed_view = $builder->buildView();
|
|
|
|
|
|
|
|
$title = pht('Story');
|
|
|
|
|
2013-11-11 18:23:23 +01:00
|
|
|
$feed_view = phutil_tag_div('phabricator-feed-frame', $feed_view);
|
2013-07-13 02:04:02 +02:00
|
|
|
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
|
|
$crumbs->addCrumb(
|
|
|
|
id(new PhabricatorCrumbView())
|
|
|
|
->setName($title));
|
|
|
|
|
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
|
|
|
array(
|
|
|
|
$crumbs,
|
|
|
|
$feed_view,
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'title' => $title,
|
|
|
|
'device' => true,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|