foreach ($codes as $curr_code) {
                     //Update this data as required to set whether the coupon is valid, the code and the amount
                     $coupons = new GoogleCoupons("true", $curr_code['code'], 5, "USD", "test2");
                     $merchant_result->AddCoupons($coupons);
                 }
                 $merchant_calc->AddResult($merchant_result);
             }
         } else {
             $merchant_result = new GoogleResult($curr_id);
             if ($data[$root]['calculate']['tax']['VALUE'] == "true") {
                 //Compute tax for this address id and shipping type
                 $amount = 15;
                 // Modify this to the actual tax value
                 $merchant_result->SetTaxDetails($amount, "USD");
             }
             $codes = get_arr_result($data[$root]['calculate']['merchant-code-strings']['merchant-code-string']);
             foreach ($codes as $curr_code) {
                 //Update this data as required to set whether the coupon is valid, the code and the amount
                 $coupons = new GoogleCoupons("true", $curr_code['code'], 5, "USD", "test2");
                 $merchant_result->AddCoupons($coupons);
             }
             $merchant_calc->AddResult($merchant_result);
         }
     }
     fwrite($message_log, sprintf("\n\r%s:- %s\n", date("D M j G:i:s T Y"), $merchant_calc->GetXML()));
     $response->ProcessMerchantCalculations($merchant_calc);
     break;
 case "new-order-notification":
     $response->SendAck();
     break;
 case "order-state-change-notification":
Example #2
0
 function googlecheckoutresponsehandler()
 {
     //chdir("..");
     require_once 'library/googleresponse.php';
     require_once 'library/googlemerchantcalculations.php';
     require_once 'library/googleresult.php';
     require_once 'library/googlerequest.php';
     $this->load->model('payment_model');
     $paymentGateways_google = $this->payment_model->getGooglecheckoutsettings();
     $base_url = $base_url();
     define('RESPONSE_HANDLER_ERROR_LOG_FILE', $base_url . 'googlelog/googleerror.log');
     define('RESPONSE_HANDLER_LOG_FILE', $base_url . 'googlelog/googlemessage.log');
     /*
     		  $merchant_id = "";  // Your Merchant ID
     		  $merchant_key = "";  // Your Merchant Key
     		  $server_type = "sandbox";  // change this to go live
     */
     $merchant_id = $paymentGateways_google['googlecheckout']['merchant_id'];
     // Your Merchant ID
     $merchant_key = $paymentGateways_google['googlecheckout']['merchant_key'];
     // Your Merchant Key
     $server_type = $paymentGateways_google['googlecheckout']['server_type'];
     $currency = 'USD';
     // set to GBP if in the UK
     $Gresponse = new GoogleResponse($merchant_id, $merchant_key);
     $Grequest = new GoogleRequest($merchant_id, $merchant_key, $server_type, $currency);
     //Setup the log file
     $Gresponse->SetLogFiles(RESPONSE_HANDLER_ERROR_LOG_FILE, RESPONSE_HANDLER_LOG_FILE, L_ALL);
     // Retrieve the XML sent in the HTTP POST request to the ResponseHandler
     $xml_response = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : file_get_contents("php://input");
     if (get_magic_quotes_gpc()) {
         $xml_response = stripslashes($xml_response);
     }
     list($root, $data) = $Gresponse->GetParsedXML($xml_response);
     $Gresponse->SetMerchantAuthentication($merchant_id, $merchant_key);
     $status = $Gresponse->HttpAuthentication();
     if (!$status) {
         die('authentication failed');
     }
     /* Commands to send the various order processing APIs
      * Send charge order : $Grequest->SendChargeOrder($data[$root]
      *    ['google-order-number']['VALUE'], <amount>);
      * Send process order : $Grequest->SendProcessOrder($data[$root]
      *    ['google-order-number']['VALUE']);
      * Send deliver order: $Grequest->SendDeliverOrder($data[$root]
      *    ['google-order-number']['VALUE'], <carrier>, <tracking-number>,
      *    <send_mail>);
      * Send archive order: $Grequest->SendArchiveOrder($data[$root]
      *    ['google-order-number']['VALUE']);
      *
      */
     switch ($root) {
         case "request-received":
             break;
         case "error":
             break;
         case "diagnosis":
             break;
         case "checkout-redirect":
             break;
         case "merchant-calculation-callback":
             // Create the results and send it
             $merchant_calc = new GoogleMerchantCalculations($currency);
             // Loop through the list of address ids from the callback
             $addresses = get_arr_result($data[$root]['calculate']['addresses']['anonymous-address']);
             foreach ($addresses as $curr_address) {
                 $curr_id = $curr_address['id'];
                 $country = $curr_address['country-code']['VALUE'];
                 $city = $curr_address['city']['VALUE'];
                 $region = $curr_address['region']['VALUE'];
                 $postal_code = $curr_address['postal-code']['VALUE'];
                 // Loop through each shipping method if merchant-calculated shipping
                 // support is to be provided
                 if (isset($data[$root]['calculate']['shipping'])) {
                     $shipping = get_arr_result($data[$root]['calculate']['shipping']['method']);
                     foreach ($shipping as $curr_ship) {
                         $name = $curr_ship['name'];
                         //Compute the price for this shipping method and address id
                         $price = 12;
                         // Modify this to get the actual price
                         $shippable = "true";
                         // Modify this as required
                         $merchant_result = new GoogleResult($curr_id);
                         $merchant_result->SetShippingDetails($name, $price, $shippable);
                         if ($data[$root]['calculate']['tax']['VALUE'] == "true") {
                             //Compute tax for this address id and shipping type
                             $amount = 15;
                             // Modify this to the actual tax value
                             $merchant_result->SetTaxDetails($amount);
                         }
                         if (isset($data[$root]['calculate']['merchant-code-strings']['merchant-code-string'])) {
                             $codes = get_arr_result($data[$root]['calculate']['merchant-code-strings']['merchant-code-string']);
                             foreach ($codes as $curr_code) {
                                 //Update this data as required to set whether the coupon is valid, the code and the amount
                                 $coupons = new GoogleCoupons("true", $curr_code['code'], 5, "test2");
                                 $merchant_result->AddCoupons($coupons);
                             }
                         }
                         $merchant_calc->AddResult($merchant_result);
                     }
                 } else {
                     $merchant_result = new GoogleResult($curr_id);
                     if ($data[$root]['calculate']['tax']['VALUE'] == "true") {
                         //Compute tax for this address id and shipping type
                         $amount = 15;
                         // Modify this to the actual tax value
                         $merchant_result->SetTaxDetails($amount);
                     }
                     $codes = get_arr_result($data[$root]['calculate']['merchant-code-strings']['merchant-code-string']);
                     foreach ($codes as $curr_code) {
                         //Update this data as required to set whether the coupon is valid, the code and the amount
                         $coupons = new GoogleCoupons("true", $curr_code['code'], 5, "test2");
                         $merchant_result->AddCoupons($coupons);
                     }
                     $merchant_calc->AddResult($merchant_result);
                 }
             }
             $Gresponse->ProcessMerchantCalculations($merchant_calc);
             break;
         case "new-order-notification":
             $Gresponse->SendAck();
             break;
         case "order-state-change-notification":
             $Gresponse->SendAck();
             $new_financial_state = $data[$root]['new-financial-order-state']['VALUE'];
             $new_fulfillment_order = $data[$root]['new-fulfillment-order-state']['VALUE'];
             $test = array('status' => $new_financial_state);
             $this->common_model->insert('test', $test);
             switch ($new_financial_state) {
                 case 'REVIEWING':
                     break;
                 case 'CHARGEABLE':
                     //$Grequest->SendProcessOrder($data[$root]['google-order-number']['VALUE']);
                     //$Grequest->SendChargeOrder($data[$root]['google-order-number']['VALUE'],'');
                     break;
                 case 'CHARGING':
                     break;
                 case 'CHARGED':
                     break;
                 case 'PAYMENT_DECLINED':
                     break;
                 case 'CANCELLED':
                     break;
                 case 'CANCELLED_BY_GOOGLE':
                     //$Grequest->SendBuyerMessage($data[$root]['google-order-number']['VALUE'],
                     //    "Sorry, your order is cancelled by Google", true);
                     break;
                 default:
                     break;
             }
             switch ($new_fulfillment_order) {
                 case 'NEW':
                     break;
                 case 'PROCESSING':
                     break;
                 case 'DELIVERED':
                     break;
                 case 'WILL_NOT_DELIVER':
                     break;
                 default:
                     break;
             }
             break;
         case "charge-amount-notification":
             //$Grequest->SendDeliverOrder($data[$root]['google-order-number']['VALUE'],
             //    <carrier>, <tracking-number>, <send-email>);
             //$Grequest->SendArchiveOrder($data[$root]['google-order-number']['VALUE'] );
             $Gresponse->SendAck();
             break;
         case "chargeback-amount-notification":
             $Gresponse->SendAck();
             break;
         case "refund-amount-notification":
             $Gresponse->SendAck();
             break;
         case "risk-information-notification":
             $Gresponse->SendAck();
             break;
         default:
             $Gresponse->SendBadRequestStatus("Invalid or not supported Message");
             break;
     }
     /* In case the XML API contains multiple open tags
     		 with the same value, then invoke this function and
     		 perform a foreach on the resultant array.
     		 This takes care of cases when there is only one unique tag
     		 or multiple tags.
     		 Examples of this are "anonymous-address", "merchant-code-string"
     		 from the merchant-calculations-callback API
     	  */
 }
 $total = $data[$root]['order-total']['VALUE'];
 $purchasedate = date(DATE_ATOM, strtotime($date));
 $Gresponse->log->LogResponse("Default timezone " . date_default_timezone_get());
 $Gresponse->log->LogResponse("Date with default timezone " . $purchasedate);
 $neworder = new Order();
 $neworder->email = $email;
 $neworder->purchasedate = $purchasedate;
 $neworder->lastmofification = $date;
 $neworder->ordernumber = $ordernumber;
 $neworder->financialorderstate = $financialstate;
 $neworder->fulfillmentorderstate = $fulfillmentstate;
 db_addGoogleCheckoutOrder($neworder->email, $neworder->ordernumber, $neworder->purchasedate, $neworder->fulfillmentorderstate, $neworder->financialorderstate);
 $dborder = db_getOrderByOrderNumber($neworder->ordernumber);
 $total = 0;
 //Get shopping cart information
 $items = get_arr_result($data[$root]['shopping-cart']['items']['item']);
 foreach ($items as $item) {
     $itemname = $item['item-name']['VALUE'];
     $itemdescription = $item['item-description']['VALUE'];
     $currency = $item['unit-price']['currency'];
     $unitprice = $item['unit-price']['VALUE'];
     $quantity = $item['quantity']['VALUE'];
     //Get item from store inventory
     $sql_getitem = 'SELECT * from mdl_shoppingcart_store_inventory WHERE name = "' . $itemname . '" and description = "' . $itemdescription . '"';
     $dbitem = db_getrecord($sql_getitem);
     //Insert order summary for this item
     db_addOrderItem($dborder->id, $dbitem->id, $quantity, $unitprice);
     $total += $quantity * $unitprice;
 }
 db_modifyOrderTotal($dborder->id, $total);
 $user = db_getUserByEmail($email);
Example #4
0
function process_merchant_calculation_callback_single($Gresponse)
{
    global $googlepayment, $order, $db, $total_weight, $total_count;
    list($root, $data) = $Gresponse->GetParsedXML();
    $currencies = new currencies();
    $cart = $_SESSION['cart'];
    $methods_hash = $googlepayment->getMethods();
    require DIR_WS_CLASSES . 'order.php';
    $order = new order();
    // Register a random ID in the session to check throughout the checkout procedure
    // against alterations in the shopping cart contents.
    //  if (!tep_session_is_registered('cartID')) {
    //  tep_session_register('cartID');
    // }
    //  $cartID = $cart->cartID;
    $items = get_arr_result($data[$root]['shopping-cart']['items']['item']);
    $products = array();
    foreach ($items as $item) {
        if (isset($item['merchant-private-item-data']['item']['VALUE'])) {
            $products[] = unserialize(base64_decode($item['merchant-private-item-data']['item']['VALUE']));
        }
    }
    $order->products = $products;
    $total_weight = $cart->show_weight();
    $total_count = $cart->count_contents();
    // Create the results and send it
    $merchant_calc = new GoogleMerchantCalculations(DEFAULT_CURRENCY);
    // Loop through the list of address ids from the callback.
    $addresses = get_arr_result($data[$root]['calculate']['addresses']['anonymous-address']);
    // Get all the enabled shipping methods.
    require DIR_WS_CLASSES . 'shipping.php';
    // Required for some shipping methods (ie. USPS).
    require_once 'includes/classes/http_client.php';
    foreach ($addresses as $curr_address) {
        // Set up the order address.
        $curr_id = $curr_address['id'];
        $country = $curr_address['country-code']['VALUE'];
        $city = $curr_address['city']['VALUE'];
        $region = $curr_address['region']['VALUE'];
        $postal_code = $curr_address['postal-code']['VALUE'];
        $countr_query = $db->Execute("select * \n                     from " . TABLE_COUNTRIES . " \n                     where countries_iso_code_2 = '" . makeSqlString($country) . "'");
        $row = $countr_query->fields;
        $order->delivery['country'] = array('id' => $row['countries_id'], 'title' => $row['countries_name'], 'iso_code_2' => $country, 'iso_code_3' => $row['countries_iso_code_3']);
        $order->delivery['country_id'] = $row['countries_id'];
        $order->delivery['format_id'] = $row['address_format_id'];
        $zone_query = $db->Execute("select * \n        \t\t                               from " . TABLE_ZONES . "\n        \t\t                               where zone_code = '" . makeSqlString($region) . "'");
        $row = $zone_query->fields;
        $order->delivery['zone_id'] = $row['zone_id'];
        $order->delivery['state'] = $row['zone_name'];
        $order->delivery['city'] = $city;
        $order->delivery['postcode'] = $postal_code;
        $shipping_modules = new shipping();
        // Loop through each shipping method if merchant-calculated shipping
        // support is to be provided
        //print_r($data[$root]['calculate']['shipping']['method']);
        if (isset($data[$root]['calculate']['shipping']['method'])) {
            $shipping = get_arr_result($data[$root]['calculate']['shipping']['method']);
            //      if (MODULE_PAYMENT_GOOGLECHECKOUT_MULTISOCKET == 'True') {
            //        // Single
            //        // i get all the enabled shipping methods
            //        $name = $shipping[0]['name'];
            //        //            Compute the price for this shipping method and address id
            //        list ($a, $method_name) = explode(': ', $name);
            //        if ((($order->delivery['country']['id'] == SHIPPING_ORIGIN_COUNTRY)
            //              && ($methods_hash[$method_name][1] == 'domestic_types'))
            //           || (($order->delivery['country']['id'] != SHIPPING_ORIGIN_COUNTRY)
            //              && ($methods_hash[$method_name][1] == 'international_types'))) {
            //          //								reset the shipping class to set the new address
            //          if (class_exists($methods_hash[$method_name][2])) {
            //            $GLOBALS[$methods_hash[$method_name][2]] = new $methods_hash[$method_name][2];
            //          }
            //        }
            //        $quotes = $shipping_modules->quote('', $methods_hash[$method_name][2]);
            //      } else {
            // Standard
            foreach ($shipping as $curr_ship) {
                $name = $curr_ship['name'];
                //            Compute the price for this shipping method and address id
                list($a, $method_name) = explode(': ', $name, 2);
                if ($order->delivery['country']['id'] == SHIPPING_ORIGIN_COUNTRY && $methods_hash[$method_name][1] == 'domestic_types' || $order->delivery['country']['id'] != SHIPPING_ORIGIN_COUNTRY && $methods_hash[$method_name][1] == 'international_types') {
                    //								reset the shipping class to set the new address
                    if (class_exists($methods_hash[$method_name][2])) {
                        $GLOBALS[$methods_hash[$method_name][2]] = new $methods_hash[$method_name][2]();
                    }
                }
            }
            $quotes = $shipping_modules->quote();
            //      }
            reset($shipping);
            foreach ($shipping as $curr_ship) {
                $name = $curr_ship['name'];
                //            Compute the price for this shipping method and address id
                list($a, $method_name) = explode(': ', $name, 2);
                unset($quote_povider);
                unset($quote_method);
                if ($order->delivery['country']['id'] == SHIPPING_ORIGIN_COUNTRY && $methods_hash[$method_name][1] == 'domestic_types' || $order->delivery['country']['id'] != SHIPPING_ORIGIN_COUNTRY && $methods_hash[$method_name][1] == 'international_types') {
                    foreach ($quotes as $key_provider => $shipping_provider) {
                        // privider name (class)
                        if ($shipping_provider['id'] == $methods_hash[$method_name][2]) {
                            // method name
                            $quote_povider = $key_provider;
                            if (is_array($shipping_provider['methods'])) {
                                foreach ($shipping_provider['methods'] as $key_method => $shipping_method) {
                                    if ($shipping_method['id'] == $methods_hash[$method_name][0]) {
                                        $quote_method = $key_method;
                                        break;
                                    }
                                }
                            }
                            break;
                        }
                    }
                }
                //if there is a problem with the method, i mark it as non-shippable
                if (isset($quotes[$quote_povider]['error']) || !isset($quotes[$quote_povider]['methods'][$quote_method]['cost'])) {
                    $price = "9999.09";
                    $shippable = "false";
                } else {
                    $price = $quotes[$quote_povider]['methods'][$quote_method]['cost'];
                    $shippable = "true";
                }
                // fix for item shipping function bug if called more than once in a session.
                $price = $price >= 0 ? $price : 0;
                $merchant_result = new GoogleResult($curr_id);
                $merchant_result->SetShippingDetails($name, $currencies->get_value(DEFAULT_CURRENCY) * $price, $shippable);
                if ($data[$root]['calculate']['tax']['VALUE'] == "true") {
                    //Compute tax for this address id and shipping type
                    $amount = 15;
                    // Modify this to the actual tax value
                    $merchant_result->SetTaxDetails($currencies->get_value(DEFAULT_CURRENCY) * $amount);
                }
                ////							 start cupons and gift processing (working)
                //								// only one coupon per order is valid!
                //                $_POST['dc_redeem_code'] = 'ROPU';
                //
                ////                require(DIR_WS_CLASSES . 'order.php');
                ////                $order = new order;
                //                require_once(DIR_WS_CLASSES . 'order_total.php');
                //                $order_total_modules = new order_total;
                ////                $order_total_modules->collect_posts();
                ////                $order_total_modules->pre_confirmation_check();
                //
                ////                print_r($order_total_modules);
                //                   $order_totals = $order_total_modules->process();
                ////                print_r($order_totals);
                //
                calculate_coupons($Gresponse, $merchant_result, $price);
                // end cupons
                $merchant_calc->AddResult($merchant_result);
            }
        } else {
            $merchant_result = new GoogleResult($curr_id);
            if ($data[$root]['calculate']['tax']['VALUE'] == "true") {
                //Compute tax for this address id and shipping type
                $amount = 15;
                // Modify this to the actual tax value
                $merchant_result->SetTaxDetails($currencies->get_value(DEFAULT_CURRENCY) * $amount);
            }
            calculate_coupons($Gresponse, $merchant_result);
            $merchant_calc->AddResult($merchant_result);
        }
    }
    $Gresponse->ProcessMerchantCalculations($merchant_calc);
}