public function inicializaPagamento($cart, $urlRetorno) { require_once "vendor/PagSeguroLibrary/PagSeguroLibrary.php"; $paymentRequest = new PagSeguroPaymentRequest(); $paymentRequest->setCurrency("BRL"); foreach ($cart->getProducts() as $product) { $paymentRequest->addItem($product['id_product_attribute'], $product['name'], $product['quantity'], $product['price_wt']); } $customer = new Customer($cart->id_customer); $address = new Address($cart->id_address_delivery); $telefone_full = preg_replace("/([^0-9])/", null, $address->phone); $telefone_full = str_pad($telefone_full, 11, "0", STR_PAD_LEFT); $areacode = substr($telefone_full, 1, 2); $phone = substr($telefone_full, 3); $state = new State($address->id_state); $number = preg_replace("/([^0-9])/", null, $address->address2); $paymentRequest->setShippingAddress($address->postcode, $address->address1, $number, null, null, $address->city, $state->iso_code, $address->country); $CODIGO_SHIPPING = PagSeguroShippingType::getCodeByType('NOT_SPECIFIED'); $paymentRequest->setShippingType($CODIGO_SHIPPING); $paymentRequest->setShippingCost(number_format($cart->getOrderShippingCost(), 2, ".", "")); $paymentRequest->setSender($customer->firstname . " " . $customer->lastname, $customer->email, $areacode, $phone); $order_id = (int) Order::getOrderByCartId($cart->id); $paymentRequest->setReference($order_id); $paymentRequest->setRedirectURL($urlRetorno); $credentials = new PagSeguroAccountCredentials(Configuration::get("PAGSEGURO_BUSINESS"), Configuration::get("PAGSEGURO_TOKEN")); $url = $paymentRequest->register($credentials); return $url; }
public function button() { $paymentRequest = new \PagSeguroPaymentRequest(); $paymentRequest->setCurrency('BRL'); $paymentRequest->setReference($this->options['dataPedido']['codigo']); foreach ($this->options['dataPedido']['ComponentProdutosDoPedido'] as $product) { $paymentRequest->addItem($product['component_produtos_id'], sprintf('%s %s', $product['ComponentProdutos']['titulo'], $product['ComponentProdutos']['chapeu']), $product['quantity'], $product['preco']); } if ($this->options['dataPedido']['desconto'] > 0) { $paymentRequest->setExtraAmount($this->options['dataPedido']['desconto'] * -1); } if ($this->options['dataPedido']['shipping_price'] > 0) { $paymentRequest->addItem('frete', sprintf('Frete por %s', $this->options['dataPedido']['ComponentFormasDeEntrega']['titulo']), 1, $this->options['dataPedido']['shipping_price']); } // customer information. $paymentRequest->setSender($this->options['dataUsuario']['titulo'], $this->options['dataUsuario']['email'], mb_substr($this->options['dataUsuario']['telefone'], 1, 2), preg_replace('/[^\\d]/', '', mb_substr($this->options['dataUsuario']['telefone'], 5)), 'CPF', $this->options['dataUsuario']['cpf']); $paymentRequest->setRedirectUrl($this->options['redirectUrl']); $paymentRequest->addParameter('notificationURL', $this->options['notificationURL']); try { // Register this payment request in PagSeguro to obtain the payment URL to redirect your customer. $url = $paymentRequest->register(new \PagSeguroAccountCredentials($this->credentials['email'], $this->credentials['token'])); return sprintf('<a class="btn btn-fill btn-lg btn-aircode btn-aircode-primary" href="%s" target="_blank">Pagar com PagSeguro</a>', $url); } catch (\PagSeguroServiceException $e) { return $e->getMessage(); } }
public static function main() { // Instantiate a new payment request $paymentRequest = new PagSeguroPaymentRequest(); // Set the currency $paymentRequest->setCurrency("BRL"); // Add an item for this payment request $paymentRequest->addItem('0001', 'Notebook prata', 2, 430.0); // Add another item for this payment request $paymentRequest->addItem('0002', 'Notebook rosa', 2, 560.0); // Set a reference code for this payment request. It is useful to identify this payment // in future notifications. $paymentRequest->setReference("REF123"); // Set shipping information for this payment request $sedexCode = PagSeguroShippingType::getCodeByType('SEDEX'); $paymentRequest->setShippingType($sedexCode); $paymentRequest->setShippingAddress('01452002', 'Av. Brig. Faria Lima', '1384', 'apto. 114', 'Jardim Paulistano', 'São Paulo', 'SP', 'BRA'); // Set your customer information. $paymentRequest->setSender('João Comprador', '*****@*****.**', '11', '56273440', 'CPF', '156.009.442-76'); // Set the url used by PagSeguro to redirect user after checkout process ends $paymentRequest->setRedirectUrl("http://www.lojamodelo.com.br"); // Add checkout metadata information $paymentRequest->addMetadata('PASSENGER_CPF', '15600944276', 1); $paymentRequest->addMetadata('GAME_NAME', 'DOTA'); $paymentRequest->addMetadata('PASSENGER_PASSPORT', '23456', 1); // Another way to set checkout parameters $paymentRequest->addParameter('notificationURL', 'http://www.lojamodelo.com.br/nas'); $paymentRequest->addParameter('senderBornDate', '07/05/1981'); $paymentRequest->addIndexedParameter('itemId', '0003', 3); $paymentRequest->addIndexedParameter('itemDescription', 'Notebook Preto', 3); $paymentRequest->addIndexedParameter('itemQuantity', '1', 3); $paymentRequest->addIndexedParameter('itemAmount', '200.00', 3); // Add discount per payment method $paymentRequest->addPaymentMethodConfig('CREDIT_CARD', 1.0, 'DISCOUNT_PERCENT'); $paymentRequest->addPaymentMethodConfig('EFT', 2.9, 'DISCOUNT_PERCENT'); $paymentRequest->addPaymentMethodConfig('BOLETO', 10.0, 'DISCOUNT_PERCENT'); $paymentRequest->addPaymentMethodConfig('DEPOSIT', 3.45, 'DISCOUNT_PERCENT'); $paymentRequest->addPaymentMethodConfig('BALANCE', 0.01, 'DISCOUNT_PERCENT'); try { /* * #### Credentials ##### * Replace the parameters below with your credentials * You can also get your credentials from a config file. See an example: * $credentials = PagSeguroConfig::getAccountCredentials(); // */ // seller authentication $credentials = new PagSeguroAccountCredentials("*****@*****.**", "E231B2C9BCC8474DA2E260B6C8CF60D3"); // application authentication //$credentials = PagSeguroConfig::getApplicationCredentials(); //$credentials->setAuthorizationCode("E231B2C9BCC8474DA2E260B6C8CF60D3"); // Register this payment request in PagSeguro to obtain the payment URL to redirect your customer. $url = $paymentRequest->register($credentials); self::printPaymentUrl($url); } catch (PagSeguroServiceException $e) { die($e->getMessage()); } }
public function paymentRequests($billId) { if (!isset($_SESSION['user'])) { redirect('site/login', 'refresh'); } $billInfo = $this->billing->getBillingInfo($billId); $items = []; $sender = []; if (!empty($billInfo)) { $package = $billInfo['package']; $client = $billInfo['client']; $items[] = ['id' => 1, 'descricao' => $package->description, 'quantidade' => 1, 'valor' => $package->price, 'peso' => NULL, 'frete' => NULL]; foreach ($billInfo['acquisition']['modifiers'] as $k => $modifier) { $items[] = ['id' => 2 + $k, 'descricao' => $modifier->description, 'quantidade' => 1, 'valor' => $modifier->price_modifier, 'peso' => NULL, 'frete' => NULL]; } $sender = array('nome' => $this->userinfo->partialName($client->id), 'email' => $client->main_email, 'ddd' => NULL, 'telefone' => NULL); } if (!empty($items)) { $paymentRequest = new PagSeguroPaymentRequest(); foreach ($items as $item) { $paymentRequest->addItem($item['id'], $item['descricao'], 1, (double) $item['valor']); } if ($sender != NULL) { $paymentRequest->setSender($sender['nome'], $sender['email'], $sender['ddd'], $sender['telefone']); } $paymentRequest->setCurrency('BRL'); $paymentRequest->setReference($billId); $paymentRequest->setMaxAge(172800); $paymentRequest->setRedirectURL(site_url('client/profile')); $paymentRequest->setNotificationURL(site_url('PagSeguro/notification')); $checkoutUrl = NULL; try { $credentials = PagSeguroConfig::getAccountCredentials(); $checkoutUrl = $paymentRequest->register($credentials); } catch (PagSeguroServiceException $e) { die(var_dump($e)); } if ($checkoutUrl != NULL) { redirect($checkoutUrl, 'refresh'); } else { $alert = ['message' => 'Ouve um problema ao emitir cobrança no PagSeguro', 'class' => 'alert-danger', 'icon' => 'glyphicon-remove']; $this->session->set_flashdata('alert', $alert); //redirect( 'client/acquisitions', 'refresh' ); } } return FALSE; }
public function pay($id) { \PagSeguroLibrary::init(); \PagSeguroConfig::setEnvironment('production'); $this->plan = Plans::find($id); $this->client = User::find(Auth::user()->id); $this->payment = Payments::create(['plan_name' => $this->plan->name, 'plan_value' => $this->plan->value, 'plan_id' => $this->plan->id, 'user_id' => $this->client->id, 'confirmed' => 0]); // Instantiate a new payment request $paymentRequest = new \PagSeguroPaymentRequest(); // Set the currency $paymentRequest->setCurrency("BRL"); /* // Add an item for this payment request $paymentRequest->addItem('0001', 'Sempre da Negócio - Plano '.$this->plan->name, 1, $this->plan->value);*/ $paymentRequest->addItem($this->plan->id, 'Sempre da Negócio - Plano ' . $this->plan->name, 1, $this->plan->value); // Set a reference code for this payment request. It is useful to identify this payment // in future notifications. $paymentRequest->setReference($this->payment->id); //Create object PagSeguroShipping $shipping = new \PagSeguroShipping(); //Set Type Shipping $type = new \PagSeguroShippingType(3); $shipping->setType($type); //Set address of client $data = array('postalCode' => $this->client->zipcode, 'street' => $this->client->address, 'number' => $this->client->number, 'city' => $this->client->city, 'state' => $this->client->state); $address = new \PagSeguroAddress($data); $shipping->setAddress($address); //Add Shipping to Payment Request $paymentRequest->setShipping($shipping); // Set your customer information. $phone = str_replace(['(', ')', ' ', '-'], ['', '', '', ''], $this->client->phone); $paymentRequest->setSender($this->client->name, $this->client->email_responsible, substr($phone, 0, 2), substr($phone, 2)); try { /* * #### Credentials ##### * Replace the parameters below with your credentials (e-mail and token) * You can also get your credentials from a config file. See an example: * $credentials = PagSeguroConfig::getAccountCredentials(); // */ $credentials = new \PagSeguroAccountCredentials($this->email, $this->token); // Register this payment request in PagSeguro to obtain the payment URL to redirect your customer. $onlyCheckoutCode = true; $code = $paymentRequest->register($credentials, $onlyCheckoutCode); return view('site.pages.confirma_pagamento', compact('code')); } catch (\PagSeguroServiceException $e) { die($e->getMessage()); } }
public static function main() { // Instantiate a new payment request $paymentRequest = new PagSeguroPaymentRequest(); // Sets the currency $paymentRequest->setCurrency("BRL"); // Add an item for this payment request $paymentRequest->addItem('0001', 'Notebook prata', 2, 430.0); // Add another item for this payment request $paymentRequest->addItem('0002', 'Notebook rosa', 2, 560.0); // Sets a reference code for this payment request, it is useful to identify this payment in future notifications. $paymentRequest->setReference("REF123"); // Sets shipping information for this payment request $CODIGO_SEDEX = PagSeguroShippingType::getCodeByType('SEDEX'); $paymentRequest->setShippingType($CODIGO_SEDEX); $paymentRequest->setShippingAddress('01452002', 'Av. Brig. Faria Lima', '1384', 'apto. 114', 'Jardim Paulistano', 'São Paulo', 'SP', 'BRA'); // Sets your customer information. $paymentRequest->setSender('João Comprador', '*****@*****.**', '11', '56273440', 'CPF', '156.009.442-76'); // Sets the url used by PagSeguro for redirect user after ends checkout process $paymentRequest->setRedirectUrl("http://www.lojamodelo.com.br"); // Add checkout metadata information $paymentRequest->addMetadata('PASSENGER_CPF', '15600944276', 1); $paymentRequest->addMetadata('GAME_NAME', 'DOTA'); $paymentRequest->addMetadata('PASSENGER_PASSPORT', '23456', 1); // Another way to set checkout parameters $paymentRequest->addParameter('notificationURL', 'http://www.lojamodelo.com.br/nas'); $paymentRequest->addIndexedParameter('itemId', '0003', 3); $paymentRequest->addIndexedParameter('itemDescription', 'Notebook Preto', 3); $paymentRequest->addIndexedParameter('itemQuantity', '1', 3); $paymentRequest->addIndexedParameter('itemAmount', '200.00', 3); try { /* * #### Crendencials ##### * Substitute the parameters below with your credentials (e-mail and token) * You can also get your credentails from a config file. See an example: * $credentials = PagSeguroConfig::getAccountCredentials(); */ $credentials = new PagSeguroAccountCredentials("*****@*****.**", "your_token_here"); // Register this payment request in PagSeguro, to obtain the payment URL for redirect your customer. $url = $paymentRequest->register($credentials); self::printPaymentUrl($url); } catch (PagSeguroServiceException $e) { die($e->getMessage()); } }
function payment() { require_once APPPATH . 'third_party/PagSeguroLibrary/PagSeguroLibrary.php'; $this->load->model('../libraries/anuncios/model/ad_price_model', 'price'); $this->load->model('user_model'); // valida se o anuncio e o preco realmente existem if (!$this->price->get($this->input->post('price_id', TRUE))->exists() || !$this->ad_model->get($this->input->post('ad_id', TRUE))->is_mine()) { set_message("Operação inválida", 2); redirect(site_url("act/anuncios/ad/home_page")); } $paymentRequest = new PagSeguroPaymentRequest(); $paymentRequest->AddItem($this->price->object->id, $this->price->object->title, 1, '0.10'); $paymentRequest->setShippingType(3); $user_object = $this->user_model->get(); // dump($user_object); // precisamos dos dados de cidade, bairro, rua e numero $paymentRequest->setShippingAddress(str_replace(array("-", "."), "", $user_object->zip_code), @$user_object->street_name, @$user_object->number, '', @$user_object->district, @$user_object->city_name, @$user_object->state_letter, 'BRA'); $type = !empty($user_object->cpf) ? "CPF" : "CNPJ"; $type_value = !empty($user_object->cpf) ? $user_object->cpf : $user_object->cnpj; $paymentRequest->setSender($user_object->name, $user_object->username, '11', '', $type, $type_value); $paymentRequest->setCurrency("BRL"); $paymentRequest->setReference($this->ad_model->object->id); $paymentRequest->setRedirectUrl(site_url("act/anuncios/ad/home_page")); $paymentRequest->addParameter('notificationURL', site_url("pagseguro/notification/anuncios/" . $this->ad_model->object->id)); try { $credentials = PagSeguroConfig::getAccountCredentials(); // getApplicationCredentials() $checkoutUrl = $paymentRequest->register($credentials); } catch (PagSeguroServiceException $e) { set_message("Erro ao gerar link pagamento: " . $e->getMessage(), 2); redirect(site_url("act/anuncios/ad/home_page")); } $this->data["ad"] = $this->ad_model->object; $this->data["price"] = $this->price->object; $this->load_view("../libraries/anuncios/views/anuncio_view/payment"); }
/** * Create PagSeguro payment request html with payment url * @return string */ private function createPaymentRequest() { $helper = Mage::helper('pagseguro'); // Get references that stored in the database $reference = $helper->getStoreReference(); $paymentRequest = new PagSeguroPaymentRequest(); $paymentRequest->setCurrency(PagSeguroCurrencies::getIsoCodeByName(self::REAL)); $paymentRequest->setReference($reference . $this->order->getId()); //Order ID $paymentRequest->setShipping($this->getShippingInformation()); //Shipping $paymentRequest->setSender($this->getSenderInformation()); //Sender $paymentRequest->setItems($this->getItensInformation()); //Itens $paymentRequest->setShippingType(SHIPPING_TYPE); $paymentRequest->setShippingCost(number_format($this->order->getShippingAmount(), 2, '.', '')); $paymentRequest->setNotificationURL($this->getNotificationURL()); $helper->getDiscount($paymentRequest); //Define Redirect Url $redirectUrl = $this->getRedirectUrl(); if (!empty($redirectUrl) and $redirectUrl != null) { $paymentRequest->setRedirectURL($redirectUrl); } else { $paymentRequest->setRedirectURL(Mage::getUrl() . 'checkout/onepage/success/'); } //Define Extra Amount Information $paymentRequest->setExtraAmount($this->extraAmount()); try { $paymentUrl = $paymentRequest->register($this->getCredentialsInformation()); } catch (PagSeguroServiceException $ex) { Mage::log($ex->getMessage()); $this->redirectUrl(Mage::getUrl() . 'checkout/onepage'); } return $paymentUrl; }
/** * Use PagSeguroLibrary * * @param type $order_id * @return type */ public function payment($order) { global $woocommerce; // Instantiate a new payment request $paymentRequest = new PagSeguroPaymentRequest(); // Set cms version PagSeguroLibrary::setCMSVersion('woocommerce-v.' . $woocommerce->version); // Set plugin version PagSeguroLibrary::setModuleVersion('woocommerce-v.' . $this->plugin_version); // Set charset PagSeguroConfig::setApplicationCharset($this->charset); // Sets the currency $paymentRequest->setCurrency(PagSeguroCurrencies::getIsoCodeByName("REAL")); // Set a reference $paymentRequest->setReference($this->invoice_prefix . $order->id); //Sets shipping data $paymentRequest->setShippingAddress($order->billing_postcode, $order->billing_address_1, '', $order->billing_address_2, '', $order->billing_city, $order->billing_state, $order->billing_country); $paymentRequest->setShippingCost($order->order_shipping); $paymentRequest->setShippingType(PagSeguroShippingType::getCodeByType('NOT_SPECIFIED')); // Sets your customer information. $paymentRequest->setSender($order->billing_first_name . ' ' . $order->billing_last_name, $order->billing_email, substr($order->billing_phone, 0, 2), substr($order->billing_phone, 2)); // Sets the url used by PagSeguro for redirect user after ends checkout process if (!empty($this->url_redirect)) { $paymentRequest->setRedirectUrl($this->url_redirect); } else { $paymentRequest->setRedirectUrl($this->get_return_url($order)); } // Sets the url used by PagSeguro for redirect user after ends checkout process if (!empty($this->url_notification)) { $paymentRequest->setNotificationURL($this->url_notification); } else { $paymentRequest->setNotificationURL(home_url() . '/index.php?notificationurl=true'); } //Sets Items if (sizeof($order->get_items()) > 0) { $paymentRequest->setItems($this->setItems($order)); } // Sets the sum of discounts $paymentRequest->setExtraAmount(($order->order_discount + $order->cart_discount) * -1 + ($order->order_tax + $order->order_shipping_tax + $order->prices_include_tax)); try { $credentials = new PagSeguroAccountCredentials($this->email, $this->token); return $paymentRequest->register($credentials); } catch (PagSeguroServiceException $e) { $woocommerce->add_error(__('Sorry, unfortunately there was an error during checkout. Please contact the store administrator if the problem persists.', 'wpwcpagseguro')); $woocommerce->show_messages(); wp_die(); } }
public static function main() { // Instantiate a new payment request $paymentRequest = new PagSeguroPaymentRequest(); // Set the currency $paymentRequest->setCurrency("BRL"); // Add an item for this payment request $paymentRequest->addItem('0001', 'Notebook prata', 2, 430.0); // Add another item for this payment request $paymentRequest->addItem('0002', 'Notebook rosa', 2, 560.0); // Set a reference code for this payment request. It is useful to identify this payment // in future notifications. $paymentRequest->setReference("REF123"); // Set shipping information for this payment request $sedexCode = PagSeguroShippingType::getCodeByType('SEDEX'); $paymentRequest->setShippingType($sedexCode); $paymentRequest->setShippingAddress('01452002', 'Av. Brig. Faria Lima', '1384', 'apto. 114', 'Jardim Paulistano', 'São Paulo', 'SP', 'BRA'); // Set your customer information. $paymentRequest->setSender('João Comprador', '*****@*****.**', '11', '56273440', 'CPF', '156.009.442-76'); // Set the url used by PagSeguro to redirect user after checkout process ends $paymentRequest->setRedirectUrl("http://www.lojamodelo.com.br"); // Add checkout metadata information $paymentRequest->addMetadata('PASSENGER_CPF', '15600944276', 1); $paymentRequest->addMetadata('GAME_NAME', 'DOTA'); $paymentRequest->addMetadata('PASSENGER_PASSPORT', '23456', 1); // Another way to set checkout parameters $paymentRequest->addParameter('notificationURL', 'http://www.lojamodelo.com.br/nas'); $paymentRequest->addParameter('senderBornDate', '07/05/1981'); $paymentRequest->addIndexedParameter('itemId', '0003', 3); $paymentRequest->addIndexedParameter('itemDescription', 'Notebook Preto', 3); $paymentRequest->addIndexedParameter('itemQuantity', '1', 3); $paymentRequest->addIndexedParameter('itemAmount', '200.00', 3); /*** * Pre Approval information */ $preApprovalRequest = new PagSeguroPreApprovalRequest(); $preApprovalRequest->setPreApprovalCharge('manual'); $preApprovalRequest->setPreApprovalName("Seguro contra roubo do Notebook Prata"); $preApprovalRequest->setPreApprovalDetails("Todo dia 30 será cobrado o valor de R100,00 referente ao seguro contra\n roubo do Notebook Prata."); $preApprovalRequest->setPreApprovalAmountPerPayment('100.00'); $preApprovalRequest->setPreApprovalMaxAmountPerPeriod('200.00'); $preApprovalRequest->setPreApprovalPeriod('Monthly'); $preApprovalRequest->setPreApprovalMaxTotalAmount('2400.00'); $preApprovalRequest->setPreApprovalInitialDate('2015-09-09T00:00:00'); $preApprovalRequest->setPreApprovalFinalDate('2017-09-09T00:00:00'); $preApprovalRequest->setReviewURL("http://www.lojateste.com.br/redirect"); $paymentRequest->setPreApproval($preApprovalRequest); try { /* * #### Credentials ##### * Replace the parameters below with your credentials * You can also get your credentials from a config file. See an example: * $credentials = PagSeguroConfig::getAccountCredentials(); */ // seller authentication $credentials = new PagSeguroAccountCredentials("*****@*****.**", "E231B2C9BCC8474DA2E260B6C8CF60D3"); // application authentication //$credentials = PagSeguroConfig::getApplicationCredentials(); //$credentials->setAuthorizationCode("E231B2C9BCC8474DA2E260B6C8CF60D3"); // Register this payment request in PagSeguro to obtain the payment URL to redirect your customer. $url = $paymentRequest->register($credentials); self::printPaymentUrl($url); } catch (PagSeguroServiceException $e) { die($e->getMessage()); } }
/** * Process Payment * * Process payments trough the PagSeguro gateway. * * @return void * @since 1.0 */ function process_payment($purchase_data) { global $edd_options; // check there is a gateway name if (!isset($purchase_data['post_data']['edd-gateway'])) { return; } // get credentials $credentials = $this->get_credentials(); // check credentials have been set if (is_null($credentials['email']) || is_null($credentials['token'])) { edd_set_error(0, __('Please enter your PagSeguro Client Email and Token in settings', 'edd-pagseguro-gateway')); edd_send_back_to_checkout('?payment-mode=' . $purchase_data['post_data']['edd-gateway']); } // get payment $payment_data = array('price' => $purchase_data['price'], 'date' => $purchase_data['date'], 'user_email' => $purchase_data['user_email'], 'purchase_key' => $purchase_data['purchase_key'], 'currency' => edd_get_option('currency', 'BRL'), 'downloads' => $purchase_data['downloads'], 'user_info' => $purchase_data['user_info'], 'cart_details' => $purchase_data['cart_details'], 'status' => 'pending'); // insert pending payment $payment = edd_insert_payment($payment_data); if (!$payment) { // problems? send back edd_send_back_to_checkout('?payment-mode=' . $purchase_data['post_data']['edd-gateway']); } else { // require PagSeguro files $this->load_pagseguro_sdk(); // verify classes exists if (!class_exists('PagSeguroPaymentRequest')) { edd_send_back_to_checkout('?payment-mode=' . $purchase_data['post_data']['edd-gateway']); } // create payment request $paymentRequest = new PagSeguroPaymentRequest(); // sets the currency $paymentRequest->setCurrency('BRL'); // cart summary $cart_summary = edd_get_purchase_summary($purchase_data, false); // format total price $total_price = number_format($purchase_data['price'], 2, '.', ''); // payment request details $paymentRequest->addItem('01', sanitize_text_field(substr($cart_summary, 0, 95)), '1', strval($total_price)); // sets the reference code for this request $paymentRequest->setReference($payment); // sets customer information $paymentRequest->setSender(sanitize_text_field($purchase_data['user_info']['first_name'] . ' ' . $purchase_data['user_info']['last_name']), $purchase_data['user_email']); // redirect url $paymentRequest->setRedirectUrl(add_query_arg('payment-confirmation', 'pagseguro', edd_get_success_page_uri())); // IPN URL $paymentRequest->addParameter('notificationURL', get_site_url()); /* TRY CHECKOUT */ try { // generate credentials $credentials = new PagSeguroAccountCredentials($credentials['email'], $credentials['token']); // register this payment request in PagSeguro, to obtain the payment URL for redirect your customer $checkout_uri = $paymentRequest->register($credentials); if (gettype($checkout_uri) != 'string') { throw new exception($checkout_uri); } // empty cart edd_empty_cart(); // send the user to PagSeguro wp_redirect($checkout_uri); die; } catch (Exception $e) { //catch exception wp_mail(get_bloginfo('admin_email'), __('PagSeguro Checkout Error', 'edd-pagseguro-gateway'), $e->getMessage()); edd_set_error('pagseguro_exception', $e->getMessage()); edd_send_back_to_checkout('?payment-mode=' . $purchase_data['post_data']['edd-gateway']); } } }
/** * Generates PagSeguro request data * @param VirtueMartCart $cart * @param array $order * @param TablePaymentmethods $method * @return PagSeguroPaymentRequest */ private function _generatePagSeguroRequestData(VirtueMartCart $cart, array $order, TablePaymentmethods $method) { $paymentRequest = new PagSeguroPaymentRequest(); $paymentRequest->setCurrency(PagSeguroCurrencies::getIsoCodeByName('REAL')); // currency $paymentRequest->setReference($order['details']['BT']->virtuemart_order_id); // reference $paymentRequest->setRedirectURL($this->_getRedirectUrl($method->pagseguro_url_redirect)); // redirect url $paymentRequest->setNotificationURL($this->_getNotificationUrl($method->pagseguro_url_notification)); // notification url $paymentRequest->setItems($this->_generateProductsData($cart)); // products $paymentRequest->setExtraAmount($this->_getExtraAmountValues($cart)); // extra values $sender = isset($order['details']['ST']) && count($order['details']['ST'] > 0) ? $order['details']['ST'] : $order['details']['BT']; $paymentRequest->setSender($this->_generateSenderData($sender)); // sender $paymentRequest->setShipping($this->_generateShippingData($sender, $cart->pricesUnformatted['salesPriceShipment'])); // shipping return $paymentRequest; }
public function index() { ///////////////////////////////////////////////////////////////////////////////////////////////////////////// // REGISTRA NO BANCO //////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////// $this->load->model('Product'); $this->load->model('Kit'); $this->load->model('Order'); $this->load->helper('date'); $total_kits = $this->cart->contents(); if ($this->Order->getLastId() != NULL) { $nr_pedido = str_pad($this->Order->getLastId() + 1, 6, '0', STR_PAD_LEFT); // adding leading zeros } else { $nr_pedido = str_pad(1, 6, '0', STR_PAD_LEFT); } $datestring = "%Y-%m-%d"; $time = time(); $date = mdate($datestring, $time); $kit_string = ''; foreach ($this->cart->contents() as $kit) { if ($kit_string == '') { $kit_string .= 'Kit ' . $kit['id']; } else { $kit_string .= ' / Kit ' . $kit['id']; } } $data_pedido = array('nr_pedido_net' => $nr_pedido, 'cd_cliente' => $this->session->userdata('codigo'), 'cd_cond_pagto' => '', 'observacao' => $kit_string, 'cd_status' => '1', 'dt_emissao' => $date, 'vl_pago_juros' => 0.0, 'importado' => 'N'); $this->Order->addOrder($data_pedido); // ROTINA PARA INSERÇAO DOS PRODUTOS NA TABELA pedido_venda_item $items = array(); // array que conterá os items individuais de cada kit e populara a tabela pedido_venda_items foreach ($this->cart->contents() as $kit) { $kit_qty = $kit['qty']; $kit_products = $this->Product->getKit($kit['id']); for ($i = 0; $i < count($kit_products); $i++) { $codigo_produto = $kit_products[$i]['codigo']; $qtd_produto = $kit_products[$i]['qtde'] * $kit_qty; $vl_unitario_produto = $kit_products[$i]['valor']; $items[$codigo_produto]['nr_pedido_net'] = $nr_pedido; $items[$codigo_produto]['cd_produto'] = $codigo_produto; if (isset($items[$codigo_produto]['qtd'])) { $items[$codigo_produto]['qtd'] += $qtd_produto; } else { $items[$codigo_produto]['qtd'] = $qtd_produto; } $items[$codigo_produto]['vl_unitario'] = $vl_unitario_produto; } } foreach ($items as $item) { $this->Order->addOrderItem($item); // var_dump($item); } ///////////////////////////////////////////////////////////////////////////////////////////////////////////// // PAGSEGURO //////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////////// $this->load->library('PagSeguroLibrary'); $data = $this->input->post('formulario'); $total = $data['total']; $nome = $data['nome']; $sobrenome = $data['sobrenome']; $ddd = $data['ddd']; $telefone = $data['telefone']; $email = $data['email']; $endereco = $data['endereco']; $numero = $data['numero']; $complemento = $data['complemento']; $bairro = $data['bairro']; $cidade = $data['cidade']; $estado = $data['estado']; $cep = $data['cep']; //criar um objeto do tipo PagSeguroPaymentRequest: $paymentRequest = new PagSeguroPaymentRequest(); //Agora você deve adicionar os produtos ao objeto criado: $i = 0; foreach ($this->cart->contents() as $item) { $paymentRequest->addItem($nr_pedido, $item['name'], $item['qty'], number_format($item['price'], 2, '.', ',')); $i++; } // $paymentRequest->addItem('000001', 'teste', 1, 2.00); //Você também pode adicionar produtos e outros parâmetros indexados utilizando o método addIndexedParameter: //$paymentRequest->addIndexedParameter('itemId', '0003', 3); /*Você também pode informar os dados fornecidos pelo comprador em sua loja, assim, o comprador não precisará informar esses dados novamente no site do PagSeguro:*/ $paymentRequest->setSender($nome . ' ' . $sobrenome, $email, $ddd, $telefone); // Informando o código de referência no objeto PagSeguroPaymentRequest $paymentRequest->setReference($nr_pedido); //Informe o endereço de envio fornecido pelo comprador, assim, o comprador não precisará informa-lo novamente no site do PagSeguro: $paymentRequest->setShippingAddress($cep, $endereco, $numero, $complemento, $bairro, $cidade, $estado, 'BRA'); //É necessário que você informe a moeda em que o comprador irá realizar o pagamento $paymentRequest->setCurrency("BRL"); //É necessário informar também o tipo de frete da compra, veja mais detalhes na classe PagSeguroShipping $paymentRequest->setShippingType(3); //Você pode adicionar outros parâmetros ao objeto utilizando o método addParameter //$paymentRequest->addParameter('notificationURL', 'http://www.meusite.com.br/notificacao'); $paymentRequest->setRedirectUrl("http://www.crismetal.com.br/loja_virtual/retorno"); // Informando as credenciais $credentials = PagSeguroConfig::getAccountCredentials(); // fazendo a requisição a API do PagSeguro pra obter a URL de pagamento $url = $paymentRequest->register($credentials); redirect($url, 'location'); }
public function iniciaPagamentoPagSeguro() { $paymentRequest = new PagSeguroPaymentRequest(); $paymentRequest->setCurrency("BRL"); $this->razao = $this->razao . $this->transacaoID; //Itens compra | Não posso colocar o dinheiro por partes por conta do cupom $paymentRequest->addItem('0001', $this->razao, 1, $this->valor); $paymentRequest->setReference($this->transacaoID); // Dados do usuario $paymentRequest->setSender( $this->nomeUsuario, $this->emailUsuario ); // Url de retorno após pagamento $paymentRequest->setRedirectUrl($this->system->getUrlSite()); // Url de notificação de modificação de status $paymentRequest->addParameter('notificationURL', $this->notificationURL); try { $credentials = $this->obterCredenciaisPagSeguro(); $url = $paymentRequest->register($credentials); return $url; } catch (PagSeguroServiceException $e) { print_r($e); $erros = array(); foreach($e->getErrors() as $erro) $erros[] = $erro->getMessage(); echo '<script>alert("' . implode('<br/>', $erros) . '")</script>'; die; } }
public function iniciaPagamentoPagSeguro() { $paymentRequest = new PagSeguroPaymentRequest(); $paymentRequest->setCurrency("BRL"); $this->razao = $this->razao . $this->transacaoID; //Itens compra | Não posso colocar o dinheiro por partes por conta do cupom $paymentRequest->addItem('0001', $this->razao, 1, $this->valor); $paymentRequest->setReference($this->transacaoID); $nomeUsuario = preg_replace('/\\d/', '', $this->nomeUsuario); $nomeUsuario = preg_replace('/[\\n\\t\\r]/', ' ', $nomeUsuario); $nomeUsuario = preg_replace('/\\s(?=\\s)/', '', $nomeUsuario); $nomeUsuario = trim($nomeUsuario); $nomeUsuario = explode(' ', $nomeUsuario); if (count($nomeUsuario) == 1) { $nomeUsuario[] = ' sem Sobrenome'; } $nomeUsuario = implode(' ', $nomeUsuario); // Dados do usuario $paymentRequest->setSender($nomeUsuario, trim($this->emailUsuario)); // Url de retorno após pagamento $paymentRequest->setRedirectUrl($this->system->getUrlSite()); // Url de notificação de modificação de status $paymentRequest->addParameter('notificationURL', $this->notificationURLPagSeguro); $paymentRequest->addParameter('sistemaID', $this->system->session->getItem('session_cod_empresa')); try { $credentials = $this->obterCredenciaisPagSeguro(); $url = $paymentRequest->register($credentials); return $url; } catch (PagSeguroServiceException $e) { $erros = array(); foreach ($e->getErrors() as $erro) { $erros[] = $erro->getMessage(); } echo '<script>alert("' . implode('<br/>', $erros) . '")</script>'; die; } }
public function paymentPagSeguro($products, $andress, $client, $total, $valor_frete, $id_venda) { // Instantiate a new payment request $paymentRequest = new PagSeguroPaymentRequest(); // Set the currency $paymentRequest->setCurrency("BRL"); // Add an item for this payment request foreach ($products as $i => $item) { $paymentRequest->addItem('000' . $item['Produto']['id'], $item['Produto']['nome'] . ' Tamanho: ' . $item['Produto']['variacao'], $item['Produto']['quantidade'], number_format($item['Produto']['preco'], 2, '.', '')); } // Add an item for this payment request // $paymentRequest->addItem('0001', 'Notebook prata', 2, 430.00); // Add another item for this payment request // $paymentRequest->addItem('0002', 'Notebook rosa', 2, 560.00); // Set a reference code for this payment request. It is useful to identify this payment // in future notifications. $paymentRequest->setReference($id_venda); // Set shipping information for this payment request $sedexCode = PagSeguroShippingType::getCodeByType('PAC'); $paymentRequest->setShippingCost($valor_frete); $paymentRequest->setShippingType($sedexCode); $paymentRequest->setShippingAddress($andress['cep'], $andress['endereco'], $andress['numero'], 'apto. 114', $andress['bairro'], $andress['cidade'], $andress['estado'], 'BRA'); // Set your customer information. $paymentRequest->setSender($client['nome'], $client['email'], $client['ddd'], $client['telefone'], 'CPF', $client['cpf']); // Set the url used by PagSeguro to redirect user after checkout process ends $paymentRequest->setRedirectUrl("http://www.lojamodelo.com.br"); // Add checkout metadata information // $paymentRequest->addMetadata('PASSENGER_CPF', '15600944276', 1); // $paymentRequest->addMetadata('GAME_NAME', 'DOTA'); // $paymentRequest->addMetadata('PASSENGER_PASSPORT', '23456', 1); // Another way to set checkout parameters // $paymentRequest->addParameter('notificationURL', 'http://www.lojamodelo.com.br/nas'); // $paymentRequest->addParameter('senderBornDate', '07/05/1981'); // $paymentRequest->addIndexedParameter('itemId', '0003', 3); // $paymentRequest->addIndexedParameter('itemDescription', 'Notebook Preto', 3); // $paymentRequest->addIndexedParameter('itemQuantity', '1', 3); // $paymentRequest->addIndexedParameter('itemAmount', '200.00', 3); // Add discount per payment method $paymentRequest->addPaymentMethodConfig('CREDIT_CARD', 1.0, 'DISCOUNT_PERCENT'); $paymentRequest->addPaymentMethodConfig('EFT', 2.9, 'DISCOUNT_PERCENT'); $paymentRequest->addPaymentMethodConfig('BOLETO', 10.0, 'DISCOUNT_PERCENT'); $paymentRequest->addPaymentMethodConfig('DEPOSIT', 3.45, 'DISCOUNT_PERCENT'); $paymentRequest->addPaymentMethodConfig('BALANCE', 0.01, 'DISCOUNT_PERCENT'); try { /* * #### Credentials ##### * Replace the parameters below with your credentials * You can also get your credentials from a config file. See an example: * $credentials = PagSeguroConfig::getAccountCredentials(); // */ // seller authentication $credentials = new PagSeguroAccountCredentials("email", "token"); // application authentication //$credentials = PagSeguroConfig::getApplicationCredentials(); //$credentials->setAuthorizationCode("E231B2C9BCC8474DA2E260B6C8CF60D3"); // Register this payment request in PagSeguro to obtain the payment URL to redirect your customer. $url = $paymentRequest->register($credentials); $this->redirect($url); } catch (PagSeguroServiceException $e) { die($e->getMessage()); } }
public static function compraCreditos($idp, $idpct) { /** * Executa uma operação de compra de créditos * * @param int $idp ID do parceiro * @param int $idpct ID do pacote comprado * @param int $tipo transação : 2 = cartão (default) | 3 = boleto | 4 = depósito * @param string $obj objeto da operação */ // As ações de compra e bônus possuem status = 0 (espera) e não atualiza o saldo de créditos // até que a operação de checkout retorne o valor como pago. $hoje = new ActiveRecord\DateTime(date('Y-m-d H:i:s')); $saldo = creditos_saldo_parceiro::find_by_parceiro_id('first', $idp); $parceiro = parceiro::find_by_id($idp); if (!$parceiro) { return self::ERRO_USUARIO_INVALIDO; } $ddd = (int) substr($parceiro->fone, 1, 2); $fone = (int) str_replace('-', '', substr($parceiro->fone, 4, 10)); $options['conditions'] = array('parceiro_id = ? AND vencimento >= ? AND flag_ativo = ?', $idp, $hoje, 1); $bonusUnico = creditos_bonus_unico::first($options); // Pega os dados de créditos, custo e bonus do pacote $pacote = creditos_pacote::find_by_id($idpct); if (!$pacote || $pacote->flag_ativo == 0) { return self::ERRO_PACOTE_INVALIDO; } $titulo = $pacote->titulo; $creditos = $pacote->quant_creditos; $custo = $pacote->custo_pacote_reais; $referencia = $idp . '-SC-' . self::contaEventos($idp, self::SC, 1); // utilizado para rastrear todos as fases da operação $bonus_geral = 0; $bonus_unico = 0; // avalia bonus geral e único if ($pacote->creditos_bonus > 0 && strtotime($pacote->data_limite_bonus) >= strtotime($hoje)) { $bonus_geral = $pacote->creditos_bonus; } $buOptions['conditions'] = array('parceiro_id = ? AND vencimento >= ? AND flag_ativo = ?', $idp, $hoje, 1); $bu = creditos_bonus_unico::first($buOptions); if ($bu) { $bonus_unico = $bu->bonus; } // inicializa classe do pagseguro, inserindo dados de usuário $paymentRequest = new PagSeguroPaymentRequest(); $paymentRequest->addItem($idpct, $titulo, 1, $custo); $paymentRequest->setSender($parceiro->responsavel . ' - ' . $parceiro->nome, $parceiro->email, $ddd, $fone); $paymentRequest->setCurrency('BRL'); $paymentRequest->setReference($referencia); //$paymentRequest->addParameter('notificationURL', self::NOTIFICATION_URL); $sedexCode = PagSeguroShippingType::getCodeByType('NOT_SPECIFIED'); $paymentRequest->setShippingType($sedexCode); $cidade = cidade::find_by_id($parceiro->cidade_id); $estado = estado::find_by_id($parceiro->estado_id); $postalCode = str_replace('-', '', $parceiro->cep); $postalCode = str_replace('.', '', $postalCode); $logradouro = explode(', ', $parceiro->logradouro); $paymentRequest->setShippingAddress($postalCode, $logradouro[0], $logradouro[1], $parceiro->complemento, $parceiro->bairro, $cidade->cidade, $estado->uf, 'BRA'); // inicia o processo de transação enviando as credenciais e // solicitando o código da operação try { $credentials = PagSeguroConfig::getAccountCredentials(); // getApplicationCredentials() $checkoutUrl = $paymentRequest->register($credentials); // FORMATO: https://pagseguro.uol.com.br/v2/checkout/payment.html?code=1C9B0FD3AEAE0FF004A39F98B751B1E5 $codigo = explode('=', $checkoutUrl); // grava os dados da operação antes inicar $dadosPagSeguro = array(); $dadosPagSeguro['parceiro_id'] = $idp; $dadosPagSeguro['parceiro_nome'] = $parceiro->responsavel . ' - ' . $parceiro->nome; $dadosPagSeguro['parceiro_email'] = $parceiro->email; $dadosPagSeguro['parceiro_fone'] = $parceiro->fone; $dadosPagSeguro['bonus_geral'] = $bonus_geral; $dadosPagSeguro['bonus_unico'] = $bonus_unico; $dadosPagSeguro['pacote_id'] = $idpct; $dadosPagSeguro['pacote_titulo'] = $titulo; $dadosPagSeguro['pacote_creditos'] = $creditos; $dadosPagSeguro['flag_pacote_creditado'] = 0; $dadosPagSeguro['data_cadastro'] = $hoje; $dadosPagSeguro['data_atualizacao'] = $hoje; $dadosPagSeguro['codigo_link'] = $codigo[1]; $dadosPagSeguro['referencia'] = $referencia; $dadosPagSeguro['tipo_transacao'] = 1; // 1 == compra | 11 == assinatura $dadosPagSeguro['status_transacao'] = 0; // inicia como 0 $dadosPagSeguro['fases'] = 0; // registra todos os status retornados pelo pagseguro. Inicia como 0 $dadosPagSeguro['valor_reais'] = $custo; $pagseguro = operacoes_pagseguro::create($dadosPagSeguro); $pagseguro->save(); $observação = 'Solicitação de compra PagSeguro ' . $referencia . '(R$' . number_format($custo, 2, ',', '.') . ')'; // registra o crédito adquirido como status EM ESPERA self::registraEvento($idp, self::SC, $saldo->saldo, $referencia, $crdt, $custo, 1, $observação); // descomentar esta linha na versão final // return $codigo[1]; return self::ERRO_OPERACAO_TESTE_CANCELADA; } catch (PagSeguroServiceException $e) { // implementar retorno de erro personalizado die($e->getMessage()); } }
die; } if ($valor > $divida || $valor == 0) { header('Location: ../visualizar_pagamentos_associado.php?mensagem=favor, entre com um valor válido entre 0 e ' . $divida, true, "302"); die; } } //se correu tudo bem, o valor a ser pago deve estar setado e pronto para ser redirecionado ao pagSeguro // agora enviamos o usuário para a tela de pagamento require '../PagSeguroLibrary/PagSeguroLibrary.php'; $reqPagamento = new PagSeguroPaymentRequest(); if ($inscricao) { $reqPagamento->addItem('0002', 'Inscrição de associação ao curso de Homeopatia', 1, number_format($valor, 2, ".", "")); } else { $reqPagamento->addItem('0003', 'Anuidade de associação ao curso de Homeopatia', 1, number_format($valor, 2, ".", "")); } $reqPagamento->setCurrency("BRL"); $reqPagamento->setSender($associado->getNome(), $associado->getEmail(), mb_substr($associado->getTelefone(), 0, 2), mb_substr($associado->getTelefone(), 2)); $reqPagamento->setShippingAddress($associado->getCep(), $associado->getRua(), $associado->getNumero(), $associado->getComplemento(), $associado->getBairro(), $associado->getCidade(), $associado->getEstado(), $associado->getPais()); $reqPagamento->setShippingType(3); // a referência desse pagamente será a letra "A" de anuidade, // seguida do id de Associado deste associado $reqPagamento->setReference("A" . $associado->getIdAssoc()); $credenciais = PagSeguroConfig::getAccountCredentials(); $url = $reqPagamento->register($credenciais); header('Location: ' . $url, true, "302"); die; } // caso não tenha caído no caso anterior, redirecionamos o usuário // para o index header('Location: ../index.php', true, "302");
public static function main() { // Instantiate a new payment request $paymentRequest = new PagSeguroPaymentRequest(); // Set the currency $paymentRequest->setCurrency("BRL"); $finalPrice = (double) self::$productData->price - self::$productData->discount; // Add an item for this payment request $paymentRequest->addItem('0001', self::$productData->name, 1, $finalPrice); // Set a reference code for this payment request. It is useful to identify this payment // in future notifications. $paymentRequest->setReference(self::$referenceID); // Set shipping information for this payment request // 1 = PAC // 2 = SEDEX $sedexCode = PagSeguroShippingType::getCodeByType('PAC'); $paymentRequest->setShippingType($sedexCode); $paymentRequest->setShippingAddress(self::$orderData->zipcode, self::$orderData->street, self::$orderData->number, self::$orderData->complement, self::$orderData->local, self::$orderData->city, self::$orderData->state, 'BRA'); //$paymentRequest->setShippingCost(new BigDecimal("23.30")); // Adapta nome ao padrão do PagSeguro ("Nome Sobrenome") $name = self::$accountData->name; $name = preg_replace('/\\d/', '', $name); $name = preg_replace('/[\\n\\t\\r]/', ' ', $name); $name = preg_replace('/\\s(?=\\s)/', '', $name); $name = trim($name); $name = explode(' ', $name); if (count($name) == 1) { $name[] = ' dos Santos'; } $name = implode(' ', $name); // Set your customer information. $paymentRequest->setSender($name, self::$accountData->email, '11', '56273440', 'CPF', '156.009.442-76'); $paymentRequest->addParameter('senderCPF', self::$accountData->cpf); $paymentRequest->addParameter('senderAreaCode', 11); $paymentRequest->addParameter('senderCPF', 36251520884); //self::$accountData->cpf); $paymentRequest->addParameter('senderPhone', 921231232); $paymentRequest->addParameter('senderBornDate', "11/11/2012"); // Set the url used by PagSeguro to redirect user after checkout process ends $paymentRequest->setRedirectUrl($_SERVER['SERVER_NAME'] . Config::read('page.url.order.completed') . '/' . self::$referenceID); // Add checkout metadata information // $paymentRequest->addMetadata('PASSENGER_CPF', '15600944276', 1); // $paymentRequest->addMetadata('GAME_NAME', 'DOTA'); // $paymentRequest->addMetadata('PASSENGER_PASSPORT', '23456', 1); // Another way to set checkout parameters $paymentRequest->addParameter('notificationURL', $_SERVER['SERVER_NAME'] . Config::read('page.url.order.notifications')); $paymentRequest->addParameter('senderBornDate', '07/05/1981'); // $paymentRequest->addIndexedParameter('itemId', '0003', 3); // $paymentRequest->addIndexedParameter('itemDescription', 'Notebook Preto', 3); // $paymentRequest->addIndexedParameter('itemQuantity', '1', 3); // $paymentRequest->addIndexedParameter('itemAmount', '200.00', 3); // Add discount per payment method //$paymentRequest->addPaymentMethodConfig('CREDIT_CARD', 1.00, 'DISCOUNT_PERCENT'); //$paymentRequest->addPaymentMethodConfig('EFT', 2.90, 'DISCOUNT_PERCENT'); //$paymentRequest->addPaymentMethodConfig('BOLETO', 10.00, 'DISCOUNT_PERCENT'); //$paymentRequest->addPaymentMethodConfig('DEPOSIT', 3.45, 'DISCOUNT_PERCENT'); //$paymentRequest->addPaymentMethodConfig('BALANCE', 0.01, 'DISCOUNT_PERCENT'); // Add installment without addition per payment method $paymentRequest->addPaymentMethodConfig('CREDIT_CARD', 6, 'MAX_INSTALLMENTS_NO_INTEREST'); // Add installment limit per payment method $paymentRequest->addPaymentMethodConfig('CREDIT_CARD', 8, 'MAX_INSTALLMENTS_LIMIT'); // Add and remove a group and payment methods //$paymentRequest->acceptPaymentMethodGroup('CREDIT_CARD', 'DEBITO_ITAU'); //$paymentRequest->excludePaymentMethodGroup('BOLETO', 'BOLETO'); try { /* * #### Credentials ##### * Replace the parameters below with your credentials * You can also get your credentials from a config file. See an example: * $credentials = new PagSeguroAccountCredentials("*****@*****.**", * "E231B2C9BCC8474DA2E260B6C8CF60D3"); */ // seller authentication $credentials = PagSeguroConfig::getAccountCredentials(); // application authentication //$credentials = PagSeguroConfig::getApplicationCredentials(); //$credentials->setAuthorizationCode("E231B2C9BCC8474DA2E260B6C8CF60D3"); // Register this payment request in PagSeguro to obtain the payment URL to redirect your customer. $url = $paymentRequest->register($credentials); return $url; } catch (PagSeguroServiceException $e) { die($e->getMessage()); } }
private function _generatePagSeguroRequestData($order, $notify_url, $return_url) { $paymentRequest = new PagSeguroPaymentRequest(); $paymentRequest->setCurrency(PagSeguroCurrencies::getIsoCodeByName('REAL')); // currency $paymentRequest->setReference($order->order_id); // reference $paymentRequest->setRedirectURL($return_url); // redirect url $paymentRequest->setNotificationURL($notify_url); // notification url $paymentRequest->setItems($this->_generateProductsData($order)); // products $paymentRequest->setExtraAmount($this->_getExtraAmountValues($order)); // extra values $paymentRequest->setSender($this->_generateSenderData($order)); // sender $paymentRequest->setShipping($this->_generateShippingData($order)); // shipping return $paymentRequest; }
/** * Generate PagSeguro Payment Request * @return \PagSeguroPaymentRequest */ private function _generatePagSeguroPaymentRequestObject() { $paymentRequest = new PagSeguroPaymentRequest(); $paymentRequest->setCurrency(PagSeguroCurrencies::getIsoCodeByName("REAL")); $paymentRequest->setExtraAmount($this->_generateExtraAmount()); $paymentRequest->setRedirectURL($this->_getPagSeguroRedirectUrl()); $paymentRequest->setNotificationURL($this->_getPagSeguroNotificationURL()); $paymentRequest->setItems($this->_generatePagSeguroProductsData()); $paymentRequest->setSender($this->_generatepagSeguroSenderDataObject()); $paymentRequest->setShipping($this->_generatePagSeguroShippingDataObject()); return $paymentRequest; }
/** * Generates PagSeguro request data */ private function _generatePagSeguroRequestData() { $payment_request = new PagSeguroPaymentRequest(); $payment_request->setCurrency(PagSeguroCurrencies::getIsoCodeByName('Real')); /* Currency */ $payment_request->setExtraAmount($this->_getExtraAmountValues()); /* Extra amount */ $payment_request->setItems($this->_generateProductsData()); /* Products */ $payment_request->setSender($this->_generateSenderData()); /* Sender */ $payment_request->setShipping($this->_generateShippingData()); /* Shipping */ if (!Tools::isEmpty(Configuration::get('PAGSEGURO_URL_REDIRECT'))) { /* Redirect URL */ $payment_request->setRedirectURL(Configuration::get('PAGSEGURO_URL_REDIRECT')); } $this->_payment_request = $payment_request; }