Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14066130
D10672.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
D10672.diff
View Options
diff --git a/src/applications/fund/phortune/FundBackerCart.php b/src/applications/fund/phortune/FundBackerCart.php
--- a/src/applications/fund/phortune/FundBackerCart.php
+++ b/src/applications/fund/phortune/FundBackerCart.php
@@ -81,4 +81,8 @@
return '/'.$this->getInitiative()->getMonogram();
}
+ public function getDoneActionName(PhortuneCart $cart) {
+ return pht('Return to Initiative');
+ }
+
}
diff --git a/src/applications/phortune/cart/PhortuneCartImplementation.php b/src/applications/phortune/cart/PhortuneCartImplementation.php
--- a/src/applications/phortune/cart/PhortuneCartImplementation.php
+++ b/src/applications/phortune/cart/PhortuneCartImplementation.php
@@ -16,6 +16,10 @@
abstract public function getCancelURI(PhortuneCart $cart);
abstract public function getDoneURI(PhortuneCart $cart);
+ public function getDoneActionName(PhortuneCart $cart) {
+ return pht('Return to Application');
+ }
+
public function assertCanCancelOrder(PhortuneCart $cart) {
switch ($cart->getStatus()) {
case PhortuneCart::STATUS_PURCHASED:
diff --git a/src/applications/phortune/controller/PhortuneCartCheckoutController.php b/src/applications/phortune/controller/PhortuneCartCheckoutController.php
--- a/src/applications/phortune/controller/PhortuneCartCheckoutController.php
+++ b/src/applications/phortune/controller/PhortuneCartCheckoutController.php
@@ -102,7 +102,7 @@
$cart->didApplyCharge($charge);
- $done_uri = $cart->getDoneURI();
+ $done_uri = $cart->getCheckoutURI();
return id(new AphrontRedirectResponse())->setURI($done_uri);
}
}
diff --git a/src/applications/phortune/controller/PhortuneCartViewController.php b/src/applications/phortune/controller/PhortuneCartViewController.php
--- a/src/applications/phortune/controller/PhortuneCartViewController.php
+++ b/src/applications/phortune/controller/PhortuneCartViewController.php
@@ -35,6 +35,7 @@
PhabricatorPolicyCapability::CAN_EDIT);
$errors = array();
+ $error_view = null;
$resume_uri = null;
switch ($cart->getStatus()) {
case PhortuneCart::STATUS_PURCHASING:
@@ -71,6 +72,12 @@
phutil_tag('strong', array(), pht('Update Status')));
}
break;
+ case PhortuneCart::STATUS_PURCHASED:
+ $error_view = id(new AphrontErrorView())
+ ->setSeverity(AphrontErrorView::SEVERITY_NOTICE)
+ ->appendChild(pht('This purchase has been completed.'));
+
+ break;
}
$properties = $this->buildPropertyListView($cart);
@@ -85,12 +92,30 @@
->setUser($viewer)
->setHeader(pht('Order Detail'));
+ if ($cart->getStatus() == PhortuneCart::STATUS_PURCHASED) {
+ $done_uri = $cart->getDoneURI();
+ if ($done_uri) {
+ $header->addActionLink(
+ id(new PHUIButtonView())
+ ->setTag('a')
+ ->setHref($done_uri)
+ ->setIcon(id(new PHUIIconView())
+ ->setIconFont('fa-check-square green'))
+ ->setText($cart->getDoneActionName()));
+ }
+ }
+
$cart_box = id(new PHUIObjectBoxView())
->setHeader($header)
- ->setFormErrors($errors)
->appendChild($properties)
->appendChild($cart_table);
+ if ($errors) {
+ $cart_box->setFormErrors($errors);
+ } else if ($error_view) {
+ $cart_box->setErrorView($error_view);
+ }
+
$charges = id(new PhortuneChargeQuery())
->setViewer($viewer)
->withCartPHIDs(array($cart->getPHID()))
diff --git a/src/applications/phortune/provider/PhortunePayPalPaymentProvider.php b/src/applications/phortune/provider/PhortunePayPalPaymentProvider.php
--- a/src/applications/phortune/provider/PhortunePayPalPaymentProvider.php
+++ b/src/applications/phortune/provider/PhortunePayPalPaymentProvider.php
@@ -450,7 +450,7 @@
if ($success) {
$cart->didApplyCharge($charge);
$response = id(new AphrontRedirectResponse())->setURI(
- $cart->getDoneURI());
+ $cart->getCheckoutURI());
} else if ($hold) {
$cart->didHoldCharge($charge);
diff --git a/src/applications/phortune/provider/PhortuneWePayPaymentProvider.php b/src/applications/phortune/provider/PhortuneWePayPaymentProvider.php
--- a/src/applications/phortune/provider/PhortuneWePayPaymentProvider.php
+++ b/src/applications/phortune/provider/PhortuneWePayPaymentProvider.php
@@ -349,7 +349,7 @@
$cart->didApplyCharge($charge);
$response = id(new AphrontRedirectResponse())->setURI(
- $cart->getDoneURI());
+ $cart->getCheckoutURI());
break;
default:
// It's not clear if we can ever get here on the web workflow,
diff --git a/src/applications/phortune/storage/PhortuneCart.php b/src/applications/phortune/storage/PhortuneCart.php
--- a/src/applications/phortune/storage/PhortuneCart.php
+++ b/src/applications/phortune/storage/PhortuneCart.php
@@ -332,6 +332,10 @@
return $this->getImplementation()->getDoneURI($this);
}
+ public function getDoneActionName() {
+ return $this->getImplementation()->getDoneActionName($this);
+ }
+
public function getCancelURI() {
return $this->getImplementation()->getCancelURI($this);
}
diff --git a/src/view/__tests__/PhabricatorUnitsTestCase.php b/src/view/__tests__/PhabricatorUnitsTestCase.php
--- a/src/view/__tests__/PhabricatorUnitsTestCase.php
+++ b/src/view/__tests__/PhabricatorUnitsTestCase.php
@@ -7,13 +7,13 @@
public function testByteFormatting() {
$tests = array(
- 1 => '1 B',
- 1000 => '1 KB',
- 1000000 => '1 MB',
- 10000000 => '10 MB',
- 100000000 => '100 MB',
- 1000000000 => '1 GB',
- 999 => '999 B',
+ 1 => '1 B',
+ 1024 => '1 KB',
+ 1024 * 1024 => '1 MB',
+ 10 * 1024 * 1024 => '10 MB',
+ 100 * 1024 * 1024 => '100 MB',
+ 1024 * 1024 * 1024 => '1 GB',
+ 999 => '999 B',
);
foreach ($tests as $input => $expect) {
@@ -27,16 +27,16 @@
public function testByteParsing() {
$tests = array(
'1' => 1,
- '1k' => 1000,
- '1K' => 1000,
- '1kB' => 1000,
- '1Kb' => 1000,
- '1KB' => 1000,
- '1MB' => 1000000,
- '1GB' => 1000000000,
- '1.5M' => 1500000,
+ '1k' => 1024,
+ '1K' => 1024,
+ '1kB' => 1024,
+ '1Kb' => 1024,
+ '1KB' => 1024,
+ '1MB' => 1024 * 1024,
+ '1GB' => 1024 * 1024 * 1024,
+ '1.5M' => (int)(1024 * 1024 * 1.5),
'1 000' => 1000,
- '1,234.56 KB' => 1234560,
+ '1,234.56 KB' => (int)(1024 * 1234.56),
);
foreach ($tests as $input => $expect) {
diff --git a/src/view/phui/PHUIObjectBoxView.php b/src/view/phui/PHUIObjectBoxView.php
--- a/src/view/phui/PHUIObjectBoxView.php
+++ b/src/view/phui/PHUIObjectBoxView.php
@@ -85,7 +85,7 @@
}
public function setFormErrors(array $errors, $title = null) {
- if (nonempty($errors)) {
+ if ($errors) {
$this->formErrors = id(new AphrontErrorView())
->setTitle($title)
->setErrors($errors);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Nov 20, 8:23 AM (21 h, 45 m)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6726545
Default Alt Text
D10672.diff (7 KB)
Attached To
Mode
D10672: Smooth out Phortune purchase completion flow
Attached
Detach File
Event Timeline
Log In to Comment