mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
7c2a7d0365
Summary: Modernize remaining edges to subclass `PhabricatorEdgeType`. Largely based on D11045. Test Plan: Browsed around and performed various actions include subscribing, unsubscribing and watching. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D11116
68 lines
1.5 KiB
PHP
68 lines
1.5 KiB
PHP
<?php
|
|
|
|
final class DifferentialAsanaRepresentationField
|
|
extends DifferentialCustomField {
|
|
|
|
public function getFieldKey() {
|
|
return 'differential:asana-representation';
|
|
}
|
|
|
|
public function getFieldName() {
|
|
return pht('In Asana');
|
|
}
|
|
|
|
public function canDisableField() {
|
|
return false;
|
|
}
|
|
|
|
public function getFieldDescription() {
|
|
return pht('Shows revision representation in Asana.');
|
|
}
|
|
|
|
public function shouldAppearInPropertyView() {
|
|
return (bool)PhabricatorEnv::getEnvConfig('asana.workspace-id');
|
|
}
|
|
|
|
public function renderPropertyViewLabel() {
|
|
return $this->getFieldName();
|
|
}
|
|
|
|
public function renderPropertyViewValue(array $handles) {
|
|
$viewer = $this->getViewer();
|
|
$src_phid = $this->getObject()->getPHID();
|
|
$edge_type = PhabricatorObjectHasAsanaTaskEdgeType::EDGECONST;
|
|
|
|
$query = id(new PhabricatorEdgeQuery())
|
|
->withSourcePHIDs(array($src_phid))
|
|
->withEdgeTypes(array($edge_type))
|
|
->needEdgeData(true);
|
|
|
|
$edges = $query->execute();
|
|
if (!$edges) {
|
|
return null;
|
|
}
|
|
|
|
$edge = head($edges[$src_phid][$edge_type]);
|
|
|
|
if (!empty($edge['data']['gone'])) {
|
|
return phutil_tag(
|
|
'em',
|
|
array(),
|
|
pht('Asana Task Deleted'));
|
|
}
|
|
|
|
$ref = id(new DoorkeeperImportEngine())
|
|
->setViewer($viewer)
|
|
->withPHIDs(array($edge['dst']))
|
|
->needLocalOnly(true)
|
|
->executeOne();
|
|
|
|
if (!$ref) {
|
|
return null;
|
|
}
|
|
|
|
return id(new DoorkeeperTagView())
|
|
->setExternalObject($ref->getExternalObject());
|
|
}
|
|
|
|
}
|