2013-07-03 20:15:45 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group legalpad
|
|
|
|
*/
|
|
|
|
final class LegalpadDocumentViewController extends LegalpadController {
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = $data['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$document = id(new LegalpadDocumentQuery())
|
|
|
|
->setViewer($user)
|
|
|
|
->withIDs(array($this->id))
|
|
|
|
->needDocumentBodies(true)
|
|
|
|
->needContributors(true)
|
|
|
|
->executeOne();
|
|
|
|
|
|
|
|
if (!$document) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$xactions = id(new LegalpadTransactionQuery())
|
|
|
|
->setViewer($user)
|
|
|
|
->withObjectPHIDs(array($document->getPHID()))
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
$subscribers = PhabricatorSubscribersQuery::loadSubscribersForPHID(
|
|
|
|
$document->getPHID());
|
|
|
|
|
|
|
|
$document_body = $document->getDocumentBody();
|
|
|
|
$phids = array();
|
|
|
|
$phids[] = $document_body->getCreatorPHID();
|
|
|
|
foreach ($subscribers as $subscriber) {
|
|
|
|
$phids[] = $subscriber;
|
|
|
|
}
|
|
|
|
foreach ($document->getContributors() as $contributor) {
|
|
|
|
$phids[] = $contributor;
|
|
|
|
}
|
|
|
|
$this->loadHandles($phids);
|
|
|
|
|
|
|
|
$engine = id(new PhabricatorMarkupEngine())
|
|
|
|
->setViewer($user);
|
|
|
|
$engine->addObject(
|
|
|
|
$document_body,
|
|
|
|
LegalpadDocumentBody::MARKUP_FIELD_TEXT);
|
|
|
|
foreach ($xactions as $xaction) {
|
|
|
|
if ($xaction->getComment()) {
|
|
|
|
$engine->addObject(
|
|
|
|
$xaction->getComment(),
|
|
|
|
PhabricatorApplicationTransactionComment::MARKUP_FIELD_COMMENT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$engine->process();
|
|
|
|
|
|
|
|
$title = $document_body->getTitle();
|
|
|
|
|
2013-09-17 18:12:37 +02:00
|
|
|
$header = id(new PHUIHeaderView())
|
2013-09-18 23:50:39 +02:00
|
|
|
->setHeader($title)
|
2013-09-19 20:56:58 +02:00
|
|
|
->setUser($user)
|
|
|
|
->setPolicyObject($document);
|
2013-07-03 20:15:45 +02:00
|
|
|
|
|
|
|
$actions = $this->buildActionView($document);
|
2013-10-11 16:53:56 +02:00
|
|
|
$properties = $this->buildPropertyView($document, $engine, $actions);
|
2013-07-03 20:15:45 +02:00
|
|
|
|
|
|
|
$comment_form_id = celerity_generate_unique_node_id();
|
|
|
|
|
|
|
|
$xaction_view = id(new LegalpadTransactionView())
|
|
|
|
->setUser($this->getRequest()->getUser())
|
2013-07-29 03:21:22 +02:00
|
|
|
->setObjectPHID($document->getPHID())
|
2013-07-03 20:15:45 +02:00
|
|
|
->setTransactions($xactions)
|
|
|
|
->setMarkupEngine($engine);
|
|
|
|
|
|
|
|
$add_comment = $this->buildAddCommentView($document, $comment_form_id);
|
|
|
|
|
|
|
|
$crumbs = $this->buildApplicationCrumbs($this->buildSideNav());
|
|
|
|
$crumbs->setActionList($actions);
|
|
|
|
$crumbs->addCrumb(
|
|
|
|
id(new PhabricatorCrumbView())
|
|
|
|
->setName('L'.$document->getID())
|
|
|
|
->setHref($this->getApplicationURI('view/'.$document->getID())));
|
|
|
|
|
2013-09-29 00:55:38 +02:00
|
|
|
$object_box = id(new PHUIObjectBoxView())
|
|
|
|
->setHeader($header)
|
2013-10-30 20:45:13 +01:00
|
|
|
->addPropertyList($properties)
|
|
|
|
->addPropertyList($this->buildDocument($engine, $document_body));
|
2013-09-29 00:55:38 +02:00
|
|
|
|
2013-07-03 20:15:45 +02:00
|
|
|
$content = array(
|
|
|
|
$crumbs,
|
2013-09-29 00:55:38 +02:00
|
|
|
$object_box,
|
2013-07-03 20:15:45 +02:00
|
|
|
$xaction_view,
|
|
|
|
$add_comment,
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
|
|
|
$content,
|
|
|
|
array(
|
|
|
|
'title' => $title,
|
|
|
|
'device' => true,
|
|
|
|
'pageObjects' => array($document->getPHID()),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildDocument(
|
|
|
|
PhabricatorMarkupEngine
|
|
|
|
$engine, LegalpadDocumentBody $body) {
|
|
|
|
|
2013-10-30 20:45:13 +01:00
|
|
|
$view = new PHUIPropertyListView();
|
|
|
|
$view->addSectionHeader(pht('Document'));
|
|
|
|
$view->addTextContent(
|
2013-07-03 20:15:45 +02:00
|
|
|
$engine->getOutput($body, LegalpadDocumentBody::MARKUP_FIELD_TEXT));
|
|
|
|
|
2013-10-30 20:45:13 +01:00
|
|
|
return $view;
|
|
|
|
|
2013-07-03 20:15:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function buildActionView(LegalpadDocument $document) {
|
|
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
|
|
|
|
$actions = id(new PhabricatorActionListView())
|
|
|
|
->setUser($user)
|
2013-07-12 20:39:47 +02:00
|
|
|
->setObjectURI($this->getRequest()->getRequestURI())
|
2013-07-03 20:15:45 +02:00
|
|
|
->setObject($document);
|
|
|
|
|
|
|
|
$can_edit = PhabricatorPolicyFilter::hasCapability(
|
|
|
|
$user,
|
|
|
|
$document,
|
|
|
|
PhabricatorPolicyCapability::CAN_EDIT);
|
|
|
|
|
|
|
|
$actions->addAction(
|
|
|
|
id(new PhabricatorActionView())
|
|
|
|
->setIcon('edit')
|
|
|
|
->setName(pht('Edit Document'))
|
|
|
|
->setHref($this->getApplicationURI('/edit/'.$document->getID().'/'))
|
|
|
|
->setDisabled(!$can_edit)
|
|
|
|
->setWorkflow(!$can_edit));
|
|
|
|
|
|
|
|
return $actions;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildPropertyView(
|
|
|
|
LegalpadDocument $document,
|
2013-10-11 16:53:56 +02:00
|
|
|
PhabricatorMarkupEngine $engine,
|
|
|
|
PhabricatorActionListView $actions) {
|
2013-07-03 20:15:45 +02:00
|
|
|
|
|
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
|
2013-10-11 16:53:56 +02:00
|
|
|
$properties = id(new PHUIPropertyListView())
|
2013-07-03 20:15:45 +02:00
|
|
|
->setUser($user)
|
2013-10-11 16:53:56 +02:00
|
|
|
->setObject($document)
|
|
|
|
->setActionList($actions);
|
2013-07-03 20:15:45 +02:00
|
|
|
|
|
|
|
$properties->addProperty(
|
|
|
|
pht('Last Updated'),
|
|
|
|
phabricator_datetime($document->getDateModified(), $user));
|
|
|
|
|
|
|
|
$properties->addProperty(
|
|
|
|
pht('Updated By'),
|
|
|
|
$this->getHandle(
|
|
|
|
$document->getDocumentBody()->getCreatorPHID())->renderLink());
|
|
|
|
|
|
|
|
$properties->addProperty(
|
|
|
|
pht('Versions'),
|
|
|
|
$document->getVersions());
|
|
|
|
|
|
|
|
$contributor_view = array();
|
|
|
|
foreach ($document->getContributors() as $contributor) {
|
|
|
|
$contributor_view[] = $this->getHandle($contributor)->renderLink();
|
|
|
|
}
|
|
|
|
$contributor_view = phutil_implode_html(', ', $contributor_view);
|
|
|
|
$properties->addProperty(
|
|
|
|
pht('Contributors'),
|
|
|
|
$contributor_view);
|
|
|
|
|
|
|
|
$properties->invokeWillRenderEvent();
|
|
|
|
|
|
|
|
return $properties;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function buildAddCommentView(
|
|
|
|
LegalpadDocument $document,
|
|
|
|
$comment_form_id) {
|
|
|
|
$user = $this->getRequest()->getUser();
|
|
|
|
|
|
|
|
$draft = PhabricatorDraft::newFromUserAndKey($user, $document->getPHID());
|
|
|
|
|
|
|
|
$is_serious = PhabricatorEnv::getEnvConfig('phabricator.serious-business');
|
|
|
|
|
|
|
|
$title = $is_serious
|
|
|
|
? pht('Add Comment')
|
|
|
|
: pht('Debate Legislation');
|
|
|
|
|
2013-09-17 18:12:37 +02:00
|
|
|
$header = id(new PHUIHeaderView())
|
2013-07-03 20:15:45 +02:00
|
|
|
->setHeader($title);
|
|
|
|
|
|
|
|
$button_name = $is_serious
|
|
|
|
? pht('Add Comment')
|
|
|
|
: pht('Commence Filibuster');
|
|
|
|
|
|
|
|
$form = id(new PhabricatorApplicationTransactionCommentView())
|
|
|
|
->setUser($user)
|
2013-07-29 03:21:22 +02:00
|
|
|
->setObjectPHID($document->getPHID())
|
2013-07-03 20:15:45 +02:00
|
|
|
->setFormID($comment_form_id)
|
|
|
|
->setDraft($draft)
|
|
|
|
->setSubmitButtonName($button_name)
|
|
|
|
->setAction($this->getApplicationURI('/comment/'.$document->getID().'/'))
|
|
|
|
->setRequestURI($this->getRequest()->getRequestURI());
|
|
|
|
|
2013-09-29 00:55:38 +02:00
|
|
|
return id(new PHUIObjectBoxView())
|
|
|
|
->setFlush(true)
|
|
|
|
->setHeader($header)
|
Provide more structure to PHUIObjectBoxView
Summary:
Three changes here.
- Add `setActionList()`, and use that to set the action list.
- Add `setPropertyList()`, and use that to set the property list.
These will let us add some apropriate CSS so we can fix the border issue, and get rid of a bunch of goofy `.x + .y` selectors.
- Replace `addContent()` with `appendChild()`.
This is just a consistency thing; `AphrontView` already provides `appendChild()`, and `addContent()` did the same thing.
Test Plan:
- Viewed "All Config".
- Viewed a countdown.
- Viewed a revision (add comment, change list, table of contents, comment, local commits, open revisions affecting these files, update history).
- Viewed Diffusion (browse, change, history, repository, lint).
- Viewed Drydock (resource, lease).
- Viewed Files.
- Viewed Herald.
- Viewed Legalpad.
- Viewed macro (edit, edit audio, view).
- Viewed Maniphest.
- Viewed Applications.
- Viewed Paste.
- Viewed People.
- Viewed Phulux.
- Viewed Pholio.
- Viewed Phame (blog, post).
- Viewed Phortune (account, product).
- Viewed Ponder (questions, answers, comments).
- Viewed Releeph.
- Viewed Projects.
- Viewed Slowvote.
NOTE: Images in Files aren't on a black background anymore -- I assume that's on purpose?
NOTE: Some jankiness in Phortune, I'll clean that up when I get back to it. Not related to this diff.
Reviewers: chad
Reviewed By: chad
CC: aran
Differential Revision: https://secure.phabricator.com/D7174
2013-09-30 18:36:04 +02:00
|
|
|
->appendChild($form);
|
2013-09-29 00:55:38 +02:00
|
|
|
|
2013-07-03 20:15:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|