mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 16:08:19 +02:00
Summary: Ref T9992. This is a step on the path to getting EditEngine working in Badges, Projects and Calendar. This doesn't add a new `EditField` for icons yet, just standardizes the old stuff. New stuff is more general and I saved 150 lines of code. I put the endpoint in Files because the similar "choose a profile picture" endpoint will definitely go there, and this endpoint might eventually feature, like, "draw your own icon~~" or something. Test Plan: - Created events, projects and badges with custom icons. - Edited events, projects and badges, changing their icons. Reviewers: chad Reviewed By: chad Maniphest Tasks: T9992 Differential Revision: https://secure.phabricator.com/D14799
191 lines
5.2 KiB
PHP
191 lines
5.2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorBadgesViewController
|
|
extends PhabricatorBadgesController {
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$viewer = $request->getViewer();
|
|
$id = $request->getURIData('id');
|
|
|
|
$badge = id(new PhabricatorBadgesQuery())
|
|
->setViewer($viewer)
|
|
->withIDs(array($id))
|
|
->needRecipients(true)
|
|
->executeOne();
|
|
if (!$badge) {
|
|
return new Aphront404Response();
|
|
}
|
|
|
|
$crumbs = $this->buildApplicationCrumbs();
|
|
$crumbs->addTextCrumb($badge->getName());
|
|
$title = $badge->getName();
|
|
|
|
if ($badge->isArchived()) {
|
|
$status_icon = 'fa-ban';
|
|
$status_color = 'dark';
|
|
} else {
|
|
$status_icon = 'fa-check';
|
|
$status_color = 'bluegrey';
|
|
}
|
|
$status_name = idx(
|
|
PhabricatorBadgesBadge::getStatusNameMap(),
|
|
$badge->getStatus());
|
|
|
|
$header = id(new PHUIHeaderView())
|
|
->setHeader($badge->getName())
|
|
->setUser($viewer)
|
|
->setPolicyObject($badge)
|
|
->setStatus($status_icon, $status_color, $status_name);
|
|
|
|
$properties = $this->buildPropertyListView($badge);
|
|
$actions = $this->buildActionListView($badge);
|
|
$properties->setActionList($actions);
|
|
|
|
$box = id(new PHUIObjectBoxView())
|
|
->setHeader($header)
|
|
->addPropertyList($properties);
|
|
|
|
$timeline = $this->buildTransactionTimeline(
|
|
$badge,
|
|
new PhabricatorBadgesTransactionQuery());
|
|
|
|
$recipient_phids = $badge->getRecipientPHIDs();
|
|
$recipient_phids = array_reverse($recipient_phids);
|
|
$handles = $this->loadViewerHandles($recipient_phids);
|
|
|
|
$recipient_list = id(new PhabricatorBadgesRecipientsListView())
|
|
->setBadge($badge)
|
|
->setHandles($handles)
|
|
->setUser($viewer);
|
|
|
|
$add_comment = $this->buildCommentForm($badge);
|
|
|
|
return $this->newPage()
|
|
->setTitle($title)
|
|
->setCrumbs($crumbs)
|
|
->setPageObjectPHIDs(array($badge->getPHID()))
|
|
->appendChild(
|
|
array(
|
|
$box,
|
|
$recipient_list,
|
|
$timeline,
|
|
$add_comment,
|
|
));
|
|
}
|
|
|
|
private function buildPropertyListView(PhabricatorBadgesBadge $badge) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$view = id(new PHUIPropertyListView())
|
|
->setUser($viewer)
|
|
->setObject($badge);
|
|
|
|
$quality = idx($badge->getQualityNameMap(), $badge->getQuality());
|
|
|
|
$view->addProperty(
|
|
pht('Quality'),
|
|
$quality);
|
|
|
|
$view->addProperty(
|
|
pht('Icon'),
|
|
id(new PhabricatorBadgesIconSet())
|
|
->getIconLabel($badge->getIcon()));
|
|
|
|
$view->addProperty(
|
|
pht('Flavor'),
|
|
$badge->getFlavor());
|
|
|
|
$view->invokeWillRenderEvent();
|
|
|
|
$description = $badge->getDescription();
|
|
if (strlen($description)) {
|
|
$view->addSectionHeader(
|
|
pht('Description'), PHUIPropertyListView::ICON_SUMMARY);
|
|
$view->addTextContent(
|
|
new PHUIRemarkupView($viewer, $description));
|
|
}
|
|
|
|
$badge = id(new PHUIBadgeView())
|
|
->setIcon($badge->getIcon())
|
|
->setHeader($badge->getName())
|
|
->setSubhead($badge->getFlavor())
|
|
->setQuality($badge->getQuality());
|
|
|
|
$view->addTextContent($badge);
|
|
|
|
return $view;
|
|
}
|
|
|
|
private function buildActionListView(PhabricatorBadgesBadge $badge) {
|
|
$viewer = $this->getViewer();
|
|
$id = $badge->getID();
|
|
|
|
$can_edit = PhabricatorPolicyFilter::hasCapability(
|
|
$viewer,
|
|
$badge,
|
|
PhabricatorPolicyCapability::CAN_EDIT);
|
|
|
|
$view = id(new PhabricatorActionListView())
|
|
->setUser($viewer)
|
|
->setObject($badge);
|
|
|
|
$view->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Edit Badge'))
|
|
->setIcon('fa-pencil')
|
|
->setDisabled(!$can_edit)
|
|
->setHref($this->getApplicationURI("/edit/{$id}/")));
|
|
|
|
if ($badge->isArchived()) {
|
|
$view->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Activate Badge'))
|
|
->setIcon('fa-check')
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow($can_edit)
|
|
->setHref($this->getApplicationURI("/archive/{$id}/")));
|
|
} else {
|
|
$view->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName(pht('Archive Badge'))
|
|
->setIcon('fa-ban')
|
|
->setDisabled(!$can_edit)
|
|
->setWorkflow($can_edit)
|
|
->setHref($this->getApplicationURI("/archive/{$id}/")));
|
|
}
|
|
|
|
$view->addAction(
|
|
id(new PhabricatorActionView())
|
|
->setName('Manage Recipients')
|
|
->setIcon('fa-users')
|
|
->setDisabled(!$can_edit)
|
|
->setHref($this->getApplicationURI("/recipients/{$id}/")));
|
|
|
|
return $view;
|
|
}
|
|
|
|
private function buildCommentForm(PhabricatorBadgesBadge $badge) {
|
|
$viewer = $this->getViewer();
|
|
|
|
$is_serious = PhabricatorEnv::getEnvConfig('phabricator.serious-business');
|
|
|
|
$add_comment_header = $is_serious
|
|
? pht('Add Comment')
|
|
: pht('Render Honors');
|
|
|
|
$draft = PhabricatorDraft::newFromUserAndKey($viewer, $badge->getPHID());
|
|
|
|
return id(new PhabricatorApplicationTransactionCommentView())
|
|
->setUser($viewer)
|
|
->setObjectPHID($badge->getPHID())
|
|
->setDraft($draft)
|
|
->setHeaderText($add_comment_header)
|
|
->setAction($this->getApplicationURI('/comment/'.$badge->getID().'/'))
|
|
->setSubmitButtonName(pht('Add Comment'));
|
|
}
|
|
|
|
}
|