2013-04-12 17:10:22 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhortuneAccountBuyController
|
|
|
|
extends PhortuneController {
|
|
|
|
|
|
|
|
private $accountID;
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->accountID = $data['accountID'];
|
|
|
|
$this->id = $data['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$user = $request->getUser();
|
|
|
|
|
|
|
|
$account = id(new PhortuneAccountQuery())
|
|
|
|
->setViewer($user)
|
|
|
|
->withIDs(array($this->accountID))
|
|
|
|
->executeOne();
|
|
|
|
if (!$account) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
|
|
|
$account_uri = $this->getApplicationURI($account->getID().'/');
|
|
|
|
|
|
|
|
$product = id(new PhortuneProductQuery())
|
|
|
|
->setViewer($user)
|
|
|
|
->withIDs(array($this->id))
|
|
|
|
->executeOne();
|
|
|
|
if (!$product) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
2013-04-25 18:45:07 +02:00
|
|
|
$purchase = new PhortunePurchase();
|
|
|
|
$purchase->setProductPHID($product->getPHID());
|
|
|
|
$purchase->setAccountPHID($account->getPHID());
|
|
|
|
$purchase->setPurchaseName($product->getProductName());
|
|
|
|
$purchase->setBasePriceInCents($product->getPriceInCents());
|
|
|
|
$purchase->setQuantity(1);
|
|
|
|
$purchase->setTotalPriceInCents(
|
|
|
|
$purchase->getBasePriceInCents() * $purchase->getQuantity());
|
|
|
|
$purchase->setStatus(PhortunePurchase::STATUS_PENDING);
|
|
|
|
|
|
|
|
$cart = new PhortuneCart();
|
|
|
|
$cart->setAccountPHID($account->getPHID());
|
|
|
|
$cart->setOwnerPHID($user->getPHID());
|
|
|
|
$cart->attachPurchases(
|
|
|
|
array(
|
|
|
|
$purchase,
|
|
|
|
));
|
|
|
|
|
|
|
|
$rows = array();
|
|
|
|
$total = 0;
|
|
|
|
foreach ($cart->getPurchases() as $purchase) {
|
|
|
|
$rows[] = array(
|
|
|
|
$purchase->getPurchaseName(),
|
2013-05-07 03:04:45 +02:00
|
|
|
PhortuneCurrency::newFromUSDCents($purchase->getBasePriceInCents())
|
|
|
|
->formatForDisplay(),
|
2013-04-25 18:45:07 +02:00
|
|
|
$purchase->getQuantity(),
|
2013-05-07 03:04:45 +02:00
|
|
|
PhortuneCurrency::newFromUSDCents($purchase->getTotalPriceInCents())
|
|
|
|
->formatForDisplay(),
|
2013-04-25 18:45:07 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$total += $purchase->getTotalPriceInCents();
|
|
|
|
}
|
|
|
|
|
|
|
|
$rows[] = array(
|
|
|
|
phutil_tag('strong', array(), pht('Total')),
|
|
|
|
'',
|
|
|
|
'',
|
2013-05-07 03:04:45 +02:00
|
|
|
phutil_tag('strong', array(),
|
|
|
|
PhortuneCurrency::newFromUSDCents($total)->formatForDisplay()),
|
2013-04-25 18:45:07 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$table = new AphrontTableView($rows);
|
|
|
|
$table->setHeaders(
|
|
|
|
array(
|
|
|
|
pht('Item'),
|
|
|
|
pht('Price'),
|
|
|
|
pht('Qty.'),
|
|
|
|
pht('Total'),
|
|
|
|
));
|
|
|
|
|
|
|
|
$panel = new AphrontPanelView();
|
|
|
|
$panel->setNoBackground(true);
|
|
|
|
$panel->appendChild($table);
|
|
|
|
|
|
|
|
|
|
|
|
$title = pht('Buy Stuff');
|
|
|
|
|
|
|
|
|
|
|
|
$methods = id(new PhortunePaymentMethodQuery())
|
|
|
|
->setViewer($user)
|
|
|
|
->withAccountPHIDs(array($account->getPHID()))
|
|
|
|
->withStatus(PhortunePaymentMethodQuery::STATUS_OPEN)
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
$method_control = id(new AphrontFormRadioButtonControl())
|
|
|
|
->setLabel(pht('Payment Method'));
|
|
|
|
|
|
|
|
if (!$methods) {
|
|
|
|
$method_control = id(new AphrontFormStaticControl())
|
|
|
|
->setLabel(pht('Payment Method'))
|
|
|
|
->setValue(
|
|
|
|
phutil_tag('em', array(), pht('No payment methods configured.')));
|
|
|
|
} else {
|
|
|
|
$method_control = id(new AphrontFormRadioButtonControl())
|
|
|
|
->setLabel(pht('Payment Method'))
|
|
|
|
->setName('paymentMethodID')
|
|
|
|
->setValue($request->getInt('paymentMethodID'));
|
|
|
|
foreach ($methods as $method) {
|
|
|
|
$method_control->addButton(
|
|
|
|
$method->getID(),
|
2013-05-06 20:44:24 +02:00
|
|
|
$method->getBrand().' / '.$method->getLastFourDigits(),
|
2013-04-25 18:45:07 +02:00
|
|
|
$method->getDescription());
|
|
|
|
}
|
|
|
|
}
|
2013-04-12 17:10:22 +02:00
|
|
|
|
|
|
|
$payment_method_uri = $this->getApplicationURI(
|
|
|
|
$account->getID().'/paymentmethod/edit/');
|
|
|
|
|
|
|
|
$form = id(new AphrontFormView())
|
|
|
|
->setUser($user)
|
2013-05-06 20:44:24 +02:00
|
|
|
->appendChild($method_control);
|
|
|
|
|
|
|
|
$add_providers = PhortunePaymentProvider::getProvidersForAddPaymentMethod();
|
|
|
|
if ($add_providers) {
|
|
|
|
$new_method = phutil_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'class' => 'button grey',
|
|
|
|
'href' => $payment_method_uri,
|
|
|
|
'sigil' => 'workflow',
|
|
|
|
),
|
|
|
|
pht('Add New Payment Method'));
|
|
|
|
$form->appendChild(
|
|
|
|
id(new AphrontFormMarkupControl())
|
|
|
|
->setValue($new_method));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($methods || $add_providers) {
|
|
|
|
$form
|
|
|
|
->appendChild(
|
|
|
|
id(new AphrontFormSubmitControl())
|
|
|
|
->setValue(pht("Submit Payment"))
|
|
|
|
->setDisabled(!$methods));
|
|
|
|
}
|
|
|
|
|
|
|
|
$provider_form = null;
|
|
|
|
|
|
|
|
$pay_providers = PhortunePaymentProvider::getProvidersForOneTimePayment();
|
|
|
|
if ($pay_providers) {
|
|
|
|
$one_time_options = array();
|
|
|
|
foreach ($pay_providers as $provider) {
|
|
|
|
$one_time_options[] = $provider->renderOneTimePaymentButton(
|
|
|
|
$account,
|
|
|
|
$cart,
|
|
|
|
$user);
|
|
|
|
}
|
|
|
|
|
2013-08-26 20:53:11 +02:00
|
|
|
$provider_form = new PHUIFormLayoutView();
|
2013-05-06 20:44:24 +02:00
|
|
|
$provider_form->appendChild(
|
2013-04-12 17:10:22 +02:00
|
|
|
id(new AphrontFormMarkupControl())
|
2013-05-06 20:44:24 +02:00
|
|
|
->setLabel('Pay With')
|
|
|
|
->setValue($one_time_options));
|
|
|
|
}
|
2013-04-12 17:10:22 +02:00
|
|
|
|
|
|
|
return $this->buildApplicationPage(
|
2013-04-25 18:45:07 +02:00
|
|
|
array(
|
|
|
|
$panel,
|
|
|
|
$form,
|
2013-05-06 20:44:24 +02:00
|
|
|
phutil_tag('br', array()),
|
|
|
|
$provider_form,
|
2013-04-25 18:45:07 +02:00
|
|
|
),
|
2013-04-12 17:10:22 +02:00
|
|
|
array(
|
|
|
|
'title' => $title,
|
|
|
|
'device' => true,
|
|
|
|
));
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|