2014-10-09 13:30:47 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhortuneCartUpdateController
|
|
|
|
extends PhortuneCartController {
|
|
|
|
|
|
|
|
private $id;
|
|
|
|
|
|
|
|
public function willProcessRequest(array $data) {
|
|
|
|
$this->id = $data['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processRequest() {
|
|
|
|
$request = $this->getRequest();
|
|
|
|
$viewer = $request->getUser();
|
|
|
|
|
|
|
|
$cart = id(new PhortuneCartQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withIDs(array($this->id))
|
|
|
|
->needPurchases(true)
|
|
|
|
->executeOne();
|
|
|
|
if (!$cart) {
|
|
|
|
return new Aphront404Response();
|
|
|
|
}
|
|
|
|
|
2014-10-10 01:57:52 +02:00
|
|
|
$charges = id(new PhortuneChargeQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withCartPHIDs(array($cart->getPHID()))
|
|
|
|
->needCarts(true)
|
|
|
|
->withStatuses(
|
|
|
|
array(
|
|
|
|
PhortuneCharge::STATUS_HOLD,
|
|
|
|
PhortuneCharge::STATUS_CHARGED,
|
|
|
|
))
|
|
|
|
->execute();
|
|
|
|
|
|
|
|
if ($charges) {
|
|
|
|
$providers = id(new PhortunePaymentProviderConfigQuery())
|
|
|
|
->setViewer($viewer)
|
|
|
|
->withPHIDs(mpull($charges, 'getProviderPHID'))
|
|
|
|
->execute();
|
|
|
|
$providers = mpull($providers, null, 'getPHID');
|
|
|
|
} else {
|
|
|
|
$providers = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($charges as $charge) {
|
|
|
|
if ($charge->isRefund()) {
|
|
|
|
// Don't update refunds.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$provider_config = idx($providers, $charge->getProviderPHID());
|
|
|
|
if (!$provider_config) {
|
|
|
|
throw new Exception(pht('Unable to load provider for charge!'));
|
|
|
|
}
|
|
|
|
|
|
|
|
$provider = $provider_config->buildProvider();
|
|
|
|
$provider->updateCharge($charge);
|
|
|
|
}
|
2014-10-09 13:30:47 +02:00
|
|
|
|
|
|
|
return id(new AphrontRedirectResponse())
|
|
|
|
->setURI($cart->getDetailURI());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|