Exemplo n.º 1
0
 /**
  * Execute a command and return a response. Does not render
  * @param IRequest $Request
  * @throws \Exception
  * @return IResponse the execution response
  */
 function execute(IRequest $Request)
 {
     $SessionRequest = $Request;
     if (!$SessionRequest instanceof ISessionRequest) {
         throw new \Exception("Session required");
     }
     $ProductForms = array();
     /** @var AbstractWallet[] $WalletTypes */
     $WalletTypes = array();
     $walletOptions = array('Choose a Wallet' => null);
     $WalletForms = array();
     $Products = ProductEntry::loadSessionProducts($SessionRequest);
     $productOptions = array('Choose a Product' => null);
     foreach ($Products as $ProductEntry) {
         $Product = $ProductEntry->getProduct();
         $productOptions[$Product->getTotalCost() . ' - ' . $Product->getProductTitle()] = $ProductEntry->getID();
         $Product = $ProductEntry->getProduct();
         $FieldSet = $Product->getOrderFieldSet($Request);
         $key = $ProductEntry->getID();
         $FieldSet->setAttribute('data-' . self::PARAM_PRODUCT_ID, $key);
         $ProductForms[] = $FieldSet;
         foreach ($Product->getWalletTypes() as $WalletType) {
             $key = $WalletType->getTypeName();
             $WalletTypes[$key] = $WalletType;
             $FieldSet = $WalletType->getFieldSet($Request);
             $FieldSet->setAttribute('data-' . self::PARAM_WALLET_ID, $key);
             $FieldSet->setAttribute('disabled', 'disabled');
             $WalletForms[] = $FieldSet;
             $walletOptions['New ' . $WalletType->getDescription()] = $key;
         }
     }
     $SessionWalletEntries = AbstractWallet::loadSessionWallets($SessionRequest);
     foreach ($SessionWalletEntries as $WalletEntry) {
         $Wallet = $WalletEntry->getWallet();
         $key = $WalletEntry->getID();
         $WalletTypes[$key] = $Wallet;
         $FieldSet = $Wallet->getFieldSet($Request);
         $FieldSet->setAttribute('data-' . self::PARAM_WALLET_ID, $key);
         $FieldSet->setAttribute('disabled', 'disabled');
         $WalletForms[] = $FieldSet;
         $walletOptions[$Wallet->getTitle() . ' - ' . $Wallet->getDescription()] = $key;
     }
     //		$walletTypes = Config::$AvailableWalletTypes;
     $Form = new HTMLForm(self::FORM_METHOD, self::FORM_ACTION, self::FORM_NAME, new HTMLMetaTag(HTMLMetaTag::META_TITLE, self::TITLE), new HTMLHeaderScript(__DIR__ . '/assets/transaction.js'), new HTMLHeaderStyleSheet(__DIR__ . '/assets/transaction.css'), new HTMLElement('fieldset', 'fieldset-create-transaction', new HTMLElement('legend', 'legend-wallet', self::TITLE), new HTMLElement('fieldset', 'fieldset-transaction', new HTMLElement('legend', 'legend-transaction', 'Transaction Details'), new HTMLElement('label', null, "Status<br/>", new HTMLSelectField(self::PARAM_TRANSACTION_STATUS, TransactionEntry::$StatusOptions, new RequiredValidation())), "<br/><br/>", new HTMLElement('label', null, "Product<br/>", new HTMLSelectField(self::PARAM_PRODUCT_ID, $productOptions, new RequiredValidation())), "<br/><br/>", $ProductForms), new HTMLElement('fieldset', 'fieldset-choose-wallet', new HTMLElement('legend', 'legend-wallet', 'Choose a Wallet'), new HTMLElement('label', null, new HTMLSelectField(self::PARAM_WALLET_ID, $walletOptions, new RequiredValidation())), "<br/><br/>", $WalletForms), "<br/><br/>Submit:<br/>", new HTMLButton('submit', 'Create Transaction', 'submit')), "<br/>");
     if (!$Request instanceof IFormRequest) {
         return $Form;
     }
     $Form->setFormValues($Request);
     //		$status = (int)$Form->validateField($Request, self::PARAM_TRANSACTION_STATUS);
     //		$email = $Form->validateField($Request, self::PARAM_TRANSACTION_EMAIL);
     $walletType = $Form->validateField($Request, self::PARAM_WALLET_ID);
     $ChosenWallet = $WalletTypes[$walletType];
     $ChosenWallet->validateRequest($Request, $Form);
     $productID = $Form->validateField($Request, self::PARAM_PRODUCT_ID);
     $ProductEntry = ProductEntry::get($productID);
     $Product = $ProductEntry->getProduct();
     $Invoice = $Product->createNewInvoice($Request, $ChosenWallet);
     $responses = array();
     foreach (PaymentSourceEntry::getActiveSources() as $PaymentSourceEntry) {
         $PaymentSource = $PaymentSourceEntry->getPaymentSource();
         if ($PaymentSource->supportsWalletType($ChosenWallet)) {
             $Response = $PaymentSource->executeWalletTransaction($ChosenWallet);
             $responses[] = $Response->getMessage();
             $paymentSourceID = $PaymentSourceEntry->getID();
             $walletID = WalletEntry::createOrUpdate($Request, $ChosenWallet);
             if ($Response->getCode() === TransactionEntry::STATUS_APPROVED) {
                 $status = TransactionEntry::STATUS_APPROVED;
                 $id = TransactionEntry::create($Request, $Invoice, $status, $walletID, $productID, $paymentSourceID);
                 ProfitEntry::update($Request, $id);
                 return new RedirectResponse(ManageTransaction::getRequestURL($id), "Transaction created successfully. Redirecting...", 5);
             } else {
                 $status = TransactionEntry::STATUS_DECLINED;
                 $id = TransactionEntry::create($Request, $Invoice, $status, $walletID, $productID, $paymentSourceID);
                 ProfitEntry::update($Request, $id);
             }
         }
     }
     throw new ValidationException($Form, "Transaction declined: \n\t" . implode("\n\t", $responses));
 }
Exemplo n.º 2
0
 /**
  * Execute a command and return a response. Does not render
  * @param IRequest $Request
  * @throws RequestException
  * @return IResponse the execution response
  */
 function execute(IRequest $Request)
 {
     $SessionRequest = $Request;
     if (!$SessionRequest instanceof ISessionRequest) {
         throw new RequestException("Session required");
     }
     $ProductEntry = ProductEntry::get($this->id);
     $setRates = false;
     $Account = AbstractAccountType::loadFromSession($SessionRequest);
     if ($Account instanceof MerchantAccount) {
         if ($Account->getID() !== $ProductEntry->getAccountID()) {
             throw new RequestException("Product does not belong to merchant");
         }
     } else {
         if ($Account instanceof AdministratorAccount) {
             $setRates = true;
         } else {
             throw new RequestException("Only merchants may create a new Product");
         }
     }
     $Product = $ProductEntry->getProduct();
     $sourceOptions = array("Choose a Payment Product" => null);
     $PaymentSourceTable = new PaymentSourceTable();
     foreach ($PaymentSourceTable->fetchAll(1) as $PaymentSourceEntry) {
         $PaymentSource = $PaymentSourceEntry->getPaymentSource();
         $sourceOptions[$PaymentSource->getTitle()] = $PaymentSourceEntry->getID();
     }
     $Form = new HTMLForm(self::FORM_METHOD, $Request->getPath(), self::FORM_NAME, new HTMLMetaTag(HTMLMetaTag::META_TITLE, self::TITLE), new HTMLHeaderScript(__DIR__ . '/assets/product.js'), new HTMLHeaderStyleSheet(__DIR__ . '/assets/product.css'), new HTMLInputField(self::PARAM_ID, $this->id, 'hidden'), new HTMLInputField(self::PARAM_PRODUCT_TYPE, $Product->getTypeName(), 'hidden'), new HTMLElement('fieldset', new HTMLElement('legend', 'legend-order-page', "Try Order Page"), new HTMLAnchor(OrderForm::getRequestURL($this->getProductID()), "Order Page")), new HTMLElement('fieldset', 'fieldset-info inline', new HTMLElement('legend', 'legend-info', "Product Info"), new MapRenderer($ProductEntry)), new HTMLElement('fieldset', 'fieldset-config inline', new HTMLElement('legend', 'legend-config', self::TITLE), $Product->getConfigFieldSet($Request), $FeesFieldSet = $Product->getFeesFieldSet($Request), new HTMLElement('fieldset', 'fieldset-status inline', new HTMLElement('legend', 'legend-status', "Status"), $SelectStatus = new HTMLSelectField(self::PARAM_PRODUCT_STATUS, ProductEntry::$StatusOptions, new RequiredValidation())), "<br/><br/>", new HTMLButton(self::PARAM_SUBMIT, 'Update', 'update')), new HTMLElement('fieldset', 'inline', new HTMLElement('legend', 'legend-submit', "Delete Product"), new HTMLButton(self::PARAM_SUBMIT, 'Delete', 'delete')), "<br/>");
     if (!$setRates) {
         $FeesFieldSet->setAttribute('disabled', 'disabled');
     }
     $SelectStatus->setInputValue($ProductEntry->getStatus());
     if (!$Request instanceof IFormRequest) {
         return $Form;
     }
     $submit = $Request[self::PARAM_SUBMIT];
     switch ($submit) {
         case 'update':
             $status = $Request[self::PARAM_PRODUCT_STATUS];
             $Product->validateConfigRequest($Request, $Form);
             $Product->validateFeesRequest($Request, $Form);
             $ProductEntry->update($Request, $Product, $status);
             return new RedirectResponse(ManageProduct::getRequestURL($this->getProductID()), "Product updated successfully. Redirecting...", 2);
         case 'delete':
             ProductEntry::delete($Request, $this->getProductID());
             return new RedirectResponse(SearchProducts::getRequestURL(), "Product deleted successfully. Redirecting...", 8);
     }
     throw new \InvalidArgumentException($submit);
 }
Exemplo n.º 3
0
 /**
  * Execute a command and return a response. Does not render
  * @param IRequest $Request
  * @throws \Exception
  * @return IResponse the execution response
  */
 function execute(IRequest $Request)
 {
     $SessionRequest = $Request;
     if (!$SessionRequest instanceof ISessionRequest) {
         throw new \Exception("Session required");
     }
     $Account = AbstractAccountType::loadFromSession($SessionRequest);
     if (!$Account instanceof MerchantAccount) {
         throw new RequestException("Only merchants may create a new Product");
     }
     $productOptions = array("Choose a Product Type" => null);
     /** @var AbstractProductType[] $ProductTypes */
     $ProductTypes = array();
     $ProductForms = array();
     foreach (Types\AbstractProductType::loadAllProductTypes() as $ProductType) {
         $ProductTypes[$ProductType->getTypeName()] = $ProductType;
         $FieldSet = $ProductType->getConfigFieldSet($Request);
         $FieldSet->setAttribute('disabled', 'disabled');
         $ProductForms[] = $FieldSet;
         //			$FieldSet = $ProductType->getRatesFieldSet($Request);
         //			$FieldSet->setAttribute('disabled', 'disabled');
         //			$ProductForms[] = $FieldSet;
         $productOptions[$ProductType->getTypeDescription()] = $ProductType->getTypeName();
     }
     $Form = new HTMLForm(self::FORM_METHOD, $Request->getPath(), self::FORM_NAME, new HTMLMetaTag(HTMLMetaTag::META_TITLE, self::TITLE), new HTMLHeaderScript(__DIR__ . '/assets/product.js'), new HTMLHeaderStyleSheet(__DIR__ . '/assets/product.css'), new HTMLElement('fieldset', 'fieldset-create-product', new HTMLElement('legend', 'legend-product', self::TITLE), new HTMLElement('label', null, "Status<br/>", new HTMLSelectField(self::PARAM_PRODUCT_STATUS, ProductEntry::$StatusOptions, new RequiredValidation())), "<br/><br/>", new HTMLElement('label', null, "Choose a Product Type<br/>", new HTMLSelectField(self::PARAM_PRODUCT_TYPE, $productOptions, new RequiredValidation())), "<br/><br/>", $ProductForms, "<br/><br/>Submit:<br/>", new HTMLButton('submit', 'Submit', 'submit')), "<br/>");
     if (!$Request instanceof IFormRequest) {
         return $Form;
     }
     $status = $Form->validateField($Request, self::PARAM_PRODUCT_STATUS);
     $productType = $Form->validateField($Request, self::PARAM_PRODUCT_TYPE);
     //		$sourceID = $Form->validateField($Request, self::PARAM_PAYMENT_SOURCE_TYPE);
     $ChosenProduct = $ProductTypes[$productType];
     $ChosenProduct->validateConfigRequest($Request, $Form);
     $accountID = 'default';
     if ($Account) {
         $accountID = $Account->getID();
     }
     $id = ProductEntry::create($Request, $ChosenProduct, $accountID, $status);
     return new RedirectResponse(ManageProduct::getRequestURL($id), "Product created successfully. Redirecting...", 5);
 }