mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 11:42:42 +01:00
de74332639
Summary: This always bugs me when I'm going through `secure` looking for the spiciest macros. Test Plan: Forced a date to be null, saw reasonable text. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D20453
203 lines
5.7 KiB
PHP
203 lines
5.7 KiB
PHP
<?php
|
|
|
|
final class PhabricatorMacroViewController
|
|
extends PhabricatorMacroController {
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
$id = $request->getURIData('id');
|
|
|
|
$macro = id(new PhabricatorMacroQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->needFiles(true)
|
|
->executeOne();
|
|
if (!$macro) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$title_short = pht('Macro "%s"', $macro->getName());
|
|
$title_long = pht('Image Macro "%s"', $macro->getName());
|
|
|
|
$curtain = $this->buildCurtain($macro);
|
|
$subheader = $this->buildSubheaderView($macro);
|
|
$file = $this->buildFileView($macro);
|
|
$details = $this->buildPropertySectionView($macro);
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb($macro->getName());
|
|
$crumbs->setBorder(true);
|
|
|
|
$timeline = $this->buildTransactionTimeline(
|
|
$macro,
|
|
new PhabricatorMacroTransactionQuery());
|
|
|
|
$comment_form = $this->buildCommentForm($macro, $timeline);
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setUser($viewer)
|
|
->setPolicyObject($macro)
|
|
->setHeader($macro->getName())
|
|
->setHeaderIcon('fa-file-image-o');
|
|
|
|
if (!$macro->getIsDisabled()) {
|
|
$header->setStatus('fa-check', 'bluegrey', pht('Active'));
|
|
} else {
|
|
$header->setStatus('fa-ban', 'indigo', pht('Archived'));
|
|
}
|
|
|
|
$view = id(new PHUITwoColumnView())
|
|
->setHeader($header)
|
|
->setSubheader($subheader)
|
|
->setCurtain($curtain)
|
|
->setMainColumn(array(
|
|
$timeline,
|
|
$comment_form,
|
|
))
|
|
->addPropertySection(pht('Macro'), $file)
|
|
->addPropertySection(pht('Details'), $details);
|
|
|
|
return $this->newPage()
|
|
->setTitle($title_short)
|
|
->setCrumbs($crumbs)
|
|
->setPageObjectPHIDs(array($macro->getPHID()))
|
|
->appendChild($view);
|
|
}
|
|
|
|
private function buildCommentForm(
|
|
PhabricatorFileImageMacro $macro, $timeline) {
|
|
$viewer = $this->getViewer();
|
|
|
|
return id(new PhabricatorMacroEditEngine())
|
|
->setViewer($viewer)
|
|
->buildEditEngineCommentView($macro)
|
|
->setTransactionTimeline($timeline);
|
|
}
|
|
|
|
private function buildCurtain(
|
|
PhabricatorFileImageMacro $macro) {
|
|
$can_manage = $this->hasApplicationCapability(
|
|
PhabricatorMacroManageCapability::CAPABILITY);
|
|
|
|
$curtain = $this->newCurtainView($macro);
|
|
|
|
$curtain->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Edit Macro'))
|
|
->setHref($this->getApplicationURI('/edit/'.$macro->getID().'/'))
|
|
->setDisabled(!$can_manage)
|
|
->setWorkflow(!$can_manage)
|
|
->setIcon('fa-pencil'));
|
|
|
|
$curtain->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Edit Audio'))
|
|
->setHref($this->getApplicationURI('/audio/'.$macro->getID().'/'))
|
|
->setDisabled(!$can_manage)
|
|
->setWorkflow(!$can_manage)
|
|
->setIcon('fa-music'));
|
|
|
|
if ($macro->getIsDisabled()) {
|
|
$curtain->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Activate Macro'))
|
|
->setHref($this->getApplicationURI('/disable/'.$macro->getID().'/'))
|
|
->setWorkflow(true)
|
|
->setDisabled(!$can_manage)
|
|
->setIcon('fa-check'));
|
|
} else {
|
|
$curtain->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Archive Macro'))
|
|
->setHref($this->getApplicationURI('/disable/'.$macro->getID().'/'))
|
|
->setWorkflow(true)
|
|
->setDisabled(!$can_manage)
|
|
->setIcon('fa-ban'));
|
|
}
|
|
|
|
return $curtain;
|
|
}
|
|
|
|
private function buildSubheaderView(
|
|
PhabricatorFileImageMacro $macro) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$author_phid = $macro->getAuthorPHID();
|
|
|
|
$author = $viewer->renderHandle($author_phid)->render();
|
|
$date = phabricator_datetime($macro->getDateCreated(), $viewer);
|
|
$author = phutil_tag('strong', array(), $author);
|
|
|
|
$handles = $viewer->loadHandles(array($author_phid));
|
|
$image_uri = $handles[$author_phid]->getImageURI();
|
|
$image_href = $handles[$author_phid]->getURI();
|
|
|
|
if (!$date) {
|
|
$content = pht(
|
|
'Masterfully imagined by %s in ages long past.', $author);
|
|
} else {
|
|
$content = pht('Masterfully imagined by %s on %s.', $author, $date);
|
|
}
|
|
|
|
return id(new PHUIHeadThingView())
|
|
->setImage($image_uri)
|
|
->setImageHref($image_href)
|
|
->setContent($content);
|
|
}
|
|
|
|
private function buildPropertySectionView(
|
|
PhabricatorFileImageMacro $macro) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$view = id(new PHUIPropertyListView())
|
|
->setUser($viewer);
|
|
|
|
switch ($macro->getAudioBehavior()) {
|
|
case PhabricatorFileImageMacro::AUDIO_BEHAVIOR_ONCE:
|
|
$view->addProperty(pht('Audio Behavior'), pht('Play Once'));
|
|
break;
|
|
case PhabricatorFileImageMacro::AUDIO_BEHAVIOR_LOOP:
|
|
$view->addProperty(pht('Audio Behavior'), pht('Loop'));
|
|
break;
|
|
}
|
|
|
|
$audio_phid = $macro->getAudioPHID();
|
|
if ($audio_phid) {
|
|
$view->addProperty(
|
|
pht('Audio'),
|
|
$viewer->renderHandle($audio_phid));
|
|
}
|
|
|
|
if ($view->hasAnyProperties()) {
|
|
return $view;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
private function buildFileView(
|
|
PhabricatorFileImageMacro $macro) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$view = id(new PHUIPropertyListView())
|
|
->setUser($viewer);
|
|
|
|
$file = $macro->getFile();
|
|
if ($file) {
|
|
$view->addImageContent(
|
|
phutil_tag(
|
|
'img',
|
|
array(
|
|
'src' => $file->getViewURI(),
|
|
'class' => 'phabricator-image-macro-hero',
|
|
)));
|
|
return $view;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
}
|