Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F13995409
D8540.id20262.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
7 KB
Referenced Files
None
Subscribers
None
D8540.id20262.diff
View Options
diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/src/__phutil_library_map__.php
@@ -2095,6 +2095,7 @@
'PhabricatorSubscriptionsEditController' => 'applications/subscriptions/controller/PhabricatorSubscriptionsEditController.php',
'PhabricatorSubscriptionsEditor' => 'applications/subscriptions/editor/PhabricatorSubscriptionsEditor.php',
'PhabricatorSubscriptionsListController' => 'applications/subscriptions/controller/PhabricatorSubscriptionsListController.php',
+ 'PhabricatorSubscriptionsTransactionController' => 'applications/subscriptions/controller/PhabricatorSubscriptionsTransactionController.php',
'PhabricatorSubscriptionsUIEventListener' => 'applications/subscriptions/events/PhabricatorSubscriptionsUIEventListener.php',
'PhabricatorSymbolNameLinter' => 'infrastructure/lint/hook/PhabricatorSymbolNameLinter.php',
'PhabricatorSyntaxHighlighter' => 'infrastructure/markup/PhabricatorSyntaxHighlighter.php',
@@ -4897,6 +4898,7 @@
'PhabricatorSubscriptionsEditController' => 'PhabricatorController',
'PhabricatorSubscriptionsEditor' => 'PhabricatorEditor',
'PhabricatorSubscriptionsListController' => 'PhabricatorController',
+ 'PhabricatorSubscriptionsTransactionController' => 'PhabricatorController',
'PhabricatorSubscriptionsUIEventListener' => 'PhabricatorEventListener',
'PhabricatorSymbolNameLinter' => 'ArcanistXHPASTLintNamingHook',
'PhabricatorSyntaxHighlightingConfigOptions' => 'PhabricatorApplicationConfigOptions',
diff --git a/src/applications/subscriptions/application/PhabricatorApplicationSubscriptions.php b/src/applications/subscriptions/application/PhabricatorApplicationSubscriptions.php
--- a/src/applications/subscriptions/application/PhabricatorApplicationSubscriptions.php
+++ b/src/applications/subscriptions/application/PhabricatorApplicationSubscriptions.php
@@ -22,6 +22,8 @@
'(?P<action>add|delete)/'.
'(?P<phid>[^/]+)/' => 'PhabricatorSubscriptionsEditController',
'list/(?P<phid>[^/]+)/' => 'PhabricatorSubscriptionsListController',
+ 'transaction/(?P<type>add|rem)/(?<phid>[^/]+)/' =>
+ 'PhabricatorSubscriptionsTransactionController',
),
);
}
diff --git a/src/applications/subscriptions/controller/PhabricatorSubscriptionsTransactionController.php b/src/applications/subscriptions/controller/PhabricatorSubscriptionsTransactionController.php
new file mode 100644
--- /dev/null
+++ b/src/applications/subscriptions/controller/PhabricatorSubscriptionsTransactionController.php
@@ -0,0 +1,81 @@
+<?php
+
+final class PhabricatorSubscriptionsTransactionController
+ extends PhabricatorController {
+
+ private $phid;
+ private $changeType;
+
+ public function willProcessRequest(array $data) {
+ $this->phid = idx($data, 'phid');
+ $this->changeType = idx($data, 'type');
+ }
+
+ public function processRequest() {
+ $request = $this->getRequest();
+
+ $viewer = $request->getUser();
+ $xaction_phid = $this->phid;
+
+ $xaction = id(new PhabricatorObjectQuery())
+ ->withPHIDs(array($xaction_phid))
+ ->setViewer($viewer)
+ ->executeOne();
+ if (!$xaction) {
+ return new Aphront404Response();
+ }
+
+ $old = $xaction->getOldValue();
+ $new = $xaction->getNewValue();
+ switch ($this->changeType) {
+ case 'add':
+ $subscriber_phids = array_diff($new, $old);
+ break;
+ case 'rem':
+ $subscriber_phids = array_diff($old, $new);
+ break;
+ default:
+ return id(new Aphront404Response());
+ }
+
+ $object_phid = $xaction->getObjectPHID();
+ $author_phid = $xaction->getAuthorPHID();
+ $handle_phids = $subscriber_phids;
+ $handle_phids[] = $object_phid;
+ $handle_phids[] = $author_phid;
+
+ $handles = id(new PhabricatorHandleQuery())
+ ->setViewer($viewer)
+ ->withPHIDs($handle_phids)
+ ->execute();
+ $author_handle = $handles[$author_phid];
+ if (!in_array($author_phid, $subscriber_phids)) {
+ unset($handles[$author_phid]);
+ }
+
+ switch ($this->changeType) {
+ case 'add':
+ $title = pht(
+ 'All %d subscribers added by %s',
+ count($subscriber_phids),
+ $author_handle->renderLink());
+ break;
+ case 'rem':
+ $title = pht(
+ 'All %d subscribers removed by %s',
+ count($subscriber_phids),
+ $author_handle->renderLink());
+ break;
+ }
+
+ $dialog = id(new SubscriptionListDialogBuilder())
+ ->setViewer($viewer)
+ ->setTitle($title)
+ ->setObjectPHID($object_phid)
+ ->setHandles($handles)
+ ->buildDialog();
+
+ return id(new AphrontDialogResponse())->setDialog($dialog);
+ }
+
+}
diff --git a/src/applications/subscriptions/view/SubscriptionListStringBuilder.php b/src/applications/subscriptions/view/SubscriptionListStringBuilder.php
--- a/src/applications/subscriptions/view/SubscriptionListStringBuilder.php
+++ b/src/applications/subscriptions/view/SubscriptionListStringBuilder.php
@@ -24,13 +24,29 @@
return $this->objectPHID;
}
+ public function buildTransactionString($change_type) {
+ $handles = $this->getHandles();
+ if (!$handles) {
+ return;
+ }
+ $list_uri = '/subscriptions/transaction/'.
+ $change_type.'/'.
+ $this->getObjectPHID().'/';
+ return $this->buildString($list_uri);
+ }
+
public function buildPropertyString() {
- $phid = $this->getObjectPHID();
$handles = $this->getHandles();
if (!$handles) {
return phutil_tag('em', array(), pht('None'));
}
+ $list_uri = '/subscriptions/list/'.$this->getObjectPHID().'/';
+ return $this->buildString($list_uri);
+ }
+
+ private function buildString($list_uri) {
+ $handles = $this->getHandles();
$html = array();
$show_count = 3;
@@ -53,7 +69,7 @@
$args[] = javelin_tag(
'a',
array(
- 'href' => '/subscriptions/list/'.$phid.'/',
+ 'href' => $list_uri,
'sigil' => 'workflow'
),
$not_shown_txt);
diff --git a/src/applications/transactions/storage/PhabricatorApplicationTransaction.php b/src/applications/transactions/storage/PhabricatorApplicationTransaction.php
--- a/src/applications/transactions/storage/PhabricatorApplicationTransaction.php
+++ b/src/applications/transactions/storage/PhabricatorApplicationTransaction.php
@@ -289,6 +289,18 @@
}
}
+ private function renderSubscriberList(array $phids, $change_type) {
+ if ($this->getRenderingTarget() == self::TARGET_TEXT) {
+ return $this->renderHandleList($phids);
+ } else {
+ $handles = array_select_keys($this->getHandles(), $phids);
+ return id(new SubscriptionListStringBuilder())
+ ->setHandles($handles)
+ ->setObjectPHID($this->getPHID())
+ ->buildTransactionString($change_type);
+ }
+ }
+
public function renderPolicyName($phid) {
$policy = PhabricatorPolicy::newFromPolicyAndHandle(
$phid,
@@ -455,21 +467,21 @@
'%s edited subscriber(s), added %d: %s; removed %d: %s.',
$this->renderHandleLink($author_phid),
count($add),
- $this->renderHandleList($add),
+ $this->renderSubscriberList($add, 'add'),
count($rem),
- $this->renderHandleList($rem));
+ $this->renderSubscriberList($rem, 'rem'));
} else if ($add) {
return pht(
'%s added %d subscriber(s): %s.',
$this->renderHandleLink($author_phid),
count($add),
- $this->renderHandleList($add));
+ $this->renderSubscriberList($add, 'add'));
} else if ($rem) {
return pht(
'%s removed %d subscriber(s): %s.',
$this->renderHandleLink($author_phid),
count($rem),
- $this->renderHandleList($rem));
+ $this->renderSubscriberList($rem, 'rem'));
} else {
// This is used when rendering previews, before the user actually
// selects any CCs.
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Oct 24, 12:39 PM (2 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6732610
Default Alt Text
D8540.id20262.diff (7 KB)
Attached To
Mode
D8540: Transactions - add "and X others" dialog support to application transactions
Attached
Detach File
Event Timeline
Log In to Comment