Woocommerce: Runtime error when I place order to process payment using bank API












0















I'm using Armenian bank API with woocommerce as extra payment method. When I place order it gives me Runtime error. I'm attaching the image or the error I receive and the code I am using.





id = 'ameriabank'; // payment gateway plugin ID
$this->icon = ''; // URL of the icon that will be displayed on checkout page near your gateway name
$this->has_fields = true; // in case you need a custom credit card form
$this->method_title = 'Ameria Bank Gateway';
$this->method_description = 'Description of Ameria payment gateway';


$this->supports = array(
'products',
'subscriptions'
);

// Method with all the options fields
$this->init_form_fields();

// Load the settings.
$this->init_settings();
$this->title = $this->get_option( 'title' );
$this->description = $this->get_option( 'description' );
$this->enabled = $this->get_option( 'enabled' );
//$this->testmode = 'yes' === $this->get_option( 'testmode' );
$this->ClientID = $this->get_option( 'ClientID' );
$this->Username = $this->get_option( 'Username' );
$this->Password = $this->get_option( 'Password' );


// This action hook saves the settings
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );

// We need custom JavaScript to obtain a token
//add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );

// You can also register a webhook here
// add_action( 'woocommerce_api_{webhook name}', array( $this, 'webhook' ) );

}

/**
* Plugin options, we deal with it in Step 3 too
*/
public function init_form_fields(){

$this->form_fields = array(
'enabled' => array(
'title' => 'Enable/Disable',
'label' => 'Enable AmeriaBank Gateway',
'type' => 'checkbox',
'description' => '',
'default' => 'no'
),
'title' => array(
'title' => 'Title',
'type' => 'text',
'description' => 'This controls the title which the user sees during checkout.',
'default' => 'Credit Card',
'desc_tip' => true,
),
'description' => array(
'title' => 'Description',
'type' => 'textarea',
'description' => 'This controls the description which the user sees during checkout.',
'default' => 'Pay with your credit card via our super-cool payment gateway.',
),
'ClientID' => array(
'title' => 'Client ID',
'type' => 'text'
),
'Username' => array(
'title' => 'Username',
'type' => 'text'
),
'Password' => array(
'title' => 'Password',
'type' => 'text'
)
);
}

public function process_payment( $order_id ) {
global $woocommerce;


$order = new WC_Order( $order_id );
// Ameria bank params

$this->description = "[description]";
$this->orderID = $order_id;
$this->paymentAmount = $order->get_total();
$_SESSION['eli_cart_total'] = $this->paymentAmount;
$this->backURL = add_query_arg('key', $order->order_key, add_query_arg('order', $order_id, get_permalink(woocommerce_get_page_id('thanks'))));


$options = array(
'soap_version' => SOAP_1_1,
'exceptions' => true,
'trace' => 1,
'wdsl_local_copy' => true
);

$client = new SoapClient("https://testpayments.ameriabank.am/webservice/PaymentService.svc?wsdl", $options);

$args['paymentfields'] = array(
'ClientID' => $this->ClientID,
'Username' => $this->Username,
'Password' => $this->Password,
'Description' => $this->description,
'OrderID' => $this->orderID,
'PaymentAmount' => $this->paymentAmount,
'backURL' => $this->backURL
);

$webService = $client->GetPaymentID($args);


$_SESSION['pid'] = $webService->GetPaymentIDResult->PaymentID;
$this->liveurl = 'https://testpayments.ameriabank.am/forms/frm_paymentstype.aspx?clientid='.$this->ClientID.'&clienturl='.$this->backURL.'&lang=am&paymentid='.$webService->GetPaymentIDResult->PaymentID;

// Return thankyou redirect
return array(
'result' => 'success',
'redirect' => $this->liveurl
);

}

/**
* Output for the order received page.
*
* @access public
* @return void
*/
function thankyou_page($order_id) {
global $woocommerce;
$options = array(
'soap_version' => SOAP_1_1,
'exceptions' => true,
'trace' => 1,
'wdsl_local_copy' => true
);

$client = new SoapClient("https://testpayments.ameriabank.am/webservice/PaymentService.svc?wsdl", $options);
$total = $_SESSION['eli_cart_total'];
$args['paymentfields'] = array(
'ClientID' => $this->ClientID,
'Username' => $this->Username,
'Password' => $this->Password,
'PaymentAmount' => $total,
'OrderID' => $order_id
);
$webService = $client->GetPaymentFields($args);

if($webService->GetPaymentFieldsResult->respcode == "00") {
$order = new WC_Order( $order_id );
$type = $webService->GetPaymentFieldsResult->paymenttype;
if( $type == "1" ) {
$client->Confirmation($args);
}

$order->update_status('on-hold', __( 'Awaiting credit card payment', 'woocommerce' ));
// Reduce stock levels
$order->reduce_order_stock();

// Remove cart
$woocommerce->cart->empty_cart();

} else {
//echo '';
}
}

}

}


Error Screenshot:
enter image description here



Let me know if someone can help me on this.










share|improve this question

























  • That looks like a problem with the bank's API, I suggest you contact them.

    – Difster
    Nov 26 '18 at 12:27
















0















I'm using Armenian bank API with woocommerce as extra payment method. When I place order it gives me Runtime error. I'm attaching the image or the error I receive and the code I am using.





id = 'ameriabank'; // payment gateway plugin ID
$this->icon = ''; // URL of the icon that will be displayed on checkout page near your gateway name
$this->has_fields = true; // in case you need a custom credit card form
$this->method_title = 'Ameria Bank Gateway';
$this->method_description = 'Description of Ameria payment gateway';


$this->supports = array(
'products',
'subscriptions'
);

// Method with all the options fields
$this->init_form_fields();

// Load the settings.
$this->init_settings();
$this->title = $this->get_option( 'title' );
$this->description = $this->get_option( 'description' );
$this->enabled = $this->get_option( 'enabled' );
//$this->testmode = 'yes' === $this->get_option( 'testmode' );
$this->ClientID = $this->get_option( 'ClientID' );
$this->Username = $this->get_option( 'Username' );
$this->Password = $this->get_option( 'Password' );


// This action hook saves the settings
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );

// We need custom JavaScript to obtain a token
//add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );

// You can also register a webhook here
// add_action( 'woocommerce_api_{webhook name}', array( $this, 'webhook' ) );

}

/**
* Plugin options, we deal with it in Step 3 too
*/
public function init_form_fields(){

$this->form_fields = array(
'enabled' => array(
'title' => 'Enable/Disable',
'label' => 'Enable AmeriaBank Gateway',
'type' => 'checkbox',
'description' => '',
'default' => 'no'
),
'title' => array(
'title' => 'Title',
'type' => 'text',
'description' => 'This controls the title which the user sees during checkout.',
'default' => 'Credit Card',
'desc_tip' => true,
),
'description' => array(
'title' => 'Description',
'type' => 'textarea',
'description' => 'This controls the description which the user sees during checkout.',
'default' => 'Pay with your credit card via our super-cool payment gateway.',
),
'ClientID' => array(
'title' => 'Client ID',
'type' => 'text'
),
'Username' => array(
'title' => 'Username',
'type' => 'text'
),
'Password' => array(
'title' => 'Password',
'type' => 'text'
)
);
}

public function process_payment( $order_id ) {
global $woocommerce;


$order = new WC_Order( $order_id );
// Ameria bank params

$this->description = "[description]";
$this->orderID = $order_id;
$this->paymentAmount = $order->get_total();
$_SESSION['eli_cart_total'] = $this->paymentAmount;
$this->backURL = add_query_arg('key', $order->order_key, add_query_arg('order', $order_id, get_permalink(woocommerce_get_page_id('thanks'))));


$options = array(
'soap_version' => SOAP_1_1,
'exceptions' => true,
'trace' => 1,
'wdsl_local_copy' => true
);

$client = new SoapClient("https://testpayments.ameriabank.am/webservice/PaymentService.svc?wsdl", $options);

$args['paymentfields'] = array(
'ClientID' => $this->ClientID,
'Username' => $this->Username,
'Password' => $this->Password,
'Description' => $this->description,
'OrderID' => $this->orderID,
'PaymentAmount' => $this->paymentAmount,
'backURL' => $this->backURL
);

$webService = $client->GetPaymentID($args);


$_SESSION['pid'] = $webService->GetPaymentIDResult->PaymentID;
$this->liveurl = 'https://testpayments.ameriabank.am/forms/frm_paymentstype.aspx?clientid='.$this->ClientID.'&clienturl='.$this->backURL.'&lang=am&paymentid='.$webService->GetPaymentIDResult->PaymentID;

// Return thankyou redirect
return array(
'result' => 'success',
'redirect' => $this->liveurl
);

}

/**
* Output for the order received page.
*
* @access public
* @return void
*/
function thankyou_page($order_id) {
global $woocommerce;
$options = array(
'soap_version' => SOAP_1_1,
'exceptions' => true,
'trace' => 1,
'wdsl_local_copy' => true
);

$client = new SoapClient("https://testpayments.ameriabank.am/webservice/PaymentService.svc?wsdl", $options);
$total = $_SESSION['eli_cart_total'];
$args['paymentfields'] = array(
'ClientID' => $this->ClientID,
'Username' => $this->Username,
'Password' => $this->Password,
'PaymentAmount' => $total,
'OrderID' => $order_id
);
$webService = $client->GetPaymentFields($args);

if($webService->GetPaymentFieldsResult->respcode == "00") {
$order = new WC_Order( $order_id );
$type = $webService->GetPaymentFieldsResult->paymenttype;
if( $type == "1" ) {
$client->Confirmation($args);
}

$order->update_status('on-hold', __( 'Awaiting credit card payment', 'woocommerce' ));
// Reduce stock levels
$order->reduce_order_stock();

// Remove cart
$woocommerce->cart->empty_cart();

} else {
//echo '';
}
}

}

}


Error Screenshot:
enter image description here



Let me know if someone can help me on this.










share|improve this question

























  • That looks like a problem with the bank's API, I suggest you contact them.

    – Difster
    Nov 26 '18 at 12:27














0












0








0








I'm using Armenian bank API with woocommerce as extra payment method. When I place order it gives me Runtime error. I'm attaching the image or the error I receive and the code I am using.





id = 'ameriabank'; // payment gateway plugin ID
$this->icon = ''; // URL of the icon that will be displayed on checkout page near your gateway name
$this->has_fields = true; // in case you need a custom credit card form
$this->method_title = 'Ameria Bank Gateway';
$this->method_description = 'Description of Ameria payment gateway';


$this->supports = array(
'products',
'subscriptions'
);

// Method with all the options fields
$this->init_form_fields();

// Load the settings.
$this->init_settings();
$this->title = $this->get_option( 'title' );
$this->description = $this->get_option( 'description' );
$this->enabled = $this->get_option( 'enabled' );
//$this->testmode = 'yes' === $this->get_option( 'testmode' );
$this->ClientID = $this->get_option( 'ClientID' );
$this->Username = $this->get_option( 'Username' );
$this->Password = $this->get_option( 'Password' );


// This action hook saves the settings
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );

// We need custom JavaScript to obtain a token
//add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );

// You can also register a webhook here
// add_action( 'woocommerce_api_{webhook name}', array( $this, 'webhook' ) );

}

/**
* Plugin options, we deal with it in Step 3 too
*/
public function init_form_fields(){

$this->form_fields = array(
'enabled' => array(
'title' => 'Enable/Disable',
'label' => 'Enable AmeriaBank Gateway',
'type' => 'checkbox',
'description' => '',
'default' => 'no'
),
'title' => array(
'title' => 'Title',
'type' => 'text',
'description' => 'This controls the title which the user sees during checkout.',
'default' => 'Credit Card',
'desc_tip' => true,
),
'description' => array(
'title' => 'Description',
'type' => 'textarea',
'description' => 'This controls the description which the user sees during checkout.',
'default' => 'Pay with your credit card via our super-cool payment gateway.',
),
'ClientID' => array(
'title' => 'Client ID',
'type' => 'text'
),
'Username' => array(
'title' => 'Username',
'type' => 'text'
),
'Password' => array(
'title' => 'Password',
'type' => 'text'
)
);
}

public function process_payment( $order_id ) {
global $woocommerce;


$order = new WC_Order( $order_id );
// Ameria bank params

$this->description = "[description]";
$this->orderID = $order_id;
$this->paymentAmount = $order->get_total();
$_SESSION['eli_cart_total'] = $this->paymentAmount;
$this->backURL = add_query_arg('key', $order->order_key, add_query_arg('order', $order_id, get_permalink(woocommerce_get_page_id('thanks'))));


$options = array(
'soap_version' => SOAP_1_1,
'exceptions' => true,
'trace' => 1,
'wdsl_local_copy' => true
);

$client = new SoapClient("https://testpayments.ameriabank.am/webservice/PaymentService.svc?wsdl", $options);

$args['paymentfields'] = array(
'ClientID' => $this->ClientID,
'Username' => $this->Username,
'Password' => $this->Password,
'Description' => $this->description,
'OrderID' => $this->orderID,
'PaymentAmount' => $this->paymentAmount,
'backURL' => $this->backURL
);

$webService = $client->GetPaymentID($args);


$_SESSION['pid'] = $webService->GetPaymentIDResult->PaymentID;
$this->liveurl = 'https://testpayments.ameriabank.am/forms/frm_paymentstype.aspx?clientid='.$this->ClientID.'&clienturl='.$this->backURL.'&lang=am&paymentid='.$webService->GetPaymentIDResult->PaymentID;

// Return thankyou redirect
return array(
'result' => 'success',
'redirect' => $this->liveurl
);

}

/**
* Output for the order received page.
*
* @access public
* @return void
*/
function thankyou_page($order_id) {
global $woocommerce;
$options = array(
'soap_version' => SOAP_1_1,
'exceptions' => true,
'trace' => 1,
'wdsl_local_copy' => true
);

$client = new SoapClient("https://testpayments.ameriabank.am/webservice/PaymentService.svc?wsdl", $options);
$total = $_SESSION['eli_cart_total'];
$args['paymentfields'] = array(
'ClientID' => $this->ClientID,
'Username' => $this->Username,
'Password' => $this->Password,
'PaymentAmount' => $total,
'OrderID' => $order_id
);
$webService = $client->GetPaymentFields($args);

if($webService->GetPaymentFieldsResult->respcode == "00") {
$order = new WC_Order( $order_id );
$type = $webService->GetPaymentFieldsResult->paymenttype;
if( $type == "1" ) {
$client->Confirmation($args);
}

$order->update_status('on-hold', __( 'Awaiting credit card payment', 'woocommerce' ));
// Reduce stock levels
$order->reduce_order_stock();

// Remove cart
$woocommerce->cart->empty_cart();

} else {
//echo '';
}
}

}

}


Error Screenshot:
enter image description here



Let me know if someone can help me on this.










share|improve this question
















I'm using Armenian bank API with woocommerce as extra payment method. When I place order it gives me Runtime error. I'm attaching the image or the error I receive and the code I am using.





id = 'ameriabank'; // payment gateway plugin ID
$this->icon = ''; // URL of the icon that will be displayed on checkout page near your gateway name
$this->has_fields = true; // in case you need a custom credit card form
$this->method_title = 'Ameria Bank Gateway';
$this->method_description = 'Description of Ameria payment gateway';


$this->supports = array(
'products',
'subscriptions'
);

// Method with all the options fields
$this->init_form_fields();

// Load the settings.
$this->init_settings();
$this->title = $this->get_option( 'title' );
$this->description = $this->get_option( 'description' );
$this->enabled = $this->get_option( 'enabled' );
//$this->testmode = 'yes' === $this->get_option( 'testmode' );
$this->ClientID = $this->get_option( 'ClientID' );
$this->Username = $this->get_option( 'Username' );
$this->Password = $this->get_option( 'Password' );


// This action hook saves the settings
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );

// We need custom JavaScript to obtain a token
//add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );

// You can also register a webhook here
// add_action( 'woocommerce_api_{webhook name}', array( $this, 'webhook' ) );

}

/**
* Plugin options, we deal with it in Step 3 too
*/
public function init_form_fields(){

$this->form_fields = array(
'enabled' => array(
'title' => 'Enable/Disable',
'label' => 'Enable AmeriaBank Gateway',
'type' => 'checkbox',
'description' => '',
'default' => 'no'
),
'title' => array(
'title' => 'Title',
'type' => 'text',
'description' => 'This controls the title which the user sees during checkout.',
'default' => 'Credit Card',
'desc_tip' => true,
),
'description' => array(
'title' => 'Description',
'type' => 'textarea',
'description' => 'This controls the description which the user sees during checkout.',
'default' => 'Pay with your credit card via our super-cool payment gateway.',
),
'ClientID' => array(
'title' => 'Client ID',
'type' => 'text'
),
'Username' => array(
'title' => 'Username',
'type' => 'text'
),
'Password' => array(
'title' => 'Password',
'type' => 'text'
)
);
}

public function process_payment( $order_id ) {
global $woocommerce;


$order = new WC_Order( $order_id );
// Ameria bank params

$this->description = "[description]";
$this->orderID = $order_id;
$this->paymentAmount = $order->get_total();
$_SESSION['eli_cart_total'] = $this->paymentAmount;
$this->backURL = add_query_arg('key', $order->order_key, add_query_arg('order', $order_id, get_permalink(woocommerce_get_page_id('thanks'))));


$options = array(
'soap_version' => SOAP_1_1,
'exceptions' => true,
'trace' => 1,
'wdsl_local_copy' => true
);

$client = new SoapClient("https://testpayments.ameriabank.am/webservice/PaymentService.svc?wsdl", $options);

$args['paymentfields'] = array(
'ClientID' => $this->ClientID,
'Username' => $this->Username,
'Password' => $this->Password,
'Description' => $this->description,
'OrderID' => $this->orderID,
'PaymentAmount' => $this->paymentAmount,
'backURL' => $this->backURL
);

$webService = $client->GetPaymentID($args);


$_SESSION['pid'] = $webService->GetPaymentIDResult->PaymentID;
$this->liveurl = 'https://testpayments.ameriabank.am/forms/frm_paymentstype.aspx?clientid='.$this->ClientID.'&clienturl='.$this->backURL.'&lang=am&paymentid='.$webService->GetPaymentIDResult->PaymentID;

// Return thankyou redirect
return array(
'result' => 'success',
'redirect' => $this->liveurl
);

}

/**
* Output for the order received page.
*
* @access public
* @return void
*/
function thankyou_page($order_id) {
global $woocommerce;
$options = array(
'soap_version' => SOAP_1_1,
'exceptions' => true,
'trace' => 1,
'wdsl_local_copy' => true
);

$client = new SoapClient("https://testpayments.ameriabank.am/webservice/PaymentService.svc?wsdl", $options);
$total = $_SESSION['eli_cart_total'];
$args['paymentfields'] = array(
'ClientID' => $this->ClientID,
'Username' => $this->Username,
'Password' => $this->Password,
'PaymentAmount' => $total,
'OrderID' => $order_id
);
$webService = $client->GetPaymentFields($args);

if($webService->GetPaymentFieldsResult->respcode == "00") {
$order = new WC_Order( $order_id );
$type = $webService->GetPaymentFieldsResult->paymenttype;
if( $type == "1" ) {
$client->Confirmation($args);
}

$order->update_status('on-hold', __( 'Awaiting credit card payment', 'woocommerce' ));
// Reduce stock levels
$order->reduce_order_stock();

// Remove cart
$woocommerce->cart->empty_cart();

} else {
//echo '';
}
}

}

}


Error Screenshot:
enter image description here



Let me know if someone can help me on this.







php wordpress woocommerce






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 26 '18 at 13:29









saddam

691522




691522










asked Nov 26 '18 at 12:25









Wajiha SalmanWajiha Salman

11




11













  • That looks like a problem with the bank's API, I suggest you contact them.

    – Difster
    Nov 26 '18 at 12:27



















  • That looks like a problem with the bank's API, I suggest you contact them.

    – Difster
    Nov 26 '18 at 12:27

















That looks like a problem with the bank's API, I suggest you contact them.

– Difster
Nov 26 '18 at 12:27





That looks like a problem with the bank's API, I suggest you contact them.

– Difster
Nov 26 '18 at 12:27












1 Answer
1






active

oldest

votes


















0














The problem was in this->backURL because it has / so the server feel like go to /another resource so you need to encode it using urlencode(this->backURL)






share|improve this answer
























    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53481080%2fwoocommerce-runtime-error-when-i-place-order-to-process-payment-using-bank-api%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    The problem was in this->backURL because it has / so the server feel like go to /another resource so you need to encode it using urlencode(this->backURL)






    share|improve this answer




























      0














      The problem was in this->backURL because it has / so the server feel like go to /another resource so you need to encode it using urlencode(this->backURL)






      share|improve this answer


























        0












        0








        0







        The problem was in this->backURL because it has / so the server feel like go to /another resource so you need to encode it using urlencode(this->backURL)






        share|improve this answer













        The problem was in this->backURL because it has / so the server feel like go to /another resource so you need to encode it using urlencode(this->backURL)







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 26 '18 at 12:32









        Mahmoud GamalMahmoud Gamal

        12028




        12028
































            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53481080%2fwoocommerce-runtime-error-when-i-place-order-to-process-payment-using-bank-api%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Ottavio Pratesi

            Tricia Helfer

            15 giugno