From 3b5596b4a805bc0fc8d31bc322365a01c108cc2e Mon Sep 17 00:00:00 2001 From: Novalnet-Technic Date: Wed, 10 Nov 2021 18:15:21 +0530 Subject: [PATCH] first commit --- admin/includes/classes/class.novalnet.php | 420 + .../english/modules/novalnet/novalnet.php | 95 + .../german/modules/novalnet/novalnet.php | 94 + admin/novalnet.php | 803 + .../payment/novalnet/callback/callback.php | 837 + .../payment/novalnet/css/jquery-ui.css | 1137 ++ ext/modules/payment/novalnet/css/novalnet.css | 9 + .../images/ui-bg_glass_75_e6e6e6_1x400.png | Bin 0 -> 301 bytes .../images/ui-icons_222222_256x240.png | Bin 0 -> 7006 bytes .../images/ui-icons_888888_256x240.png | Bin 0 -> 4369 bytes .../payment/novalnet/install/install_11.sql | 79 + .../payment/novalnet/js/authorization.js | 46 + .../payment/novalnet/js/jquery-1.9.1.js | 9598 ++++++++++ ext/modules/payment/novalnet/js/jquery-ui.js | 15004 ++++++++++++++++ ext/modules/payment/novalnet/js/jquery.js | 4 + .../payment/novalnet/js/novalnet_api.js | 117 + .../payment/novalnet/js/novalnet_cc.js | 128 + .../payment/novalnet/js/novalnet_paypal.js | 49 + .../payment/novalnet/js/novalnet_sepa.js | 90 + .../payment/novalnet/orders/novalnet.php | 92 + images/icons/novalnet/novalnet_cc_amex.png | Bin 0 -> 1122 bytes images/icons/novalnet/novalnet_cc_cartasi.png | Bin 0 -> 1591 bytes images/icons/novalnet/novalnet_cc_maestro.png | Bin 0 -> 1050 bytes images/icons/novalnet/novalnet_cc_master.png | Bin 0 -> 1061 bytes images/icons/novalnet/novalnet_cc_visa.png | Bin 0 -> 2101 bytes images/icons/novalnet/novalnet_eps.png | Bin 0 -> 1064 bytes images/icons/novalnet/novalnet_giropay.png | Bin 0 -> 1223 bytes images/icons/novalnet/novalnet_ideal.png | Bin 0 -> 1481 bytes .../icons/novalnet/novalnet_instantbank.png | Bin 0 -> 1157 bytes images/icons/novalnet/novalnet_invoice.png | Bin 0 -> 636 bytes images/icons/novalnet/novalnet_loader.gif | Bin 0 -> 7356 bytes images/icons/novalnet/novalnet_paypal.png | Bin 0 -> 1976 bytes images/icons/novalnet/novalnet_prepayment.png | Bin 0 -> 978 bytes images/icons/novalnet/novalnet_przelewy.png | Bin 0 -> 2180 bytes images/icons/novalnet/novalnet_sepa.png | Bin 0 -> 1152 bytes includes/classes/class.novalnetutil.php | 1093 ++ .../english/modules/payment/novalnet.php | 152 + .../english/modules/payment/novalnet_cc.php | 85 + .../modules/payment/novalnet_config.php | 94 + .../english/modules/payment/novalnet_eps.php | 47 + .../modules/payment/novalnet_giropay.php | 47 + .../modules/payment/novalnet_ideal.php | 47 + .../modules/payment/novalnet_invoice.php | 75 + .../modules/payment/novalnet_paypal.php | 65 + .../modules/payment/novalnet_prepayment.php | 49 + .../modules/payment/novalnet_przelewy24.php | 50 + .../english/modules/payment/novalnet_sepa.php | 103 + .../modules/payment/novalnet_sofortbank.php | 47 + .../german/modules/payment/novalnet.php | 154 + .../german/modules/payment/novalnet_cc.php | 91 + .../modules/payment/novalnet_config.php | 97 + .../german/modules/payment/novalnet_eps.php | 47 + .../modules/payment/novalnet_giropay.php | 47 + .../german/modules/payment/novalnet_ideal.php | 47 + .../modules/payment/novalnet_invoice.php | 80 + .../modules/payment/novalnet_paypal.php | 69 + .../modules/payment/novalnet_prepayment.php | 49 + .../modules/payment/novalnet_przelewy24.php | 50 + .../german/modules/payment/novalnet_sepa.php | 107 + .../modules/payment/novalnet_sofortbank.php | 47 + includes/modules/payment/novalnet_cc.php | 514 + includes/modules/payment/novalnet_config.php | 225 + includes/modules/payment/novalnet_eps.php | 284 + includes/modules/payment/novalnet_giropay.php | 288 + includes/modules/payment/novalnet_ideal.php | 274 + includes/modules/payment/novalnet_invoice.php | 565 + includes/modules/payment/novalnet_paypal.php | 442 + .../modules/payment/novalnet_prepayment.php | 277 + .../modules/payment/novalnet_przelewy24.php | 288 + includes/modules/payment/novalnet_sepa.php | 751 + .../modules/payment/novalnet_sofortbank.php | 284 + novalnet_auto_config.php | 77 + novalnet_subscription_stop.php | 95 + 73 files changed, 35805 insertions(+) create mode 100644 admin/includes/classes/class.novalnet.php create mode 100644 admin/includes/languages/english/modules/novalnet/novalnet.php create mode 100644 admin/includes/languages/german/modules/novalnet/novalnet.php create mode 100644 admin/novalnet.php create mode 100644 ext/modules/payment/novalnet/callback/callback.php create mode 100644 ext/modules/payment/novalnet/css/jquery-ui.css create mode 100644 ext/modules/payment/novalnet/css/novalnet.css create mode 100644 ext/modules/payment/novalnet/images/ui-bg_glass_75_e6e6e6_1x400.png create mode 100644 ext/modules/payment/novalnet/images/ui-icons_222222_256x240.png create mode 100644 ext/modules/payment/novalnet/images/ui-icons_888888_256x240.png create mode 100644 ext/modules/payment/novalnet/install/install_11.sql create mode 100644 ext/modules/payment/novalnet/js/authorization.js create mode 100644 ext/modules/payment/novalnet/js/jquery-1.9.1.js create mode 100644 ext/modules/payment/novalnet/js/jquery-ui.js create mode 100644 ext/modules/payment/novalnet/js/jquery.js create mode 100644 ext/modules/payment/novalnet/js/novalnet_api.js create mode 100644 ext/modules/payment/novalnet/js/novalnet_cc.js create mode 100644 ext/modules/payment/novalnet/js/novalnet_paypal.js create mode 100644 ext/modules/payment/novalnet/js/novalnet_sepa.js create mode 100644 ext/modules/payment/novalnet/orders/novalnet.php create mode 100644 images/icons/novalnet/novalnet_cc_amex.png create mode 100644 images/icons/novalnet/novalnet_cc_cartasi.png create mode 100644 images/icons/novalnet/novalnet_cc_maestro.png create mode 100644 images/icons/novalnet/novalnet_cc_master.png create mode 100644 images/icons/novalnet/novalnet_cc_visa.png create mode 100644 images/icons/novalnet/novalnet_eps.png create mode 100644 images/icons/novalnet/novalnet_giropay.png create mode 100644 images/icons/novalnet/novalnet_ideal.png create mode 100644 images/icons/novalnet/novalnet_instantbank.png create mode 100644 images/icons/novalnet/novalnet_invoice.png create mode 100644 images/icons/novalnet/novalnet_loader.gif create mode 100644 images/icons/novalnet/novalnet_paypal.png create mode 100644 images/icons/novalnet/novalnet_prepayment.png create mode 100644 images/icons/novalnet/novalnet_przelewy.png create mode 100644 images/icons/novalnet/novalnet_sepa.png create mode 100644 includes/classes/class.novalnetutil.php create mode 100644 includes/languages/english/modules/payment/novalnet.php create mode 100644 includes/languages/english/modules/payment/novalnet_cc.php create mode 100644 includes/languages/english/modules/payment/novalnet_config.php create mode 100644 includes/languages/english/modules/payment/novalnet_eps.php create mode 100644 includes/languages/english/modules/payment/novalnet_giropay.php create mode 100644 includes/languages/english/modules/payment/novalnet_ideal.php create mode 100644 includes/languages/english/modules/payment/novalnet_invoice.php create mode 100644 includes/languages/english/modules/payment/novalnet_paypal.php create mode 100644 includes/languages/english/modules/payment/novalnet_prepayment.php create mode 100644 includes/languages/english/modules/payment/novalnet_przelewy24.php create mode 100644 includes/languages/english/modules/payment/novalnet_sepa.php create mode 100644 includes/languages/english/modules/payment/novalnet_sofortbank.php create mode 100644 includes/languages/german/modules/payment/novalnet.php create mode 100644 includes/languages/german/modules/payment/novalnet_cc.php create mode 100644 includes/languages/german/modules/payment/novalnet_config.php create mode 100644 includes/languages/german/modules/payment/novalnet_eps.php create mode 100644 includes/languages/german/modules/payment/novalnet_giropay.php create mode 100644 includes/languages/german/modules/payment/novalnet_ideal.php create mode 100644 includes/languages/german/modules/payment/novalnet_invoice.php create mode 100644 includes/languages/german/modules/payment/novalnet_paypal.php create mode 100644 includes/languages/german/modules/payment/novalnet_prepayment.php create mode 100644 includes/languages/german/modules/payment/novalnet_przelewy24.php create mode 100644 includes/languages/german/modules/payment/novalnet_sepa.php create mode 100644 includes/languages/german/modules/payment/novalnet_sofortbank.php create mode 100644 includes/modules/payment/novalnet_cc.php create mode 100644 includes/modules/payment/novalnet_config.php create mode 100644 includes/modules/payment/novalnet_eps.php create mode 100644 includes/modules/payment/novalnet_giropay.php create mode 100644 includes/modules/payment/novalnet_ideal.php create mode 100644 includes/modules/payment/novalnet_invoice.php create mode 100644 includes/modules/payment/novalnet_paypal.php create mode 100644 includes/modules/payment/novalnet_prepayment.php create mode 100644 includes/modules/payment/novalnet_przelewy24.php create mode 100644 includes/modules/payment/novalnet_sepa.php create mode 100644 includes/modules/payment/novalnet_sofortbank.php create mode 100644 novalnet_auto_config.php create mode 100644 novalnet_subscription_stop.php diff --git a/admin/includes/classes/class.novalnet.php b/admin/includes/classes/class.novalnet.php new file mode 100644 index 0000000..1eef260 --- /dev/null +++ b/admin/includes/classes/class.novalnet.php @@ -0,0 +1,420 @@ + $request['vendor'], + 'product' => $request['product'], + 'key' => $request['payment_id'], + 'tariff' => $request['tariff'], + 'auth_code' => $request['auth_code'], + 'edit_status' => '1', + 'tid' => $request['tid'], + 'status' => $request['status'], //100 or 103 + 'remote_ip' => $remote_ip + ); + $response = NovalnetUtil::doPaymentCall('https://payport.novalnet.de/paygate.jsp', $onhold_params); + parse_str($response, $data); + if ($data['status'] == 100) { + $datas = self::getNovalnetTransDetails($request['order_id']); + $param['gateway_status'] = $request['status']; + $order_status = ($request['status'] == 100) ? constant('MODULE_PAYMENT_'.strtoupper($datas['payment_type']).'_ORDER_STATUS') : MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED; + $comments = ($request['status'] == 100) ? PHP_EOL . sprintf(NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_TRANS_CONFIRM_SUCCESSFUL_MESSAGE), date(DATE_FORMAT, strtotime(date('d.m.Y'))), date('H:i:s')) . PHP_EOL : PHP_EOL . sprintf(MODULE_PAYMENT_NOVALNET_TRANS_DEACTIVATED_MESSAGE, date(DATE_FORMAT, strtotime(date('d.m.Y'))), date('H:i:s')) . PHP_EOL; + if (in_array($request['payment_id'],array('27','41')) && $request['status'] == 100) { + $datas = self::getNovalnetTransDetails($request['order_id']); + $nn_duedate= date('d.m.Y',strtotime($data['due_date'])); + $comments = sprintf(MODULE_PAYMENT_NOVALNET_INVOICE_ON_HOLD_CONFIRM_TEXT,$datas['tid'],$nn_duedate).PHP_EOL; + $datas['payment_details']['due_date'] = (!empty($data['due_date']) ? $data['due_date'] : $datas['payment_details']['due_date']); + $on_hold_serialize_data = serialize($datas['payment_details']); + $transaction_comments = ''; + + // To form Novalnet transaction comments + $novalnetPaymentReference = NovalnetUtil::novalnetReferenceComments($request['order_id'],$datas['payment_type'], $datas); + list($transaction_Details) = NovalnetUtil::formInvoicePrepaymentComments(array( + 'invoice_account_holder' => $datas['payment_details']['account_holder'], + 'invoice_bankname' => $datas['payment_details']['bank_name'], + 'invoice_bankplace' => $datas['payment_details']['bank_city'], + 'amount' => sprintf("%.2f", ($datas['amount'] / 100)), + 'currency' => $datas['payment_details']['currency'], + 'tid' => $datas['tid'], + 'invoice_iban' => $datas['payment_details']['bank_iban'], + 'invoice_bic' => $datas['payment_details']['bank_bic'], + 'due_date' => (!empty($data['due_date']) ? $data['due_date'] : $datas['payment_details']['due_date']) + )); + $comments .= $transaction_Details . $novalnetPaymentReference; + if($request['status'] == '100'){ + NovalnetUtil::guarantee_mail(array( + 'comments' => '
' . $comments, + 'order_no' => $request['order_id'], + ),$datas); + } + $param['payment_details'] = $on_hold_serialize_data; + } + if (isset($data['paypal_transaction_id']) && $data['paypal_transaction_id'] != '') { + tep_db_perform('novalnet_transaction_detail', array( + 'payment_ref' => serialize(array( + 'paypal_transaction_id' => $data['paypal_transaction_id'] + )) + ), 'update', 'tid="' . $request['tid'] . '"'); + } + $order_status = ($order_status > 0) ? $order_status : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform('novalnet_transaction_detail', $param, "update", "tid='" . $request['tid'] . "'"); + + self::updateOrderStatus($request['order_id'], $order_status, $comments, true, true); + } else { + $message = !empty($data['status_text']) ? $data['status_text'] : (!empty($data['status_desc']) ? $data['status_desc'] : (!empty($data['status_message']) ? $data['status_message'] : MODULE_PAYMENT_NOVALNET_TRANSACTION_ERROR)); + return $message; + } + return ''; + } + + /** + * Perform transaction refund process + * @param $request + * + * @return string + */ + static public function refundTransAmount($request) + { + + $remote_ip = (filter_var($_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) || $_SERVER['REMOTE_ADDR'] == '::1' || empty($_SERVER['REMOTE_ADDR'])) ? '127.0.0.1' : $_SERVER['REMOTE_ADDR']; + $refund_params = array( + 'vendor' => $request['vendor'], + 'product' => $request['product'], + 'key' => $request['payment_id'], + 'tariff' => $request['tariff'], + 'auth_code' => $request['auth_code'], + 'refund_request' => '1', + 'tid' => $request['tid'], + 'refund_param' => $request['refund_trans_amount'], + 'remote_ip' => $remote_ip + ); + + if ($request['refund_ref'] != '') { + $refund_params['refund_ref'] = $request['refund_ref']; + } + $response = NovalnetUtil::doPaymentCall('https://payport.novalnet.de/paygate.jsp', $refund_params); + parse_str($response, $data); + $order_status = ''; + $currencies = new currencies(); + $param['gateway_status'] = $data['tid_status']; + if ($data['status'] == 100) { + $message = ''; + + $amount_formatted = $currencies->format($request['refund_trans_amount'] / 100, false, $request['refund_trans_amount_currency']); + + $message .= PHP_EOL . sprintf(NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_REFUND_PARENT_TID_MSG), $request['tid'], $amount_formatted); + if (!empty($data['tid'])) { + $message .= sprintf(NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_REFUND_CHILD_TID_MSG), $data['tid']); + } + $message .= PHP_EOL; + $select_query = tep_db_query("SELECT orders_status from " . TABLE_ORDERS . " where orders_id = " . tep_db_input($request['order_id'])); + $order_status = tep_db_fetch_array($select_query); + $order_status_value = $order_status['orders_status']; + tep_db_perform('novalnet_transaction_detail', $param, "update", "tid='" . $request['tid'] . "'"); + + if (!empty($data['tid']) && $request['payment_id'] != 6) { + $nn_existing_trans_data = self::getNovalnetTransDetails($request['order_id'], true); + NovalnetUtil::logInitialTransaction(array( + 'tid' => $data['tid'], + 'vendor' => $request['vendor'], + 'product' => $request['product'], + 'tariff_id' => $request['tariff'], + 'auth_code' => $request['auth_code'], + 'subs_id' => $request['subs_id'], + 'payment_id' => $request['payment_id'], + 'payment_type' => $request['payment_type'], + 'amount' => $data['amount'], + 'currency' => $data['currency'], + 'order_no' => $request['order_id'], + 'test_mode' => $request['test_mode'], + 'additional_note' => $request['additional_note'], + 'gateway_status' => $data['tid_status'], + 'customer_id' => $nn_existing_trans_data['customer_id'] + )); + } + if ($param['gateway_status'] != 100) { + $order_status_value = (MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED > 0) ? MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform(TABLE_ORDERS, array( + 'orders_status' => $order_status_value + ), 'update', 'orders_id="' . $request['order_id'] . '"'); + } + self::updateOrderStatus($request['order_id'], $order_status_value, $message, true, true); + return ''; + } else { + return NovalnetUtil::getTransactionMessage($data); + } + } + + /** + * Perform transaction booking + * @param $request + * + * @return string + */ + static public function bookTransAmount($request) + { + $remote_ip = (filter_var($_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) || $_SERVER['REMOTE_ADDR'] == '::1' || empty($_SERVER['REMOTE_ADDR'])) ? '127.0.0.1' : $_SERVER['REMOTE_ADDR']; + $select_query = tep_db_query("SELECT zerotrxndetails FROM novalnet_transaction_detail WHERE order_no='" . tep_db_input($request['order_id']) . "'"); + $transInfo = tep_db_fetch_array($select_query); + + $urlparam = unserialize($transInfo['zerotrxndetails']); + + $urlparam['amount'] = $request['book_amount']; + $urlparam['order_no'] = $request['order_id']; + $urlparam['payment_ref'] = $request['tid']; + $urlparam['remote_ip'] = $remote_ip; + + + if (isset($urlparam['pin_by_callback']) || isset($urlparam['pin_by_sms'])) { + unset($urlparam['pin_by_callback'], $urlparam['pin_by_sms']); + } + if ($urlparam['payment_type'] == 'DIRECT_DEBIT_SEPA') { + $urlparam['sepa_due_date'] = date('Y-m-d', strtotime('+' . $urlparam['sepa_due_date_val'] . ' days')); + unset($urlparam['sepa_due_date_val']); + } + $response = NovalnetUtil::doPaymentCall('https://payport.novalnet.de/paygate.jsp', $urlparam); + parse_str($response, $data); + if ($data['status'] == 100) { + $select_query = tep_db_query("SELECT orders_status from " . TABLE_ORDERS . " where orders_id = " . tep_db_input($request['order_id'])); + $orderInfo = tep_db_fetch_array($select_query); + $currencies = new currencies(); + $amount_formatted = $currencies->format($request['book_amount'] / 100, false, $request['amount_currency']); + self::updateOrderStatus($request['order_id'], $orderInfo['orders_status'], PHP_EOL . sprintf(NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_TRANS_BOOKED_MESSAGE), $amount_formatted, $data['tid']) . PHP_EOL, true, true); + $test_mode_msg = (isset($data['test_mode']) && $data['test_mode'] == 1) ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''; + $message = PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $data['tid'] . $test_mode_msg; + $param['tid'] = $data['tid']; + tep_db_perform('novalnet_subscription_detail', $param, "update", "order_no='" . tep_db_input($request['order_id']) . "'"); + $param['amount'] = $urlparam['amount']; + $param['callback_amount'] = $urlparam['amount']; + $param['gateway_status'] = $data['tid_status']; + $order_status = ($orderInfo['orders_status'] > 0) ? $orderInfo['orders_status'] : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform('novalnet_transaction_detail', $param, "update", "order_no='" . tep_db_input($request['order_id']) . "'"); + self::updateOrderStatus($request['order_id'], $order_status, $message, true, true); + } else { + return (!empty($data['status_text']) ? $data['status_text'] : (!empty($data['status_desc']) ? $data['status_desc'] : (!empty($data['status_message']) ? $data['status_message'] : MODULE_PAYMENT_NOVALNET_TRANSACTION_ERROR))); + } + return ''; + } + + /** + * Perform transaction amount / due_date update process + * @param $request + * + * @return string + */ + static public function updateTransAmount($request) + { + $remote_ip = (filter_var($_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) || $_SERVER['REMOTE_ADDR'] == '::1' || empty($_SERVER['REMOTE_ADDR'])) ? '127.0.0.1' : $_SERVER['REMOTE_ADDR']; + $amount_change_request = array( + 'vendor' => $request['vendor'], + 'product' => $request['product'], + 'key' => $request['payment_id'], + 'tariff' => $request['tariff'], + 'auth_code' => $request['auth_code'], + 'edit_status' => '1', + 'tid' => $request['tid'], + 'status' => 100, + 'update_inv_amount' => '1', + 'amount' => $request['amount'], + 'remote_ip' => $remote_ip + ); + if ($request['due_date'] != '0000-00-00' && $request['due_date'] != '') { + $amount_change_request['due_date'] = date('Y-m-d', strtotime($request['due_date'])); + } + $response = NovalnetUtil::doPaymentCall('https://payport.novalnet.de/paygate.jsp', $amount_change_request); + parse_str($response, $data); + if ($data['status'] == 100) { + $trans_comments = ''; + $currencies = new currencies(); + $amount_formatted = $currencies->format($request['amount'] / 100, false, $request['amount_currency']); + + $sepa_message = PHP_EOL . sprintf(NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_TRANS_UPDATED_SEPA_MESSAGE), $amount_formatted) . PHP_EOL; + $invoice_message = PHP_EOL . sprintf(NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_TRANS_UPDATED_MESSAGE), $amount_formatted, $amount_change_request['due_date'] ) . PHP_EOL; + + $select_orderstatus = tep_db_query("SELECT orders_status from " . TABLE_ORDERS . " where orders_id = " . tep_db_input($request['order_id'])); + $orderInfo = tep_db_fetch_array($select_orderstatus); + $param['gateway_status'] = $data['tid_status']; + $param['amount'] = $request['amount']; + if ($request['payment_id'] == 37) + $param['callback_amount'] = $request['amount']; + tep_db_perform('novalnet_transaction_detail', $param, "update", "tid='" . $request['tid'] . "'"); + + if ($request['payment_id'] == 27) { + $transaction_info = self::getNovalnetTransDetails($request['order_id']); + $tables_sql = tep_db_query('select table_name from information_schema.columns where table_schema = "' . DB_DATABASE . '"'); + while ($result = tep_db_fetch_array($tables_sql)) { + if ($result['table_name'] == 'novalnet_preinvoice_transaction_detail' && $transaction_info['payment_details'] == '') { + $accountInfo = self::getInvPrePaymentDetails($transaction_info['tid']); + } + } + $param['amount'] = $request['amount']; + $trans_comments = ''; + $trans_comments = PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $request['tid'] . PHP_EOL; + $trans_comments .= (($transaction_info['test_mode'] == 1) ? MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + $payment_ref = $transaction_info['payment_ref']; + list($transDetails, $bank_details) = NovalnetUtil::formInvoicePrepaymentComments(array( + 'invoice_accountholder' => ($accountInfo['account_holder']) ? $accountInfo['account_holder'] : $transaction_info['payment_details']['account_holder'], + 'invoice_bankname' => $accountInfo['bank_name'] ? $accountInfo['bank_name'] : $transaction_info['payment_details']['bank_name'], + 'invoice_bankplace' => $accountInfo['bank_city'] ? $accountInfo['bank_city'] : $transaction_info['payment_details']['bank_city'], + 'amount' => sprintf("%.2f", ($amount_change_request['amount'] / 100)), + 'currency' => $accountInfo['currency'] ? $accountInfo['currency'] : $transaction_info['payment_details']['currency'], + 'tid' => $accountInfo['tid'] ? $accountInfo['tid'] : $transaction_info['payment_details']['tid'], + 'invoice_iban' => $accountInfo['bank_iban'] ? $accountInfo['bank_iban'] : $transaction_info['payment_details']['bank_iban'], + 'invoice_bic' => $accountInfo['bank_bic'] ? $accountInfo['bank_bic'] : $transaction_info['payment_details']['bank_bic'], + 'due_date' => $amount_change_request['due_date'] + )); + $trans_comments .= $transDetails; + + $trans_comments .= NovalnetUtil::novalnetReferenceComments( $request['order_id'], $request['payment_name'], $request); + + $param['payment_details'] = serialize($bank_details); + } + $order_status = ($orderInfo['orders_status'] > 0) ? $orderInfo['orders_status'] : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform('novalnet_transaction_detail', $param, "update", "tid='" . $request['tid'] . "'"); + $request['payment_id'] == 37 ? $message = $sepa_message : $message = $invoice_message; + self::updateOrderStatus($request['order_id'], $order_status, $message . $trans_comments, true, true); + } else { + return (!empty($data['status_text']) ? $data['status_text'] : (!empty($data['status_desc']) ? $data['status_desc'] : (!empty($data['status_message']) ? $data['status_message'] : MODULE_PAYMENT_NOVALNET_TRANSACTION_ERROR))); + } + return ''; + } + + /** + * Perform transaction subscription stop process + * @param $request + * + * @return string + */ + static public function subscriptionTransStop($request) + { + $remote_ip = (filter_var($_SERVER['REMOTE_ADDR'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) || $_SERVER['REMOTE_ADDR'] == '::1' || empty($_SERVER['REMOTE_ADDR'])) ? '127.0.0.1' : $_SERVER['REMOTE_ADDR']; + $sql_val = tep_db_fetch_array(tep_db_query('SELECT parent_tid FROM novalnet_subscription_detail where tid=' . $request['tid'])); + $parent_tid = !empty($sql_val['parent_tid']) ? $sql_val['parent_tid'] : $request['tid']; + $subscription_params = array( + 'vendor' => $request['vendor'], + 'product' => $request['product'], + 'key' => $request['payment_id'], + 'tariff' => $request['tariff_id'], + 'auth_code' => $request['auth_code'], + 'cancel_sub' => '1', + 'tid' => $parent_tid, + 'cancel_reason' => $request['termination_reason'], + 'remote_ip' => $remote_ip + ); + + $response = NovalnetUtil::doPaymentCall('https://payport.novalnet.de/paygate.jsp', $subscription_params); + parse_str($response, $data); + $params['gateway_status'] = $data['tid_status']; + if ($data['status'] == 100) { + $order_status_value = (MODULE_PAYMENT_NOVALNET_SUBSCRIPTION_CANCEL_STATUS > 0) ? MODULE_PAYMENT_NOVALNET_SUBSCRIPTION_CANCEL_STATUS : DEFAULT_ORDERS_STATUS_ID; + $message = PHP_EOL . NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_SUBS_CANCEL_REASON_MESSAGE) . $request['termination_reason'] . PHP_EOL; + $db_query = tep_db_query('SELECT order_no from novalnet_subscription_detail WHERE parent_tid = "' . $parent_tid . '"'); + while ($row = tep_db_fetch_array($db_query)) { + self::updateOrderStatus($row['order_no'], $order_status_value, $message, true, true); + } + + tep_db_perform('novalnet_transaction_detail', $params, "update", "tid='" . $parent_tid . "'"); + $param = array( + 'termination_reason' => $request['termination_reason'], + 'termination_at' => date('Y-m-d h:i:s') + ); + + $subs_details = tep_db_fetch_array(tep_db_query('SELECT subs_id from novalnet_subscription_detail WHERE tid = "' . $parent_tid . '"')); + tep_db_perform('novalnet_subscription_detail', $param, 'update', 'subs_id = "' . $subs_details['subs_id'] . '"'); + tep_db_perform(TABLE_ORDERS, array( + 'orders_status' => $order_status_value + ), 'update', 'orders_id="' . $request['order_id'] . '"'); + } else { + return (!empty($data['status_text']) ? $data['status_text'] : (!empty($data['status_desc']) ? $data['status_desc'] : (!empty($data['status_message']) ? $data['status_message'] : MODULE_PAYMENT_NOVALNET_TRANSACTION_ERROR))); + } + } + + /** + * Function to update order status as per Merchant selection + * @param $order_id + * @param $orders_status_id + * @param $message + * @param $insertstatushistory + * @param $customer_notified + * + * @return boolean + */ + static public function updateOrderStatus($order_id = '', $orders_status_id = '', $message = '', $insertstatushistory = true, $customer_notified = false) + { + $orders_status_id = ($orders_status_id > 0) ? $orders_status_id : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform(TABLE_ORDERS, array( + 'orders_status' => $orders_status_id + ), 'update', 'orders_id="' . $order_id . '"'); + if ($insertstatushistory) { + $customer_notified_status = (($customer_notified) ? 1 : 0); + tep_db_query("insert into " . TABLE_ORDERS_STATUS_HISTORY . "(orders_id, date_added, customer_notified, comments, orders_status_id) values ( " . $order_id . ", NOW(), " . $customer_notified_status . ", '" . $message . "', " . $orders_status_id . ")"); + } + return true; + } + + /** + * Get Novalnet transaction information from novalnet_transaction_detail table + * @param $order_no + * @param $customer_id + * + * @return array + */ + static public function getNovalnetTransDetails($order_no, $customer_id = false) + { + $select_query = ($customer_id == true) ? tep_db_query("SELECT customer_id FROM novalnet_transaction_detail WHERE order_no='" . tep_db_input($order_no) . "'") : tep_db_query("SELECT tid, vendor, product, tariff, auth_code, subs_id, payment_id, payment_type, amount, total_amount, gateway_status, date, test_mode, customer_id, zero_transaction, payment_details,payment_ref,callback_amount FROM novalnet_transaction_detail WHERE order_no='" . tep_db_input($order_no) . "'"); + $transInfo = tep_db_fetch_array($select_query); + $transInfo['payment_details'] = unserialize($transInfo['payment_details']); + + return $transInfo; + } + + /** + * Get Novalnet Invoice/Prepayment transaction information from novalnet_preinvoice_transaction_detail table + * @param $tid + * + * @return array + */ + static public function getInvPrePaymentDetails($tid) + { + $table_sql = tep_db_query('select table_name from information_schema.columns where table_schema = "' . DB_DATABASE . '" + AND table_name= "novalnet_preinvoice_transaction_detail"'); + $result = tep_db_fetch_array($table_sql); + if (empty($result)) + return false; + + $sql_query = tep_db_query("SELECT tid, order_no, test_mode, account_holder, account_number, bank_code, bank_name, bank_city, amount, currency, bank_iban, bank_bic, due_date FROM novalnet_preinvoice_transaction_detail WHERE tid='" . tep_db_input($tid) . "'"); + return tep_db_fetch_array($sql_query); + } + +} +?> diff --git a/admin/includes/languages/english/modules/novalnet/novalnet.php b/admin/includes/languages/english/modules/novalnet/novalnet.php new file mode 100644 index 0000000..0a94579 --- /dev/null +++ b/admin/includes/languages/english/modules/novalnet/novalnet.php @@ -0,0 +1,95 @@ +support@novalnet.de'); +define('MODULE_PAYMENT_NOVALNET_REFUND_REFERENCE_TEXT','Refund reference'); +define('MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS', 'Novalnet transaction details'); +define('MODULE_PAYMENT_NOVALNET_TRANSACTION_ID', 'Novalnet transaction ID: '); +define('MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG', 'Test order'); +define('MODULE_PAYMENT_NOVALNET_INVOICE_COMMETNS_PARAGRAPH', 'Please transfer the amount to the below mentioned account details of our payment processor Novalnet'); +define('MODULE_PAYMENT_NOVALNET_DUE_DATE', 'Due date'); +define('MODULE_PAYMENT_NOVALNET_ACCOUNT_HOLDER', 'Account holder'); +define('MODULE_PAYMENT_NOVALNET_IBAN', 'IBAN'); +define('MODULE_PAYMENT_NOVALNET_BIC', 'BIC'); +define('MODULE_PAYMENT_NOVALNET_BANK', 'Bank'); +define('MODULE_PAYMENT_NOVALNET_AMOUNT', 'Amount'); +define('MODULE_PAYMENT_NOVALNET_PAYMENT_MULTI_TEXT', 'Please use any one of the following references as the payment reference, as only through this way your payment is matched and assigned to the order:'); +define('MODULE_PAYMENT_NOVALNET_PAYMENT_SINGLE_TEXT', 'Please use the following payment reference for your money transfer, as only through this way your payment is matched and assigned to the order:'); +define('MODULE_PAYMENT_NOVALNET_INVPRE_REF', 'Payment Reference' ); +define('MODULE_PAYMENT_NOVALNET_INVPRE_MULTI_REF', 'Payment Reference%s'); +define('MODULE_PAYMENT_NOVALNET_ORDER_NUMBER', 'Order number'); +define('MODULE_PAYMENT_NOVALNET_VALID_ACCOUNT_CREDENTIALS_ERROR','Your account details are invalid'); +define('MODULE_PAYMENT_NOVALNET_AMOUNT_ERROR_MESSAGE','The amount is invalid'); +define('MODULE_PAYMENT_NOVALNET_SUBS_CANCEL_TEXT','Are you sure you want to cancel the subscription?'); +define('MODULE_PAYMENT_NOVALNET_INVALID_DATE','Invalid due date'); diff --git a/admin/includes/languages/german/modules/novalnet/novalnet.php b/admin/includes/languages/german/modules/novalnet/novalnet.php new file mode 100644 index 0000000..890f73f --- /dev/null +++ b/admin/includes/languages/german/modules/novalnet/novalnet.php @@ -0,0 +1,94 @@ +support@novalnet.de'); +define('MODULE_PAYMENT_NOVALNET_REFUND_REFERENCE_TEXT', 'Referenz für die Rückerstattung'); +define('MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS', 'Novalnet-Transaktionsdetails'); +define('MODULE_PAYMENT_NOVALNET_TRANSACTION_ID', 'Novalnet Transaktions-ID: '); +define('MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG', 'Testbestellung'); +define('MODULE_PAYMENT_NOVALNET_INVOICE_COMMETNS_PARAGRAPH', 'Überweisen Sie bitte den Betrag an die unten aufgeführte Bankverbindung unseres Zahlungsdienstleisters Novalnet.'); +define('MODULE_PAYMENT_NOVALNET_DUE_DATE', 'Fälligkeitsdatum'); +define('MODULE_PAYMENT_NOVALNET_ACCOUNT_HOLDER', 'Kontoinhaber'); +define('MODULE_PAYMENT_NOVALNET_IBAN', 'IBAN'); +define('MODULE_PAYMENT_NOVALNET_BIC', 'BIC'); +define('MODULE_PAYMENT_NOVALNET_BANK', 'Bank'); +define('MODULE_PAYMENT_NOVALNET_AMOUNT', 'Betrag'); +define('MODULE_PAYMENT_NOVALNET_PAYMENT_MULTI_TEXT', 'Bitte verwenden Sie einen der unten angegebenen Verwendungszwecke für die Überweisung, da nur so Ihr Geldeingang zugeordnet werden kann:'); +define('MODULE_PAYMENT_NOVALNET_PAYMENT_SINGLE_TEXT', 'Bitte verwenden Sie nun der unten angegebenen Verwendungszweck für die Überweisung, da nur so Ihr Geldeingang zugeordnet werden kann:'); +define('MODULE_PAYMENT_NOVALNET_INVPRE_REF', 'Verwendungszweck' ); +define('MODULE_PAYMENT_NOVALNET_INVPRE_MULTI_REF', 'Verwendungszweck%s'); +define('MODULE_PAYMENT_NOVALNET_ORDER_NUMBER', 'Bestellnummer'); +define('MODULE_PAYMENT_NOVALNET_AMOUNT_ERROR_MESSAGE','Ungültiger Betrag'); +define('MODULE_PAYMENT_NOVALNET_INVALID_DATE','Ungültiges Fälligkeitsdatum'); +define('MODULE_PAYMENT_NOVALNET_SUBS_CANCEL_TEXT','Sind Sie sicher, dass Sie das Abonnement kündigen wollen?'); diff --git a/admin/novalnet.php b/admin/novalnet.php new file mode 100644 index 0000000..f14be7a --- /dev/null +++ b/admin/novalnet.php @@ -0,0 +1,803 @@ + + + > + + + + <?php echo TITLE; ?> + + + + + + + + + + \s*$/g, + + // We have to close these tags to support XHTML (#13200) + wrapMap = { + option: [ 1, "" ], + legend: [ 1, "
", "
" ], + area: [ 1, "", "" ], + param: [ 1, "", "" ], + thead: [ 1, "
+ + + + +
+
+ +
+ + + +
+ +
+ + + +
+ + + + + + + + + + +
+ +
+ + +
' method='POST'> + + ' /> + + + + + + + + + +
: + +
+ + +
+ + +
+ + + + +
+ + + + + + + + + + +
+ +
+
+ +
' method='POST'> + + ' /> + + + + + + + + +
: + + +
+ + +
+ + +
+ + + +
+ + + + + + + + + + +
+ +
+ +
' method='POST'> + + ' /> + ' /> + + $order_date) { + ?> + + + + + +
: + +
+ + + + + + +
: + ' /> +
+ + + + + +
+ + +
+ + +
+ + + +
+ + + + + + + + + + +
+ +
+
+ +
' method='POST'> + + ' /> + + + + + + + + + + + + + + + + +
: + ' /> +
: + + + + + +
+ +
+ +
+ + + +
+ + + + + + + + + + +
+ +
+ + +
' method='POST'> + + ' /> + + + + + + + + + + +
: + ' /> +
+ + +
+ +
+ + + + + + + + + + + + $datas['tid'], + 'status' => $request['trans_status'], + 'payment_id' => $datas['payment_id'], + 'vendor' => $datas['vendor'], + 'product' => $datas['product'], + 'tariff' => $datas['tariff'], + 'auth_code' => $datas['auth_code'], + 'order_id' => $request['oID'] + )); + + displayMessageText($request, $process_result, $messageStack, 'trans_confirm'); + } + } + } + + /** + * Novalnet subscription transaction cancellation process + * @param $request + * @param $datas + * @param $messageStack + * + * @return none + */ + function doSubscriptionCancel($request, $datas, $messageStack) + { + if (isset($request['nn_trans_confirm'])) { + if (!empty($request['subscribe_termination_reason'])) { + $process_result = NovalnetAdmin::subscriptionTransStop(array( + 'tid' => $datas['tid'], + 'payment_id' => $datas['payment_id'], + 'termination_reason' => $request['subscribe_termination_reason'], + 'vendor' => $datas['vendor'], + 'product' => $datas['product'], + 'tariff_id' => $datas['tariff'], + 'auth_code' => $datas['auth_code'], + 'order_id' => $request['oID'] + )); + displayMessageText($request, $process_result, $messageStack, 'subs_cancel'); + } + } + } + + /** + * Novalnet Refund process + * @param $request + * @param $datas + * @param $messageStack + * @param $order + * + * @return none + */ + function dorefundTransAmount($request, $datas, $messageStack, $order) + { + if (isset($request['nn_trans_confirm'])) { + if (!empty($request['payment_refund'])) { + + if (!empty($request['refund_trans_amount'])) { + $process_result = NovalnetAdmin::refundTransAmount(array( + 'tid' => $datas['tid'], + 'refund_ref' => isset($request['refund_ref']) ? trim($request['refund_ref']) : '', + 'refund_trans_amount' => isset($request['refund_trans_amount']) ? trim($request['refund_trans_amount']) : '', + 'refund_trans_amount_currency' => $order->info['currency'], + 'payment_id' => $datas['payment_id'], + 'payment_type' => $datas['payment_type'], + 'vendor' => $datas['vendor'], + 'product' => $datas['product'], + 'tariff' => $datas['tariff'], + 'auth_code' => $datas['auth_code'], + 'test_mode' => $datas['test_mode'], + 'order_id' => $request['oID'], + 'subs_id' => $datas['subs_id'], + )); + + displayMessageText($request, $process_result, $messageStack, 'amount_refund'); + } + } + } + } + + /** + * Novalnet transaction amount and due_date updation process + * @param $request + * @param $datas + * @param $messageStack + * @param $order + * + * @return none + */ + function doAmountUpdate($request, $datas, $messageStack, $order) + { + if (!in_array($datas['payment_id'], array(27, 37))) { + header('Location: ' . DIR_WS_CATALOG . 'admin/orders.php?page=1&oID=' . $request['oID'] . '&action=edit'); + exit; + } + + if (!empty($request['new_amount'])) { + $input_due_date = '0000-00-00'; + + if ($request['amount_change_year'] != '' && $request['amount_change_month'] != '' && $request['amount_change_day'] != '') { + $input_due_date = $request['amount_change_year'] . '-' . $request['amount_change_month'] . '-' . $request['amount_change_day']; + } else { + $input_due_date = $datas['due_date']; + } + + if (in_array($datas['payment_type'], array('novalnet_invoice', 'novalnet_prepayment')) && !checkmydate($input_due_date)) { + displayMessageText($request, NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_INVALID_DATE), $messageStack, 'amount_change'); + } + if ($input_due_date != '0000-00-00' && strtotime($input_due_date) < strtotime(date('Y-m-d')) && in_array($datas['payment_type'], array('novalnet_invoice', 'novalnet_prepayment'))) { + $process_result = MODULE_PAYMENT_NOVALNET_VALID_DUEDATE_MESSAGE; + } else { + $process_result = NovalnetAdmin::updateTransAmount(array( + 'tid' => $datas['tid'], + 'status' => $datas['gateway_status'], + 'payment_id' => $datas['payment_id'], + 'vendor' => $datas['vendor'], + 'product' => $datas['product'], + 'tariff' => $datas['tariff'], + 'auth_code' => $datas['auth_code'], + 'order_id' => $request['oID'], + 'due_date' => $input_due_date, + 'amount' => $request['new_amount'], + 'amount_currency' => $order->info['currency'] + )); + } + displayMessageText($request, $process_result, $messageStack, 'amount_change'); + } + } + + /** + * Validate transaction due date + * @param $date + * + * @return boolean + */ + function checkmydate($date) + { + $tempDate = explode('-', $date); + if (checkdate($tempDate[1], $tempDate[2], $tempDate[0])) { //checkdate(month, day, year) + return true; + } else { + return false; + } + } + + /** + * Novalnet book process + * @param $request + * @param $datas + * @param $messageStack + * @param $order + * + * @return none + */ + function doTransactionBook($request, $datas, $messageStack, $order) + { + if (isset($request['nn_trans_confirm'])) { + if (!empty($request['process_book_amount']) && !empty($request['book_amount'])) { + $process_result = NovalnetAdmin::bookTransAmount(array( + 'vendor' => $datas['vendor'], + 'product' => $datas['product'], + 'tariff_id' => $datas['tariff'], + 'auth_code' => $datas['auth_code'], + 'tid' => $datas['tid'], + 'amount_currency' => $order->info['currency'], + 'book_amount' => isset($request['book_amount']) ? trim($request['book_amount']) : '', + 'order_id' => $request['oID'] + )); + displayMessageText($request, $process_result, $messageStack, 'book_amount'); + } + } + } + + /** + * Display order update message + * @param $request + * @param $content + * @param $messageStack + * @param $type + * + * @return none + */ + function displayMessageText($request, $content, $messageStack, $type) + { + if ($content == '') { + $messageStack->add_session(MODULE_PAYMENT_NOVALNET_ORDER_UPDATE, 'success'); + header('Location: ' . DIR_WS_CATALOG . 'admin/orders.php?page=1&oID=' . $request['oID'] . '&action=edit&message=' . $content); + exit; + } else { + header('Location: ' . DIR_WS_CATALOG . 'admin/novalnet.php?' . $type . '=1&oID=' . $request['oID'] . '&action=edit&message=' . $content); + exit; + } + } +?> diff --git a/ext/modules/payment/novalnet/callback/callback.php b/ext/modules/payment/novalnet/callback/callback.php new file mode 100644 index 0000000..33264e0 --- /dev/null +++ b/ext/modules/payment/novalnet/callback/callback.php @@ -0,0 +1,837 @@ + $request_params['vendor_id'], + 'vendor_authcode' => $request_params['vendor_authcode'], + 'product_id' => $request_params['product_id'], + 'product_url' => $request_params['product_url'], + 'aff_accesskey' => $request_params['aff_accesskey'], + 'activation_date' => (($request_params['activation_date'] != '') ? date('Y-m-d H:i:s', strtotime($request_params['activation_date'])) : ''), + 'aff_id' => $request_params['aff_id'], + 'aff_authcode' => $request_params['aff_authcode'] + ), 'insert'); + //Send notification mail to Merchant + $nnvendor_script->sendNotifyMail(array( + 'comments' => 'Novalnet callback script executed successfully with Novalnet account activation information.', + 'order_no' => '' + ), false); + $nnvendor_script->displayMessage('Novalnet callback script executed successfully with Novalnet account activation information.' . PHP_EOL); +} else { + $nntrans_history = $nnvendor_script->getOrderReference(); + include_once(DIR_FS_CATALOG . DIR_WS_INCLUDES . 'languages/' . $nntrans_history['nn_order_lang'] . '/modules/payment/novalnet.php'); + $nncapture_params = $nnvendor_script->getCaptureParams(); // Collect callback capture parameters + $paymentlevel = $nnvendor_script->getPaymentTypeLevel(); + + //Cancellation of a Subscription + if (($nncapture_params['payment_type'] == 'SUBSCRIPTION_STOP' && $nncapture_params['status'] == 100) || ($nncapture_params['status'] != '100' && !empty($nncapture_params['subs_billing']) && $paymentlevel == 0)) { + $nnvendor_script->subscriptionCancel($nntrans_history); + } + $status_check = ($nncapture_params['tid_status'] == '100' && $nncapture_params['status'] == '100'); + + $formatted_amount = $currencies->format($nncapture_params['amount'] / 100, false, $nncapture_params['currency']); + + switch ($paymentlevel) { + case 2: // Type of Creditentry payment and Collections available + if ($status_check) { + + $callback_comments = + PHP_EOL . sprintf(NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_CALLBACK_INVOICE_CREDIT_COMMENTS), $nncapture_params['tid_payment'], $formatted_amount, date('Y-m-d'), date('H:i:s'), $nncapture_params['shop_tid']) . PHP_EOL; + + $total_amount = $nntrans_history['order_paid_amount'] + $nntrans_history['callback_old_amount'] + $nncapture_params['amount']; + + if ($nntrans_history['order_total_amount'] <= $total_amount) { + + $callback_status_id = (!empty($nntrans_history['callback_script_status']) ? $nntrans_history['callback_script_status'] : 1); + + $callback_greater_amount = ($total_amount > $nntrans_history['order_total_amount']) ? ' Paid amount is greater than Order amount.' : ''; + + //Update callback order status due to full payment + tep_db_perform(TABLE_ORDERS, array( + 'orders_status' => $callback_status_id + ), 'update', 'orders_id="' . $nntrans_history['order_no'] . '"'); + + } else { + + //Partial Payment paid + $callback_status_id = $nntrans_history['order_current_status']; + } + + $nnvendor_script->updatefinalcomments($nncapture_params, $callback_comments, $callback_status_id, $nntrans_history['order_no'], $callback_greater_amount, $total_amount); + } + break; + case 1: // Chargeback payment type + if ($status_check) { + + $message = (in_array($nncapture_params['payment_type'], array('GUARANTEED_SEPA_BOOKBACK','GUARANTEED_INVOICE_BOOKBACK','CREDITCARD_BOOKBACK', 'PAYPAL_BOOKBACK', 'PRZELEWY24_REFUND','REFUND_BY_BANK_TRANSFER_EU'))) ? NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_CALLBACK_BOOKBACK_COMMENTS) : NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_CALLBACK_CHARGEBACK_COMMENTS); + $callback_comments = PHP_EOL . sprintf($message, $nncapture_params['tid_payment'], $formatted_amount, date('Y-m-d'), date('H:i:s'), $nncapture_params['tid']) . PHP_EOL; + $nnvendor_script->updatefinalcomments($nncapture_params, $callback_comments, $nntrans_history['order_current_status'], $nntrans_history['order_no']); + } + break; + case 0: // Type of payment available + if ($nncapture_params['subs_billing'] == 1 && (in_array($nncapture_params['tid_status'], array('100', '90', '91','98', '99', '86', '85')))) { + + $order_comments = MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . ' ' . $nncapture_params['tid'] . PHP_EOL; + $order_comments .= !empty($nncapture_params['test_mode']) ? MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL.PHP_EOL : ''; + + if (in_array($nncapture_params['payment_type'], array('INVOICE_START', 'PAYPAL'))) + $nncapture_params['amount'] = 0; + + $callback_comments = PHP_EOL . sprintf(NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_CALLBACK_SUBS_RECURRING_COMMENTS), $nncapture_params['shop_tid'], $formatted_amount, date('Y-m-d'), date('H:i:s'), $nncapture_params['tid']); + + $next_subs_cycle = !empty($nncapture_params['next_subs_cycle']) ? $nncapture_params['next_subs_cycle'] : (!empty($nncapture_params['paid_until']) ? $nncapture_params['paid_until'] : ''); + + $callback_comments .= PHP_EOL . NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_CALLBACK_CHARGING_DATE_COMMENTS) . $next_subs_cycle . PHP_EOL; + + $nnvendor_script->createOrder($nntrans_history['order_no'], $nntrans_history['language'], $order_comments); + + $order_status = constant(MODULE_PAYMENT_.strtoupper($nntrans_history['payment_type']). _ORDER_STATUS); + if(in_array($nncapture_params['tid_status'], array('90', '85'))) { + if($nntrans_history['payment_type'] == 'novalnet_paypal') { + $order_status = MODULE_PAYMENT_NOVALNET_PAYPAL_PENDING_ORDER_STATUS; + } + elseif($nntrans_history['payment_type'] == 'novalnet_invoice'){ + $order_status = MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS; + } + } + + $callback_comments .= MODULE_PAYMENT_NOVALNET_REFERENCE_ORDER_TEXT . $nntrans_history['order_no'] . PHP_EOL; + + $nnvendor_script->sendNotifyMail(array('comments' => $callback_comments, 'order_no' => $nntrans_history['order_no'])); + + $nnvendor_script->displayMessage($callback_comments); + + }elseif(($nncapture_params['payment_type'] =='PAYPAL') && in_array( $nntrans_history['gateway_status'] , array(85,90))){ + $order_status = MODULE_PAYMENT_NOVALNET_PAYPAL_ORDER_STATUS; + $callback_comments .= PHP_EOL.sprintf(MODULE_PAYMENT_NOVALNET_GUARANTEE_TRANS_CONFIRM_SUCCESSFUL_MESSAGE, date(DATE_FORMAT, strtotime(date('d.m.Y'))),date('H:i:s')).PHP_EOL; + $nnvendor_script->updatefinalcomments($nncapture_params, $callback_comments, $order_status, $nntrans_history['order_no']); + + exit; + }elseif (in_array($nncapture_params['payment_type'], array('PAYPAL', 'PRZELEWY24')) && $nncapture_params['tid_status'] == 100) { + if ($nntrans_history['callback_amount'] <= 0 ) { + + $callback_comments = PHP_EOL . sprintf(MODULE_PAYMENT_NOVALNET_CALLBACK_UPDATE_COMMENTS, $nncapture_params['shop_tid'], $formatted_amount, date('Y-m-d'), date('H:i:s')) . PHP_EOL; + + tep_db_query("UPDATE novalnet_transaction_detail SET gateway_status= " . $nncapture_params['tid_status'] . " where order_no=" . $nntrans_history['order_no']); + + $order_status = (constant('MODULE_PAYMENT_NOVALNET_'.$nncapture_params['payment_type'].'_ORDER_STATUS') != '0' && constant('MODULE_PAYMENT_NOVALNET_'.$nncapture_params['payment_type'].'_ORDER_STATUS') != '') ? constant('MODULE_PAYMENT_NOVALNET_'.$nncapture_params['payment_type'].'_ORDER_STATUS') : DEFAULT_ORDERS_STATUS_ID; + + tep_db_query("UPDATE " . TABLE_ORDERS . " SET orders_status= " . $order_status . " where orders_id=$nntrans_history[order_no]"); + + $nnvendor_script->updatefinalcomments($nncapture_params, $callback_comments, $order_status, $nntrans_history['order_no']); + } + $nnvendor_script->displayMessage('Novalnet Callbackscript received. Order already Paid'); + + } elseif ($nncapture_params['payment_type'] == 'PRZELEWY24' && $nncapture_params['tid_status'] != '86') { + $message = $nnvendor_script->updatePrzelewyCancelcomments($nntrans_history); + $nnvendor_script->displayMessage($message); + + } else if(in_array($nncapture_params['payment_type'],array('GUARANTEED_INVOICE','GUARANTEED_DIRECT_DEBIT_SEPA','INVOICE_START','DIRECT_DEBIT_SEPA')) && in_array($nncapture_params['tid_status'], array(91,99,100)) && $nncapture_params['status'] == 100 && in_array($nntrans_history['gateway_status'] ,array(75,91,99))){ + + $param = array(); + $callback_comments = $transaction_comments = $transactionCommentsForm = ''; + $test_mode_text = ($nncapture_params['test_mode'] == 1) ? MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG : ''; + if(in_array($nncapture_params['payment_type'],array('GUARANTEED_INVOICE','GUARANTEED_DIRECT_DEBIT_SEPA'))){ + if(in_array($nncapture_params['payment_type'],array('GUARANTEED_INVOICE')) && $nncapture_params['tid_status'] == '100'){ + $transaction_comments .= MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID; + $nn_comments = PHP_EOL . $transaction_comments . $nncapture_params['shop_tid'] . PHP_EOL . $test_mode_text.PHP_EOL; + } + } + if( in_array($nncapture_params['tid_status'],array(99,91)) && $nntrans_history['gateway_status'] == 75){ + $order_status = constant('MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE') > 0 ? constant('MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE') : DEFAULT_ORDERS_STATUS_ID; + $callback_comments .= PHP_EOL. sprintf(MODULE_PAYMENT_GUARANTEE_PAYMENT_PENDING_TO_HOLD_MESSAGE, $nncapture_params['shop_tid'],date(DATE_FORMAT, strtotime(date('d.m.Y'))), date('H:i:s')); + } else if($nncapture_params['tid_status'] == 100 && in_array( $nntrans_history['gateway_status'], array(75,98,85,91,99))){ + + if(in_array ($nncapture_params['payment_type'] , array('INVOICE_CREDIT', 'GUARANTEED_INVOICE')) && in_array( $nntrans_history['gateway_status'] , array(75,91))){ + $order_status = ((constant('MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_ORDER_STATUS') > 0) ? constant('MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_ORDER_STATUS') : DEFAULT_ORDERS_STATUS_ID); + } elseif($nncapture_params['payment_type'] == 'INVOICE_START' && $nntrans_history['gateway_status'] == 91){ + $order_status = ((constant('MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS') > 0) ? constant('MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS') : DEFAULT_ORDERS_STATUS_ID); + }elseif(in_array ($nncapture_params['payment_type'] , array('DIRECT_DEBIT_SEPA' ,'GUARANTEED_DIRECT_DEBIT_SEPA')) && in_array( $nntrans_history['gateway_status'],array(75,99))) { + $order_status = ((constant('MODULE_PAYMENT_NOVALNET_SEPA_ORDER_STATUS') > 0) ? constant('MODULE_PAYMENT_NOVALNET_SEPA_ORDER_STATUS') : DEFAULT_ORDERS_STATUS_ID); + } elseif(in_array($nncapture_params['payment_type'], array('PAYPAL', 'CREDITCARD')) && in_array( $nntrans_history['gateway_status'] , array(85,98))){ + $order_status = constant('MODULE_PAYMENT_'.strtoupper($nntrans_history['payment_type']).'_ORDER_STATUS') > 0 ? constant('MODULE_PAYMENT_'.strtoupper($nntrans_history['payment_type']).'_ORDER_STATUS') : DEFAULT_ORDERS_STATUS_ID; + } + + $callback_comments .= PHP_EOL.sprintf(MODULE_PAYMENT_NOVALNET_GUARANTEE_TRANS_CONFIRM_SUCCESSFUL_MESSAGE, date(DATE_FORMAT, strtotime(date('d.m.Y'))),date('H:i:s')).PHP_EOL; + if(in_array($nncapture_params['payment_type'],array('GUARANTEED_INVOICE','INVOICE_START')) && in_array($nntrans_history['gateway_status'], array(75, 91))){ + + $serialize_data = unserialize($nntrans_history['payment_details']); + + list($transactionCommentsForm, $bank_details) = NovalnetUtil::formInvoicePrepaymentComments(array( + 'invoice_account_holder' => $serialize_data['account_holder'], + 'invoice_bankname' => $serialize_data['bank_name'], + 'invoice_bankplace' => $serialize_data['bank_city'], + 'amount' => sprintf("%.2f", ($serialize_data['amount'] / 100)), + 'currency' => $serialize_data['currency'], + 'tid' => $serialize_data['tid'], + 'invoice_iban' => $serialize_data['bank_iban'], + 'invoice_bic' => $serialize_data['bank_bic'], + 'due_date' => !empty($nncapture_params['due_date']) ? $nncapture_params['due_date'] : '', + 'tid_status' => $nncapture_params['tid_status'] + )); + $vendor_details = array('product'=>$nncapture_params['product_id'], + 'order_no'=> $nntrans_history['order_no'], + 'tid'=> $nncapture_params['shop_tid'], + ); + + // Form payment reference comments + $transactionCommentsForm .= NovalnetUtil::novalnetReferenceComments($nntrans_history['order_no'],$nntrans_history['payment_type'], $vendor_details); + $param['payment_details'] = serialize($serialize_data); + + + NovalnetUtil::guarantee_mail(array( + 'comments' => '
' . PHP_EOL. $callback_comments.PHP_EOL.$nn_comments.PHP_EOL.$transactionCommentsForm, + 'order_no' => $nntrans_history['order_no'], + )); + } + } + + $param ['gateway_status'] = $nncapture_params['tid_status']; + $order_status = (($order_status > 0) ? $order_status : DEFAULT_ORDERS_STATUS_ID); + tep_db_perform('novalnet_transaction_detail', $param, "update", "tid='" . $nncapture_params['shop_tid'] . "'"); + // Update the order status in shop + tep_db_perform(TABLE_ORDERS, array( + 'orders_status' => $order_status + ), 'update', 'orders_id="' . $nntrans_history['order_no'] . '"'); + // To update order details in shop + $nnvendor_script->updateCallbackComments(array( + 'order_no' => $nntrans_history['order_no'], + 'orders_status_id' => $order_status, + 'comments' => $callback_comments. $nn_comments. $transactionCommentsForm + )); + // Send notification mail to Merchant + $nnvendor_script->sendNotifyMail(array( + 'comments' => $callback_comments, + 'order_no' => $nntrans_history['order_no'], + )); + $nnvendor_script->displayMessage($callback_comments. $nn_comments. $transactionCommentsForm); + } else if(in_array($nncapture_params['payment_type'],array('GUARANTEED_INVOICE','GUARANTEED_DIRECT_DEBIT_SEPA')) && $nncapture_params['tid_status'] != 100 && $nncapture_params['status'] != 100 && in_array($nntrans_history['gateway_status'], array(75,91,99))){ + + //Update callback order status due to full payment + tep_db_perform(TABLE_ORDERS, array( + 'orders_status' => MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED + ), 'update', 'orders_id="' . $nntrans_history['order_no'] . '"'); + // To form the server status message + $callback_comments = ''; + $test_mode_text = ($nncapture_params['test_mode'] == 1) ? MODULE_PAYMENT_NOVALNET_TEST_ORDER_MESSAGE : ''; + $callback_comments .= MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID.$nncapture_params['shop_tid'].PHP_EOL.$test_mode_text.PHP_EOL; + $callback_comments .= PHP_EOL.sprintf(MODULE_PAYMENT_GUARANTEE_PAYMENT_CANCELLED_MESSAGE,date(DATE_FORMAT, strtotime(date('d.m.Y'))), date('H:i:s')) . PHP_EOL; + $param ['gateway_status'] = $nncapture_params['tid_status']; + tep_db_perform('novalnet_transaction_detail', $param, "update", "tid='" . $nncapture_params['shop_tid'] . "'"); + + // Update callback comments in order status history table + + // To update order details in shop + $nnvendor_script->updateCallbackComments(array( + 'order_no' => $nntrans_history['order_no'], + 'orders_status_id' => MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED, + 'comments' => $callback_comments + )); + + // Send notification mail to Merchant + $nnvendor_script->sendNotifyMail(array( + 'comments' => $callback_comments, + 'order_no' => $nntrans_history['order_no'], + )); + $nnvendor_script->displayMessage($callback_comments); + } + else { + $nnvendor_script->displayMessage('Novalnet Callbackscript received. Payment type ( ' . $nncapture_params['payment_type'] . ' ) is not applicable for this process!'); + } + break; + DEFAULT: + + $nnvendor_script->displayMessage('Novalnet Callbackscript received. Payment type ( ' . $nncapture_params['payment_type'] . ' ) is not applicable for this process!'); + + break; + } + $nnvendor_script->displayMessage(($nncapture_params['tid_status'] != '100' || $nncapture_params['status'] != '100') ? 'Novalnet callback received. Status is not valid.' : 'Novalnet callback received. Callback Script executed already.'); + +} +class NovalnetVendorScript +{ + + /** @Array Type of payment available - Level : 0 */ + protected $payments = array('CREDITCARD', 'INVOICE_START', 'DIRECT_DEBIT_SEPA', 'GUARANTEED_INVOICE', 'PAYPAL', 'ONLINE_TRANSFER', 'IDEAL', 'EPS', 'GIROPAY', 'GUARANTEED_DIRECT_DEBIT_SEPA', 'PRZELEWY24'); + + /** @Array Type of Chargebacks available - Level : 1 */ + protected $chargebacks = array('RETURN_DEBIT_SEPA', 'CREDITCARD_BOOKBACK', 'CREDITCARD_CHARGEBACK', 'PAYPAL_BOOKBACK', 'REFUND_BY_BANK_TRANSFER_EU', 'PRZELEWY24_REFUND', 'REVERSAL','GUARANTEED_SEPA_BOOKBACK', 'GUARANTEED_INVOICE_BOOKBACK'); + + /** @Array Type of Creditentry payment and Collections available - Level : 2 */ + protected $debit_collections = array('INVOICE_CREDIT', 'CREDIT_ENTRY_CREDITCARD', 'CREDIT_ENTRY_SEPA', 'DEBT_COLLECTION_SEPA', 'DEBT_COLLECTION_CREDITCARD', 'ONLINE_TRANSFER_CREDIT'); + + protected $subscription = array('SUBSCRIPTION_STOP'); + + protected $paymentgroups = array( + 'novalnet_cc' => array('CREDITCARD', 'CREDITCARD_BOOKBACK', 'CREDITCARD_CHARGEBACK', 'CREDIT_ENTRY_CREDITCARD', 'SUBSCRIPTION_STOP', 'DEBT_COLLECTION_CREDITCARD'), + 'novalnet_sepa' => array('DIRECT_DEBIT_SEPA', 'RETURN_DEBIT_SEPA', 'SUBSCRIPTION_STOP', 'DEBT_COLLECTION_SEPA', 'CREDIT_ENTRY_SEPA', 'GUARANTEED_DIRECT_DEBIT_SEPA', 'REFUND_BY_BANK_TRANSFER_EU','GUARANTEED_SEPA_BOOKBACK'), + 'novalnet_ideal' => array('IDEAL', 'REFUND_BY_BANK_TRANSFER_EU', 'ONLINE_TRANSFER_CREDIT', 'REVERSAL'), + 'novalnet_sofortbank' => array('ONLINE_TRANSFER', 'REFUND_BY_BANK_TRANSFER_EU', 'ONLINE_TRANSFER_CREDIT', 'REVERSAL'), + 'novalnet_paypal' => array('PAYPAL', 'SUBSCRIPTION_STOP', 'PAYPAL_BOOKBACK', 'REFUND_BY_BANK_TRANSFER_EU'), + 'novalnet_prepayment' => array('INVOICE_START', 'INVOICE_CREDIT', 'SUBSCRIPTION_STOP' , 'REFUND_BY_BANK_TRANSFER_EU'), + 'novalnet_invoice' => array('INVOICE_START','REFUND_BY_BANK_TRANSFER_EU', 'INVOICE_CREDIT', 'SUBSCRIPTION_STOP', 'GUARANTEED_INVOICE', 'GUARANTEED_INVOICE_BOOKBACK'), + 'novalnet_eps' => array('EPS', 'REFUND_BY_BANK_TRANSFER_EU'), + 'novalnet_giropay' => array('GIROPAY', 'REFUND_BY_BANK_TRANSFER_EU'), + 'novalnet_przelewy24' => array('PRZELEWY24', 'PRZELEWY24_REFUND')); + + /** @Array Callback Capture parameters */ + protected $request_params = array(); + protected $paramsRequired = array(); + protected $affAccountActivationparams = array(); + + function __construct($arycapture = array()) + { + $this->validateIpAddress(); + + if (empty($arycapture)) { + $this->displayMessage('Novalnet callback received. No params passed over!'); + } + + $this->paramsRequired = array('vendor_id', 'tid', 'payment_type', 'status', 'tid_status'); + $this->affAccountActivationparams = array('vendor_id', 'vendor_authcode', 'product_id', 'aff_id', 'aff_accesskey','aff_authcode'); + + if (isset($arycapture['subs_billing']) && $arycapture['subs_billing'] == 1) { + array_push($this->paramsRequired, 'signup_tid'); + + } + elseif (isset($arycapture['payment_type']) && in_array($arycapture['payment_type'], array_merge($this->chargebacks, $this->debit_collections))) { + array_push($this->paramsRequired, 'tid_payment'); + } + + $this->arycaptureparams = $this->validateCaptureParams($arycapture); + } + + /** + * Return capture parameters + * + * @return array + */ + function getCaptureParams() + { + return $this->arycaptureparams; + } + + /** + * Validate IP address + * + * @return none + */ + function validateIpAddress() + { + global $process_testmode; + + $real_host_ip = gethostbyname('pay-nn.de'); + if (empty($real_host_ip)) { + $this->displayMessage('Novalnet HOST IP missing'); + } + $client_ip = tep_get_ip_address(); + $client_ip = (filter_var($client_ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) || empty($client_ip)) ? '127.0.0.1' : $client_ip; + if ($client_ip != $real_host_ip && !$process_testmode) { + $this->displayMessage("Novalnet callback received. Unauthorised access from the IP " . $client_ip, true); + } + } + + /** + * Perform parameter validation process + * @param $arycapture + * + * @return array + */ + function validateCaptureParams($arycapture) + { + if (!isset($arycapture['vendor_activation'])) { + foreach ($this->paramsRequired as $v) { + if ($arycapture[$v] == '') { + $this->displayMessage('Required param ( ' . $v . ' ) missing!'); + } + if (in_array($v, array('tid', 'tid_payment', 'signup_tid')) && !preg_match('/^\d{17}$/', $arycapture[$v])) { + $this->displayMessage('Novalnet callback received. Invalid TID [' . $arycapture[$v] . '] for Order.'); + } + } + + if (!in_array($arycapture['payment_type'], array_merge($this->payments, $this->chargebacks, $this->debit_collections, $this->subscription)) && $arycapture['payment_type'] != 'TRANSACTION_CANCELLATION') { + $this->displayMessage('Novalnet callback received. Payment type ( ' . $arycapture['payment_type'] . ' ) is mismatched!'); + } + + if ($arycapture['payment_type'] != 'SUBSCRIPTION_STOP' && (!is_numeric($arycapture['amount']) || $arycapture['amount'] < 0)) { + $this->displayMessage('Novalnet callback received. The requested amount (' . $arycapture['amount'] . ') is not valid'); + } + + if ($arycapture['payment_type'] == 'SUBSCRIPTION_STOP' && ($arycapture['status'] != 100 || $arycapture['tid_status'] != 100)) { + $status = ($arycapture['status'] != 100) ? $arycapture['status'] : $arycapture['tid_status']; + $this->displayMessage('Novalnet callback received. The status (' . $status . ') is not valid'); + } + + if (!empty($arycapture['signup_tid'])) { // Subscription + $arycapture['shop_tid'] = $arycapture['signup_tid']; + } + elseif (in_array($arycapture['payment_type'], $this->chargebacks) || ($arycapture['payment_type'] == 'INVOICE_CREDIT')) { + $arycapture['shop_tid'] = $arycapture['tid_payment']; + } else { + $arycapture['shop_tid'] = $arycapture['tid']; + } + } else { + foreach ($this->affAccountActivationparams as $v) { + if (empty($arycapture[$v])) { + $this->displayMessage('Required param ( ' . $v . ' ) missing!'); + } + } + } + return $arycapture; + } + + /** + * Update Callback comments in orders_status_history table + * @param $datas + * + * @return none + */ + function updateCallbackComments($datas) + { + $comments = ((!empty($datas['comments'])) ? $datas['comments'] : ''); + tep_db_query("INSERT INTO " . TABLE_ORDERS_STATUS_HISTORY . " (orders_id, orders_status_id, date_added, customer_notified, comments) VALUES ('" . $datas['order_no'] . "', '" . $datas['orders_status_id'] . "', NOW(), '1','$comments')"); + } + + /** + * Log callback process in novalnet_callback_history table + * @param $datas + * @param $order_no + * @param $total_amount + * + * @return none + */ + function logCallbackProcess($datas, $order_no, $total_amount) + { + if (!empty($datas['amount'])) { + if(in_array($datas['payment_type'], array('CREDITCARD_BOOKBACK', 'CREDITCARD_CHARGEBACK', 'RETURN_DEBIT_SEPA'))) { + $trans_details = $this->getOrderReference(); + $datas['amount'] = $trans_details['order_total_amount']; + } + else { + $datas['amount'] = !empty($total_amount) ? $total_amount : $datas['amount']; + } + tep_db_query("UPDATE novalnet_transaction_detail SET callback_amount= " . $datas['amount'] . " where order_no=$order_no"); + } + } + + /** + * Display message + * @param $error_msg + * + * @return none + */ + function displayMessage($error_msg) + { + echo htmlentities($error_msg); + exit; + } + + /** + * Get given payment_type level for process + * + * @return integer + */ + function getPaymentTypeLevel() + { + if (in_array($this->arycaptureparams['payment_type'], $this->payments)) + return 0; + if (in_array($this->arycaptureparams['payment_type'], $this->chargebacks)) + return 1; + if (in_array($this->arycaptureparams['payment_type'], $this->debit_collections)) + return 2; + } + + /** + * Get order reference from the novalnet_transaction_detail table on shop database + * + * @return array + */ + function getOrderReference() + { + + if (in_array($this->arycaptureparams['payment_type'], $this->payments)) + { + $tid = tep_db_input($this->arycaptureparams['shop_tid']); + }elseif (in_array($this->arycaptureparams['payment_type'], $this->chargebacks)) + { + $tid = tep_db_input($this->arycaptureparams['shop_tid']); + }elseif (in_array($this->arycaptureparams['payment_type'], $this->debit_collections)) { + $tid = tep_db_input($this->arycaptureparams['tid_payment']); + } + + $select_query = tep_db_query("SELECT order_no, amount, payment_id, payment_type,language,callback_amount,gateway_status,payment_details,payment_ref from novalnet_transaction_detail where tid = '" .$tid. "'"); + $dbVal = tep_db_fetch_array($select_query); + $dbVal['tid'] = $this->arycaptureparams['shop_tid']; + $this->transactionCancellation($dbVal); + if (!empty($dbVal)) { + if(is_array($this->paymentgroups[$dbVal['payment_type']])) { + if (!in_array($this->arycaptureparams['payment_type'], $this->paymentgroups[$dbVal['payment_type']])) { + $this->displayMessage('Novalnet callback received. Payment Type [' . $this->arycaptureparams['payment_type'] . '] is not valid.'); + } + } + if (!empty($this->arycaptureparams['order_no']) && $this->arycaptureparams['order_no'] != $dbVal['order_no']) { + $this->displayMessage('Novalnet callback received. Order Number is not valid.'); + } + $dbVal['nn_order_lang'] = $dbVal['language']; + $dbVal['order_current_status'] = $this->getOrderCurrentStatus($dbVal['order_no']); + if (in_array($dbVal['payment_type'], array('novalnet_invoice', 'novalnet_prepayment'))) { + $tables_sql = tep_db_query('select table_name from information_schema.columns where table_schema = "' . DB_DATABASE . '" AND table_name= "novalnet_callback_history"'); + $result = tep_db_fetch_array($tables_sql); + if (empty($dbVal['callback_amount']) && $result['table_name'] == 'novalnet_callback_history') { + $order_totalqry = tep_db_query("select sum(amount) as amount_total from novalnet_callback_history where order_no = '" . tep_db_input($dbVal['order_no']) . "'"); + $result = tep_db_fetch_array($order_totalqry); + $callback_amount_value = $result['amount_total']; + } + $dbVal['callback_script_status'] = constant('MODULE_PAYMENT_' . strtoupper($dbVal['payment_type']) . '_CALLBACK_ORDER_STATUS'); + } + $dbVal['subscription_cancel_status'] = MODULE_PAYMENT_NOVALNET_SUBSCRIPTION_CANCEL_STATUS > 0 ? MODULE_PAYMENT_NOVALNET_SUBSCRIPTION_CANCEL_STATUS : DEFAULT_ORDERS_STATUS_ID; + $dbVal['order_total_amount'] = $dbVal['amount']; + $dbVal['order_paid_amount'] = 0; + $payment_type_level = $this->getPaymentTypeLevel(); + if (in_array($payment_type_level, array(0, 2))) { + $dbVal['callback_old_amount'] = isset($callback_amount_value) ? $callback_amount_value : 0; + $dbVal['order_paid_amount'] = isset($dbVal['callback_amount']) ? $dbVal['callback_amount'] : 0; + } + } else { + $this->displayMessage('Transaction mapping failed'); + } + return $dbVal; + } + + /** + * Get orders_status from the orders table on shop database + * @param $order_id + * + * @return array + */ + function getOrderCurrentStatus($order_id = '') + { + $select_query = tep_db_query("select orders_status from " . TABLE_ORDERS . " where orders_id = '" . $order_id . "'"); + $dbVal = tep_db_fetch_array($select_query); + return ((!empty($dbVal['orders_status'])) ? $dbVal['orders_status'] : DEFAULT_ORDERS_STATUS_ID); + } + + /** + * Send notification mail to Merchant + * @param $datas + * @param $order_detail + * + * @return boolean + */ + function sendNotifyMail($datas = array(), $order_detail = true) + { + if (MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_SEND == 'True') { + $email_to = ((MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_TO != '') ? MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_TO : STORE_OWNER_EMAIL_ADDRESS); + $email_bcc = ((MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_BCC != '') ? MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_BCC : ''); + $email_subject = 'Novalnet Callback script notification'; // Mail subject + $email_content = PHP_EOL . $datas['comments']; + if (!empty($email_bcc)) { + $headers = 'MIME-Version: 1.0' . "\r\n"; + $headers .= 'Content-type:text/html;charset=' . CHARSET . "\r\n"; + $headers .= 'From: <' . EMAIL_FROM . '>' . "\r\n" . 'Bcc: ' . $email_bcc . "\r\n"; + tep_mail(STORE_OWNER, $email_to, $email_subject, $email_content, STORE_NAME, $email_bcc); + } else { + tep_mail(STORE_OWNER, $email_to, $email_subject, $email_content, STORE_NAME, EMAIL_FROM); + } + return true; + } + return false; + } + + /** + * Update the comments and displaying message + * @param $nncapture_params + * @param $comments + * @param $callback_status_id + * @param $order_id + * @param $callback_greater_amount + * @param $total_amount + * + * @return none + */ + function updatefinalcomments($nncapture_params, $comments, $callback_status_id, $order_id, $callback_greater_amount = '', $total_amount = '') + { + $this->updateCallbackComments(array('order_no' => $order_id, 'comments' => $comments, 'orders_status_id' => $callback_status_id)); + $this->sendNotifyMail(array('comments' => $comments, 'order_no' => $order_id)); + $this->logCallbackProcess($nncapture_params, $order_id, $total_amount); + $this->displayMessage($comments . $callback_greater_amount); + } + + /** + * Subscription cancel process + * @param $nntrans_history + * + * @return none + */ + function subscriptionCancel($nntrans_history) + { + $message = !empty($this->arycaptureparams['status_text']) ? $this->arycaptureparams['status_text'] : (!empty($this->arycaptureparams['status_desc']) ? $this->arycaptureparams['status_desc'] : (!empty($this->arycaptureparams['status_message']) ? $this->arycaptureparams['status_message'] : MODULE_PAYMENT_NOVALNET_TRANSACTION_ERROR)); + + $nn_comment = !empty($this->arycaptureparams['termination_reason']) ? $this->arycaptureparams['termination_reason'] : $message; + + $callback_comments = PHP_EOL . sprintf(NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_CALLBACK_SUBS_STOP_COMMENTS), $this->arycaptureparams['shop_tid'], date('Y-m-d'), date('H:i:s')); + $callback_comments .= PHP_EOL . MODULE_PAYMENT_NOVALNET_CALLBACK_SUBS_REASON_TEXT . $nn_comment . PHP_EOL; + $order_status = !empty($nntrans_history['subscription_cancel_status']) ? $nntrans_history['subscription_cancel_status'] : DEFAULT_ORDERS_STATUS_ID; + + + $param = array('termination_reason' => $nn_comment, 'termination_at' => date('Y-m-d H:i:s')); + $subs_details = tep_db_fetch_array(tep_db_query('SELECT subs_id from novalnet_subscription_detail WHERE tid = "' . $this->arycaptureparams['signup_tid'] . '"')); + tep_db_perform('novalnet_subscription_detail', $param, 'update', 'subs_id = "' . $subs_details['subs_id'] . '"'); + + $subs_orders = tep_db_query('SELECT order_no from novalnet_subscription_detail WHERE subs_id = "' . $subs_details['subs_id'] . '"'); + + while ($subs_order = tep_db_fetch_array($subs_orders)) { + $orders_details = array('orders_id' => $subs_order['order_no'], 'orders_status_id' => $order_status, 'date_added' => 'now()','customer_notified' => 1, 'comments' => $callback_comments); + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $orders_details); + + tep_db_query('UPDATE ' . TABLE_ORDERS . ' SET orders_status = "' . $order_status . '" WHERE orders_id = "' . $orders_details['orders_id'] . '"'); + } + + $this->displayMessage($callback_comments); + } + + /** + * Create the new order for the subscription recurring + * @param $order_id + * @param $nn_language + * @param $order_comments + * + * @return none + */ + function createOrder($order_id, $nn_language, $order_comments = '') + { + $select_query = tep_db_query("SELECT * FROM " . TABLE_ORDERS . " where orders_id = " . tep_db_input($order_id)); + $orderArray = tep_db_fetch_array($select_query); + + + unset($orderArray['orders_id']); + $orderArray['date_purchased'] = $orderArray['last_modified'] = date("Y-m-d H:i:s"); + tep_db_perform(TABLE_ORDERS, $orderArray, 'insert'); + $orderid = tep_db_insert_id(); + + $orderTotalQry = tep_db_query("SELECT title, text, value, class, sort_order FROM " . TABLE_ORDERS_TOTAL . " where orders_id = " . tep_db_input($order_id)); + while ($orderTotalArray = tep_db_fetch_array($orderTotalQry)) { + $orderTotalArray['orders_id'] = $orderid; + tep_db_perform(TABLE_ORDERS_TOTAL, $orderTotalArray); + } + $orderProductsQry = tep_db_query("SELECT * FROM " . TABLE_ORDERS_PRODUCTS . " where orders_id = " . tep_db_input($order_id)); + while ($orderProductsArray = tep_db_fetch_array($orderProductsQry)) { + unset($orderProductsArray['orders_id']); + $orderProductsId = $orderProductsArray['orders_products_id']; + unset($orderProductsArray['orders_products_id']); + $orderProductsArray['orders_id'] = $orderid; + tep_db_perform(TABLE_ORDERS_PRODUCTS, $orderProductsArray); + + $orders_products_id = tep_db_insert_id(); + $productsQry = tep_db_query("select products_quantity, products_ordered from " . TABLE_PRODUCTS . " where products_id = " . tep_db_input($orderProductsArray['products_id'])); + $productsArray = tep_db_fetch_array($productsQry); + $productsQuantity = $productsArray['products_quantity'] - $orderProductsArray['products_quantity']; + $productsOrdered = $productsArray['products_ordered'] + $orderProductsArray['products_quantity']; + ($productsQuantity < 1) ? tep_db_query("update " . TABLE_PRODUCTS . " set products_quantity = '" . $productsQuantity . "', products_ordered = '" . $productsOrdered . "', products_status = '0' where products_id = '" . $orderProductsArray['products_id'] . "'") : tep_db_query("update " . TABLE_PRODUCTS . " set products_quantity = '" . $productsQuantity . "', products_ordered = '" . $productsOrdered . "' where products_id = '" . $orderProductsArray['products_id'] . "'"); + $orderProductsAttrQry = tep_db_query("SELECT products_options, products_options_values, options_values_price, price_prefix FROM " . TABLE_ORDERS_PRODUCTS_ATTRIBUTES . " where orders_id = " . tep_db_input($order_id) . " AND orders_products_id=" . tep_db_input($orderProductsId)); + while ($orderProductsAttrArray = tep_db_fetch_array($orderProductsAttrQry)) { + $orderProductsAttrArray['orders_id'] = $orderid; + $orderProductsAttrArray['orders_products_id'] = $orderProductsId; + tep_db_perform(TABLE_ORDERS_PRODUCTS_ATTRIBUTES, $orderProductsAttrArray); + } + if (tep_db_num_rows(tep_db_query('SHOW TABLES LIKE "' . TABLE_ORDERS_PRODUCTS_DOWNLOAD . '"'))) { + $orderProductsDownQry = tep_db_query("SELECT * FROM " . TABLE_ORDERS_PRODUCTS_DOWNLOAD . " WHERE orders_id = " . tep_db_input($order_id) . " AND orders_products_id=" . tep_db_input($orderProductsId)); + while ($orderProductsDownArray = tep_db_fetch_array($orderProductsDownQry)) { + $orderProductsDownArray['orders_id'] = $orderid; + $orderProductsDownArray['orders_products_id'] = $orders_products_id; + tep_db_perform(TABLE_ORDERS_PRODUCTS_DOWNLOAD, $orderProductsDownArray); + } + } + } + $nnTransDetails = $this->getFullOrderDetails($order_id); + + $payment_name = strtoupper($nnTransDetails['payment_type']); + $newOrderStatus = constant('MODULE_PAYMENT_' . $payment_name . '_ORDER_STATUS'); + $newOrderStatus = !empty($newOrderStatus) ? $newOrderStatus : DEFAULT_ORDERS_STATUS_ID; + if(in_array($this->arycaptureparams['tid_status'], array('90', '85'))) { + if($nnTransDetails['payment_type'] == 'novalnet_paypal') { + $newOrderStatus = (MODULE_PAYMENT_NOVALNET_PAYPAL_PENDING_ORDER_STATUS != '' && MODULE_PAYMENT_NOVALNET_PAYPAL_PENDING_ORDER_STATUS != '0') ? MODULE_PAYMENT_NOVALNET_PAYPAL_PENDING_ORDER_STATUS : DEFAULT_ORDERS_STATUS_ID; + } + elseif($nnTransDetails['payment_type'] == 'novalnet_invoice') { + $newOrderStatus = (MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS != '' && MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS != '0') ? MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS : DEFAULT_ORDERS_STATUS_ID; + } + } + if($nnTransDetails['payment_id'] == 41) { + $newOrderStatus = MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_ORDER_STATUS; + } + $next_subs_cycle = !empty($this->arycaptureparams['next_subs_cycle']) ? $this->arycaptureparams['next_subs_cycle'] : (!empty($this->arycaptureparams['paid_until']) ? $this->arycaptureparams['paid_until'] : ''); + tep_db_perform(TABLE_ORDERS, array('orders_status' => $newOrderStatus), 'update', 'orders_id="' . $orderid . '"'); + $order_comments .= (in_array($nnTransDetails['payment_type'], array( + 'novalnet_invoice', + 'novalnet_prepayment' + ))) ? $this->getBankdetails() : ''; + $order_comments .= PHP_EOL. MODULE_PAYMENT_NOVALNET_REFERENCE_ORDER_TEXT . $order_id . PHP_EOL; + $order_comments .= NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_CALLBACK_CHARGING_DATE_COMMENTS) . $next_subs_cycle . PHP_EOL; + $this->insertUpdateShopDetails(array( + 'order_status' => $newOrderStatus, + 'tid' => $this->arycaptureparams['tid'], + 'total' => $this->arycaptureparams['amount'], + 'total_amount' => $this->arycaptureparams['amount'], + 'order_no' => $orderid + ), $nnTransDetails, $nn_language); + if (!empty($order_comments)) { + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, array( + 'orders_id' => $orderid, + 'orders_status_id' => $newOrderStatus, + 'date_added' => date("Y-m-d H:i:s"), + 'customer_notified' => 1, + 'comments' => PHP_EOL.$order_comments + )); + tep_db_perform(TABLE_ORDERS, array('orders_status' => $newOrderStatus), 'update', 'orders_id="' . $order_id . '"'); + } + tep_db_perform('novalnet_subscription_detail', array( + 'order_no' => $orderid, + 'subs_id' => $nnTransDetails['subs_id'], + 'tid' => $this->arycaptureparams['tid'], + 'parent_tid' => $this->arycaptureparams['shop_tid'], + 'signup_date' => date('Y-m-d H:i:s'), + 'termination_reason' => $this->arycaptureparams['termination_reason'], + 'termination_at' => '' + )); + } + + /** + * Get all transaction details + * @param $order_no + * + * @return array + */ + function getFullOrderDetails($order_no) + { + $select_query = tep_db_query("SELECT vendor, auth_code, product, tariff, subs_id, payment_id, payment_type, gateway_status, customer_id, process_key FROM novalnet_transaction_detail where order_no = " . tep_db_input($order_no)); + return tep_db_fetch_array($select_query); + } + + /** + * Get Invoice / Prepayment bank details + * + * @return array + */ + function getBankdetails() + { + $currencies = new currencies(); + $novalnet_comments = NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_INVOICE_COMMETNS_PARAGRAPH) . PHP_EOL; + $novalnet_comments .= NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_DUE_DATE) . ': ' . date(DATE_FORMAT, strtotime(!empty($this->arycaptureparams['due_date']) ? $this->arycaptureparams['due_date'] : '')) . PHP_EOL; + $amount = (($currencies->format($this->arycaptureparams['amount'] / 100, false, (!empty($this->arycaptureparams['currency']) ? $this->arycaptureparams['currency'] : '')))); + $novalnet_comments .= MODULE_PAYMENT_NOVALNET_ACCOUNT_HOLDER . ': Novalnet AG' . PHP_EOL; + $novalnet_comments .= 'IBAN: ' . (!empty($this->arycaptureparams['invoice_iban']) ? $this->arycaptureparams['invoice_iban'] : '') . PHP_EOL; + $novalnet_comments .= 'BIC: ' . (!empty($this->arycaptureparams['invoice_bic']) ? $this->arycaptureparams['invoice_bic'] : '') . PHP_EOL; + $novalnet_comments .= 'Bank: ' . (!empty($this->arycaptureparams['invoice_bankname']) ? trim($this->arycaptureparams['invoice_bankname']) : '') . ' ' . (!empty($this->arycaptureparams['invoice_bankplace']) ? trim($this->arycaptureparams['invoice_bankplace']) : '') . PHP_EOL; + $novalnet_comments .= MODULE_PAYMENT_NOVALNET_AMOUNT . ': ' . $amount; + + return $novalnet_comments; + } + + /** + * Insert the transaction details into the shop system. + * @param $shopInfo + * @param $nnTransDetails + * @param $nn_language + * + * @return none + */ + function insertUpdateShopDetails($shopInfo, $nnTransDetails, $nn_language) + { + $nnTransDetails['tid'] = $shopInfo['tid']; + $nnTransDetails['gateway_status'] = $this->arycaptureparams['tid_status']; + $nnTransDetails['amount'] = $shopInfo['total']; + $nnTransDetails['total_amount'] = $shopInfo['total']; + $nnTransDetails['callback_amount'] = 0; + $nnTransDetails['date'] = date('Y-m-d H:i:s'); + $nnTransDetails['language'] = $nn_language; + $nnTransDetails['currency'] = isset($this->arycaptureparams['currency']) ? $this->arycaptureparams['currency'] : ''; + $nnTransDetails['test_mode'] = isset($this->arycaptureparams['test_mode']) ? $this->arycaptureparams['test_mode'] : 0; + $nnTransDetails['order_no'] = $shopInfo['order_no']; + $nnTransDetails['callback_amount'] = (in_array($nnTransDetails['payment_type'], array('novalnet_invoice', 'novalnet_prepayment')) || ($nnTransDetails['payment_type'] == 'novalnet_paypal' && $this->arycaptureparams['tid_status'] == 90)) ? 0: $this->arycaptureparams['amount']; + + tep_db_perform('novalnet_transaction_detail', $nnTransDetails); + } + + /** + * Update Przelewy24 cancel status + * + * @param $nntrans_history + * @return string + */ + function updatePrzelewyCancelcomments($nntrans_history) + { + $nncapture_params = $this->getCaptureParams(); + $callback_status_id = (!empty($nntrans_history['callback_script_status']) ? $nntrans_history['callback_script_status'] : DEFAULT_ORDERS_STATUS_ID); + + // Assign przelewy24 payment status + tep_db_perform(TABLE_ORDERS, array( + 'orders_status' => $callback_status_id + ), 'update', 'orders_id="' . $nntrans_history['order_no'] . '"'); + + // Form failure comments + $comments = !empty($nncapture_params['status_text']) ? PHP_EOL . $nncapture_params['status_text'] : (!empty($nncapture_params['status_desc']) ? PHP_EOL . $nncapture_params['status_desc'] : (!empty($nncapture_params['status_message']) ? PHP_EOL . $nncapture_params['status_message'] : '')); + $callback_comments = 'The transaction has been canceled due to:' . $comments; + + $this->updateCallbackComments(array('order_no' => $nntrans_history['order_no'], 'comments' => $callback_comments, + 'orders_status_id' => $callback_status_id)); + + return $callback_comments; + } + + /** + * Handle transaction_cancellation process + * $param $nntrans_history + * + * @return void + */ + function transactionCancellation($nntrans_history) { + $nncapture_params = $this->getCaptureParams(); + if ($nncapture_params['payment_type'] == 'TRANSACTION_CANCELLATION' && in_array($nntrans_history['gateway_status'], array('75','91','99'))) { + //Update callback order status due to full payment + tep_db_perform(TABLE_ORDERS, array( + 'orders_status' => ((MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED > 0) ? MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED : DEFAULT_ORDERS_STATUS_ID) + ), 'update', 'orders_id="' . $nntrans_history['order_no'] . '"'); + // To form the callback comments + $callback_comments = PHP_EOL.sprintf('Novalnet callback received. The transaction has been canceled on %s %s',date(DATE_FORMAT, strtotime(date('d.m.Y'))), date('H:i:s')) . PHP_EOL; + $param ['gateway_status'] = $nncapture_params['tid_status']; + tep_db_perform('novalnet_transaction_detail', $param, "update", "tid='" . $nncapture_params['shop_tid'] . "'"); + + // To update order details in shop + $this->updateCallbackComments(array( + 'order_no' => $nntrans_history['order_no'], + 'orders_status_id' => ((MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED > 0) ? MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED : DEFAULT_ORDERS_STATUS_ID), + 'comments' => $callback_comments + )); + // Send notification mail to Merchant + $this->sendNotifyMail(array( + 'comments' => $callback_comments, + 'order_no' => $nntrans_history['order_no'], + )); + $this->displayMessage($callback_comments); + } + } +} +?> diff --git a/ext/modules/payment/novalnet/css/jquery-ui.css b/ext/modules/payment/novalnet/css/jquery-ui.css new file mode 100644 index 0000000..0e143ef --- /dev/null +++ b/ext/modules/payment/novalnet/css/jquery-ui.css @@ -0,0 +1,1137 @@ +/*! jQuery UI - v1.10.3 - 2013-05-03 +* http://jqueryui.com +* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css +* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px +* Copyright 2013 jQuery Foundation and other contributors Licensed MIT */ + +/* Layout helpers +----------------------------------*/ +.ui-helper-hidden { + display: none; +} +.ui-helper-hidden-accessible { + border: 0; + clip: rect(0 0 0 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} +.ui-helper-reset { + margin: 0; + padding: 0; + border: 0; + outline: 0; + line-height: 1.3; + text-decoration: none; + font-size: 100%; + list-style: none; +} +.ui-helper-clearfix:before, +.ui-helper-clearfix:after { + content: ""; + display: table; + border-collapse: collapse; +} +.ui-helper-clearfix:after { + clear: both; +} +.ui-helper-clearfix { + min-height: 0; /* support: IE7 */ +} +.ui-helper-zfix { + width: 100%; + height: 100%; + top: 0; + left: 0; + position: absolute; + opacity: 0; + filter:Alpha(Opacity=0); +} + +.ui-front { + z-index: 100; +} + + +/* Interaction Cues +----------------------------------*/ +.ui-state-disabled { + cursor: default !important; +} + + +/* Icons +----------------------------------*/ + +/* states and images */ +.ui-icon { + display: block; + text-indent: -99999px; + overflow: hidden; + background-repeat: no-repeat; +} + + +/* Misc visuals +----------------------------------*/ + +/* Overlays */ +.ui-widget-overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.ui-accordion .ui-accordion-header { + display: block; + cursor: pointer; + position: relative; + margin-top: 2px; + padding: .5em .5em .5em .7em; + min-height: 0; /* support: IE7 */ +} +.ui-accordion .ui-accordion-icons { + padding-left: 2.2em; +} +.ui-accordion .ui-accordion-noicons { + padding-left: .7em; +} +.ui-accordion .ui-accordion-icons .ui-accordion-icons { + padding-left: 2.2em; +} +.ui-accordion .ui-accordion-header .ui-accordion-header-icon { + position: absolute; + left: .5em; + top: 50%; + margin-top: -8px; +} +.ui-accordion .ui-accordion-content { + padding: 1em 2.2em; + border-top: 0; + overflow: auto; +} +.ui-autocomplete { + position: absolute; + top: 0; + left: 0; + cursor: default; +} +.ui-button { + display: inline-block; + position: relative; + padding: 0; + line-height: normal; + margin-right: .1em; + cursor: pointer; + vertical-align: middle; + text-align: center; + overflow: visible; /* removes extra width in IE */ +} +.ui-button, +.ui-button:link, +.ui-button:visited, +.ui-button:hover, +.ui-button:active { + text-decoration: none; +} +/* to make room for the icon, a width needs to be set here */ +.ui-button-icon-only { + width: 2.2em; +} +/* button elements seem to need a little more width */ +button.ui-button-icon-only { + width: 2.4em; +} +.ui-button-icons-only { + width: 3.4em; +} +button.ui-button-icons-only { + width: 3.7em; +} + +/* button text element */ +.ui-button .ui-button-text { + display: block; + line-height: normal; +} +.ui-button-text-only .ui-button-text { + padding: .4em 1em; +} +.ui-button-icon-only .ui-button-text, +.ui-button-icons-only .ui-button-text { + padding: .4em; + text-indent: -9999999px; +} +.ui-button-text-icon-primary .ui-button-text, +.ui-button-text-icons .ui-button-text { + padding: .4em 1em .4em 2.1em; +} +.ui-button-text-icon-secondary .ui-button-text, +.ui-button-text-icons .ui-button-text { + padding: .4em 2.1em .4em 1em; +} +.ui-button-text-icons .ui-button-text { + padding-left: 2.1em; + padding-right: 2.1em; +} +/* no icon support for input elements, provide padding by default */ +input.ui-button { + padding: .4em 1em; +} + +/* button icon element(s) */ +.ui-button-icon-only .ui-icon, +.ui-button-text-icon-primary .ui-icon, +.ui-button-text-icon-secondary .ui-icon, +.ui-button-text-icons .ui-icon, +.ui-button-icons-only .ui-icon { + position: absolute; + top: 50%; + margin-top: -8px; +} +.ui-button-icon-only .ui-icon { + left: 50%; + margin-left: -8px; +} +.ui-button-text-icon-primary .ui-button-icon-primary, +.ui-button-text-icons .ui-button-icon-primary, +.ui-button-icons-only .ui-button-icon-primary { + left: .5em; +} +.ui-button-text-icon-secondary .ui-button-icon-secondary, +.ui-button-text-icons .ui-button-icon-secondary, +.ui-button-icons-only .ui-button-icon-secondary { + right: .5em; +} + +/* button sets */ +.ui-buttonset { + margin-right: 7px; +} +.ui-buttonset .ui-button { + margin-left: 0; + margin-right: -.3em; +} + +/* workarounds */ +/* reset extra padding in Firefox, see h5bp.com/l */ +input.ui-button::-moz-focus-inner, +button.ui-button::-moz-focus-inner { + border: 0; + padding: 0; +} +.ui-datepicker { + width: 17em; + padding: .2em .2em 0; + display: none; +} +.ui-datepicker .ui-datepicker-header { + position: relative; + padding: .2em 0; +} +.ui-datepicker .ui-datepicker-prev, +.ui-datepicker .ui-datepicker-next { + position: absolute; + top: 2px; + width: 1.8em; + height: 1.8em; +} +.ui-datepicker .ui-datepicker-prev-hover, +.ui-datepicker .ui-datepicker-next-hover { + top: 1px; +} +.ui-datepicker .ui-datepicker-prev { + left: 2px; +} +.ui-datepicker .ui-datepicker-next { + right: 2px; +} +.ui-datepicker .ui-datepicker-prev-hover { + left: 1px; +} +.ui-datepicker .ui-datepicker-next-hover { + right: 1px; +} +.ui-datepicker .ui-datepicker-prev span, +.ui-datepicker .ui-datepicker-next span { + display: block; + position: absolute; + left: 50%; + margin-left: -8px; + top: 50%; + margin-top: -8px; +} +.ui-datepicker .ui-datepicker-title { + margin: 0 2.3em; + line-height: 1.8em; + text-align: center; +} +.ui-datepicker .ui-datepicker-title select { + font-size: 1em; + margin: 1px 0; +} +.ui-datepicker select.ui-datepicker-month-year { + width: 100%; +} +.ui-datepicker select.ui-datepicker-month, +.ui-datepicker select.ui-datepicker-year { + width: 49%; +} +.ui-datepicker table { + width: 100%; + font-size: .9em; + border-collapse: collapse; + margin: 0 0 .4em; +} +.ui-datepicker th { + padding: .7em .3em; + text-align: center; + font-weight: bold; + border: 0; +} +.ui-datepicker td { + border: 0; + padding: 1px; +} +.ui-datepicker td span, +.ui-datepicker td a { + display: block; + padding: .2em; + text-align: right; + text-decoration: none; +} +.ui-datepicker .ui-datepicker-buttonpane { + background-image: none; + margin: .7em 0 0 0; + padding: 0 .2em; + border-left: 0; + border-right: 0; + border-bottom: 0; +} +.ui-datepicker .ui-datepicker-buttonpane button { + float: right; + margin: .5em .2em .4em; + cursor: pointer; + padding: .2em .6em .3em .6em; + width: auto; + overflow: visible; +} +.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { + float: left; +} + +/* with multiple calendars */ +.ui-datepicker.ui-datepicker-multi { + width: auto; +} +.ui-datepicker-multi .ui-datepicker-group { + float: left; +} +.ui-datepicker-multi .ui-datepicker-group table { + width: 95%; + margin: 0 auto .4em; +} +.ui-datepicker-multi-2 .ui-datepicker-group { + width: 50%; +} +.ui-datepicker-multi-3 .ui-datepicker-group { + width: 33.3%; +} +.ui-datepicker-multi-4 .ui-datepicker-group { + width: 25%; +} +.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, +.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { + border-left-width: 0; +} +.ui-datepicker-multi .ui-datepicker-buttonpane { + clear: left; +} +.ui-datepicker-row-break { + clear: both; + width: 100%; + font-size: 0; +} + +/* RTL support */ +.ui-datepicker-rtl { + direction: rtl; +} +.ui-datepicker-rtl .ui-datepicker-prev { + right: 2px; + left: auto; +} +.ui-datepicker-rtl .ui-datepicker-next { + left: 2px; + right: auto; +} +.ui-datepicker-rtl .ui-datepicker-prev:hover { + right: 1px; + left: auto; +} +.ui-datepicker-rtl .ui-datepicker-next:hover { + left: 1px; + right: auto; +} +.ui-datepicker-rtl .ui-datepicker-buttonpane { + clear: right; +} +.ui-datepicker-rtl .ui-datepicker-buttonpane button { + float: left; +} +.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, +.ui-datepicker-rtl .ui-datepicker-group { + float: right; +} +.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, +.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { + border-right-width: 0; + border-left-width: 1px; +} +.ui-dialog { + position: absolute; + top: 0; + left: 0; + padding: .2em; + outline: 0; +} +.ui-dialog .ui-dialog-titlebar { + padding: .4em 1em; + position: relative; +} +.ui-dialog .ui-dialog-title { + float: left; + margin: .1em 0; + white-space: nowrap; + width: 90%; + overflow: hidden; + text-overflow: ellipsis; +} +.ui-dialog .ui-dialog-titlebar-close { + position: absolute; + right: .3em; + top: 50%; + width: 21px; + margin: -10px 0 0 0; + padding: 1px; + height: 20px; +} +.ui-dialog .ui-dialog-content { + position: relative; + border: 0; + padding: .5em 1em; + background: none; + overflow: auto; +} +.ui-dialog .ui-dialog-buttonpane { + text-align: left; + border-width: 1px 0 0 0; + background-image: none; + margin-top: .5em; + padding: .3em 1em .5em .4em; +} +.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { + float: right; +} +.ui-dialog .ui-dialog-buttonpane button { + margin: .5em .4em .5em 0; + cursor: pointer; +} +.ui-dialog .ui-resizable-se { + width: 12px; + height: 12px; + right: -5px; + bottom: -5px; + background-position: 16px 16px; +} +.ui-draggable .ui-dialog-titlebar { + cursor: move; +} +.ui-menu { + list-style: none; + padding: 2px; + margin: 0; + display: block; + outline: none; +} +.ui-menu .ui-menu { + margin-top: -3px; + position: absolute; +} +.ui-menu .ui-menu-item { + margin: 0; + padding: 0; + width: 100%; + /* support: IE10, see #8844 */ + list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); +} +.ui-menu .ui-menu-divider { + margin: 5px -2px 5px -2px; + height: 0; + font-size: 0; + line-height: 0; + border-width: 1px 0 0 0; +} +.ui-menu .ui-menu-item a { + text-decoration: none; + display: block; + padding: 2px .4em; + line-height: 1.5; + min-height: 0; /* support: IE7 */ + font-weight: normal; +} +.ui-menu .ui-menu-item a.ui-state-focus, +.ui-menu .ui-menu-item a.ui-state-active { + font-weight: normal; + margin: -1px; +} + +.ui-menu .ui-state-disabled { + font-weight: normal; + margin: .4em 0 .2em; + line-height: 1.5; +} +.ui-menu .ui-state-disabled a { + cursor: default; +} + +/* icon support */ +.ui-menu-icons { + position: relative; +} +.ui-menu-icons .ui-menu-item a { + position: relative; + padding-left: 2em; +} + +/* left-aligned */ +.ui-menu .ui-icon { + position: absolute; + top: .2em; + left: .2em; +} + +/* right-aligned */ +.ui-menu .ui-menu-icon { + position: static; + float: right; +} +.ui-progressbar { + height: 2em; + text-align: left; + overflow: hidden; +} +.ui-progressbar .ui-progressbar-value { + margin: -1px; + height: 100%; +} +.ui-progressbar .ui-progressbar-overlay { + height: 100%; + filter: alpha(opacity=25); + opacity: 0.25; +} +.ui-progressbar-indeterminate .ui-progressbar-value { + background-image: none; +} +.ui-resizable { + position: relative; +} +.ui-resizable-handle { + position: absolute; + font-size: 0.1px; + display: block; +} +.ui-resizable-disabled .ui-resizable-handle, +.ui-resizable-autohide .ui-resizable-handle { + display: none; +} +.ui-resizable-n { + cursor: n-resize; + height: 7px; + width: 100%; + top: -5px; + left: 0; +} +.ui-resizable-s { + cursor: s-resize; + height: 7px; + width: 100%; + bottom: -5px; + left: 0; +} +.ui-resizable-e { + cursor: e-resize; + width: 7px; + right: -5px; + top: 0; + height: 100%; +} +.ui-resizable-w { + cursor: w-resize; + width: 7px; + left: -5px; + top: 0; + height: 100%; +} +.ui-resizable-se { + cursor: se-resize; + width: 12px; + height: 12px; + right: 1px; + bottom: 1px; +} +.ui-resizable-sw { + cursor: sw-resize; + width: 9px; + height: 9px; + left: -5px; + bottom: -5px; +} +.ui-resizable-nw { + cursor: nw-resize; + width: 9px; + height: 9px; + left: -5px; + top: -5px; +} +.ui-resizable-ne { + cursor: ne-resize; + width: 9px; + height: 9px; + right: -5px; + top: -5px; +} +.ui-selectable-helper { + position: absolute; + z-index: 100; + border: 1px dotted black; +} +.ui-slider { + position: relative; + text-align: left; +} +.ui-slider .ui-slider-handle { + position: absolute; + z-index: 2; + width: 1.2em; + height: 1.2em; + cursor: default; +} +.ui-slider .ui-slider-range { + position: absolute; + z-index: 1; + font-size: .7em; + display: block; + border: 0; + background-position: 0 0; +} + +/* For IE8 - See #6727 */ +.ui-slider.ui-state-disabled .ui-slider-handle, +.ui-slider.ui-state-disabled .ui-slider-range { + filter: inherit; +} + +.ui-slider-horizontal { + height: .8em; +} +.ui-slider-horizontal .ui-slider-handle { + top: -.3em; + margin-left: -.6em; +} +.ui-slider-horizontal .ui-slider-range { + top: 0; + height: 100%; +} +.ui-slider-horizontal .ui-slider-range-min { + left: 0; +} +.ui-slider-horizontal .ui-slider-range-max { + right: 0; +} + +.ui-slider-vertical { + width: .8em; + height: 100px; +} +.ui-slider-vertical .ui-slider-handle { + left: -.3em; + margin-left: 0; + margin-bottom: -.6em; +} +.ui-slider-vertical .ui-slider-range { + left: 0; + width: 100%; +} +.ui-slider-vertical .ui-slider-range-min { + bottom: 0; +} +.ui-slider-vertical .ui-slider-range-max { + top: 0; +} +.ui-spinner { + position: relative; + display: inline-block; + overflow: hidden; + padding: 0; + vertical-align: middle; +} +.ui-spinner-input { + border: none; + background: none; + color: inherit; + padding: 0; + margin: .2em 0; + vertical-align: middle; + margin-left: .4em; + margin-right: 22px; +} +.ui-spinner-button { + width: 16px; + height: 50%; + font-size: .5em; + padding: 0; + margin: 0; + text-align: center; + position: absolute; + cursor: default; + display: block; + overflow: hidden; + right: 0; +} +/* more specificity required here to overide default borders */ +.ui-spinner a.ui-spinner-button { + border-top: none; + border-bottom: none; + border-right: none; +} +/* vertical centre icon */ +.ui-spinner .ui-icon { + position: absolute; + margin-top: -8px; + top: 50%; + left: 0; +} +.ui-spinner-up { + top: 0; +} +.ui-spinner-down { + bottom: 0; +} + +/* TR overrides */ +.ui-spinner .ui-icon-triangle-1-s { + /* need to fix icons sprite */ + background-position: -65px -16px; +} +.ui-tabs { + position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ + padding: .2em; +} +.ui-tabs .ui-tabs-nav { + margin: 0; + padding: .2em .2em 0; +} +.ui-tabs .ui-tabs-nav li { + list-style: none; + float: left; + position: relative; + top: 0; + margin: 1px .2em 0 0; + border-bottom-width: 0; + padding: 0; + white-space: nowrap; +} +.ui-tabs .ui-tabs-nav li a { + float: left; + padding: .5em 1em; + text-decoration: none; +} +.ui-tabs .ui-tabs-nav li.ui-tabs-active { + margin-bottom: -1px; + padding-bottom: 1px; +} +.ui-tabs .ui-tabs-nav li.ui-tabs-active a, +.ui-tabs .ui-tabs-nav li.ui-state-disabled a, +.ui-tabs .ui-tabs-nav li.ui-tabs-loading a { + cursor: text; +} +.ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ +.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { + cursor: pointer; +} +.ui-tabs .ui-tabs-panel { + display: block; + border-width: 0; + padding: 1em 1.4em; + background: none; +} +.ui-tooltip { + padding: 8px; + position: absolute; + z-index: 9999; + max-width: 300px; + -webkit-box-shadow: 0 0 5px #aaa; + box-shadow: 0 0 5px #aaa; +} +body .ui-tooltip { + border-width: 2px; +} + +/* Component containers +----------------------------------*/ +.ui-widget { + font-family: Verdana,Arial,sans-serif; + font-size: 1.1em; +} +.ui-widget .ui-widget { + font-size: 1em; +} +.ui-widget input, +.ui-widget select, +.ui-widget textarea, +.ui-widget button { + font-family: Verdana,Arial,sans-serif; + font-size: 1em; +} +.ui-widget-content { + color: #222222; +} +.ui-widget-content a { + color: #222222; +} +.ui-widget-header { + color: #fff; + font-weight: bold; +} +.ui-widget-header a { + color: #fff; +} + +/* Interaction states +----------------------------------*/ +.ui-state-default, +.ui-widget-content .ui-state-default, +.ui-widget-header .ui-state-default { + border: 1px solid #d3d3d3; + font-weight: normal; + color: #555555; +} +.ui-state-default a, +.ui-state-default a:link, +.ui-state-default a:visited { + color: #555555; + text-decoration: none; +} +.ui-state-hover, +.ui-widget-content .ui-state-hover, +.ui-widget-header .ui-state-hover, +.ui-state-focus, +.ui-widget-content .ui-state-focus, +.ui-widget-header .ui-state-focus { + border: 1px solid #999999; + font-weight: normal; + color: #212121; +} +.ui-state-hover a, +.ui-state-hover a:hover, +.ui-state-hover a:link, +.ui-state-hover a:visited { + color: #212121; + text-decoration: none; +} +.ui-state-active, +.ui-widget-content .ui-state-active, +.ui-widget-header .ui-state-active { + font-weight: normal; + color: #212121; +} +.ui-state-active a, +.ui-state-active a:link, +.ui-state-active a:visited { + color: #212121; + text-decoration: none; +} + +/* Interaction Cues +----------------------------------*/ +.ui-state-highlight, +.ui-widget-content .ui-state-highlight, +.ui-widget-header .ui-state-highlight { + border: 1px solid #fcefa1; + color: #363636; +} +.ui-state-highlight a, +.ui-widget-content .ui-state-highlight a, +.ui-widget-header .ui-state-highlight a { + color: #363636; +} +.ui-state-error, +.ui-widget-content .ui-state-error, +.ui-widget-header .ui-state-error { + border: 1px solid #cd0a0a; + color: #cd0a0a; +} +.ui-state-error a, +.ui-widget-content .ui-state-error a, +.ui-widget-header .ui-state-error a { + color: #cd0a0a; +} +.ui-state-error-text, +.ui-widget-content .ui-state-error-text, +.ui-widget-header .ui-state-error-text { + color: #cd0a0a; +} +.ui-priority-primary, +.ui-widget-content .ui-priority-primary, +.ui-widget-header .ui-priority-primary { + font-weight: bold; +} +.ui-priority-secondary, +.ui-widget-content .ui-priority-secondary, +.ui-widget-header .ui-priority-secondary { + opacity: .7; + filter:Alpha(Opacity=70); + font-weight: normal; +} +.ui-state-disabled, +.ui-widget-content .ui-state-disabled, +.ui-widget-header .ui-state-disabled { + opacity: .35; + filter:Alpha(Opacity=35); + background-image: none; +} +.ui-state-disabled .ui-icon { + filter:Alpha(Opacity=35); /* For IE8 - See #6059 */ +} + +/* Icons +----------------------------------*/ + + + +/* positioning */ +.ui-icon-blank { background-position: 16px 16px; } +.ui-icon-carat-1-n { background-position: 0 0; } +.ui-icon-carat-1-ne { background-position: -16px 0; } +.ui-icon-carat-1-e { background-position: -32px 0; } +.ui-icon-carat-1-se { background-position: -48px 0; } +.ui-icon-carat-1-s { background-position: -64px 0; } +.ui-icon-carat-1-sw { background-position: -80px 0; } +.ui-icon-carat-1-w { background-position: -96px 0; } +.ui-icon-carat-1-nw { background-position: -112px 0; } +.ui-icon-carat-2-n-s { background-position: -128px 0; } +.ui-icon-carat-2-e-w { background-position: -144px 0; } +.ui-icon-triangle-1-n { background-position: 0 -16px; } +.ui-icon-triangle-1-ne { background-position: -16px -16px; } +.ui-icon-triangle-1-e { background-position: -32px -16px; } +.ui-icon-triangle-1-se { background-position: -48px -16px; } +.ui-icon-triangle-1-s { background-position: -64px -16px; } +.ui-icon-triangle-1-sw { background-position: -80px -16px; } +.ui-icon-triangle-1-w { background-position: -96px -16px; } +.ui-icon-triangle-1-nw { background-position: -112px -16px; } +.ui-icon-triangle-2-n-s { background-position: -128px -16px; } +.ui-icon-triangle-2-e-w { background-position: -144px -16px; } +.ui-icon-arrow-1-n { background-position: 0 -32px; } +.ui-icon-arrow-1-ne { background-position: -16px -32px; } +.ui-icon-arrow-1-e { background-position: -32px -32px; } +.ui-icon-arrow-1-se { background-position: -48px -32px; } +.ui-icon-arrow-1-s { background-position: -64px -32px; } +.ui-icon-arrow-1-sw { background-position: -80px -32px; } +.ui-icon-arrow-1-w { background-position: -96px -32px; } +.ui-icon-arrow-1-nw { background-position: -112px -32px; } +.ui-icon-arrow-2-n-s { background-position: -128px -32px; } +.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } +.ui-icon-arrow-2-e-w { background-position: -160px -32px; } +.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } +.ui-icon-arrowstop-1-n { background-position: -192px -32px; } +.ui-icon-arrowstop-1-e { background-position: -208px -32px; } +.ui-icon-arrowstop-1-s { background-position: -224px -32px; } +.ui-icon-arrowstop-1-w { background-position: -240px -32px; } +.ui-icon-arrowthick-1-n { background-position: 0 -48px; } +.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } +.ui-icon-arrowthick-1-e { background-position: -32px -48px; } +.ui-icon-arrowthick-1-se { background-position: -48px -48px; } +.ui-icon-arrowthick-1-s { background-position: -64px -48px; } +.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } +.ui-icon-arrowthick-1-w { background-position: -96px -48px; } +.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } +.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } +.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } +.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } +.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } +.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } +.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } +.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } +.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } +.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } +.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } +.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } +.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } +.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } +.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } +.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } +.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } +.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } +.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } +.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } +.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } +.ui-icon-arrow-4 { background-position: 0 -80px; } +.ui-icon-arrow-4-diag { background-position: -16px -80px; } +.ui-icon-extlink { background-position: -32px -80px; } +.ui-icon-newwin { background-position: -48px -80px; } +.ui-icon-refresh { background-position: -64px -80px; } +.ui-icon-shuffle { background-position: -80px -80px; } +.ui-icon-transfer-e-w { background-position: -96px -80px; } +.ui-icon-transferthick-e-w { background-position: -112px -80px; } +.ui-icon-folder-collapsed { background-position: 0 -96px; } +.ui-icon-folder-open { background-position: -16px -96px; } +.ui-icon-document { background-position: -32px -96px; } +.ui-icon-document-b { background-position: -48px -96px; } +.ui-icon-note { background-position: -64px -96px; } +.ui-icon-mail-closed { background-position: -80px -96px; } +.ui-icon-mail-open { background-position: -96px -96px; } +.ui-icon-suitcase { background-position: -112px -96px; } +.ui-icon-comment { background-position: -128px -96px; } +.ui-icon-person { background-position: -144px -96px; } +.ui-icon-print { background-position: -160px -96px; } +.ui-icon-trash { background-position: -176px -96px; } +.ui-icon-locked { background-position: -192px -96px; } +.ui-icon-unlocked { background-position: -208px -96px; } +.ui-icon-bookmark { background-position: -224px -96px; } +.ui-icon-tag { background-position: -240px -96px; } +.ui-icon-home { background-position: 0 -112px; } +.ui-icon-flag { background-position: -16px -112px; } +.ui-icon-calendar { background-position: -32px -112px; } +.ui-icon-cart { background-position: -48px -112px; } +.ui-icon-pencil { background-position: -64px -112px; } +.ui-icon-clock { background-position: -80px -112px; } +.ui-icon-disk { background-position: -96px -112px; } +.ui-icon-calculator { background-position: -112px -112px; } +.ui-icon-zoomin { background-position: -128px -112px; } +.ui-icon-zoomout { background-position: -144px -112px; } +.ui-icon-search { background-position: -160px -112px; } +.ui-icon-wrench { background-position: -176px -112px; } +.ui-icon-gear { background-position: -192px -112px; } +.ui-icon-heart { background-position: -208px -112px; } +.ui-icon-star { background-position: -224px -112px; } +.ui-icon-link { background-position: -240px -112px; } +.ui-icon-cancel { background-position: 0 -128px; } +.ui-icon-plus { background-position: -16px -128px; } +.ui-icon-plusthick { background-position: -32px -128px; } +.ui-icon-minus { background-position: -48px -128px; } +.ui-icon-minusthick { background-position: -64px -128px; } +.ui-icon-close { background-position: -80px -128px; } +.ui-icon-closethick { background-position: -96px -128px; } +.ui-icon-key { background-position: -112px -128px; } +.ui-icon-lightbulb { background-position: -128px -128px; } +.ui-icon-scissors { background-position: -144px -128px; } +.ui-icon-clipboard { background-position: -160px -128px; } +.ui-icon-copy { background-position: -176px -128px; } +.ui-icon-contact { background-position: -192px -128px; } +.ui-icon-image { background-position: -208px -128px; } +.ui-icon-video { background-position: -224px -128px; } +.ui-icon-script { background-position: -240px -128px; } +.ui-icon-alert { background-position: 0 -144px; } +.ui-icon-info { background-position: -16px -144px; } +.ui-icon-notice { background-position: -32px -144px; } +.ui-icon-help { background-position: -48px -144px; } +.ui-icon-check { background-position: -64px -144px; } +.ui-icon-bullet { background-position: -80px -144px; } +.ui-icon-radio-on { background-position: -96px -144px; } +.ui-icon-radio-off { background-position: -112px -144px; } +.ui-icon-pin-w { background-position: -128px -144px; } +.ui-icon-pin-s { background-position: -144px -144px; } +.ui-icon-play { background-position: 0 -160px; } +.ui-icon-pause { background-position: -16px -160px; } +.ui-icon-seek-next { background-position: -32px -160px; } +.ui-icon-seek-prev { background-position: -48px -160px; } +.ui-icon-seek-end { background-position: -64px -160px; } +.ui-icon-seek-start { background-position: -80px -160px; } +/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ +.ui-icon-seek-first { background-position: -80px -160px; } +.ui-icon-stop { background-position: -96px -160px; } +.ui-icon-eject { background-position: -112px -160px; } +.ui-icon-volume-off { background-position: -128px -160px; } +.ui-icon-volume-on { background-position: -144px -160px; } +.ui-icon-power { background-position: 0 -176px; } +.ui-icon-signal-diag { background-position: -16px -176px; } +.ui-icon-signal { background-position: -32px -176px; } +.ui-icon-battery-0 { background-position: -48px -176px; } +.ui-icon-battery-1 { background-position: -64px -176px; } +.ui-icon-battery-2 { background-position: -80px -176px; } +.ui-icon-battery-3 { background-position: -96px -176px; } +.ui-icon-circle-plus { background-position: 0 -192px; } +.ui-icon-circle-minus { background-position: -16px -192px; } +.ui-icon-circle-close { background-position: -32px -192px; } +.ui-icon-circle-triangle-e { background-position: -48px -192px; } +.ui-icon-circle-triangle-s { background-position: -64px -192px; } +.ui-icon-circle-triangle-w { background-position: -80px -192px; } +.ui-icon-circle-triangle-n { background-position: -96px -192px; } +.ui-icon-circle-arrow-e { background-position: -112px -192px; } +.ui-icon-circle-arrow-s { background-position: -128px -192px; } +.ui-icon-circle-arrow-w { background-position: -144px -192px; } +.ui-icon-circle-arrow-n { background-position: -160px -192px; } +.ui-icon-circle-zoomin { background-position: -176px -192px; } +.ui-icon-circle-zoomout { background-position: -192px -192px; } +.ui-icon-circle-check { background-position: -208px -192px; } +.ui-icon-circlesmall-plus { background-position: 0 -208px; } +.ui-icon-circlesmall-minus { background-position: -16px -208px; } +.ui-icon-circlesmall-close { background-position: -32px -208px; } +.ui-icon-squaresmall-plus { background-position: -48px -208px; } +.ui-icon-squaresmall-minus { background-position: -64px -208px; } +.ui-icon-squaresmall-close { background-position: -80px -208px; } +.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } +.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } +.ui-icon-grip-solid-vertical { background-position: -32px -224px; } +.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } +.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } +.ui-icon-grip-diagonal-se { background-position: -80px -224px; } + + +/* Misc visuals +----------------------------------*/ + +/* Corner radius */ +.ui-corner-all, +.ui-corner-top, +.ui-corner-left, +.ui-corner-tl { + border-top-left-radius: 4px; +} +.ui-corner-all, +.ui-corner-top, +.ui-corner-right, +.ui-corner-tr { + border-top-right-radius: 4px; +} +.ui-corner-all, +.ui-corner-bottom, +.ui-corner-left, +.ui-corner-bl { + border-bottom-left-radius: 4px; +} +.ui-corner-all, +.ui-corner-bottom, +.ui-corner-right, +.ui-corner-br { + border-bottom-right-radius: 4px; +} + +/* Overlays */ +.ui-widget-overlay { + opacity: .3; + filter: Alpha(Opacity=30); +} +.ui-widget-shadow { + margin: -8px 0 0 -8px; + padding: 8px; + opacity: .3; + filter: Alpha(Opacity=30); + border-radius: 8px; +} + diff --git a/ext/modules/payment/novalnet/css/novalnet.css b/ext/modules/payment/novalnet/css/novalnet.css new file mode 100644 index 0000000..a82f513 --- /dev/null +++ b/ext/modules/payment/novalnet/css/novalnet.css @@ -0,0 +1,9 @@ +.loader { + position: fixed; + left: 0px; + top: 0px; + width: 100%; + height: 100%; + z-index: 9999; + background: url('../../../../../images/icons/novalnet/novalnet_loader.gif') 50% 50% no-repeat; +} diff --git a/ext/modules/payment/novalnet/images/ui-bg_glass_75_e6e6e6_1x400.png b/ext/modules/payment/novalnet/images/ui-bg_glass_75_e6e6e6_1x400.png new file mode 100644 index 0000000000000000000000000000000000000000..08cf4c38aa14cb03b4d307749bd8538a4629e821 GIT binary patch literal 301 zcmeAS@N?(olHy`uVBq!ia0vp^j6gI&0LWmFTHNUZq*&4&eH|GXHuiJ>Nn{1`6_P!I zd>I(3)EF2VS{N990fib~Fff!FFfhDIU|_JC!N4G1FlSew4N!t9$=luK|9_FyhG&61 z4^J1z5R22v71NI!bh!y$y|_7@=X|fky!(k2hLazrsvTZ!(RN*tCqGHz-ZG;--Dwr_ z2RVJ?#5JNMC9x#cD!C{XNHG{0 z7@F!D80#7uh8S2_nOa(z80Z?9SQ!{>jEGW1(U6;;l9^VCTf+g?M{|K17(8A5T-G@y GGywoOl34rz literal 0 HcmV?d00001 diff --git a/ext/modules/payment/novalnet/images/ui-icons_222222_256x240.png b/ext/modules/payment/novalnet/images/ui-icons_222222_256x240.png new file mode 100644 index 0000000000000000000000000000000000000000..e556b9a90b19e71d08950599014c86d344e54a87 GIT binary patch literal 7006 zcmZ{JbzD^6xAvK#yGFWG5QdSK?vMrv1*D}LrD2d3kcL4J1f-FY&Jmb-m);Vow$o$-8-o zy$td~5%Ol_E9L%?ZnyEwsh*OjJ6k8S^B2Rd`~i2m%@+%S!_NY)#qT8xZ^TD@G+c4$ z)w?-E%Hcg`%Q&O1-rz`EvN3v3w%?>#fKSa!aOx-d;MZhkhZmX|mF~lAW)z~htZYPg z)PC3rzy={q?Ov^NUg{cU?tfk<6uUPUMOtbi^Yv~W0WL@s)?!HDkmeOdng~8uK4!l# z_nGL!1AzvRe4yZ*HPI;%PwX)t_!?=_jdTR@*Nr|FE{>vPsm1}%&HB$`WiP#^5}l?R zKE|Itj5GSEz;9I2U*1Nzc+~iLtKYZ)`nqcQ)CfM+`!W9DjpklYqBpUx&K9cD%-V#9 z-U?p?zwE0Ed}ER$4jRP9S`ctbuiC7JzCgY4lr1@5Fv9m+=9oMiUfBt(HG~K5H=s z1{J%SBPPBDy;xM>7CQrP3!LAKcQGJ6?;9u8HM2*zowPR8cEEZuGVCEcl{aXJUhAEp z#3vUUW@wm;B5!X&m?rmv;lfzLw1Lb;|2FIY?Zn4%Oq1XoIT7T`yK9g9{GFgzt-Aqs zp)$W2Ykq%e;_S`x01TjnASOzuTj&v}12?g{$d}OQmSqyFTW5Ez=+mD)Tw|S-UcV3V z$ah!4ofv;lum}m(+;MV#Ot0#+BN@r020pVSOdBEn!`^_yQs>N?qr$E?BY>%aDW9Eb z8qU8mSPaxW33b{v8U!5zUSEA2BrNu&qtf!j{>!Gvnux5t$ zkBMJCdiUYax-3EeDd22k(^@!(tV-K5phL67+R=AjiZ9?A?5yztUTjFHC)v7EdJ_CT zxq7m8#ve=&!6DuGue=wa{U;ax%Z!YcOEN1C36Y@pmRcSIL&<;HUpYGDnT+V*Qh^e~ zw4uujrGnB2THm;hhUQ-(A@)MwyK7Z9Kkg>?W#3WHrWi4DPmpTy5(@Gzdsf-jKkD&S z0-3yY&S5$|^Kt;qKbs9(uievW{Qji!O!_RfKo!rkE8iTtJmI8T`4&%pUfgb1a5Tk| zXxX`<(Ma02wo6*yNh|&jd8$pn_BT!Zu*4xu%g;YV!tqkp^v#YB?l@2kyPKTcwe@lm(8SRv-n6giNu&r z2I+anT6j%`)OROu{!!D`XgH8~2NYluGnlERxs+#ak*Zs-@eb{u=j#N2h8H|BgrdhA zLQUS&sBN2Q)VI2ovROv}!d@k#)XW{?xWD`Mez$DzxYC5|G}ol}7q=D1-cm{9FfcI2 z)xGWcN`UpxKGVby{-5#o2LBWO)^5h3nMYcuSd~AlD%=}S->Lg~wQIM(3%0KI>n%4q z$AbN^dg_(VrpEoQnU)-}t?lKO;^X6OW^!k5Pzh}>J_RvlVD}pg(C-;!IS%s1met+V z@5u8bxZl;y1q+$n6%EhYy%MJuRhh5wRR0o)Ir@wav8OjPs?}x3)a0@2tb0v~$y8p~ z_T{Jcq>tW1G#%-mLoV=oKUMA$&UG=dK28u$XyOU3<6S7Hm+knfXhgL9x|&lFNzJkY zIu7sP()+&0Y9?Iwn~pBTm?(Fj>8GaNhlRPW68^~6p7FteL z!!w!jbtckEVo%%T9k2@_`BMRtlUF}R&_CEBt|dU!ME_pIJ}$FJJ2aG8)6gk^8)mB2 z*)v8}N>qR4HnUe)gnSHv2|T8NF0f^KB5h-@Jyn#)_zFs?t0g-zXF)B5@?eBb@zD4A zK9l*}(y!78jpUN4eFc+y+fTWrecAq{e{KtbqBn9N(Fc#J8}TIoK0QwM{+S!4ZkRXl8_*k|F02U$nXgSk6s& zjq6iJ`&e*8$2{aMu=SPJDR#z7D~}1J)9c}7QEw%E>Uh%Cj(@$F#Q@te;<(!wNT4BZ zqkbNe&~yI01v_Thv)2zaiM=fQYTewTi21RHlzTP%I)zdwg7{YMtCA_qQ7qzm-zWB| ze;p7f81_F(1x*y7yQS9o!nD6Vbnj>}zEyNmMjn3Eu&ke6VLWC@uG&t(G=jYVwoVc0 zQo9aNO!q4xmw+z&lyATy8b58OKoHfx1HHKCzdeh1?L2^U@#t>QM!6O;gcd5^;eniq z*(9~8usYc~3Yh!CDVo75+N;so&)j&5jVGR_%fx*Q%5k&7-70LX4K*&yDS6jC!-1l= zX+QK6GvFV`{+%wub^9fH;)ZwC@p=Y>m=L zaLA818G=ov($1i7yi(u5d||{YZG}UrYTd zPSR*$ebDLG=GMNqxwN`-6(XCig}5d&sM`JH%B1;oEE^`J8EX18S*p7}W-};p(5fYl zgAHs2i5I)a{?<`w+UXw%1o`1gfKj{G4lukbO=we zURwHW9_zG@fAG#%%YZ6j3J5F$~ zAS3)l;(f^lM6lJg#;3RX@)_U62c6l2b#c_B)kT(Jcq=2;u_fa^@i+t+*@%MxIC*gd>TfNgMofVlq7|O9B#}V zY;wI_eM|CQ_O_KeLKw!%5{6#_(U22vM~H*vz+b8R|<-=p9wEj|uc`;xt&wl{X!8s>pH_zP6`=~YND zUSAx_!7Lg&j*RIL4obP`=GTfldbH5nFqU}(77Gq(NqB1=>ut!eN*Rr01%- zq4N@VImVZ+=ZbKf(3w-J0v|;Op-FQLBiLq!Pbi&#`r@iXi|(?qP#69U4V%gBuysk@sn7 zN&dt)Yq&|OhohI&!+#0LCVXOKUb{%vJQnVrolL+ARXqE{kjIZ(v;gcct%~;wB0&oy zpZ#Uyp|EZiRC1NYf<=7Mu1Om=At~utzAB|3<_@p6K~wQb_VUJDMMnOeRc6uZLH87_ zJU%0^6Z-9Xdw}BGc3fsn?#F=S32Rj(Zr+!d()aw53{n@Sotszb%w2@thTI!(1+g?I z5Lt(hLkN?-FFlk5C=tUw%)Fk^V8F|MNC$l&pKlY9MF&L8@PaB&d( z7-rEOwT^_Ov`G#2`1&iQn%4xTv5WT?%8*Nk^UCa7|Ij#BVTLq!#cwCBs2%R5vP<5M z*OE%TJae+Wo6}F$g(E5+`|?9>sjM1#!f3Z-l6!hzqj4bCDdWIXZoc;C$#_+J)daW4 zzNTg|DxzwzQpAg>VgKYkTJwwo^1jgBv$+Uy-OJynH!4|rgJJaR88Q4S98jf9!upKP zq?w!Yv3SQUKfSP#U2+}t;=I8a<~5sMTd0!#@bKV|??>E6BpRD~cJl);GknCldpG=P z6rePN>8Lsx^g_Gi>Zs7yXZr-jECm|gxKBQIaYtKik*wWHJK(5@+2oab@jXj-@M|fq zUi~O8(PqozHF{|7(t6_o-yI?w?NG;^Q3_ogm)4v{=}LA>)nieoJK1PPB|mc4(X#Qt z$1zSXtH`vjuiiVYitv6w6S%}V&{igTs)1c&c{VWK#L_4w_(otc?|KB_ceDv5$ybtz zrbCJ+m>YyYoAZ)RQxW=}65S|rLPa`-skpsZ9s_}px9RbpBT8)LINEN^wP&Q9M&@t1 z&b%rduRoUQ=FK z@yXSBIyev;m8m;3=p;@~H+(>G$W_>*Uf-XJ3pJ(GZFnZ0J{(^^R+^>VM&=d7c+(ZN zZNTaJUaJ4LDeZ>9#(;zyH<6J z?0qFn17?5r+2D%(q^w%uSJ#{1-;+#JCrWyp?>n+zmWXybmbL8q(MMh91)F&Y^@Gwo z|Ip^4_utfahB!vwTb*@sEBT;%$NW{1>&7+RaLDZ1dhS(brwWht5Q(@EiJ0oT&!|#& z)jEkds^CH%!cf4vpDz;9ZiZwS>y| z(ZjIP8dBb(6tLz8Z*G9VRU1p=x3gZ{&fw4cCAT8oIz%k$aPP@37~iR`9?mf5IjG)! zoZ@vBiRX~UqqK(1Ok4_Czn=Vsw-RKZNf)$VHBpl1It>qNIHIVza^!S8j$bWq4li2~ zwr#6$u#!WX%qiCi>^eJ>QY$7IiCR49BV9(F+X-b!k2stuLLaA>%=jC9!02v>#%f5- z5MXP-@T@mkZjx1m+oBlQUYW5;VntFo+lQm=PK2^Y5*Obin2p^z^y^>UzFU{)B=>WHerazFf+DOj++|J zd_QN~kSe*FwZrj_)cFbB*GLZkV=bth&~#SG~l`=^FBy=075lNR9Z`BdVN4t{aVWUrVuT)I+@&ZdxQG)MEe z6m)y5H9I@izm?QR)S_k2A*5Sg(o9l}$zOB71lsu|9^jV4jI*1sOU<7k5~i{Iop9))QC$)~YW)KUku z4n)jZ0M=ppTwnxOk<`I*6*=_IexnAsqr3o{WbhI;d;Hgg2 zb2d%B9;O9_Df8S0+jt4BNc2Fn*mZhpRx%l->2BSYl=upF!5ltX_fYbi84GN78X3YD zuTVUg&v)zRqUaS(u(VLhDaYf zXV$x3J@FrUjqn}&D>6Ioz!d+`&Lb(vQIiBD(h+0;Uc^|k2igXj8+3FIS=0Et1CY*5 z{x4JkK`0s&eF?0gU8WH8e!v*XiFEi-pMlm@Ec>~9CWb-9C*f|}hFs<0xz?1K`M zd#3wI>g+n1O8o%0fFqlHXiK|05kaC2T(9nHbO8mWE~Z;l4Duw#L&AXX^#=fJniB=R zra3d(&ykUZ+g890E}`vRK1E*my)B>(xI}+Ic}MIztoA5jQD|RtMMP$C^FZjsNNEJY z0>gt^syXoAs@Xqup9|W;k%{28^^&_6RT>oeD zuim}Pkbs%{{(GU$*KsuE>X>;$#)Dd#$3a_beGM70 zJ=>VS1>;*$(l0-if_K+5aJ1S3-k*94`c$vFe7(yeUaGlPSUY^Re}9bqP2xS()%st( z=e-sFWr+hU7bb~ZUcbLpTm%wBM{9zxq1-j!*Ho59vIZH%-ix~SH z#9NQIeIP?bEP+0Ij^>)g3$l#qT0A~RX-wy={7uN5VDEXX#7VKk@LVaIoK?tY@?52y zw~V`8U90`NjE#h3DPAiWJp!_L{J8&*9a>%Om7H9l(N!1eb;9Di+q&zFV~P-iloT}C z&5E||#K;YhenU(>gms|tbHH{#!+L%G&|`*`5C`^yi!*{(uhB?AOAI0*x(y2xhtW<*e0=P6Sc_PeZ&Bor*rBSu$7|;I~yRWTB6oZt1BZI54mx z#z&Y%vJ#2tDfUw_HH45qs97#dNu^f~sT`*Bb8drld%j%=?2{ZCIDlC8>%VXT1xTmg zg2PSrwL$+MIs7*-Xf{x`h=LeLD=3S{>O*{S+f?&VA~DdB$1D%t{cuk}UDqt8bASA$ zw2_37)GW%%WRcOlxw-Y)4||H9@hi{mlL)PAT^5~+tnjGoTYhOxMqhNEs=>tL1zh-g zN4q=X-Sd>9pfv5a-E5FAMgmYkZ)Q;PY0dN*>7cUGn)ltF@m0x~!r6_?7cAl_%-=+( z^n61x?%y%5hQ1)!D+2ZCTCQ(^Df%yxyEk6Rxw z<@?HsG!Qg3zaV+-xQ3ldtad!U<6iGz_enGH*2akP_r)o1D&8p^5M)_c8IIj6Wy*7HJo&CBLuo~nj>(63pZzO(Vv^ZuB3 zMYigjkwA;FEy|G}1jpiMj6|NTm7Uyiw=@FDE*nX<>jR!W@9XIyf%$Fd*J5*D0Z0Lm z9}ZQxyT|x5ftNy?V>EbJz-K>bV9gs9RaXUP<^=;e?&Fqxj;6{ieR-a-@HycA1KMKhql8GOmcxwZ?_-(3hMK^^a*(gaFvBH ziIC!fgH4$W*NbKIaY&T?%&13``KbD@S-0`xQ%v3TV+B!;RC7O!+1a9QCA$H@3tR;k z)SSoR7(s4)f{zM}eWgFN{(ZH5d1O}l)f$ruT!)Q&NImXyZsTzOf9TwctcSfr+M)aJ z5otO+$jvm-P4)ykH)x|cO5xeb>?!`qGw$(>&axqLL6yoB${vsMXgL_-bz@2J_tS92 zdvZG-+vKl@K4Vr(EL{WQt@Z+Ea-hxX0}nTSZxnpi^#Kn8Ox8FgIS|hc}KJQ4tm*HO16ui{(O9} z1YN)GjiQt6fGq`Cj+^`zUf?8hk^(T{{cOQGWFP98am}is28A!5%{R#ENv8fCN!j69 zlMEK(2z?|BY=Je$XD9mB-Kkem*(d-j^9j$2#6r$Dz?s)-TCDCGCs z8>6Pvj{Y+YIeFA@qY22V$)awy@q!9A4rgk5b9TcC;s9Ig^G|6nDP+5=Fzg&?(L=vc zCbGd>fSu~@6!94td+o#d@sid!EIX$rx7*cawe6 z`dScJ+$HssdOjE)O#Ybs56vm-FQ$7yuJJD^Zqk%hMaIgAJ<2yb_MFQte_i;62ScT$ zpjifYyR_E=rQ+>H)pmlr-Udzg*-!|ssw(D7wJvC+Sf8bb9;;q8#z?0p!!bsd{wy|5 zpBaMHE-Ve>i#LLjHRaMLtp%9&(HCng7Sw96jVv!#0k%?F^K7&=T)mnYn)D9(i;4x5 z^NJTJwq~pv;kH@#ejTd*48~(J(r6j34|m`h9fEDj0im)~+%I5XphWymhT;_Zty|Q& zzjPg#-ufAHZ1M*Gccw?Kf|8Pnhtb0`!{N`Bqsa37J+>wC$!e z00k+2Egzz;rbcWoUB%Jvp8W1}$XD%e3>4y;;OZ1ccT-O#uW6Ys@C}Pa`nZrNKzR(2 z4e%3)@QI4SE&E!lW`5y14QhbepBG%_XBV-O(%5tj)@9#|;sC-MNev!zGDHk}JdpGC`iJF#8=8-P$Xoku_=Dw%Cv3{U7L>gf zRQ?<$t`cZ*MP5GQmbmx#!+*!zu>0MewRO9GFGS{b^m_fJ-N0?j@EqoFf>$khj+E|@ z7r3We&^tR^YZrxKe*d22agXqCO0l44&kqCv{u)T|(lv`~PK@DvE z{QI_TlCH5z*gR!>LO)k67{^R+vWx24U2^2ODXpwT;6y+6+$5m)_*w4WY&#do9dCeE z)>p+Ykdhq($DhmMiaYXey!@N%L26uz($aJ!QT{B^Wu}U$^9e#5)=c+XF9@Ill?ZmM zlNgHiz*9!vDc&uxOo;ZVxb`Q!Sk0*gnfxWzmbZh4(=%CD%qP?0=);n$&zaW_$UKV9 z8axdcN#AyZ{P)wj?V{P}vM)YY!>6@}^>U+iv$`9>nMTCPjN>z%yF&3yf%>+T@0vh4 zlC8Xa6zeo?%=o3}M8{aebLHcO{^1Ar8qiM=Gquf?Jo)q5`-+?sUpg?QXyEUpWSm+n z$K-UyqkIwHLquru~o(OF)hhz$Y*|X>ZIbswnxRvr~ z2=rdOGVuD|xRlpAZE<0!X1F(%Anpl^@V^D3vbM}qxe|NI;TTiZy7(IM;R69RkA>a& z6gwYE2sREzQ_LHmWqB+ogMk(fMaSFeoDq-!HkFB_nXt5+2ncFuk9BQL1I&oB1zZi) zYW{6_&-Ip1l*OVRA##1ILQS;5R{-K^0wGTiJbVSi@LA^$D$;@J>^G{6@&+%4{b3(s zC~LEHiTv(0b#zxt?YJ0r_~pUZM~mQ(??(n#>&tD%+@nq=Abj5*8R!~Ul1`G~=qFJ4 zfl|m8ZDCYgtr`4LcOpgiJYX9qRY5;DcWti~PmS$VB$E-Zt^f4)vLDOe_3XTq5^ylW zJ9PKm!V-8sAOJXnUfuFNIf0R9tK-pNs2hO04zr620}5B(Ok>yB)Of-3sP59qfQNbm zA4{w!2@cB;GbR(~szVrbO%(w=5S!X`o@o@x++wbN_tMPT0Vc)*I;Fgsbf^*g0 z2Di?HTApwKq3+YwfNsqd3iP%{hyK1iyuVZc@*0tO_3+N0#GFsz>8MjeJ2UJ%L!%hi zGYYAthH`E+ywA*u{(eJ=ia3h*%k?779rk-K<0VZAPkl;TFUbmei|$fqWO8!_zIvqt z$ly$VrlH46nnpX~X5Yk0iBJl;=WuA4>~X4-f&K0yWf42h&0b30t@NYX$7egQ1Fp!a zbui-D6cWCWV&|R1CY@G8(qOmWjWeX3eX7UggZPGimA}soOuQdXe4uZ#2>5zN>qlI0 z9xk}lE=tNpX1m6*nFr2EQ3xs79!^sCldDJYE$m(qYv3q7>}1R7?iZW7>$~*%zKaC| z=$N?ME$>#+%T&MZC`dW1wUl6Z)JgyCn~V%K&i0H|iwE%$>xsZW3tTfZxIUePci@p;cRu|d=ItIwF z1clVHy{hH?@SD|(Zfqi^0DQ1hczHN7xq85h)rzQqLHMX2^IkuK7FB!kI40s$|CY7~ zNX^{_UjN8}L%Med;|+=4RNTMozn8KT;2tb77bUPCmioh+rZBfIiM6f_P34cQ__o1G zWqQp3VL~~pE5?qODf%iiQQ3f42YF@09tQ*$4v_EKUx;t1KCPCBtgqg z@+Tn;O)a0uky_%jm+WjNB?=~VyH>V#L!*=l*@OS6SVyt_UEH&NA=?V2stHPyKkVNy z&jg<#cjros){#ji)dK z%)We0L_478=HZ8-@xnwsKrWs8)x`MB;(Y`Cmu2c-&SH(vN-F(*e`l?c%+l$|y_AJJ zhcDGnwLvN+bu;_sX|1AiePhx@u&%P$hf*xE+O=~D?_(_KGWQ!158YL-y9$*6mmPo;Rp*Dl5lm-mVM2i`h- zM@nxv590_tvMwPD_{l=b$iOm|+|S{D9&P%zeT$GgX6Akl-tfUF>tL@Ld!B&{pN39t zH>3Vhqkr}2Yul+jb7UiouWVGPNsxX7Ueba+9|~dz?d*QM$ng0DZfO0`7fAy?2yMm| zcnRzUhZ&IcwgjH9cuU!w+VStYa{p*)4IgBf|E8)sqMYtB2KH_}SfsFq(c9i(Q6S3U oBo%DI*Kv;w;*%(i9W@f3_WCF#rGn literal 0 HcmV?d00001 diff --git a/ext/modules/payment/novalnet/install/install_11.sql b/ext/modules/payment/novalnet/install/install_11.sql new file mode 100644 index 0000000..8e44e50 --- /dev/null +++ b/ext/modules/payment/novalnet/install/install_11.sql @@ -0,0 +1,79 @@ +CREATE TABLE IF NOT EXISTS novalnet_subscription_detail ( + id int(11) AUTO_INCREMENT COMMENT 'Auto increment ID', + order_no int(11) COMMENT 'Order ID from shop', + subs_id int(11) unsigned COMMENT 'Subscription ID', + tid bigint(20) unsigned COMMENT 'Novalnet Transaction Reference ID', + parent_tid bigint(20) unsigned COMMENT 'Parent TID', + signup_date datetime COMMENT 'Subscription signup date', + termination_reason varchar(255) COMMENT 'Subscription termination reason by merchant', + termination_at datetime COMMENT 'Subscription terminated date', + PRIMARY KEY (id), + KEY order_no (order_no) +) COMMENT='Novalnet Subscription Transaction History'; + +CREATE TABLE IF NOT EXISTS novalnet_transaction_detail ( + id int(11) AUTO_INCREMENT COMMENT 'Auto Increment ID', + tid bigint(20) unsigned COMMENT 'Novalnet Transaction Reference ID', + vendor int(11) unsigned COMMENT 'Vendor ID', + product int(11) unsigned COMMENT 'Product ID', + auth_code varchar(40) COMMENT 'Vendor Authcode', + tariff int(11) unsigned COMMENT 'Tariff ID', + subs_id int(11) unsigned COMMENT 'Subscription Status', + payment_id int(11) unsigned COMMENT 'Payment ID', + payment_type varchar(50) COMMENT 'Executed Payment type of this order', + amount int(11) unsigned COMMENT 'Transaction amount', + total_amount int(11) unsigned COMMENT 'Order total amount', + currency char(3) COMMENT 'Transaction currency', + gateway_status int(11) unsigned NULL COMMENT 'Novalnet transaction status', + test_mode tinyint(1) unsigned DEFAULT '0' COMMENT 'Transaction test mode status', + customer_id int(11) unsigned COMMENT 'Customer ID from shop', + order_no int(11) COMMENT 'Order ID from shop', + `date` datetime COMMENT 'Transaction Date for reference', + `language` varchar(10) COMMENT 'Shop language', + process_key varchar(255) COMMENT 'Encrypted process key', + reference_transaction enum('0','1') COMMENT 'Notify the referenced order', + zerotrxnreference bigint(20) unsigned NULL COMMENT 'Zero transaction TID', + zerotrxndetails text NULL COMMENT 'Zero amount order details', + zero_transaction enum('0','1') NULL COMMENT 'Notify the zero amount order', + payment_ref text NULL COMMENT 'Payment reference for Invoice/Prepayment', + payment_details text COMMENT 'Masked account details of customer', + callback_amount int(11) unsigned COMMENT 'Callback amount', + PRIMARY KEY (id), + KEY tid (tid), + KEY payment_type (payment_type), + KEY order_no (order_no) +) COMMENT='Novalnet Transaction History'; + +CREATE TABLE IF NOT EXISTS novalnet_aff_account_detail ( + id int(11) AUTO_INCREMENT COMMENT 'Auto Increment ID', + vendor_id int(11) unsigned COMMENT 'Vendor ID', + vendor_authcode varchar(40) COMMENT 'Vendor Authcode', + product_id int(11) unsigned COMMENT 'Product ID', + product_url varchar(200) COMMENT 'Product url', + activation_date datetime COMMENT 'Affiliate Vendor ID', + aff_id int(11) unsigned COMMENT 'Affiliate ID', + aff_authcode varchar(40) COMMENT 'Affiliate Auth code', + aff_accesskey varchar(40) COMMENT 'Affiliate Accesskey', + PRIMARY KEY (id), + KEY vendor_id (vendor_id), + KEY aff_id (aff_id) +) COMMENT='Novalnet merchant / affiliate account information'; + +CREATE TABLE IF NOT EXISTS novalnet_aff_user_detail ( + id int(11) AUTO_INCREMENT COMMENT 'Auto Increment ID', + aff_id int(11) unsigned COMMENT 'Affiliate ID', + customer_id varchar(40) COMMENT 'Customer ID from shop', + aff_order_no int(11) COMMENT 'Affiliate Order number', + PRIMARY KEY (id), + KEY customer_id (customer_id) +) COMMENT='Novalnet affiliate customer account information'; + +CREATE TABLE IF NOT EXISTS novalnet_version_detail ( + version varchar(10), + KEY version (version) +) COMMENT='Novalnet version information'; + +ALTER TABLE configuration MODIFY set_function varchar(512); +ALTER TABLE configuration MODIFY configuration_title varchar(512); +ALTER TABLE configuration MODIFY configuration_description varchar(960); +ALTER TABLE orders_status_history MODIFY comments text; diff --git a/ext/modules/payment/novalnet/js/authorization.js b/ext/modules/payment/novalnet/js/authorization.js new file mode 100644 index 0000000..444d8a5 --- /dev/null +++ b/ext/modules/payment/novalnet/js/authorization.js @@ -0,0 +1,46 @@ + +if (window.addEventListener) { // For all major browsers, except IE 8 and earlier + window.addEventListener('load', load); + } else if (window.attachEvent) { // For IE 8 and earlier versions + window.attachEvent('onload', load); + } + + +function load() { + + var invoice_check = $('input[name="configuration[MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_INVOICE_LIMIT]'); + var invoice_auth = $("input[name='configuration[MODULE_PAYMENT_NOVALNET_INVOICE_AUTHENTICATE]']:checked"); + var sepa_check = $('input[name="configuration[MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_SEPA_LIMIT]'); + var sepa_auth = $("input[name='configuration[MODULE_PAYMENT_NOVALNET_SEPA_AUTHENTICATE]']:checked"); + var cc_check = $('input[name="configuration[MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_CC_LIMIT]'); + var cc_auth = $("input[name='configuration[MODULE_PAYMENT_NOVALNET_CC_AUTHENTICATE]']:checked"); + var paypal_check = $('input[name="configuration[MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT]'); + var paypal_auth = $("input[name='configuration[MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE]']:checked"); + + + (invoice_check.val() == '' && invoice_auth.val() != 'authorize' ) ? invoice_check.hide() : ''; + (sepa_check.val() == '' && sepa_auth.val() != 'authorize' ) ? sepa_check.hide() : '' ; + (cc_check.val() == '' && cc_auth.val() != 'authorize' ) ? cc_check.hide() : ''; + (paypal_check.val() == '' && paypal_auth.val() != 'authorize') ? paypal_check.hide() : ''; + +$(document).ready(function(){ + $("input[type='radio']").click(function(){ + var invoice_check = $('input[name="configuration[MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_INVOICE_LIMIT]'); + var invoice_auth = $("input[name='configuration[MODULE_PAYMENT_NOVALNET_INVOICE_AUTHENTICATE]']:checked"); + var sepa_check = $('input[name="configuration[MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_SEPA_LIMIT]'); + var sepa_auth = $("input[name='configuration[MODULE_PAYMENT_NOVALNET_SEPA_AUTHENTICATE]']:checked"); + var cc_check = $('input[name="configuration[MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_CC_LIMIT]'); + var cc_auth = $("input[name='configuration[MODULE_PAYMENT_NOVALNET_CC_AUTHENTICATE]']:checked"); + var paypal_check = $('input[name="configuration[MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT]'); + var paypal_auth = $("input[name='configuration[MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE]']:checked"); + + invoice_auth.val() == 'authorize' ? invoice_check.show() : (invoice_auth.val() == 'capture' ? invoice_check.hide() : '') ; + sepa_auth.val() == 'authorize' ? sepa_check.show() : (sepa_auth.val() == 'capture' ? sepa_check.hide() : '') ; + cc_auth.val() == 'authorize' ? cc_check.show() : (cc_auth.val() == 'capture' ? cc_check.hide() : '') ; + paypal_auth.val() == 'authorize' ? paypal_check.show() : (paypal_auth.val() == 'capture' ? paypal_check.hide() : '') ; + + + }); + + }); +} diff --git a/ext/modules/payment/novalnet/js/jquery-1.9.1.js b/ext/modules/payment/novalnet/js/jquery-1.9.1.js new file mode 100644 index 0000000..2d33ce3 --- /dev/null +++ b/ext/modules/payment/novalnet/js/jquery-1.9.1.js @@ -0,0 +1,9598 @@ +/*! + * jQuery JavaScript Library v1.9.1 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2013-2-4 + */ +(function( window, undefined ) { + +// Can't do this because several apps including ASP.NET trace +// the stack via arguments.caller.callee and Firefox dies if +// you try to trace through "use strict" call chains. (#13335) +// Support: Firefox 18+ +//"use strict"; +var + // The deferred used on DOM ready + readyList, + + // A central reference to the root jQuery(document) + rootjQuery, + + // Support: IE<9 + // For `typeof node.method` instead of `node.method !== undefined` + core_strundefined = typeof undefined, + + // Use the correct document accordingly with window argument (sandbox) + document = window.document, + location = window.location, + + // Map over jQuery in case of overwrite + _jQuery = window.jQuery, + + // Map over the $ in case of overwrite + _$ = window.$, + + // [[Class]] -> type pairs + class2type = {}, + + // List of deleted data cache ids, so we can reuse them + core_deletedIds = [], + + core_version = "1.9.1", + + // Save a reference to some core methods + core_concat = core_deletedIds.concat, + core_push = core_deletedIds.push, + core_slice = core_deletedIds.slice, + core_indexOf = core_deletedIds.indexOf, + core_toString = class2type.toString, + core_hasOwn = class2type.hasOwnProperty, + core_trim = core_version.trim, + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Used for matching numbers + core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, + + // Used for splitting on whitespace + core_rnotwhite = /\S+/g, + + // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + rquickExpr = /^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, + rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }, + + // The ready event handler + completed = function( event ) { + + // readyState === "complete" is good enough for us to call the dom ready in oldIE + if ( document.addEventListener || event.type === "load" || document.readyState === "complete" ) { + detach(); + jQuery.ready(); + } + }, + // Clean-up method for dom ready events + detach = function() { + if ( document.addEventListener ) { + document.removeEventListener( "DOMContentLoaded", completed, false ); + window.removeEventListener( "load", completed, false ); + + } else { + document.detachEvent( "onreadystatechange", completed ); + window.detachEvent( "onload", completed ); + } + }; + +jQuery.fn = jQuery.prototype = { + // The current version of jQuery being used + jquery: core_version, + + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + + // scripts is true for back-compat + jQuery.merge( this, jQuery.parseHTML( + match[1], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + // Properties of context are called as methods if possible + if ( jQuery.isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The default length of a jQuery object is 0 + length: 0, + + // The number of elements contained in the matched element set + size: function() { + return this.length; + }, + + toArray: function() { + return core_slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + ret.context = this.context; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; + }, + + slice: function() { + return this.pushStack( core_slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: core_push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var src, copyIsArray, copy, name, options, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger("ready").off("ready"); + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + isWindow: function( obj ) { + return obj != null && obj == obj.window; + }, + + isNumeric: function( obj ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + if ( obj == null ) { + return String( obj ); + } + return typeof obj === "object" || typeof obj === "function" ? + class2type[ core_toString.call(obj) ] || "object" : + typeof obj; + }, + + isPlainObject: function( obj ) { + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !core_hasOwn.call(obj, "constructor") && + !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + + var key; + for ( key in obj ) {} + + return key === undefined || core_hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + // data: string of html + // context (optional): If specified, the fragment will be created in this context, defaults to document + // keepScripts (optional): If true, will include scripts passed in the html string + parseHTML: function( data, context, keepScripts ) { + if ( !data || typeof data !== "string" ) { + return null; + } + if ( typeof context === "boolean" ) { + keepScripts = context; + context = false; + } + context = context || document; + + var parsed = rsingleTag.exec( data ), + scripts = !keepScripts && []; + + // Single tag + if ( parsed ) { + return [ context.createElement( parsed[1] ) ]; + } + + parsed = jQuery.buildFragment( [ data ], context, scripts ); + if ( scripts ) { + jQuery( scripts ).remove(); + } + return jQuery.merge( [], parsed.childNodes ); + }, + + parseJSON: function( data ) { + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + if ( data === null ) { + return data; + } + + if ( typeof data === "string" ) { + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + if ( data ) { + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + } + } + } + + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + if ( !data || typeof data !== "string" ) { + return null; + } + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && jQuery.trim( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var value, + i = 0, + length = obj.length, + isArray = isArraylike( obj ); + + if ( args ) { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } + } + + return obj; + }, + + // Use native String.trim function wherever possible + trim: core_trim && !core_trim.call("\uFEFF\xA0") ? + function( text ) { + return text == null ? + "" : + core_trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + ( text + "" ).replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArraylike( Object(arr) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + core_push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + var len; + + if ( arr ) { + if ( core_indexOf ) { + return core_indexOf.call( arr, elem, i ); + } + + len = arr.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in arr && arr[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var l = second.length, + i = first.length, + j = 0; + + if ( typeof l === "number" ) { + for ( ; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var retVal, + ret = [], + i = 0, + length = elems.length; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, + i = 0, + length = elems.length, + isArray = isArraylike( elems ), + ret = []; + + // Go through the array, translating each of the items to their + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return core_concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var args, proxy, tmp; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = core_slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( core_slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + // Multifunctional method to get and set values of a collection + // The value/s can optionally be executed if it's a function + access: function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + length = elems.length, + bulk = key == null; + + // Sets many values + if ( jQuery.type( key ) === "object" ) { + chainable = true; + for ( i in key ) { + jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !jQuery.isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < length; i++ ) { + fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); + } + } + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + length ? fn( elems[0], key ) : emptyGet; + }, + + now: function() { + return ( new Date() ).getTime(); + } +}); + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // we once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready ); + + // Standards-based browsers support DOMContentLoaded + } else if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed, false ); + + // If IE event model is used + } else { + // Ensure firing before onload, maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", completed ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", completed ); + + // If IE and not a frame + // continually check to see if the document is ready + var top = false; + + try { + top = window.frameElement == null && document.documentElement; + } catch(e) {} + + if ( top && top.doScroll ) { + (function doScrollCheck() { + if ( !jQuery.isReady ) { + + try { + // Use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + top.doScroll("left"); + } catch(e) { + return setTimeout( doScrollCheck, 50 ); + } + + // detach all dom ready events + detach(); + + // and execute any waiting functions + jQuery.ready(); + } + })(); + } + } + } + return readyList.promise( obj ); +}; + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +function isArraylike( obj ) { + var length = obj.length, + type = jQuery.type( obj ); + + if ( jQuery.isWindow( obj ) ) { + return false; + } + + if ( obj.nodeType === 1 && length ) { + return true; + } + + return type === "array" || type !== "function" && + ( length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj ); +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache +function createOptions( options ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.match( core_rnotwhite ) || [], function( _, flag ) { + object[ flag ] = true; + }); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + ( optionsCache[ options ] || createOptions( options ) ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list was already fired + fired, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // First callback to fire (used internally by add and fireWith) + firingStart, + // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = !options.once && [], + // Fire callbacks + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; + } + } + firing = false; + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { + list = []; + } else { + self.disable(); + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + // First, we save the current length + var start = list.length; + (function add( args ) { + jQuery.each( args, function( _, arg ) { + var type = jQuery.type( arg ); + if ( type === "function" ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && type !== "string" ) { + // Inspect recursively + add( arg ); + } + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } + } + }); + } + return this; + }, + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); + }, + // Remove all callbacks from the list + empty: function() { + list = []; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( list && ( !fired || stack ) ) { + if ( firing ) { + stack.push( args ); + } else { + fire( args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; +jQuery.extend({ + + Deferred: function( func ) { + var tuples = [ + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred(function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var action = tuple[ 0 ], + fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ](function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .done( newDefer.resolve ) + .fail( newDefer.reject ) + .progress( newDefer.notify ); + } else { + newDefer[ action + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); + } + }); + }); + fns = null; + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; + + // Handle state + if ( stateString ) { + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] + deferred[ tuple[0] ] = function() { + deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); + return this; + }; + deferred[ tuple[0] + "With" ] = list.fireWith; + }); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = core_slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; + if( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } + } + } + + // if we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +}); +jQuery.support = (function() { + + var support, all, a, + input, select, fragment, + opt, eventName, isSupported, i, + div = document.createElement("div"); + + // Setup + div.setAttribute( "className", "t" ); + div.innerHTML = "
a"; + + // Support tests won't run in some limited or non-browser environments + all = div.getElementsByTagName("*"); + a = div.getElementsByTagName("a")[ 0 ]; + if ( !all || !a || !all.length ) { + return {}; + } + + // First batch of tests + select = document.createElement("select"); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName("input")[ 0 ]; + + a.style.cssText = "top:1px;float:left;opacity:.5"; + support = { + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + getSetAttribute: div.className !== "t", + + // IE strips leading whitespace when .innerHTML is used + leadingWhitespace: div.firstChild.nodeType === 3, + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + tbody: !div.getElementsByTagName("tbody").length, + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + htmlSerialize: !!div.getElementsByTagName("link").length, + + // Get the style information from getAttribute + // (IE uses .cssText instead) + style: /top/.test( a.getAttribute("style") ), + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + hrefNormalized: a.getAttribute("href") === "/a", + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + opacity: /^0.5/.test( a.style.opacity ), + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + cssFloat: !!a.style.cssFloat, + + // Check the default checkbox/radio value ("" on WebKit; "on" elsewhere) + checkOn: !!input.value, + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + optSelected: opt.selected, + + // Tests for enctype support on a form (#6743) + enctype: !!document.createElement("form").enctype, + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>", + + // jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode + boxModel: document.compatMode === "CSS1Compat", + + // Will be defined later + deleteExpando: true, + noCloneEvent: true, + inlineBlockNeedsLayout: false, + shrinkWrapBlocks: false, + reliableMarginRight: true, + boxSizingReliable: true, + pixelPosition: false + }; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Support: IE<9 + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + // Check if we can trust getAttribute("value") + input = document.createElement("input"); + input.setAttribute( "value", "" ); + support.input = input.getAttribute( "value" ) === ""; + + // Check if an input maintains its value after becoming a radio + input.value = "t"; + input.setAttribute( "type", "radio" ); + support.radioValue = input.value === "t"; + + // #11217 - WebKit loses check when the name is after the checked attribute + input.setAttribute( "checked", "t" ); + input.setAttribute( "name", "t" ); + + fragment = document.createDocumentFragment(); + fragment.appendChild( input ); + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE<9 + // Opera does not clone events (and typeof div.attachEvent === undefined). + // IE9-10 clones events bound via attachEvent, but they don't trigger with .click() + if ( div.attachEvent ) { + div.attachEvent( "onclick", function() { + support.noCloneEvent = false; + }); + + div.cloneNode( true ).click(); + } + + // Support: IE<9 (lack submit/change bubble), Firefox 17+ (lack focusin event) + // Beware of CSP restrictions (https://developer.mozilla.org/en/Security/CSP), test/csp.php + for ( i in { submit: true, change: true, focusin: true }) { + div.setAttribute( eventName = "on" + i, "t" ); + + support[ i + "Bubbles" ] = eventName in window || div.attributes[ eventName ].expando === false; + } + + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + // Run tests that need a body at doc ready + jQuery(function() { + var container, marginDiv, tds, + divReset = "padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;", + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + container = document.createElement("div"); + container.style.cssText = "border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px"; + + body.appendChild( container ).appendChild( div ); + + // Support: IE8 + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + div.innerHTML = "
t
"; + tds = div.getElementsByTagName("td"); + tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Support: IE8 + // Check if empty table cells still have offsetWidth/Height + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Check box-sizing and margin behavior + div.innerHTML = ""; + div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; + support.boxSizing = ( div.offsetWidth === 4 ); + support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 ); + + // Use window.getComputedStyle because jsdom on node.js will break without it. + if ( window.getComputedStyle ) { + support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; + support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. (#3333) + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + marginDiv = div.appendChild( document.createElement("div") ); + marginDiv.style.cssText = div.style.cssText = divReset; + marginDiv.style.marginRight = marginDiv.style.width = "0"; + div.style.width = "1px"; + + support.reliableMarginRight = + !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); + } + + if ( typeof div.style.zoom !== core_strundefined ) { + // Support: IE<8 + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + div.innerHTML = ""; + div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); + + // Support: IE6 + // Check if elements with layout shrink-wrap their children + div.style.display = "block"; + div.innerHTML = "
"; + div.firstChild.style.width = "5px"; + support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); + + if ( support.inlineBlockNeedsLayout ) { + // Prevent IE 6 from affecting layout for positioned elements #11048 + // Prevent IE from shrinking the body in IE 7 mode #12869 + // Support: IE<8 + body.style.zoom = 1; + } + } + + body.removeChild( container ); + + // Null elements to avoid leaks in IE + container = div = tds = marginDiv = null; + }); + + // Null elements to avoid leaks in IE + all = select = fragment = opt = a = input = null; + + return support; +})(); + +var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, + rmultiDash = /([A-Z])/g; + +function internalData( elem, name, data, pvt /* Internal Use Only */ ){ + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, ret, + internalKey = jQuery.expando, + getByName = typeof name === "string", + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + elem[ internalKey ] = id = core_deletedIds.pop() || jQuery.guid++; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + cache[ id ] = {}; + + // Avoids exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + if ( !isNode ) { + cache[ id ].toJSON = jQuery.noop; + } + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( getByName ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; +} + +function internalRemoveData( elem, name, pvt ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var i, l, thisCache, + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + id = isNode ? elem[ jQuery.expando ] : jQuery.expando; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split(" "); + } + } + } else { + // If "name" is an array of keys... + // When data is initially created, via ("key", "val") signature, + // keys will be converted to camelCase. + // Since there is no way to tell _how_ a key was added, remove + // both plain key and camelCase key. #12786 + // This will only penalize the array argument path. + name = name.concat( jQuery.map( name, jQuery.camelCase ) ); + } + + for ( i = 0, l = name.length; i < l; i++ ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject( cache[ id ] ) ) { + return; + } + } + + // Destroy the cache + if ( isNode ) { + jQuery.cleanData( [ elem ], true ); + + // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) + } else if ( jQuery.support.deleteExpando || cache != cache.window ) { + delete cache[ id ]; + + // When all else fails, null + } else { + cache[ id ] = null; + } +} + +jQuery.extend({ + cache: {}, + + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( core_version + Math.random() ).replace( /\D/g, "" ), + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", + "applet": true + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data ) { + return internalData( elem, name, data ); + }, + + removeData: function( elem, name ) { + return internalRemoveData( elem, name ); + }, + + // For internal use only. + _data: function( elem, name, data ) { + return internalData( elem, name, data, true ); + }, + + _removeData: function( elem, name ) { + return internalRemoveData( elem, name, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + // Do not set data on non-element because it will not be cleared (#8335). + if ( elem.nodeType && elem.nodeType !== 1 && elem.nodeType !== 9 ) { + return false; + } + + var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; + + // nodes accept data unless otherwise specified; rejection can be conditional + return !noData || noData !== true && elem.getAttribute("classid") === noData; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var attrs, name, + elem = this[0], + i = 0, + data = null; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = jQuery.data( elem ); + + if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { + attrs = elem.attributes; + for ( ; i < attrs.length; i++ ) { + name = attrs[i].name; + + if ( !name.indexOf( "data-" ) ) { + name = jQuery.camelCase( name.slice(5) ); + + dataAttr( elem, name, data[ name ] ); + } + } + jQuery._data( elem, "parsedAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + return jQuery.access( this, function( value ) { + + if ( value === undefined ) { + // Try to fetch any internally stored data first + return elem ? dataAttr( elem, key, jQuery.data( elem, key ) ) : null; + } + + this.each(function() { + jQuery.data( this, key, value ); + }); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + var name; + for ( name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} +jQuery.extend({ + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray(data) ) { + queue = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + hooks.cur = fn; + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // not intended for public consumption - generates a queueHooks object, or returns the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return jQuery._data( elem, key ) || jQuery._data( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + jQuery._removeData( elem, type + "queue" ); + jQuery._removeData( elem, key ); + }) + }); + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[0], type ); + } + + return data === undefined ? + this : + this.each(function() { + var queue = jQuery.queue( this, type, data ); + + // ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while( i-- ) { + tmp = jQuery._data( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +}); +var nodeHook, boolHook, + rclass = /[\t\r\n]/g, + rreturn = /\r/g, + rfocusable = /^(?:input|select|textarea|button|object)$/i, + rclickable = /^(?:a|area)$/i, + rboolean = /^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i, + ruseDefault = /^(?:checked|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute, + getSetInput = jQuery.support.input; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call( this, j, this.className ) ); + }); + } + + if ( proceed ) { + // The disjunction here is for better compressibility (see removeClass) + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + " " + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + elem.className = jQuery.trim( cur ); + + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, clazz, j, + i = 0, + len = this.length, + proceed = arguments.length === 0 || typeof value === "string" && value; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call( this, j, this.className ) ); + }); + } + if ( proceed ) { + classes = ( value || "" ).match( core_rnotwhite ) || []; + + for ( ; i < len; i++ ) { + elem = this[ i ]; + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( elem.className ? + ( " " + elem.className + " " ).replace( rclass, " " ) : + "" + ); + + if ( cur ) { + j = 0; + while ( (clazz = classes[j++]) ) { + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) >= 0 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + elem.className = value ? jQuery.trim( cur ) : ""; + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.match( core_rnotwhite ) || []; + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space separated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + // Toggle whole class name + } else if ( type === core_strundefined || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // If the element has a class name or if we're passed "false", + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) >= 0 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var ret, hooks, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var val, + self = jQuery(this); + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, self.val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // attributes.value is undefined in Blackberry 4.7 but + // uses .value. See #6932 + var val = elem.attributes.value; + return !val || val.specified ? elem.value : elem.text; + } + }, + select: { + get: function( elem ) { + var value, option, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one" || index < 0, + values = one ? null : [], + max = one ? index + 1 : options.length, + i = index < 0 ? + max : + one ? index : 0; + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // oldIE doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + // Don't return options that are disabled or in a disabled optgroup + ( jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null ) && + ( !option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var values = jQuery.makeArray( value ); + + jQuery(elem).find("option").each(function() { + this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; + }); + + if ( !values.length ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + attr: function( elem, name, value ) { + var hooks, notxml, ret, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === core_strundefined ) { + return jQuery.prop( elem, name, value ); + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( notxml ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + + } else if ( hooks && notxml && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, value + "" ); + return value; + } + + } else if ( hooks && notxml && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + + // In IE9+, Flash objects don't have .getAttribute (#12945) + // Support: IE9+ + if ( typeof elem.getAttribute !== core_strundefined ) { + ret = elem.getAttribute( name ); + } + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var name, propName, + i = 0, + attrNames = value && value.match( core_rnotwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( (name = attrNames[i++]) ) { + propName = jQuery.propFix[ name ] || name; + + // Boolean attributes get special treatment (#10870) + if ( rboolean.test( name ) ) { + // Set corresponding property to false for boolean attributes + // Also clear defaultChecked/defaultSelected (if appropriate) for IE<8 + if ( !getSetAttribute && ruseDefault.test( name ) ) { + elem[ jQuery.camelCase( "default-" + name ) ] = + elem[ propName ] = false; + } else { + elem[ propName ] = false; + } + + // See #9699 for explanation of this approach (setting first, then removal) + } else { + jQuery.attr( elem, name, "" ); + } + + elem.removeAttribute( getSetAttribute ? name : propName ); + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to default in case type is set after value during creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + propFix: { + tabindex: "tabIndex", + readonly: "readOnly", + "for": "htmlFor", + "class": "className", + maxlength: "maxLength", + cellspacing: "cellSpacing", + cellpadding: "cellPadding", + rowspan: "rowSpan", + colspan: "colSpan", + usemap: "useMap", + frameborder: "frameBorder", + contenteditable: "contentEditable" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + return ( elem[ name ] = value ); + } + + } else { + if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + return elem[ name ]; + } + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + var attributeNode = elem.getAttributeNode("tabindex"); + + return attributeNode && attributeNode.specified ? + parseInt( attributeNode.value, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + undefined; + } + } + } +}); + +// Hook for boolean attributes +boolHook = { + get: function( elem, name ) { + var + // Use .prop to determine if this attribute is understood as boolean + prop = jQuery.prop( elem, name ), + + // Fetch it accordingly + attr = typeof prop === "boolean" && elem.getAttribute( name ), + detail = typeof prop === "boolean" ? + + getSetInput && getSetAttribute ? + attr != null : + // oldIE fabricates an empty string for missing boolean attributes + // and conflates checked/selected into attroperties + ruseDefault.test( name ) ? + elem[ jQuery.camelCase( "default-" + name ) ] : + !!attr : + + // fetch an attribute node for properties not recognized as boolean + elem.getAttributeNode( name ); + + return detail && detail.value !== false ? + name.toLowerCase() : + undefined; + }, + set: function( elem, value, name ) { + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else if ( getSetInput && getSetAttribute || !ruseDefault.test( name ) ) { + // IE<8 needs the *property* name + elem.setAttribute( !getSetAttribute && jQuery.propFix[ name ] || name, name ); + + // Use defaultChecked and defaultSelected for oldIE + } else { + elem[ jQuery.camelCase( "default-" + name ) ] = elem[ name ] = true; + } + + return name; + } +}; + +// fix oldIE value attroperty +if ( !getSetInput || !getSetAttribute ) { + jQuery.attrHooks.value = { + get: function( elem, name ) { + var ret = elem.getAttributeNode( name ); + return jQuery.nodeName( elem, "input" ) ? + + // Ignore the value *property* by using defaultValue + elem.defaultValue : + + ret && ret.specified ? ret.value : undefined; + }, + set: function( elem, value, name ) { + if ( jQuery.nodeName( elem, "input" ) ) { + // Does not return so that setAttribute is also used + elem.defaultValue = value; + } else { + // Use nodeHook if defined (#1954); otherwise setAttribute is fine + return nodeHook && nodeHook.set( elem, value, name ); + } + } + }; +} + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = jQuery.valHooks.button = { + get: function( elem, name ) { + var ret = elem.getAttributeNode( name ); + return ret && ( name === "id" || name === "name" || name === "coords" ? ret.value !== "" : ret.specified ) ? + ret.value : + undefined; + }, + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + elem.setAttributeNode( + (ret = elem.ownerDocument.createAttribute( name )) + ); + } + + ret.value = value += ""; + + // Break association with cloned elements by also using setAttribute (#9646) + return name === "value" || value === elem.getAttribute( name ) ? + value : + undefined; + } + }; + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + get: nodeHook.get, + set: function( elem, value, name ) { + nodeHook.set( elem, value === "" ? false : value, name ); + } + }; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }); + }); +} + + +// Some attributes require a special call on IE +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !jQuery.support.hrefNormalized ) { + jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + get: function( elem ) { + var ret = elem.getAttribute( name, 2 ); + return ret == null ? undefined : ret; + } + }); + }); + + // href/src property should get the full normalized URL (#10299/#12915) + jQuery.each([ "href", "src" ], function( i, name ) { + jQuery.propHooks[ name ] = { + get: function( elem ) { + return elem.getAttribute( name, 4 ); + } + }; + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Note: IE uppercases css property names, but if we were to .toLowerCase() + // .cssText, that would destroy case senstitivity in URL's, like in "background" + return elem.style.cssText || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = value + "" ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }); +} + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +if ( !jQuery.support.checkOn ) { + jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + get: function( elem ) { + // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + } + }; + }); +} +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }); +}); +var rformElems = /^(?:input|select|textarea)$/i, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + var tmp, events, t, handleObjIn, + special, eventHandle, handleObj, + handlers, type, namespaces, origType, + elemData = jQuery._data( elem ); + + // Don't attach events to noData or text/comment nodes (but allow plain objects) + if ( !elemData ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !(events = elemData.events) ) { + events = elemData.events = {}; + } + if ( !(eventHandle = elemData.handle) ) { + eventHandle = elemData.handle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== core_strundefined && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + // jQuery(...).bind("mouseover mouseout", fn); + types = ( types || "" ).match( core_rnotwhite ) || [""]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !(handlers = events[ type ]) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + var j, handleObj, tmp, + origCount, t, events, + special, handlers, type, + namespaces, origType, + elemData = jQuery.hasData( elem ) && jQuery._data( elem ); + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( core_rnotwhite ) || [""]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + delete elemData.handle; + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery._removeData( elem, "events" ); + } + }, + + trigger: function( event, data, elem, onlyHandlers ) { + var handle, ontype, cur, + bubbleType, special, tmp, i, + eventPath = [ elem || document ], + type = core_hasOwn.call( event, "type" ) ? event.type : event, + namespaces = core_hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; + + cur = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf(".") >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf(":") < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + event.isTrigger = true; + event.namespace = namespaces.join("."); + event.namespace_re = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === (elem.ownerDocument || document) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { + + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && jQuery.acceptData( cur ) && handle.apply && handle.apply( cur, data ) === false ) { + event.preventDefault(); + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && + !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && elem[ type ] && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + try { + elem[ type ](); + } catch ( e ) { + // IE<9 dies on focus/blur to hidden element (#1486,#12518) + // only reproducible on winXP IE8 native, not IE9 in IE8 mode + } + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event ); + + var i, ret, handleObj, matched, j, + handlerQueue = [], + args = core_slice.call( arguments ), + handlers = ( jQuery._data( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { + + // Triggered event must either 1) have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( (event.result = ret) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var sel, handleObj, matches, i, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + // Black-hole SVG instance trees (#13180) + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { + + for ( ; cur != this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) { + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matches[ sel ] === undefined ) { + matches[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) >= 0 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matches[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, handlers: matches }); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( delegateCount < handlers.length ) { + handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); + } + + return handlerQueue; + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, copy, + type = event.type, + originalEvent = event, + fixHook = this.fixHooks[ type ]; + + if ( !fixHook ) { + this.fixHooks[ type ] = fixHook = + rmouseEvent.test( type ) ? this.mouseHooks : + rkeyEvent.test( type ) ? this.keyHooks : + {}; + } + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = new jQuery.Event( originalEvent ); + + i = copy.length; + while ( i-- ) { + prop = copy[ i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Support: IE<9 + // Fix target property (#1925) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Support: Chrome 23+, Safari? + // Target should not be a text node (#504, #13143) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // Support: IE<9 + // For mouse/key events, metaKey==false if it's undefined (#3368, #11328) + event.metaKey = !!event.metaKey; + + return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var body, eventDoc, doc, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + special: { + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + // For checkbox, fire native event so checked state will be right + trigger: function() { + if ( jQuery.nodeName( this, "input" ) && this.type === "checkbox" && this.click ) { + this.click(); + return false; + } + } + }, + focus: { + // Fire native event if possible so blur/focus sequence is correct + trigger: function() { + if ( this !== document.activeElement && this.focus ) { + try { + this.focus(); + return false; + } catch ( e ) { + // Support: IE<9 + // If we error on focus to hidden element (#1486, #12518), + // let .trigger() run the handlers + } + } + }, + delegateType: "focusin" + }, + blur: { + trigger: function() { + if ( this === document.activeElement && this.blur ) { + this.blur(); + return false; + } + }, + delegateType: "focusout" + }, + + beforeunload: { + postDispatch: function( event ) { + + // Even when returnValue equals to undefined Firefox will still show alert + if ( event.result !== undefined ) { + event.originalEvent.returnValue = event.result; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + var name = "on" + type; + + if ( elem.detachEvent ) { + + // #8545, #7054, preventing memory leaks for custom events in IE6-8 + // detachEvent needed property on element, by name of that event, to properly expose it to GC + if ( typeof elem[ name ] === core_strundefined ) { + elem[ name ] = null; + } + + elem.detachEvent( name, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + if ( !e ) { + return; + } + + // If preventDefault exists, run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // Support: IE + // Otherwise set the returnValue property of the original event to false + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + if ( !e ) { + return; + } + // If stopPropagation exists, run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + + // Support: IE + // Set the cancelBubble property of the original event to true + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + } +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !jQuery._data( form, "submitBubbles" ) ) { + jQuery.event.add( form, "submit._submit", function( event ) { + event._submit_bubble = true; + }); + jQuery._data( form, "submitBubbles", true ); + } + }); + // return undefined since we don't need an event listener + }, + + postDispatch: function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( event._submit_bubble ) { + delete event._submit_bubble; + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + } + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !jQuery.support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + } + // Allow triggered, simulated change events (#11500) + jQuery.event.simulate( "change", this, event, true ); + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "changeBubbles" ) ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + jQuery._data( elem, "changeBubbles", true ); + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return !rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var type, origFn; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on( types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + bind: function( types, data, fn ) { + return this.on( types, null, data, fn ); + }, + unbind: function( types, fn ) { + return this.off( types, null, fn ); + }, + + delegate: function( selector, types, data, fn ) { + return this.on( types, selector, data, fn ); + }, + undelegate: function( selector, types, fn ) { + // ( namespace ) or ( selector, types [, fn] ) + return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + var elem = this[0]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +}); +/*! + * Sizzle CSS Selector Engine + * Copyright 2012 jQuery Foundation and other contributors + * Released under the MIT license + * http://sizzlejs.com/ + */ +(function( window, undefined ) { + +var i, + cachedruns, + Expr, + getText, + isXML, + compile, + hasDuplicate, + outermostContext, + + // Local document vars + setDocument, + document, + docElem, + documentIsXML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + sortOrder, + + // Instance-specific data + expando = "sizzle" + -(new Date()), + preferredDoc = window.document, + support = {}, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + + // General-purpose constants + strundefined = typeof undefined, + MAX_NEGATIVE = 1 << 31, + + // Array methods + arr = [], + pop = arr.pop, + push = arr.push, + slice = arr.slice, + // Use a stripped-down indexOf if we can't use a native one + indexOf = arr.indexOf || function( elem ) { + var i = 0, + len = this.length; + for ( ; i < len; i++ ) { + if ( this[i] === elem ) { + return i; + } + } + return -1; + }, + + + // Regular expressions + + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", + + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), + + // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors + operators = "([*^$|!~]?=)", + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + + "*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", + + // Prefer arguments quoted, + // then not containing pseudos/brackets, + // then attribute selectors/non-parenthetical expressions, + // then anything else + // These preferences are here to reduce the number of selectors + // needing tokenize in the PSEUDO preFilter + pseudos = ":(" + characterEncoding + ")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|" + attributes.replace( 3, 8 ) + ")*)|.*)\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ), + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rsibling = /[\x20\t\r\n\f]*[+~]/, + + rnative = /^[^{]+\{\s*\[native code/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rescape = /'|\\/g, + rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g, + + // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = /\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g, + funescape = function( _, escaped ) { + var high = "0x" + escaped - 0x10000; + // NaN means non-codepoint + return high !== high ? + escaped : + // BMP codepoint + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + // Supplemental Plane codepoint (surrogate pair) + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }; + +// Use a stripped-down slice if we can't use a native one +try { + slice.call( preferredDoc.documentElement.childNodes, 0 )[0].nodeType; +} catch ( e ) { + slice = function( i ) { + var elem, + results = []; + while ( (elem = this[i++]) ) { + results.push( elem ); + } + return results; + }; +} + +/** + * For feature detection + * @param {Function} fn The function to test for native support + */ +function isNative( fn ) { + return rnative.test( fn + "" ); +} + +/** + * Create key-value caches of limited size + * @returns {Function(string, Object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var cache, + keys = []; + + return (cache = function( key, value ) { + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key += " " ) > Expr.cacheLength ) { + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return (cache[ key ] = value); + }); +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created div and expects a boolean result + */ +function assert( fn ) { + var div = document.createElement("div"); + + try { + return fn( div ); + } catch (e) { + return false; + } finally { + // release memory in IE + div = null; + } +} + +function Sizzle( selector, context, results, seed ) { + var match, elem, m, nodeType, + // QSA vars + i, groups, old, nid, newContext, newSelector; + + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + + context = context || document; + results = results || []; + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + if ( (nodeType = context.nodeType) !== 1 && nodeType !== 9 ) { + return []; + } + + if ( !documentIsXML && !seed ) { + + // Shortcuts + if ( (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; + } + } + + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) ); + return results; + + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && support.getByClassName && context.getElementsByClassName ) { + push.apply( results, slice.call(context.getElementsByClassName( m ), 0) ); + return results; + } + } + + // QSA path + if ( support.qsa && !rbuggyQSA.test(selector) ) { + old = true; + nid = expando; + newContext = context; + newSelector = nodeType === 9 && selector; + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + groups = tokenize( selector ); + + if ( (old = context.getAttribute("id")) ) { + nid = old.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + nid = "[id='" + nid + "'] "; + + i = groups.length; + while ( i-- ) { + groups[i] = nid + toSelector( groups[i] ); + } + newContext = rsibling.test( selector ) && context.parentNode || context; + newSelector = groups.join(","); + } + + if ( newSelector ) { + try { + push.apply( results, slice.call( newContext.querySelectorAll( + newSelector + ), 0 ) ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Detect xml + * @param {Element|Object} elem An element or a document + */ +isXML = Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var doc = node ? node.ownerDocument || node : preferredDoc; + + // If no document and documentElement is available, return + if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Set our document + document = doc; + docElem = doc.documentElement; + + // Support tests + documentIsXML = isXML( doc ); + + // Check if getElementsByTagName("*") returns only elements + support.tagNameNoComments = assert(function( div ) { + div.appendChild( doc.createComment("") ); + return !div.getElementsByTagName("*").length; + }); + + // Check if attributes should be retrieved by attribute nodes + support.attributes = assert(function( div ) { + div.innerHTML = ""; + var type = typeof div.lastChild.getAttribute("multiple"); + // IE8 returns a string for some attributes even when not present + return type !== "boolean" && type !== "string"; + }); + + // Check if getElementsByClassName can be trusted + support.getByClassName = assert(function( div ) { + // Opera can't find a second classname (in 9.6) + div.innerHTML = ""; + if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) { + return false; + } + + // Safari 3.2 caches class attributes and doesn't catch changes + div.lastChild.className = "e"; + return div.getElementsByClassName("e").length === 2; + }); + + // Check if getElementById returns elements by name + // Check if getElementsByName privileges form controls or returns elements by ID + support.getByName = assert(function( div ) { + // Inject content + div.id = expando + 0; + div.innerHTML = "
"; + docElem.insertBefore( div, docElem.firstChild ); + + // Test + var pass = doc.getElementsByName && + // buggy browsers will return fewer than the correct 2 + doc.getElementsByName( expando ).length === 2 + + // buggy browsers will return more than the correct 0 + doc.getElementsByName( expando + 0 ).length; + support.getIdNotName = !doc.getElementById( expando ); + + // Cleanup + docElem.removeChild( div ); + + return pass; + }); + + // IE6/7 return modified attributes + Expr.attrHandle = assert(function( div ) { + div.innerHTML = ""; + return div.firstChild && typeof div.firstChild.getAttribute !== strundefined && + div.firstChild.getAttribute("href") === "#"; + }) ? + {} : + { + "href": function( elem ) { + return elem.getAttribute( "href", 2 ); + }, + "type": function( elem ) { + return elem.getAttribute("type"); + } + }; + + // ID find and filter + if ( support.getIdNotName ) { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== strundefined && !documentIsXML ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + }; + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute("id") === attrId; + }; + }; + } else { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== strundefined && !documentIsXML ) { + var m = context.getElementById( id ); + + return m ? + m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ? + [m] : + undefined : + []; + } + }; + Expr.filter["ID"] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); + return node && node.value === attrId; + }; + }; + } + + // Tag + Expr.find["TAG"] = support.tagNameNoComments ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== strundefined ) { + return context.getElementsByTagName( tag ); + } + } : + function( tag, context ) { + var elem, + tmp = [], + i = 0, + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( (elem = results[i++]) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Name + Expr.find["NAME"] = support.getByName && function( tag, context ) { + if ( typeof context.getElementsByName !== strundefined ) { + return context.getElementsByName( name ); + } + }; + + // Class + Expr.find["CLASS"] = support.getByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== strundefined && !documentIsXML ) { + return context.getElementsByClassName( className ); + } + }; + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21), + // no need to also add to buggyMatches since matches checks buggyQSA + // A support test would require too much code (would include document ready) + rbuggyQSA = [ ":focus" ]; + + if ( (support.qsa = isNative(doc.querySelectorAll)) ) { + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explictly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + div.innerHTML = ""; + + // IE8 - Some boolean attributes are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + }); + + assert(function( div ) { + + // Opera 10-12/IE8 - ^= $= *= and empty values + // Should not select anything + div.innerHTML = ""; + if ( div.querySelectorAll("[i^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Opera 10-11 does not throw on post-comma invalid pseudos + div.querySelectorAll("*,:x"); + rbuggyQSA.push(",.*:"); + }); + } + + if ( (support.matchesSelector = isNative( (matches = docElem.matchesSelector || + docElem.mozMatchesSelector || + docElem.webkitMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector) )) ) { + + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( div, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + }); + } + + rbuggyQSA = new RegExp( rbuggyQSA.join("|") ); + rbuggyMatches = new RegExp( rbuggyMatches.join("|") ); + + // Element contains another + // Purposefully does not implement inclusive descendent + // As in, an element does not contain itself + contains = isNative(docElem.contains) || docElem.compareDocumentPosition ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + )); + } : + function( a, b ) { + if ( b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + // Document order sorting + sortOrder = docElem.compareDocumentPosition ? + function( a, b ) { + var compare; + + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + if ( (compare = b.compareDocumentPosition && a.compareDocumentPosition && a.compareDocumentPosition( b )) ) { + if ( compare & 1 || a.parentNode && a.parentNode.nodeType === 11 ) { + if ( a === doc || contains( preferredDoc, a ) ) { + return -1; + } + if ( b === doc || contains( preferredDoc, b ) ) { + return 1; + } + return 0; + } + return compare & 4 ? -1 : 1; + } + + return a.compareDocumentPosition ? -1 : 1; + } : + function( a, b ) { + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Parentless nodes are either documents or disconnected + } else if ( !aup || !bup ) { + return a === doc ? -1 : + b === doc ? 1 : + aup ? -1 : + bup ? 1 : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( (cur = cur.parentNode) ) { + ap.unshift( cur ); + } + cur = b; + while ( (cur = cur.parentNode) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[i] === bp[i] ) { + i++; + } + + return i ? + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[i], bp[i] ) : + + // Otherwise nodes in our document sort first + ap[i] === preferredDoc ? -1 : + bp[i] === preferredDoc ? 1 : + 0; + }; + + // Always assume the presence of duplicates if sort doesn't + // pass them to our comparison function (as in Google Chrome). + hasDuplicate = false; + [0, 0].sort( sortOrder ); + support.detectDuplicates = hasDuplicate; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + // rbuggyQSA always contains :focus, so no need for an existence check + if ( support.matchesSelector && !documentIsXML && (!rbuggyMatches || !rbuggyMatches.test(expr)) && !rbuggyQSA.test(expr) ) { + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch(e) {} + } + + return Sizzle( expr, document, null, [elem] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + // Set document vars if needed + if ( ( context.ownerDocument || context ) !== document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + var val; + + // Set document vars if needed + if ( ( elem.ownerDocument || elem ) !== document ) { + setDocument( elem ); + } + + if ( !documentIsXML ) { + name = name.toLowerCase(); + } + if ( (val = Expr.attrHandle[ name ]) ) { + return val( elem ); + } + if ( documentIsXML || support.attributes ) { + return elem.getAttribute( name ); + } + return ( (val = elem.getAttributeNode( name )) || elem.getAttribute( name ) ) && elem[ name ] === true ? + name : + val && val.specified ? val.value : null; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +// Document sorting and removing duplicates +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + i = 1, + j = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + results.sort( sortOrder ); + + if ( hasDuplicate ) { + for ( ; (elem = results[i]); i++ ) { + if ( elem === results[ i - 1 ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + return results; +}; + +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && ( ~b.sourceIndex || MAX_NEGATIVE ) - ( ~a.sourceIndex || MAX_NEGATIVE ); + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( (cur = cur.nextSibling) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +// Returns a function to use in pseudos for input types +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +// Returns a function to use in pseudos for buttons +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +// Returns a function to use in pseudos for positionals +function createPositionalPseudo( fn ) { + return markFunction(function( argument ) { + argument = +argument; + return markFunction(function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ (j = matchIndexes[i]) ] ) { + seed[j] = !(matches[j] = seed[j]); + } + } + }); + }); +} + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + // If no nodeType, this is expected to be an array + for ( ; (node = elem[i]); i++ ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (see #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[4] || match[5] || "" ).replace( runescape, funescape ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1].slice( 0, 3 ) === "nth" ) { + // nth-* requires argument + if ( !match[3] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); + match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); + + // other types prohibit arguments + } else if ( match[3] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[5] && match[2]; + + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[4] ) { + match[2] = match[4]; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + match[0] = match[0].slice( 0, excess ); + match[2] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeName ) { + if ( nodeName === "*" ) { + return function() { return true; }; + } + + nodeName = nodeName.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && + classCache( className, function( elem ) { + return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" ); + }); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + }; + }, + + "CHILD": function( type, what, argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, context, xml ) { + var cache, outerCache, node, diff, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( (node = node[ dir ]) ) { + if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { + return false; + } + } + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + // Seek `elem` from a previously-cached index + outerCache = parent[ expando ] || (parent[ expando ] = {}); + cache = outerCache[ type ] || []; + nodeIndex = cache[0] === dirruns && cache[1]; + diff = cache[0] === dirruns && cache[2]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( (node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + (diff = nodeIndex = 0) || start.pop()) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + outerCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + // Use previously-cached element index if available + } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { + diff = cache[1]; + + // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) + } else { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { + + if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { + // Cache the index of each encountered element + if ( useCache ) { + (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction(function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf.call( seed, matched[i] ); + seed[ idx ] = !( matches[ idx ] = matched[i] ); + } + }) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + // Potentially complex pseudos + "not": markFunction(function( selector ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction(function( seed, matches, context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( (elem = unmatched[i]) ) { + seed[i] = !(matches[i] = elem); + } + } + }) : + function( elem, context, xml ) { + input[0] = elem; + matcher( input, null, xml, results ); + return !results.pop(); + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "contains": markFunction(function( text ) { + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + // lang value must be a valid identifider + if ( !ridentifier.test(lang || "") ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( (elemLang = documentIsXML ? + elem.getAttribute("xml:lang") || elem.getAttribute("lang") : + elem.lang) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); + return false; + }; + }), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); + }, + + // Boolean properties + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), + // not comment, processing instructions, or others + // Thanks to Diego Perini for the nodeName shortcut + // Greater than "@" means alpha characters (specifically not starting with "#" or "?") + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeName > "@" || elem.nodeType === 3 || elem.nodeType === 4 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === elem.type ); + }, + + // Position-in-collection + "first": createPositionalPseudo(function() { + return [ 0 ]; + }), + + "last": createPositionalPseudo(function( matchIndexes, length ) { + return [ length - 1 ]; + }), + + "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + }), + + "even": createPositionalPseudo(function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "odd": createPositionalPseudo(function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }), + + "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + }) + } +}; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +function tokenize( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + // Don't consume trailing commas as valid + soFar = soFar.slice( match[0].length ) || soFar; + } + groups.push( tokens = [] ); + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + matched = match.shift(); + tokens.push( { + value: matched, + // Cast descendant combinators to space + type: match[0].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + (match = preFilters[ type ]( match ))) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +} + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[i].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + checkNonElements = base && dir === "parentNode", + doneName = done++; + + return combinator.first ? + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var data, cache, outerCache, + dirkey = dirruns + " " + doneName; + + // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching + if ( xml ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || (elem[ expando ] = {}); + if ( (cache = outerCache[ dir ]) && cache[0] === dirkey ) { + if ( (data = cache[1]) === true || data === cachedruns ) { + return data === true; + } + } else { + cache = outerCache[ dir ] = [ dirkey ]; + cache[1] = matcher( elem, context, xml ) || cachedruns; + if ( cache[1] === true ) { + return true; + } + } + } + } + } + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[i]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[0]; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( (elem = unmatched[i]) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction(function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( (elem = temp[i]) ) { + matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) ) { + // Restore matcherIn since elem is not yet a final match + temp.push( (matcherIn[i] = elem) ); + } + } + postFinder( null, (matcherOut = []), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( (elem = matcherOut[i]) && + (temp = postFinder ? indexOf.call( seed, elem ) : preMap[i]) > -1 ) { + + seed[temp] = !(results[temp] = elem); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + }); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[0].type ], + implicitRelative = leadingRelative || Expr.relative[" "], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf.call( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + return ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + (checkContext = context).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + } ]; + + for ( ; i < len; i++ ) { + if ( (matcher = Expr.relative[ tokens[i].type ]) ) { + matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; + } else { + matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[j].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( tokens.slice( 0, i - 1 ) ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + // A counter to specify which element is currently being matched + var matcherCachedRuns = 0, + bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, expandContext ) { + var elem, j, matcher, + setMatched = [], + matchedCount = 0, + i = "0", + unmatched = seed && [], + outermost = expandContext != null, + contextBackup = outermostContext, + // We must always have either seed elements or context + elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ), + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1); + + if ( outermost ) { + outermostContext = context !== document && context; + cachedruns = matcherCachedRuns; + } + + // Add elements passing elementMatchers directly to results + // Keep `i` a string if there are no elements so `matchedCount` will be "00" below + for ( ; (elem = elems[i]) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + while ( (matcher = elementMatchers[j++]) ) { + if ( matcher( elem, context, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + cachedruns = ++matcherCachedRuns; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + // They will have gone through all possible matchers + if ( (elem = !matcher && elem) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // Apply set filters to unmatched elements + matchedCount += i; + if ( bySet && i !== matchedCount ) { + j = 0; + while ( (matcher = setMatchers[j++]) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !(unmatched[i] || setMatched[i]) ) { + setMatched[i] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, group /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + // Generate a function of recursive functions that can be used to check each element + if ( !group ) { + group = tokenize( selector ); + } + i = group.length; + while ( i-- ) { + cached = matcherFromTokens( group[i] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); + } + return cached; +}; + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results ); + } + return results; +} + +function select( selector, context, results, seed ) { + var i, tokens, token, type, find, + match = tokenize( selector ); + + if ( !seed ) { + // Try to minimize operations if there is only one group + if ( match.length === 1 ) { + + // Take a shortcut and set the context if the root selector is an ID + tokens = match[0] = match[0].slice( 0 ); + if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && + context.nodeType === 9 && !documentIsXML && + Expr.relative[ tokens[1].type ] ) { + + context = Expr.find["ID"]( token.matches[0].replace( runescape, funescape ), context )[0]; + if ( !context ) { + return results; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[i]; + + // Abort if we hit a combinator + if ( Expr.relative[ (type = token.type) ] ) { + break; + } + if ( (find = Expr.find[ type ]) ) { + // Search, expanding context for leading sibling combinators + if ( (seed = find( + token.matches[0].replace( runescape, funescape ), + rsibling.test( tokens[0].type ) && context.parentNode || context + )) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, slice.call( seed, 0 ) ); + return results; + } + + break; + } + } + } + } + } + + // Compile and execute a filtering function + // Provide `match` to avoid retokenization if we modified the selector above + compile( selector, match )( + seed, + context, + documentIsXML, + results, + rsibling.test( selector ) + ); + return results; +} + +// Deprecated +Expr.pseudos["nth"] = Expr.pseudos["eq"]; + +// Easy API for creating new setFilters +function setFilters() {} +Expr.filters = setFilters.prototype = Expr.pseudos; +Expr.setFilters = new setFilters(); + +// Initialize with the default document +setDocument(); + +// Override sizzle attribute retrieval +Sizzle.attr = jQuery.attr; +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})( window ); +var runtil = /Until$/, + rparentsprev = /^(?:parents|prev(?:Until|All))/, + isSimple = /^.[^:#\[\.,]*$/, + rneedsContext = jQuery.expr.match.needsContext, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var i, ret, self, + len = this.length; + + if ( typeof selector !== "string" ) { + self = this; + return this.pushStack( jQuery( selector ).filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }) ); + } + + ret = []; + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, this[ i ], ret ); + } + + // Needed because $( selector, context ) becomes $( context ).find( selector ) + ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); + ret.selector = ( this.selector ? this.selector + " " : "" ) + selector; + return ret; + }, + + has: function( target ) { + var i, + targets = jQuery( target, this ), + len = targets.length; + + return this.filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector, false) ); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector, true) ); + }, + + is: function( selector ) { + return !!selector && ( + typeof selector === "string" ? + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + rneedsContext.test( selector ) ? + jQuery( selector, this.context ).index( this[0] ) >= 0 : + jQuery.filter( selector, this ).length > 0 : + this.filter( selector ).length > 0 ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + ret = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + cur = this[i]; + + while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) { + if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { + ret.push( cur ); + break; + } + cur = cur.parentNode; + } + } + + return this.pushStack( ret.length > 1 ? jQuery.unique( ret ) : ret ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.first().prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( jQuery.unique(all) ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter(selector) + ); + } +}); + +jQuery.fn.andSelf = jQuery.fn.addBack; + +function sibling( cur, dir ) { + do { + cur = cur[ dir ]; + } while ( cur && cur.nodeType !== 1 ); + + return cur; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( !runtil.test( name ) ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; + + if ( this.length > 1 && rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + + return this.pushStack( ret ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 ? + jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : + jQuery.find.matches(expr, elems); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, keep ) { + + // Can't pass null or undefined to indexOf in Firefox 4 + // Set to 0 to skip string check + qualifier = qualifier || 0; + + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep(elements, function( elem, i ) { + var retVal = !!qualifier.call( elem, i, elem ); + return retVal === keep; + }); + + } else if ( qualifier.nodeType ) { + return jQuery.grep(elements, function( elem ) { + return ( elem === qualifier ) === keep; + }); + + } else if ( typeof qualifier === "string" ) { + var filtered = jQuery.grep(elements, function( elem ) { + return elem.nodeType === 1; + }); + + if ( isSimple.test( qualifier ) ) { + return jQuery.filter(qualifier, filtered, !keep); + } else { + qualifier = jQuery.filter( qualifier, filtered ); + } + } + + return jQuery.grep(elements, function( elem ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; + }); +} +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, + rnoshimcache = new RegExp("<(?:" + nodeNames + ")[\\s/>]", "i"), + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rtbody = /
", "
" ], + tr: [ 2, "", "
" ], + col: [ 2, "", "
" ], + td: [ 3, "", "
" ], + + // IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, + // unless wrapped in a div with non-breaking characters in front of it. + _default: jQuery.support.htmlSerialize ? [ 0, "", "" ] : [ 1, "X
", "
" ] + }, + safeFragment = createSafeFragment( document ), + fragmentDiv = safeFragment.appendChild( document.createElement("div") ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +jQuery.fn.extend({ + text: function( value ) { + return jQuery.access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); + }, null, value, arguments.length ); + }, + + wrapAll: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapAll( html.call(this, i) ); + }); + } + + if ( this[0] ) { + // The elements to wrap the target around + var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); + + if ( this[0].parentNode ) { + wrap.insertBefore( this[0] ); + } + + wrap.map(function() { + var elem = this; + + while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { + elem = elem.firstChild; + } + + return elem; + }).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapInner( html.call(this, i) ); + }); + } + + return this.each(function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + }); + }, + + wrap: function( html ) { + var isFunction = jQuery.isFunction( html ); + + return this.each(function(i) { + jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); + }); + }, + + unwrap: function() { + return this.parent().each(function() { + if ( !jQuery.nodeName( this, "body" ) ) { + jQuery( this ).replaceWith( this.childNodes ); + } + }).end(); + }, + + append: function() { + return this.domManip(arguments, true, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.appendChild( elem ); + } + }); + }, + + prepend: function() { + return this.domManip(arguments, true, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.insertBefore( elem, this.firstChild ); + } + }); + }, + + before: function() { + return this.domManip( arguments, false, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + }); + }, + + after: function() { + return this.domManip( arguments, false, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + }); + }, + + // keepData is for internal use only--do not document + remove: function( selector, keepData ) { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + if ( !selector || jQuery.filter( selector, [ elem ] ).length > 0 ) { + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem ) ); + } + + if ( elem.parentNode ) { + if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { + setGlobalEval( getAll( elem, "script" ) ); + } + elem.parentNode.removeChild( elem ); + } + } + } + + return this; + }, + + empty: function() { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + } + + // Remove any remaining nodes + while ( elem.firstChild ) { + elem.removeChild( elem.firstChild ); + } + + // If this is a select, ensure that it displays empty (#12336) + // Support: IE<9 + if ( elem.options && jQuery.nodeName( elem, "select" ) ) { + elem.options.length = 0; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function () { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + }); + }, + + html: function( value ) { + return jQuery.access( this, function( value ) { + var elem = this[0] || {}, + i = 0, + l = this.length; + + if ( value === undefined ) { + return elem.nodeType === 1 ? + elem.innerHTML.replace( rinlinejQuery, "" ) : + undefined; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && + ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && + !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { + + value = value.replace( rxhtmlTag, "<$1>" ); + + try { + for (; i < l; i++ ) { + // Remove element nodes and prevent memory leaks + elem = this[i] || {}; + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch(e) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function( value ) { + var isFunc = jQuery.isFunction( value ); + + // Make sure that the elements are removed from the DOM before they are inserted + // this can help fix replacing a parent with child elements + if ( !isFunc && typeof value !== "string" ) { + value = jQuery( value ).not( this ).detach(); + } + + return this.domManip( [ value ], true, function( elem ) { + var next = this.nextSibling, + parent = this.parentNode; + + if ( parent ) { + jQuery( this ).remove(); + parent.insertBefore( elem, next ); + } + }); + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, table, callback ) { + + // Flatten any nested arrays + args = core_concat.apply( [], args ); + + var first, node, hasScripts, + scripts, doc, fragment, + i = 0, + l = this.length, + set = this, + iNoClone = l - 1, + value = args[0], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || !( l <= 1 || typeof value !== "string" || jQuery.support.checkClone || !rchecked.test( value ) ) ) { + return this.each(function( index ) { + var self = set.eq( index ); + if ( isFunction ) { + args[0] = value.call( this, index, table ? self.html() : undefined ); + } + self.domManip( args, table, callback ); + }); + } + + if ( l ) { + fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + table = table && jQuery.nodeName( first, "tr" ); + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( + table && jQuery.nodeName( this[i], "table" ) ? + findOrAppend( this[i], "tbody" ) : + this[i], + node, + i + ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !jQuery._data( node, "globalEval" ) && jQuery.contains( doc, node ) ) { + + if ( node.src ) { + // Hope ajax is available... + jQuery.ajax({ + url: node.src, + type: "GET", + dataType: "script", + async: false, + global: false, + "throws": true + }); + } else { + jQuery.globalEval( ( node.text || node.textContent || node.innerHTML || "" ).replace( rcleanScript, "" ) ); + } + } + } + } + + // Fix #11809: Avoid leaking memory + fragment = first = null; + } + } + + return this; + } +}); + +function findOrAppend( elem, tag ) { + return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) ); +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + var attr = elem.getAttributeNode("type"); + elem.type = ( attr && attr.specified ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + var match = rscriptTypeMasked.exec( elem.type ); + if ( match ) { + elem.type = match[1]; + } else { + elem.removeAttribute("type"); + } + return elem; +} + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var elem, + i = 0; + for ( ; (elem = elems[i]) != null; i++ ) { + jQuery._data( elem, "globalEval", !refElements || jQuery._data( refElements[i], "globalEval" ) ); + } +} + +function cloneCopyEvent( src, dest ) { + + if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { + return; + } + + var type, i, l, + oldData = jQuery._data( src ), + curData = jQuery._data( dest, oldData ), + events = oldData.events; + + if ( events ) { + delete curData.handle; + curData.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + + // make the cloned public data object a copy from the original + if ( curData.data ) { + curData.data = jQuery.extend( {}, curData.data ); + } +} + +function fixCloneNodeIssues( src, dest ) { + var nodeName, e, data; + + // We do not need to do anything for non-Elements + if ( dest.nodeType !== 1 ) { + return; + } + + nodeName = dest.nodeName.toLowerCase(); + + // IE6-8 copies events bound via attachEvent when using cloneNode. + if ( !jQuery.support.noCloneEvent && dest[ jQuery.expando ] ) { + data = jQuery._data( dest ); + + for ( e in data.events ) { + jQuery.removeEvent( dest, e, data.handle ); + } + + // Event data gets referenced instead of copied if the expando gets copied too + dest.removeAttribute( jQuery.expando ); + } + + // IE blanks contents when cloning scripts, and tries to evaluate newly-set text + if ( nodeName === "script" && dest.text !== src.text ) { + disableScript( dest ).text = src.text; + restoreScript( dest ); + + // IE6-10 improperly clones children of object elements using classid. + // IE10 throws NoModificationAllowedError if parent is null, #12132. + } else if ( nodeName === "object" ) { + if ( dest.parentNode ) { + dest.outerHTML = src.outerHTML; + } + + // This path appears unavoidable for IE9. When cloning an object + // element in IE9, the outerHTML strategy above is not sufficient. + // If the src has innerHTML and the destination does not, + // copy the src.innerHTML into the dest.innerHTML. #10324 + if ( jQuery.support.html5Clone && ( src.innerHTML && !jQuery.trim(dest.innerHTML) ) ) { + dest.innerHTML = src.innerHTML; + } + + } else if ( nodeName === "input" && manipulation_rcheckableType.test( src.type ) ) { + // IE6-8 fails to persist the checked state of a cloned checkbox + // or radio button. Worse, IE6-7 fail to give the cloned element + // a checked appearance if the defaultChecked value isn't also set + + dest.defaultChecked = dest.checked = src.checked; + + // IE6-7 get confused and end up setting the value of a cloned + // checkbox/radio button to an empty string instead of "on" + if ( dest.value !== src.value ) { + dest.value = src.value; + } + + // IE6-8 fails to return the selected option to the default selected + // state when cloning options + } else if ( nodeName === "option" ) { + dest.defaultSelected = dest.selected = src.defaultSelected; + + // IE6-8 fails to set the defaultValue to the correct value when + // cloning other types of input fields + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +jQuery.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + i = 0, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone(true); + jQuery( insert[i] )[ original ]( elems ); + + // Modern browsers can apply jQuery collections as arrays, but oldIE needs a .get() + core_push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +}); + +function getAll( context, tag ) { + var elems, elem, + i = 0, + found = typeof context.getElementsByTagName !== core_strundefined ? context.getElementsByTagName( tag || "*" ) : + typeof context.querySelectorAll !== core_strundefined ? context.querySelectorAll( tag || "*" ) : + undefined; + + if ( !found ) { + for ( found = [], elems = context.childNodes || context; (elem = elems[i]) != null; i++ ) { + if ( !tag || jQuery.nodeName( elem, tag ) ) { + found.push( elem ); + } else { + jQuery.merge( found, getAll( elem, tag ) ); + } + } + } + + return tag === undefined || tag && jQuery.nodeName( context, tag ) ? + jQuery.merge( [ context ], found ) : + found; +} + +// Used in buildFragment, fixes the defaultChecked property +function fixDefaultChecked( elem ) { + if ( manipulation_rcheckableType.test( elem.type ) ) { + elem.defaultChecked = elem.checked; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var destElements, node, clone, i, srcElements, + inPage = jQuery.contains( elem.ownerDocument, elem ); + + if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { + clone = elem.cloneNode( true ); + + // IE<=8 does not properly clone detached, unknown element nodes + } else { + fragmentDiv.innerHTML = elem.outerHTML; + fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); + } + + if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && + (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { + + // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + // Fix all IE cloning issues + for ( i = 0; (node = srcElements[i]) != null; ++i ) { + // Ensure that the destination node is not null; Fixes #9587 + if ( destElements[i] ) { + fixCloneNodeIssues( node, destElements[i] ); + } + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0; (node = srcElements[i]) != null; i++ ) { + cloneCopyEvent( node, destElements[i] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + destElements = srcElements = node = null; + + // Return the cloned set + return clone; + }, + + buildFragment: function( elems, context, scripts, selection ) { + var j, elem, contains, + tmp, tag, tbody, wrap, + l = elems.length, + + // Ensure a safe fragment + safe = createSafeFragment( context ), + + nodes = [], + i = 0; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || safe.appendChild( context.createElement("div") ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + + tmp.innerHTML = wrap[1] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[2]; + + // Descend through wrappers to the right content + j = wrap[0]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Manually add leading whitespace removed by IE + if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { + nodes.push( context.createTextNode( rleadingWhitespace.exec( elem )[0] ) ); + } + + // Remove IE's autoinserted from table fragments + if ( !jQuery.support.tbody ) { + + // String was a , *may* have spurious + elem = tag === "table" && !rtbody.test( elem ) ? + tmp.firstChild : + + // String was a bare or + wrap[1] === "
" && !rtbody.test( elem ) ? + tmp : + 0; + + j = elem && elem.childNodes.length; + while ( j-- ) { + if ( jQuery.nodeName( (tbody = elem.childNodes[j]), "tbody" ) && !tbody.childNodes.length ) { + elem.removeChild( tbody ); + } + } + } + + jQuery.merge( nodes, tmp.childNodes ); + + // Fix #12392 for WebKit and IE > 9 + tmp.textContent = ""; + + // Fix #12392 for oldIE + while ( tmp.firstChild ) { + tmp.removeChild( tmp.firstChild ); + } + + // Remember the top-level container for proper cleanup + tmp = safe.lastChild; + } + } + } + + // Fix #11356: Clear elements from fragment + if ( tmp ) { + safe.removeChild( tmp ); + } + + // Reset defaultChecked for any radios and checkboxes + // about to be appended to the DOM in IE 6/7 (#8060) + if ( !jQuery.support.appendChecked ) { + jQuery.grep( getAll( nodes, "input" ), fixDefaultChecked ); + } + + i = 0; + while ( (elem = nodes[ i++ ]) ) { + + // #4087 - If origin and destination elements are the same, and this is + // that element, do not do anything + if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( safe.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( (elem = tmp[ j++ ]) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + tmp = null; + + return safe; + }, + + cleanData: function( elems, /* internal */ acceptData ) { + var elem, type, id, data, + i = 0, + internalKey = jQuery.expando, + cache = jQuery.cache, + deleteExpando = jQuery.support.deleteExpando, + special = jQuery.event.special; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( acceptData || jQuery.acceptData( elem ) ) { + + id = elem[ internalKey ]; + data = id && cache[ id ]; + + if ( data ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Remove cache only if it was not already removed by jQuery.event.remove + if ( cache[ id ] ) { + + delete cache[ id ]; + + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( deleteExpando ) { + delete elem[ internalKey ]; + + } else if ( typeof elem.removeAttribute !== core_strundefined ) { + elem.removeAttribute( internalKey ); + + } else { + elem[ internalKey ] = null; + } + + core_deletedIds.push( id ); + } + } + } + } + } +}); +var iframe, getStyles, curCSS, + ralpha = /alpha\([^)]*\)/i, + ropacity = /opacity\s*=\s*([^)]*)/, + rposition = /^(top|right|bottom|left)$/, + // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" + // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rmargin = /^margin/, + rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), + rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), + rrelNum = new RegExp( "^([+-])=(" + core_pnum + ")", "i" ), + elemdisplay = { BODY: "block" }, + + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: 0, + fontWeight: 400 + }, + + cssExpand = [ "Top", "Right", "Bottom", "Left" ], + cssPrefixes = [ "Webkit", "O", "Moz", "ms" ]; + +// return a css property mapped to a potentially vendor prefixed property +function vendorPropName( style, name ) { + + // shortcut for names that are not vendor prefixed + if ( name in style ) { + return name; + } + + // check for vendor prefixed names + var capName = name.charAt(0).toUpperCase() + name.slice(1), + origName = name, + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in style ) { + return name; + } + } + + return origName; +} + +function isHidden( elem, el ) { + // isHidden might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); +} + +function showHide( elements, show ) { + var display, elem, hidden, + values = [], + index = 0, + length = elements.length; + + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + values[ index ] = jQuery._data( elem, "olddisplay" ); + display = elem.style.display; + if ( show ) { + // Reset the inline display of this element to learn if it is + // being hidden by cascaded rules or not + if ( !values[ index ] && display === "none" ) { + elem.style.display = ""; + } + + // Set elements which have been overridden with display: none + // in a stylesheet to whatever the default browser style is + // for such an element + if ( elem.style.display === "" && isHidden( elem ) ) { + values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); + } + } else { + + if ( !values[ index ] ) { + hidden = isHidden( elem ); + + if ( display && display !== "none" || !hidden ) { + jQuery._data( elem, "olddisplay", hidden ? display : jQuery.css( elem, "display" ) ); + } + } + } + } + + // Set the display of most of the elements in a second loop + // to avoid the constant reflow + for ( index = 0; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + if ( !show || elem.style.display === "none" || elem.style.display === "" ) { + elem.style.display = show ? values[ index ] || "" : "none"; + } + } + + return elements; +} + +jQuery.fn.extend({ + css: function( name, value ) { + return jQuery.access( this, function( elem, name, value ) { + var len, styles, + map = {}, + i = 0; + + if ( jQuery.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + }, + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + var bool = typeof state === "boolean"; + + return this.each(function() { + if ( bool ? state : isHidden( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + }); + } +}); + +jQuery.extend({ + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Exclude the following css properties to add px + cssNumber: { + "columnCount": true, + "fillOpacity": true, + "fontWeight": true, + "lineHeight": true, + "opacity": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: { + // normalize float css property + "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" + }, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = jQuery.camelCase( name ), + style = elem.style; + + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // convert relative number strings (+= or -=) to relative numbers. #7345 + if ( type === "string" && (ret = rrelNum.exec( value )) ) { + value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); + // Fixes bug #9237 + type = "number"; + } + + // Make sure that NaN and null values aren't set. See: #7116 + if ( value == null || type === "number" && isNaN( value ) ) { + return; + } + + // If a number was passed in, add 'px' to the (except for certain CSS properties) + if ( type === "number" && !jQuery.cssNumber[ origName ] ) { + value += "px"; + } + + // Fixes #8908, it can be done more correctly by specifing setters in cssHooks, + // but it would mean to define eight (for every problematic property) identical functions + if ( !jQuery.support.clearCloneStyle && value === "" && name.indexOf("background") === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { + + // Wrapped to prevent IE from throwing errors when 'invalid' values are provided + // Fixes bug #5509 + try { + style[ name ] = value; + } catch(e) {} + } + + } else { + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var num, val, hooks, + origName = jQuery.camelCase( name ); + + // Make sure that we're working with the right name + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + //convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Return, converting to number if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || jQuery.isNumeric( num ) ? num || 0 : val; + } + return val; + }, + + // A method for quickly swapping in/out CSS properties to get correct calculations + swap: function( elem, options, callback, args ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.apply( elem, args || [] ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; + } +}); + +// NOTE: we've included the "window" in window.getComputedStyle +// because jsdom on node.js will break without it. +if ( window.getComputedStyle ) { + getStyles = function( elem ) { + return window.getComputedStyle( elem, null ); + }; + + curCSS = function( elem, name, _computed ) { + var width, minWidth, maxWidth, + computed = _computed || getStyles( elem ), + + // getPropertyValue is only needed for .css('filter') in IE9, see #12537 + ret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined, + style = elem.style; + + if ( computed ) { + + if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right + // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels + // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values + if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret; + }; +} else if ( document.documentElement.currentStyle ) { + getStyles = function( elem ) { + return elem.currentStyle; + }; + + curCSS = function( elem, name, _computed ) { + var left, rs, rsLeft, + computed = _computed || getStyles( elem ), + ret = computed ? computed[ name ] : undefined, + style = elem.style; + + // Avoid setting ret to empty string here + // so we don't default to auto + if ( ret == null && style && style[ name ] ) { + ret = style[ name ]; + } + + // From the awesome hack by Dean Edwards + // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 + + // If we're not dealing with a regular pixel number + // but a number that has a weird ending, we need to convert it to pixels + // but not position css attributes, as those are proportional to the parent element instead + // and we can't measure the parent instead because it might trigger a "stacking dolls" problem + if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { + + // Remember the original values + left = style.left; + rs = elem.runtimeStyle; + rsLeft = rs && rs.left; + + // Put in the new values to get a computed value out + if ( rsLeft ) { + rs.left = elem.currentStyle.left; + } + style.left = name === "fontSize" ? "1em" : ret; + ret = style.pixelLeft + "px"; + + // Revert the changed values + style.left = left; + if ( rsLeft ) { + rs.left = rsLeft; + } + } + + return ret === "" ? "auto" : ret; + }; +} + +function setPositiveNumber( elem, value, subtract ) { + var matches = rnumsplit.exec( value ); + return matches ? + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : + value; +} + +function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { + var i = extra === ( isBorderBox ? "border" : "content" ) ? + // If we already have the right measurement, avoid augmentation + 4 : + // Otherwise initialize for horizontal or vertical properties + name === "width" ? 1 : 0, + + val = 0; + + for ( ; i < 4; i += 2 ) { + // both box models exclude margin, so add it if we want it + if ( extra === "margin" ) { + val += jQuery.css( elem, extra + cssExpand[ i ], true, styles ); + } + + if ( isBorderBox ) { + // border-box includes padding, so remove it if we want content + if ( extra === "content" ) { + val -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // at this point, extra isn't border nor margin, so remove border + if ( extra !== "margin" ) { + val -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } else { + // at this point, extra isn't content, so add padding + val += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // at this point, extra isn't content nor padding, so add border + if ( extra !== "padding" ) { + val += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + return val; +} + +function getWidthOrHeight( elem, name, extra ) { + + // Start with offset property, which is equivalent to the border-box value + var valueIsBorderBox = true, + val = name === "width" ? elem.offsetWidth : elem.offsetHeight, + styles = getStyles( elem ), + isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // some non-html elements return undefined for offsetWidth, so check for null/undefined + // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 + // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 + if ( val <= 0 || val == null ) { + // Fall back to computed then uncomputed css if necessary + val = curCSS( elem, name, styles ); + if ( val < 0 || val == null ) { + val = elem.style[ name ]; + } + + // Computed unit is not pixels. Stop here and return. + if ( rnumnonpx.test(val) ) { + return val; + } + + // we need the check for style in case a browser which returns unreliable values + // for getComputedStyle silently falls back to the reliable elem.style + valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); + + // Normalize "", auto, and prepare for extra + val = parseFloat( val ) || 0; + } + + // use the active box-sizing model to add/subtract irrelevant styles + return ( val + + augmentWidthOrHeight( + elem, + name, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles + ) + ) + "px"; +} + +// Try to determine the default display value of an element +function css_defaultDisplay( nodeName ) { + var doc = document, + display = elemdisplay[ nodeName ]; + + if ( !display ) { + display = actualDisplay( nodeName, doc ); + + // If the simple way fails, read from inside an iframe + if ( display === "none" || !display ) { + // Use the already-created iframe if possible + iframe = ( iframe || + jQuery("' . $cc_hidden_field . ''; + } +} +?> diff --git a/includes/modules/payment/novalnet_config.php b/includes/modules/payment/novalnet_config.php new file mode 100644 index 0000000..a72cd84 --- /dev/null +++ b/includes/modules/payment/novalnet_config.php @@ -0,0 +1,225 @@ +code = 'novalnet_config'; + $this->title = MODULE_PAYMENT_NOVALNET_CONFIG_TEXT_TITLE; + $this->description = MODULE_PAYMENT_NOVALNET_CONFIG_TEXT_DESCRIPTION; + $this->enabled = false; + $this->sort_order = 0; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + return false; + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_CONFIG_ALLOWED'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $request_type, $language; + $novalnet_tmp_status_id = $this->createNovalnetOrderStatus(); + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_config.php'; + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_CONFIG_ALLOWED_TITLE . "','MODULE_PAYMENT_NOVALNET_CONFIG_ALLOWED','', '6','" . MODULE_PAYMENT_NOVALNET_CONFIG_ALLOWED_DESC . "', '', '', '', ''), + ('" . MODULE_PAYMENT_NOVALNET_PRODUCT_ACTIVATION_KEY_TITLE . "','MODULE_PAYMENT_NOVALNET_PRODUCT_ACTIVATION_KEY', '', '6','" . MODULE_PAYMENT_NOVALNET_PRODUCT_ACTIVATION_KEY_DESC . "', '1', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_VENDOR_ID_TITLE . "','MODULE_PAYMENT_NOVALNET_VENDOR_ID', '', '6','" . MODULE_PAYMENT_NOVALNET_VENDOR_ID_DESC . "', '2', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_AUTH_CODE_TITLE . "','MODULE_PAYMENT_NOVALNET_AUTH_CODE', '', '6','" . MODULE_PAYMENT_NOVALNET_AUTH_CODE_DESC . "', '3', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PRODUCT_ID_TITLE . "','MODULE_PAYMENT_NOVALNET_PRODUCT_ID', '', '6','" . MODULE_PAYMENT_NOVALNET_PRODUCT_ID_DESC . "', '4', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_TARIFF_ID_TITLE . "','MODULE_PAYMENT_NOVALNET_TARIFF_ID', '', '6','" . MODULE_PAYMENT_NOVALNET_TARIFF_ID_DESC . "', '5', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PAYMENT_ACCESS_KEY_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYMENT_ACCESS_KEY', '', '6','" . MODULE_PAYMENT_NOVALNET_PAYMENT_ACCESS_KEY_DESC . "', '6', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_LAST_SUCCESSFULL_PAYMENT_SELECTION_TITLE . "','MODULE_PAYMENT_NOVALNET_LAST_SUCCESSFULL_PAYMENT_SELECTION','False', '6','" . MODULE_PAYMENT_NOVALNET_LAST_SUCCESSFULL_PAYMENT_SELECTION_DESC . "', '8', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_LAST_SUCCESSFULL_PAYMENT_SELECTION\'," . MODULE_PAYMENT_NOVALNET_LAST_SUCCESSFULL_PAYMENT_SELECTION . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PROXY_TITLE . "','MODULE_PAYMENT_NOVALNET_PROXY', '', '6','" . MODULE_PAYMENT_NOVALNET_PROXY_DESC . "', '9', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_CURL_TIME_OUT_TITLE . "','MODULE_PAYMENT_NOVALNET_CURL_TIME_OUT', '240', '6','" . MODULE_PAYMENT_NOVALNET_CURL_TIME_OUT_DESC . "', '10', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_REFERRER_ID_TITLE . "','MODULE_PAYMENT_NOVALNET_REFERRER_ID', '', '6','" . MODULE_PAYMENT_NOVALNET_REFERRER_ID_DESC . "', '11', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PAYMENT_LOGO_DISPLAY_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYMENT_LOGO_DISPLAY','True', '6','" . MODULE_PAYMENT_NOVALNET_PAYMENT_LOGO_DISPLAY_DESC . "', '12', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_PAYMENT_LOGO_DISPLAY\'," . MODULE_PAYMENT_NOVALNET_PAYMENT_LOGO_DISPLAY . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE_TITLE . "','MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE', '0', '6','" . MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE_DESC . "', '13', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED_TITLE . "','MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED', '0', '6','" . MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED_DESC . "', '14', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD_TITLE . "','MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD', '', '6','" . MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD_DESC . "', '15', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD2_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD2_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD2_AMOUNT_DESC . "', '16', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD2_TITLE . "','MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD2', '', '6','" . MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD2_DESC . "', '17', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SUBSCRIPTION_CANCEL_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_SUBSCRIPTION_CANCEL_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_SUBSCRIPTION_CANCEL_STATUS_DESC . "', '18', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_CALLBACK_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_CALLBACK_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_CALLBACK_TEST_MODE_DESC . "', '20', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_CALLBACK_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_CALLBACK_TEST_MODE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_SEND_TITLE . "','MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_SEND','False', '6','" . MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_SEND_DESC . "', '21', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_SEND\'," . MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_SEND . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_TO_TITLE . "','MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_TO', '', '6','" . MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_TO_DESC . "', '22', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_BCC_TITLE . "','MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_BCC', '', '6','" . MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_BCC_DESC . "', '23', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_CALLBACK_NOTIFY_URL_TITLE . "','MODULE_PAYMENT_NOVALNET_CALLBACK_NOTIFY_URL', '" . ((($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG) . 'ext/modules/payment/novalnet/callback/callback.php' . "', '6','" . MODULE_PAYMENT_NOVALNET_CALLBACK_NOTIFY_URL_DESC . "', '24', '', '', now())"); + + $this->versionUpdateSql(); + } + + /** + * Core Function : remove() + * + */ + function remove() + { + $keys = $this->keys(); + $keys[] .= 'MODULE_PAYMENT_NOVALNET_CONFIG_ALLOWED'; + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $keys) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + echo ' + + + '; + NovalnetUtil::checkMerchantConfiguration(true); + return array( + 'MODULE_PAYMENT_NOVALNET_PRODUCT_ACTIVATION_KEY', + 'MODULE_PAYMENT_NOVALNET_VENDOR_ID', + 'MODULE_PAYMENT_NOVALNET_AUTH_CODE', + 'MODULE_PAYMENT_NOVALNET_PRODUCT_ID', + 'MODULE_PAYMENT_NOVALNET_TARIFF_ID', + 'MODULE_PAYMENT_NOVALNET_PAYMENT_ACCESS_KEY', + 'MODULE_PAYMENT_NOVALNET_LAST_SUCCESSFULL_PAYMENT_SELECTION', + 'MODULE_PAYMENT_NOVALNET_PROXY', + 'MODULE_PAYMENT_NOVALNET_CURL_TIME_OUT', + 'MODULE_PAYMENT_NOVALNET_REFERRER_ID', + 'MODULE_PAYMENT_NOVALNET_PAYMENT_LOGO_DISPLAY', + 'MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE', + 'MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_CANCELLED', + 'MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD', + 'MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD2_AMOUNT', + 'MODULE_PAYMENT_NOVALNET_TARIFF_PERIOD2', + 'MODULE_PAYMENT_NOVALNET_SUBSCRIPTION_CANCEL_STATUS', + 'MODULE_PAYMENT_NOVALNET_CALLBACK_TEST_MODE', + 'MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_SEND', + 'MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_TO', + 'MODULE_PAYMENT_NOVALNET_CALLBACK_MAIL_BCC', + 'MODULE_PAYMENT_NOVALNET_CALLBACK_NOTIFY_URL' + ); + } + + /** + * Installing Novalnet tables + * + */ + function versionUpdateSql() + { + $insert_novalnet_tables = true; + $tables_sql = tep_db_query('select table_name from information_schema.columns where table_schema = "' . DB_DATABASE . '"'); + while ($result = tep_db_fetch_array($tables_sql)) { + if ($result['table_name'] == 'novalnet_transaction_detail') + $insert_novalnet_tables = false; + } + + if (!$insert_novalnet_tables) { + $alter_sql = tep_db_fetch_array(tep_db_query('show columns from novalnet_transaction_detail like "reference_transaction"')); + if (empty($alter_sql)) { + //Import Novalnet version 11 package SQL tables + $sql_file = DIR_FS_CATALOG . 'ext/modules/payment/novalnet/install/update_10_to_11.sql'; + $sql_lines = file_get_contents($sql_file); + $sql_linesArr = explode(";", $sql_lines); + foreach ($sql_linesArr as $sql) { + if (trim($sql) > '') { + tep_db_query($sql); + } + } + } + $sql_version = tep_db_query("select version from novalnet_version_detail where version='11.1.5'"); + $version_detail = tep_db_fetch_array($sql_version); + if (empty($version_detail)) { + tep_db_query("INSERT INTO novalnet_version_detail VALUES ('11.1.5')"); + } + } else { + //Import Novalnet Package SQL tables + $sql_file = DIR_FS_CATALOG . 'ext/modules/payment/novalnet/install/install_11.sql'; + $sql_lines = file_get_contents($sql_file); + $sql_linesArr = explode(";", $sql_lines); + foreach ($sql_linesArr as $sql) { + if (trim($sql) > '') { + tep_db_query($sql); + } + } + } + } + /** + * Create the Novalnet pending status + * + * @return int + */ + function createNovalnetOrderStatus() { + $languages = tep_db_query("select * from " . TABLE_LANGUAGES . " order by sort_order"); + + $query = tep_db_query("select max(orders_status_id) as status_id from " . TABLE_ORDERS_STATUS); + $status = tep_db_fetch_array($query); + + $status_id = $status['status_id']; + + while($language = tep_db_fetch_array($languages)) { + + if(file_exists(DIR_FS_LANGUAGES . $language['directory'].'/modules/payment/novalnet.php')) { + include_once(DIR_FS_LANGUAGES . $language['directory'].'/modules/payment/novalnet.php'); + } + if(empty($novalnet_temp_status_text)) { + $novalnet_temp_status_text = 'NN payment pending'; + } + + $query = tep_db_query("select orders_status_id from " . TABLE_ORDERS_STATUS . " where orders_status_name = '" . $novalnet_temp_status_text . "' AND language_id='".$language['languages_id']."' limit 1"); + if(tep_db_num_rows($query) < 1) { + $status_id = $status['status_id']+1; + $insert_values = array( + 'orders_status_id' => $status_id, + 'language_id' => $language['languages_id'], + 'orders_status_name' => $novalnet_temp_status_text, + ); + tep_db_perform(TABLE_ORDERS_STATUS, $insert_values); + } + } + return ($status_id != '') ? $status_id : DEFAULT_ORDERS_STATUS_ID; + } +} +?> diff --git a/includes/modules/payment/novalnet_eps.php b/includes/modules/payment/novalnet_eps.php new file mode 100644 index 0000000..c6b64c6 --- /dev/null +++ b/includes/modules/payment/novalnet_eps.php @@ -0,0 +1,284 @@ +code = 'novalnet_eps'; + $this->title = $this->public_title = MODULE_PAYMENT_NOVALNET_EPS_TEXT_TITLE; + $this->description = MODULE_PAYMENT_NOVALNET_EPS_TEXT_DESCRIPTION; + $this->form_action_url = 'https://payport.novalnet.de/giropay'; + $this->sort_order = 0; + if (strpos(MODULE_PAYMENT_INSTALLED, $this->code) !== false) { + $this->sort_order = MODULE_PAYMENT_NOVALNET_EPS_SORT_ORDER; + $this->enabled = ((MODULE_PAYMENT_NOVALNET_EPS_STATUS == 'True') ? true : false); + } + if ($this->enabled === true) { + if (isset($order) && is_object($order)) { + $this->update_status(); + } + } + } + + /** + * Core Function : update_status() + * + */ + function update_status() + { + global $order; + if (($this->enabled == true) && ((int) MODULE_PAYMENT_NOVALNET_EPS_PAYMENT_ZONE > 0)) { + $check_flag = false; + $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_NOVALNET_EPS_PAYMENT_ZONE . "' and (zone_id < 1 or zone_id = " . $order->billing['zone_id'] . " ) and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); + $check = tep_db_fetch_array($check_query); + if ($check['zone_id']) { + $check_flag = true; + } + if ($check_flag == false) { + $this->enabled = false; + } + } + // disable the module if the order only contains virtual products + if ($this->enabled == true) { + if ($order->content_type == 'virtual') { + $this->enabled = false; + } + } + } + + /** + * Core Function : javascript_validation() + * + */ + function javascript_validation() + { + return false; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + global $order; + + if (!NovalnetUtil::checkMerchantConfiguration() || !$this->validateAdminConfiguration() || !NovalnetUtil::hidePaymentVisibility(NovalnetUtil::getPaymentAmount((array) $order), MODULE_PAYMENT_NOVALNET_EPS_VISIBILITY_BY_AMOUNT)) { // Validate the Novalnet merchant details, eps payment admin configuration details and payment visibility + return false; + } + + NovalnetUtil::getLastSuccessPayment($this->code); // To get the payment name of last successful order + $selection['id'] = $this->code; + $selection['module'] = $this->public_title . MODULE_PAYMENT_NOVALNET_EPS_PUBLIC_TITLE; + $selection['module'] .= '
' . $this->description . MODULE_PAYMENT_NOVALNET_REDIRECT_NOTICE_MSG . '
' . trim(strip_tags(MODULE_PAYMENT_NOVALNET_EPS_CUSTOMER_INFO)); + if (MODULE_PAYMENT_NOVALNET_EPS_TEST_MODE == 'True') { + $selection['module'] .= '
' . MODULE_PAYMENT_NOVALNET_TEST_MODE_MSG; + } + return $selection; + } + + /** + * Core Function : pre_confirmation_check() + * + */ + function pre_confirmation_check() + { + return false; + } + + /** + * Core Function : confirmation() + * + */ + function confirmation() + { + global $order; + $_SESSION['novalnet'][$this->code]['order_amount'] = NovalnetUtil::getPaymentAmount((array) $order); + return false; + } + + /** + * Core Function : process_button() + * + */ + function process_button() + { + global $order; + if (isset($_SESSION['novalnet'][$this->code]['order_amount'])) { + $_SESSION['novalnet'][$this->code] = array( + 'payment_amount' => $_SESSION['novalnet'][$this->code]['order_amount'] + ); + } + $input_params = array_merge((array) $order, array( + 'payment' => $this->code, + 'payment_amount' => $_SESSION['novalnet'][$this->code]['payment_amount'] + )); + $urlparam = NovalnetUtil::getRequestParams($input_params); + $urlparam['key'] = $this->key; + $urlparam['payment_type'] = $this->payment_type; + NovalnetUtil::getRedirectParams($urlparam); + + $process_button_string = ''; + foreach ($urlparam as $key => $value) { + $process_button_string .= tep_draw_hidden_field($key, $value); + } + $process_button_string .= NovalnetUtil::confirmButtonDisableActivate(); // Hiding Buy button in confirmation page + return $process_button_string; + } + + /** + * Core Function : before_process() + * + */ + function before_process() + { + global $order; + $post = $_REQUEST; + if (isset($post['tid']) && $post['status'] == 100) { // Novalnet transaction status got success + $payment_response = NovalnetUtil::decodePaygateResponse($post); // Decoding Novalnet server response + if (NovalnetUtil::validateHashResponse($post)) { //Hash Validation failed + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . utf8_decode(MODULE_PAYMENT_NOVALNET_EPS_REDIRECTION_ERROR_MESSAGE), 'SSL')); + } + $_SESSION['novalnet'][$this->code] = array( + 'tid' => $payment_response['tid'], + 'vendor' => $payment_response['vendor'], + 'product' => $payment_response['product'], + 'tariff' => $payment_response['tariff'], + 'auth_code' => $payment_response['auth_code'], + 'amount' => $payment_response['amount'], + 'total_amount' => $payment_response['amount'], + 'currency' => $payment_response['currency'], + 'gateway_status' => $payment_response['tid_status'], + 'test_mode' => $payment_response['test_mode'], + 'customer_id' => $payment_response['customer_no'], + 'payment_id' => $this->key + ); + $trans_comments = MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $payment_response['tid'] . (((isset($payment_response['test_mode']) && $payment_response['test_mode'] == 1) || MODULE_PAYMENT_NOVALNET_EPS_TEST_MODE == 'True') ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + $order->info['comments'] .= PHP_EOL.$trans_comments; + } else { // Novalnet transaction status got failure for displaying error message + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . utf8_decode(NovalnetUtil::getTransactionMessage($post)), 'SSL')); + } + } + + /** + * Core Function : after_process() + * + */ + function after_process() + { + global $insert_id; + + $order_status['orders_status'] = $order_status_id['orders_status_id'] = (MODULE_PAYMENT_NOVALNET_EPS_ORDER_STATUS > 0) ? MODULE_PAYMENT_NOVALNET_EPS_ORDER_STATUS : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform(TABLE_ORDERS, $order_status, "update", "orders_id='$insert_id'"); // Update order status in order status table + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $order_status_id, "update", "orders_id='$insert_id'"); // Update order status id in order status history table + // Sending post back call to Novalnet server + NovalnetUtil::doSecondCallProcess(array( + 'payment' => $this->code, + 'order_no' => $insert_id + )); + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_EPS_STATUS'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $language; + + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_eps.php'; + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_EPS_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_EPS_STATUS','False', '6','" . MODULE_PAYMENT_NOVALNET_EPS_STATUS_DESC . "', '1', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_EPS_STATUS\'," . MODULE_PAYMENT_NOVALNET_EPS_STATUS . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_EPS_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_EPS_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_EPS_TEST_MODE_DESC . "', '2', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_EPS_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_EPS_TEST_MODE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_EPS_VISIBILITY_BY_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_EPS_VISIBILITY_BY_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_EPS_VISIBILITY_BY_AMOUNT_DESC . "', '3','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_EPS_CUSTOMER_INFO_TITLE . "','MODULE_PAYMENT_NOVALNET_EPS_CUSTOMER_INFO', '', '6','" . MODULE_PAYMENT_NOVALNET_EPS_CUSTOMER_INFO_DESC . "', '4','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_EPS_SORT_ORDER_TITLE . "','MODULE_PAYMENT_NOVALNET_EPS_SORT_ORDER', '0', '6', '" . MODULE_PAYMENT_NOVALNET_EPS_SORT_ORDER_DESC . "', '5', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_EPS_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_EPS_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_EPS_ORDER_STATUS_DESC . "', '6', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_EPS_PAYMENT_ZONE_TITLE . "','MODULE_PAYMENT_NOVALNET_EPS_PAYMENT_ZONE', '0', '6', '" . MODULE_PAYMENT_NOVALNET_EPS_PAYMENT_ZONE_DESC . "','7', 'tep_cfg_pull_down_zone_classes(', 'tep_get_zone_class_title',now())"); + } + + /** + * Core Function : remove() + * + */ + function remove() + { + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + $this->validateAdminConfiguration(true); // Validate admin configuration + return array( + 'MODULE_PAYMENT_NOVALNET_EPS_STATUS', + 'MODULE_PAYMENT_NOVALNET_EPS_TEST_MODE', + 'MODULE_PAYMENT_NOVALNET_EPS_VISIBILITY_BY_AMOUNT', + 'MODULE_PAYMENT_NOVALNET_EPS_CUSTOMER_INFO', + 'MODULE_PAYMENT_NOVALNET_EPS_SORT_ORDER', + 'MODULE_PAYMENT_NOVALNET_EPS_ORDER_STATUS', + 'MODULE_PAYMENT_NOVALNET_EPS_PAYMENT_ZONE', + ); + } + + /** + * Validate admin configuration + * @param $admin + * + * @return boolean + */ + function validateAdminConfiguration($admin = false) + { + if (MODULE_PAYMENT_NOVALNET_EPS_STATUS == 'True') { + if (MODULE_PAYMENT_NOVALNET_EPS_VISIBILITY_BY_AMOUNT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_EPS_VISIBILITY_BY_AMOUNT)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_EPS_BLOCK_TITLE); + return false; + } + } + return true; + } +} +?> diff --git a/includes/modules/payment/novalnet_giropay.php b/includes/modules/payment/novalnet_giropay.php new file mode 100644 index 0000000..f0a0e44 --- /dev/null +++ b/includes/modules/payment/novalnet_giropay.php @@ -0,0 +1,288 @@ +code = 'novalnet_giropay'; + $this->title = $this->public_title = MODULE_PAYMENT_NOVALNET_GIROPAY_TEXT_TITLE; + $this->description = MODULE_PAYMENT_NOVALNET_GIROPAY_TEXT_DESCRIPTION; + $this->form_action_url = 'https://payport.novalnet.de/giropay'; + + $this->sort_order = 0; + if (strpos(MODULE_PAYMENT_INSTALLED, $this->code) !== false) { + $this->sort_order = MODULE_PAYMENT_NOVALNET_GIROPAY_SORT_ORDER; + $this->enabled = ((MODULE_PAYMENT_NOVALNET_GIROPAY_STATUS == 'True') ? true : false); + } + if ($this->enabled === true) { + if (isset($order) && is_object($order)) { + $this->update_status(); + } + } + } + + /** + * Core Function : update_status() + * + */ + function update_status() + { + global $order; + if (($this->enabled == true) && ((int) MODULE_PAYMENT_NOVALNET_GIROPAY_PAYMENT_ZONE > 0)) { + $check_flag = false; + $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_NOVALNET_GIROPAY_PAYMENT_ZONE . "' and (zone_id < 1 or zone_id = " . $order->billing['zone_id'] . " ) and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); + $check = tep_db_fetch_array($check_query); + if ($check['zone_id']) { + $check_flag = true; + } + if ($check_flag == false) { + $this->enabled = false; + } + } + // disable the module if the order only contains virtual products + if ($this->enabled == true) { + if ($order->content_type == 'virtual') { + $this->enabled = false; + } + } + } + + /** + * Core Function : javascript_validation() + * + */ + function javascript_validation() + { + return false; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + global $order; + + if (!NovalnetUtil::checkMerchantConfiguration() || !$this->validateAdminConfiguration() || !NovalnetUtil::hidePaymentVisibility(NovalnetUtil::getPaymentAmount((array) $order), MODULE_PAYMENT_NOVALNET_GIROPAY_VISIBILITY_BY_AMOUNT)) { // Validate the Novalnet merchant details,giropay admin configuration details and payment visibility + return false; + } + + NovalnetUtil::getLastSuccessPayment($this->code); // To get the payment name of last successful order + $selection['id'] = $this->code; + $selection['module'] = $this->public_title . MODULE_PAYMENT_NOVALNET_GIROPAY_PUBLIC_TITLE; + $selection['module'] .= '
' . $this->description . MODULE_PAYMENT_NOVALNET_REDIRECT_NOTICE_MSG . '
' . trim(strip_tags(MODULE_PAYMENT_NOVALNET_GIROPAY_CUSTOMER_INFO)); + if (MODULE_PAYMENT_NOVALNET_GIROPAY_TEST_MODE == 'True') { + $selection['module'] .= '
' . MODULE_PAYMENT_NOVALNET_TEST_MODE_MSG; + } + return $selection; + } + + /** + * Core Function : pre_confirmation_check() + * + */ + function pre_confirmation_check() + { + return false; + } + + /** + * Core Function : confirmation() + * + */ + function confirmation() + { + global $order; + $_SESSION['novalnet'][$this->code]['order_amount'] = NovalnetUtil::getPaymentAmount((array) $order); + return false; + } + + /** + * Core Function : process_button() + * + */ + function process_button() + { + global $order; + if (isset($_SESSION['novalnet'][$this->code]['order_amount'])) { + $_SESSION['novalnet'][$this->code] = array( + 'payment_amount' => $_SESSION['novalnet'][$this->code]['order_amount'] + ); + } + $input_params = array_merge((array) $order, array( + 'payment' => $this->code, + 'payment_amount' => $_SESSION['novalnet'][$this->code]['payment_amount'] + )); + $urlparam = NovalnetUtil::getRequestParams($input_params); + $urlparam['key'] = $this->key; + $urlparam['payment_type'] = $this->payment_type; + + NovalnetUtil::getRedirectParams($urlparam); + + + $process_button_string = ''; + foreach ($urlparam as $key => $value) { + $process_button_string .= tep_draw_hidden_field($key, $value); + } + $process_button_string .= NovalnetUtil::confirmButtonDisableActivate(); // Hiding Buy button in confirmation page + return $process_button_string; + + } + + /** + * Core Function : before_process() + * + */ + function before_process() + { + global $order; + $post = $_REQUEST; + + if (isset($post['tid']) && $post['status'] == 100) { // Novalnet transaction status got success + $payment_response = NovalnetUtil::decodePaygateResponse($post); // Decoding Novalnet server response + if (NovalnetUtil::validateHashResponse($post)) { //Hash Validation failed + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . utf8_decode(MODULE_PAYMENT_NOVALNET_GIROPAY_REDIRECTION_ERROR_MESSAGE), 'SSL')); + } + $_SESSION['novalnet'][$this->code] = array( + 'tid' => $payment_response['tid'], + 'vendor' => $payment_response['vendor'], + 'product' => $payment_response['product'], + 'tariff' => $payment_response['tariff'], + 'auth_code' => $payment_response['auth_code'], + 'amount' => $payment_response['amount'], + 'total_amount' => $payment_response['amount'], + 'currency' => $payment_response['currency'], + 'gateway_status' => $payment_response['tid_status'], + 'test_mode' => $payment_response['test_mode'], + 'customer_id' => $payment_response['customer_no'], + 'payment_id' => $this->key + ); + $trans_comments = MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $payment_response['tid'] . (((isset($payment_response['test_mode']) && $payment_response['test_mode'] == 1) || MODULE_PAYMENT_NOVALNET_GIROPAY_TEST_MODE == 'True') ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + $order->info['comments'] .= PHP_EOL.$trans_comments; + } else { // Novalnet transaction status got failure for displaying error message + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . utf8_decode(NovalnetUtil::getTransactionMessage($post)), 'SSL')); + } + } + + /** + * Core Function : after_process() + * + */ + function after_process() + { + global $insert_id; + $order_status['orders_status'] = $order_status_id['orders_status_id'] = (MODULE_PAYMENT_NOVALNET_GIROPAY_ORDER_STATUS > 0) ? MODULE_PAYMENT_NOVALNET_GIROPAY_ORDER_STATUS : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform(TABLE_ORDERS, $order_status, "update", "orders_id='$insert_id'"); // Update order status in order status table + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $order_status_id, "update", "orders_id='$insert_id'"); // Update order status id in order status history table + // Sending post back call to Novalnet server + NovalnetUtil::doSecondCallProcess(array( + 'payment' => $this->code, + 'order_no' => $insert_id + )); + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_GIROPAY_STATUS'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $language; + + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_giropay.php'; + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_GIROPAY_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_GIROPAY_STATUS','False', '6','" . MODULE_PAYMENT_NOVALNET_GIROPAY_STATUS_DESC . "', '1', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_GIROPAY_STATUS\'," . MODULE_PAYMENT_NOVALNET_GIROPAY_STATUS . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_GIROPAY_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_GIROPAY_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_GIROPAY_TEST_MODE_DESC . "', '2', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_GIROPAY_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_GIROPAY_TEST_MODE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_GIROPAY_VISIBILITY_BY_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_GIROPAY_VISIBILITY_BY_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_GIROPAY_VISIBILITY_BY_AMOUNT_DESC . "', '3','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_GIROPAY_CUSTOMER_INFO_TITLE . "','MODULE_PAYMENT_NOVALNET_GIROPAY_CUSTOMER_INFO', '', '6','" . MODULE_PAYMENT_NOVALNET_GIROPAY_CUSTOMER_INFO_DESC . "', '4','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_GIROPAY_SORT_ORDER_TITLE . "','MODULE_PAYMENT_NOVALNET_GIROPAY_SORT_ORDER', '0', '6', '" . MODULE_PAYMENT_NOVALNET_GIROPAY_SORT_ORDER_DESC . "', '5', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_GIROPAY_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_GIROPAY_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_GIROPAY_ORDER_STATUS_DESC . "', '6', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_GIROPAY_PAYMENT_ZONE_TITLE . "','MODULE_PAYMENT_NOVALNET_GIROPAY_PAYMENT_ZONE', '0', '6', '" . MODULE_PAYMENT_NOVALNET_GIROPAY_PAYMENT_ZONE_DESC . "','7', 'tep_cfg_pull_down_zone_classes(', 'tep_get_zone_class_title',now())"); + } + + /** + * Core Function : remove() + * + */ + function remove() + { + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + $this->validateAdminConfiguration(true); // Validate admin configuration + return array( + 'MODULE_PAYMENT_NOVALNET_GIROPAY_STATUS', + 'MODULE_PAYMENT_NOVALNET_GIROPAY_TEST_MODE', + 'MODULE_PAYMENT_NOVALNET_GIROPAY_VISIBILITY_BY_AMOUNT', + 'MODULE_PAYMENT_NOVALNET_GIROPAY_CUSTOMER_INFO', + 'MODULE_PAYMENT_NOVALNET_GIROPAY_SORT_ORDER', + 'MODULE_PAYMENT_NOVALNET_GIROPAY_ORDER_STATUS', + 'MODULE_PAYMENT_NOVALNET_GIROPAY_PAYMENT_ZONE', + ); + } + + /** + * Validate admin configuration + * @param $admin + * + * @return boolean + */ + function validateAdminConfiguration($admin = false) + { + if (MODULE_PAYMENT_NOVALNET_GIROPAY_STATUS == 'True') { + if (MODULE_PAYMENT_NOVALNET_GIROPAY_VISIBILITY_BY_AMOUNT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_GIROPAY_VISIBILITY_BY_AMOUNT)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_GIROPAY_TITLE); + return false; + } + } + return true; + } +} +?> diff --git a/includes/modules/payment/novalnet_ideal.php b/includes/modules/payment/novalnet_ideal.php new file mode 100644 index 0000000..4707dd9 --- /dev/null +++ b/includes/modules/payment/novalnet_ideal.php @@ -0,0 +1,274 @@ +code = 'novalnet_ideal'; + $this->title = $this->public_title = MODULE_PAYMENT_NOVALNET_IDEAL_TEXT_TITLE; + $this->description = MODULE_PAYMENT_NOVALNET_IDEAL_TEXT_DESCRIPTION; + $this->form_action_url = 'https://payport.novalnet.de/online_transfer_payport'; + + $this->sort_order = 0; + if (strpos(MODULE_PAYMENT_INSTALLED, $this->code) !== false) { + $this->sort_order = MODULE_PAYMENT_NOVALNET_IDEAL_SORT_ORDER; + $this->enabled = ((MODULE_PAYMENT_NOVALNET_IDEAL_STATUS == 'True') ? true : false); + } + if ($this->enabled === true) { + if (isset($order) && is_object($order)) { + $this->update_status(); + } + } + } + + /** + * Core Function : update_status() + * + */ + function update_status() + { + global $order; + if (($this->enabled == true) && ((int) MODULE_PAYMENT_NOVALNET_IDEAL_PAYMENT_ZONE > 0)) { + $check_flag = false; + $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_NOVALNET_IDEAL_PAYMENT_ZONE . "' and (zone_id < 1 or zone_id = " . $order->billing['zone_id'] . " ) and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); + $check = tep_db_fetch_array($check_query); + if ($check['zone_id']) { + $check_flag = true; + } + if ($check_flag == false) { + $this->enabled = false; + } + } + // disable the module if the order only contains virtual products + if ($this->enabled == true) { + if ($order->content_type == 'virtual') { + $this->enabled = false; + } + } + } + + /** + * Core Function : javascript_validation() + * + */ + function javascript_validation() + { + return false; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + global $order; + + if (!NovalnetUtil::checkMerchantConfiguration() || !$this->validateAdminConfiguration() || !NovalnetUtil::hidePaymentVisibility(NovalnetUtil::getPaymentAmount((array) $order), MODULE_PAYMENT_NOVALNET_IDEAL_VISIBILITY_BY_AMOUNT)) { // Validate the Novalnet merchant details eps admin configuration details and payment visibility + return false; + } + + NovalnetUtil::getLastSuccessPayment($this->code); // To get the payment name of last successful order + $selection['id'] = $this->code; + $selection['module'] = $this->public_title . MODULE_PAYMENT_NOVALNET_IDEAL_PUBLIC_TITLE; + $selection['module'] .= '
' . $this->description . MODULE_PAYMENT_NOVALNET_REDIRECT_NOTICE_MSG . '
' . trim(strip_tags(MODULE_PAYMENT_NOVALNET_IDEAL_CUSTOMER_INFO)); + if (MODULE_PAYMENT_NOVALNET_IDEAL_TEST_MODE == 'True') { + $selection['module'] .= '
' . MODULE_PAYMENT_NOVALNET_TEST_MODE_MSG; + } + return $selection; + } + + /** + * Core Function : pre_confirmation_check() + * + */ + function pre_confirmation_check() + { + return false; + } + + /** + * Core Function : confirmation() + * + */ + function confirmation() + { + global $order; + $_SESSION['novalnet'][$this->code]['order_amount'] = NovalnetUtil::getPaymentAmount((array) $order); + return false; + } + + /** + * Core Function : process_button() + * + */ + function process_button() + { + global $order; + if (isset($_SESSION['novalnet'][$this->code]['order_amount'])) { + $_SESSION['novalnet'][$this->code] = array( + 'payment_amount' => $_SESSION['novalnet'][$this->code]['order_amount'] + ); + } + $input_params = array_merge((array) $order, array( + 'payment' => $this->code, + 'payment_amount' => $_SESSION['novalnet'][$this->code]['payment_amount'] + )); + $urlparam = NovalnetUtil::getRequestParams($input_params); + $urlparam['key'] = $this->key; + $urlparam['payment_type'] = $this->payment_type; + NovalnetUtil::getRedirectParams($urlparam); + + $process_button_string = ''; + foreach ($urlparam as $key => $value) { + $process_button_string .= tep_draw_hidden_field($key, $value); + } + + $process_button_string .= NovalnetUtil::confirmButtonDisableActivate(); // Hiding Buy button in confirmation page + return $process_button_string; + } + + /** + * Core Function : before_process() + * + */ + function before_process() + { + global $order; + $post = $_REQUEST; + if (isset($post['tid']) && $post['status'] == 100) { // Novalnet transaction status got success + $payment_response = NovalnetUtil::decodePaygateResponse($post); // Decoding Novalnet server response + if (NovalnetUtil::validateHashResponse($post)) { //Hash Validation failed + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . utf8_decode(MODULE_PAYMENT_NOVALNET_IDEAL_REDIRECTION_ERROR_MESSAGE), 'SSL')); + } + $_SESSION['novalnet'][$this->code] = array( + 'tid' => $payment_response['tid'], + 'vendor' => $payment_response['vendor'], + 'product' => $payment_response['product'], + 'tariff' => $payment_response['tariff'], + 'auth_code' => $payment_response['auth_code'], + 'amount' => $payment_response['amount'], + 'total_amount' => $payment_response['amount'], + 'currency' => $payment_response['currency'], + 'gateway_status' => $payment_response['tid_status'], + 'test_mode' => $payment_response['test_mode'], + 'customer_id' => $payment_response['customer_no'], + 'payment_id' => $this->key + ); + $trans_comments = MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $payment_response['tid'] . (((isset($payment_response['test_mode']) && $payment_response['test_mode'] == 1) || MODULE_PAYMENT_NOVALNET_IDEAL_TEST_MODE == 'True') ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + $order->info['comments'] .= PHP_EOL.$trans_comments; + } else { // Novalnet transaction status got failure for displaying error message + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::getTransactionMessage($post), 'SSL')); + } + } + + /** + * Core Function : after_process() + * + */ + function after_process() + { + global $insert_id; + $order_status['orders_status'] = $order_status_id['orders_status_id'] = (MODULE_PAYMENT_NOVALNET_IDEAL_ORDER_STATUS > 0) ? MODULE_PAYMENT_NOVALNET_IDEAL_ORDER_STATUS : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform(TABLE_ORDERS, $order_status, "update", "orders_id='$insert_id'"); // Update order status in order status table + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $order_status_id, "update", "orders_id='$insert_id'"); // Update order status id in order status history table + // Sending post back call to Novalnet server + NovalnetUtil::doSecondCallProcess(array('payment' => $this->code, 'order_no' => $insert_id)); + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_IDEAL_STATUS'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $language; + + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_ideal.php'; + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_IDEAL_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_IDEAL_STATUS','False', '6','" . MODULE_PAYMENT_NOVALNET_IDEAL_STATUS_DESC . "', '1', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_IDEAL_STATUS\'," . MODULE_PAYMENT_NOVALNET_IDEAL_STATUS . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_IDEAL_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_IDEAL_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_IDEAL_TEST_MODE_DESC . "', '2', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_IDEAL_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_IDEAL_TEST_MODE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_IDEAL_VISIBILITY_BY_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_IDEAL_VISIBILITY_BY_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_IDEAL_VISIBILITY_BY_AMOUNT_DESC . "', '3','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_IDEAL_CUSTOMER_INFO_TITLE . "','MODULE_PAYMENT_NOVALNET_IDEAL_CUSTOMER_INFO', '', '6','" . MODULE_PAYMENT_NOVALNET_IDEAL_CUSTOMER_INFO_DESC . "', '4','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_IDEAL_SORT_ORDER_TITLE . "','MODULE_PAYMENT_NOVALNET_IDEAL_SORT_ORDER', '0', '6', '" . MODULE_PAYMENT_NOVALNET_IDEAL_SORT_ORDER_DESC . "', '5', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_IDEAL_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_IDEAL_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_IDEAL_ORDER_STATUS_DESC . "', '6', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_IDEAL_PAYMENT_ZONE_TITLE . "','MODULE_PAYMENT_NOVALNET_IDEAL_PAYMENT_ZONE', '0', '6', '" . MODULE_PAYMENT_NOVALNET_IDEAL_PAYMENT_ZONE_DESC . "','7', 'tep_cfg_pull_down_zone_classes(', 'tep_get_zone_class_title',now())"); + } + + /** + * Core Function : remove() + * + */ + function remove() + { + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + $this->validateAdminConfiguration(true); // Validate admin configuration + return array('MODULE_PAYMENT_NOVALNET_IDEAL_STATUS', 'MODULE_PAYMENT_NOVALNET_IDEAL_TEST_MODE','MODULE_PAYMENT_NOVALNET_IDEAL_VISIBILITY_BY_AMOUNT', 'MODULE_PAYMENT_NOVALNET_IDEAL_CUSTOMER_INFO','MODULE_PAYMENT_NOVALNET_IDEAL_SORT_ORDER', 'MODULE_PAYMENT_NOVALNET_IDEAL_ORDER_STATUS', 'MODULE_PAYMENT_NOVALNET_IDEAL_PAYMENT_ZONE'); + } + + /** + * Validate admin configuration + * @param $admin + * + * @return boolean + */ + function validateAdminConfiguration($admin = false) + { + if (MODULE_PAYMENT_NOVALNET_IDEAL_STATUS == 'True') { + if (MODULE_PAYMENT_NOVALNET_IDEAL_VISIBILITY_BY_AMOUNT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_IDEAL_VISIBILITY_BY_AMOUNT)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_IDEAL_BLOCK_TITLE); + return false; + } + } + return true; + } +} +?> diff --git a/includes/modules/payment/novalnet_invoice.php b/includes/modules/payment/novalnet_invoice.php new file mode 100644 index 0000000..4b3679b --- /dev/null +++ b/includes/modules/payment/novalnet_invoice.php @@ -0,0 +1,565 @@ +code = 'novalnet_invoice'; + $this->title = $this->public_title = MODULE_PAYMENT_NOVALNET_INVOICE_TEXT_TITLE; + $this->description = MODULE_PAYMENT_NOVALNET_INVOICE_TEXT_DESCRIPTION; + $this->order_status = defined('MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS_ID') && ((int) MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS_ID > 0) ? (int) MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS_ID : 0; + $this->fraud_module = ((MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FRAUDMODULE == 'False') ? false : MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FRAUDMODULE); + $this->fraud_module_status = ($this->fraud_module) ? true : false; + $this->sort_order = 0; + if (strpos(MODULE_PAYMENT_INSTALLED, $this->code) !== false) { + $this->sort_order = MODULE_PAYMENT_NOVALNET_INVOICE_SORT_ORDER; + $this->enabled = ((MODULE_PAYMENT_NOVALNET_INVOICE_STATUS == 'True') ? true : false); + } + if ($this->enabled === true) { + if (isset($order) && is_object($order)) { + $this->update_status(); + } + } + echo''; + } + + /** + * Core Function : update_status() + * + */ + function update_status() + { + global $order; + + if (($this->enabled == true) && ((int) MODULE_PAYMENT_NOVALNET_INVOICE_PAYMENT_ZONE > 0)) { + $check_flag = false; + $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_NOVALNET_INVOICE_PAYMENT_ZONE . "' and (zone_id < 1 or zone_id = " . $order->billing['zone_id'] . " ) and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); + $check = tep_db_fetch_array($check_query); + if ($check['zone_id']) { + $check_flag = true; + } + if ($check_flag == false) { + $this->enabled = false; + } + } + // disable the module if the order only contains virtual products + if ($this->enabled == true) { + if ($order->content_type == 'virtual') { + $this->enabled = false; + } + } + } + + /** + * Core Function : javascript_validation() + * + */ + function javascript_validation() + { + return false; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + global $order; + NovalnetUtil::validatecallbacksession(); + $guarantee_payment = NovalnetUtil::displayBirthdateField($order, $this->code); // Check condition for displaying birthdate field + + if (!NovalnetUtil::checkMerchantConfiguration() || $this->gurantee_error() || !$this->validateAdminConfiguration() || !NovalnetUtil::hidePaymentVisibility(NovalnetUtil::getPaymentAmount((array) $order), MODULE_PAYMENT_NOVALNET_INVOICE_VISIBILITY_BY_AMOUNT) || !NovalnetUtil::validateCallbackStatus($this->code, $this->fraud_module)) { // Validate the Novalnet merchant details, prepayment, invoice payment admin details and payment visibility + return false; + } + + NovalnetUtil::getLastSuccessPayment($this->code); // To get the payment name of last successful order + + $this->fraud_module_status = NovalnetUtil::setFraudModuleStatus($this->code, $this->fraud_module); // Validate status of fraud modules + + $customer_details = NovalnetUtil::getCustomerDetails($order->customer['email_address']); // Get customer details + $_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate'] = $customer_details['customers_dob']; + if(MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && $this->guranteePaymentInvoiceVerifcation($order)) { + $this->fraud_module_status = false; + } + + if (!empty($_SESSION['payment']) && isset($_SESSION['novalnet'][$this->code]['tid']) && $_SESSION['payment'] != $this->code) { + unset($_SESSION['novalnet'][$this->code]['tid']); + } + $notification = trim(strip_tags(MODULE_PAYMENT_NOVALNET_INVOICE_CUSTOMER_INFO)); + if ($guarantee_payment == 'error') { + $notification .= '
'.MODULE_PAYMENT_NOVALNET_FORCE_GUARANTEE_ERROR_MESSAGE; + } + + $selection['id'] = $this->code; + $selection['module'] = $this->public_title . MODULE_PAYMENT_NOVALNET_INVOICE_PUBLIC_TITLE; + $selection['module'] .= '
' . $this->description . '
' . $notification; + if (MODULE_PAYMENT_NOVALNET_INVOICE_TEST_MODE == 'True') { + $selection['module'] .= '
' . MODULE_PAYMENT_NOVALNET_TEST_MODE_MSG; + } + if (isset($_SESSION['novalnet'][$this->code]['tid']) && $this->fraud_module) { + $selection['fields'] = NovalnetUtil::buildCallbackFieldsAfterResponse($this->fraud_module, $this->code); // Display pin number field after getting response + } elseif (!isset($_SESSION['novalnet'][$this->code]['tid']) && in_array($this->fraud_module, array( + 'CALLBACK', + 'SMS' + )) && $this->fraud_module_status) { // Display fraud module field + $fraud_module_value = array( + 'CALLBACK' => array('name' => '_fraud_tel', 'value' => 'telephone'), + 'SMS' => array('name' => '_fraud_mobile', 'value' => 'mobile') + ); + $selection['fields'][] = array( + 'title' => constant('MODULE_PAYMENT_NOVALNET_FRAUDMODULE_' . $this->fraud_module . '_INPUT_TITLE') . " * ", + 'field' => tep_draw_input_field($this->code . $fraud_module_value[$this->fraud_module]['name'], (isset($order->customer[$fraud_module_value[$this->fraud_module]['value']]) ? $order->customer[$fraud_module_value[$this->fraud_module]['value']] : ''), 'id="' . $this->code . '-' . strtolower($this->fraud_module) . '"') + ); + } + + + if (!isset($_SESSION['novalnet'][$this->code]['tid']) && isset($guarantee_payment) && $guarantee_payment == 'guarantee' && $this->guranteePaymentInvoiceVerifcation($order) && $order->billing['company'] == '' ) { // Display guarantee payment date of birth field + $customer_bday = !empty($customer_details['customers_dob']) ? date('d-m-Y', strtotime($customer_details['customers_dob'])) : ''; + $selection['fields'][] = array( + 'title' => MODULE_PAYMENT_NOVALNET_ENDCUSTOMER_BIRTH_DATE . " * ", + 'field' => tep_draw_input_field($this->code . 'birthdate', $customer_bday, 'id="novalnet_invoice_birth_date" readonly') . '  + + + + ' + ); + +} + return $selection; + } + + /** + * Core Function : pre_confirmation_check() + * + */ + function pre_confirmation_check() + { + global $order; + + $post = $_REQUEST; + + $guarantee_payment = NovalnetUtil::displayBirthdateField($order, $this->code); // Check condition for displaying birthdate field + + if ($guarantee_payment == 'error') { + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_FORCE_GUARANTEE_ERROR), 'SSL')); + } + $_SESSION['novalnet'][$this->code]['invoicebirthdate'] = $_REQUEST['novalnet_invoicebirthdate']; + if(isset($post['novalnet_invoicebirthdate']) && $post['novalnet_invoicebirthdate'] != '') { + $_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate'] = $post['novalnet_invoicebirthdate']; + } + if (isset($_SESSION['novalnet'][$this->code]['secondcall'])) { // Validate fraud module pin number field + NovalnetUtil::validateUserInputsOnCallback($this->code, $post, $this->fraud_module); + } elseif (MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT != 'True' && (!NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate']) || !NovalnetUtil::check_data($_REQUEST['novalnet_invoicebirthdate'])) && $order->billing['company'] == '' ){ // Validate age + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_AGE_ERROR), 'SSL')); + } else { + // Validate fraud module field + $this->fraud_module_status = NovalnetUtil::setFraudModuleStatus($this->code, $this->fraud_module); + + if((MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && $this->guranteePaymentInvoiceVerifcation($order)) || (MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT == 'True' && !NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate']))) { + $this->fraud_module_status = false; + } + NovalnetUtil::validateCallbackFields($post, $this->fraud_module, $this->fraud_module_status, $this->code); + } + } + + /** + * Core Function : confirmation() + * + */ + function confirmation() + { + global $order; + // Check amount validation for Fraud module after genarating the pin number + if (isset($_SESSION['novalnet'][$this->code]['secondcall'])) { + if ($_SESSION['novalnet'][$this->code]['amount'] != NovalnetUtil::getPaymentAmount((array) $order)) { + unset($_SESSION['novalnet']); + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_FRAUDMODULE_AMOUNT_CHANGE_ERROR), 'SSL')); + } + } + $_SESSION['novalnet'][$this->code]['order_amount'] = NovalnetUtil::getPaymentAmount((array) $order); // Payment amount + return false; + } + + /** + * Core Function : process_button() + * + */ + function process_button() + { + $post = $_REQUEST; + if (isset($post['novalnet_invoice_new_pin']) && $post['novalnet_invoice_new_pin'] == 1) { // Sending new pin number to Novalnet server + $new_pin_response = NovalnetUtil::doXMLCallbackRequest('TRANSMIT_PIN_AGAIN', $this->code); + $response = NovalnetUtil::getStatusFromXmlResponse($new_pin_response); // Converting Xml response from Novalnet server + if ($response['status'] != 100) { // If the transation is failure + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . $response['status_message'], 'SSL')); + } + } elseif (isset($_SESSION['novalnet'][$this->code]['order_amount'])) { + $order_details = isset($_SESSION['novalnet'][$this->code]) ? $_SESSION['novalnet'][$this->code] : array(); + $_SESSION['novalnet'][$this->code] = array_merge($order_details, $post, array( + 'payment_amount' => $_SESSION['novalnet'][$this->code]['order_amount'] + )); + } else { // Display error message + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . MODULE_PAYMENT_NOVALNET_AMOUNT_ERROR_MESSAGE, 'SSL')); + } + + return NovalnetUtil::confirmButtonDisableActivate(); // Hiding Buy button in confirmation page + } + + /** + * Core Function : before_process() + * + */ + function before_process() + { + global $order; + + $this->fraud_module_status = NovalnetUtil::setFraudModuleStatus($this->code, $this->fraud_module); + if((MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && $this->guranteePaymentInvoiceVerifcation($order)) || (MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT == 'True' && !NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate']))) { + $this->fraud_module_status = false; + } + if (isset($_SESSION['novalnet'][$this->code]['secondcall']) && $_SESSION['novalnet'][$this->code]['secondcall']) { // Sending pin number to Novalnet server + $callback_response = ($this->fraud_module && in_array($this->fraud_module, array('SMS', 'CALLBACK' + ))) ? NovalnetUtil::doXMLCallbackRequest('PIN_STATUS', $this->code) : ''; + $response = NovalnetUtil::getStatusFromXmlResponse($callback_response); // Converting Xml response from Novalnet server + if ($response['status'] != 100) { // Novalnet transaction status got failure for displaying error message + if ($response['status'] == '0529006') { + $_SESSION[$this->code . '_nn_payment_lock'] = true; + } + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . (!empty($response['status_message']) ? NovalnetUtil::setUTFText($response['status_message']) : $response['pin_status']['status_message']), 'SSL')); + } else { // Novalnet transaction status got success + $_SESSION['novalnet'][$this->code]['gateway_status'] = $response['tid_status']; + $this->updateTransComments($_SESSION['novalnet'][$this->code], ''); + } + } else { + $input_params = array_merge((array) $order, array( + 'payment' => $this->code, + 'payment_amount' => $_SESSION['novalnet'][$this->code]['payment_amount'] + )); + $urlparam = NovalnetUtil::getRequestParams($input_params); + $urlparam['key'] = $this->key; + $urlparam['payment_type'] = $this->payment_type; + $urlparam['invoice_type'] = $this->payment_type; + $invoice_due_date = (MODULE_PAYMENT_NOVALNET_INVOICE_DUE_DATE != '') ? (date('Y-m-d', strtotime('+' . MODULE_PAYMENT_NOVALNET_INVOICE_DUE_DATE . ' days'))) : ''; + + if ($invoice_due_date != '') { // Get invoice due date + $urlparam['due_date'] = $invoice_due_date; + } + + // To process on hold product + $order_amount = $order->info['total']*100; + if(($order_amount >= trim(MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_INVOICE_LIMIT) && MODULE_PAYMENT_NOVALNET_INVOICE_AUTHENTICATE == 'authorize' ) || (empty (MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_INVOICE_LIMIT) && MODULE_PAYMENT_NOVALNET_INVOICE_AUTHENTICATE == 'authorize' )){ + $urlparam['on_hold'] = 1; + } + if (MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION == 'True') { + if ($this->guranteePaymentInvoiceVerifcation($order) && NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate']) && NovalnetUtil::check_data($_SESSION['novalnet'][$this->code]['invoicebirthdate']) ) { // Appending parameters for guarantee payment + $urlparam['key'] = '41'; + $urlparam['payment_type'] = 'GUARANTEED_INVOICE'; + $urlparam['birth_date'] = $_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate']; + } + + else { + if (MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT == 'False' && ($order->billing['company'] == '' && $_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate'] == '' )){ + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . MODULE_PAYMENT_NOVALNET_AGE_ERROR, 'SSL')); + } + } + } + + + if ($this->fraud_module && $this->fraud_module_status) { // Appending parameters for Fraud module + if ($this->fraud_module == 'CALLBACK') { + $urlparam['tel'] = trim($_SESSION['novalnet'][$this->code]['novalnet_invoice_fraud_tel']); + $urlparam['pin_by_callback'] = '1'; + } else { + $urlparam['mobile'] = trim($_SESSION['novalnet'][$this->code]['novalnet_invoice_fraud_mobile']); + $urlparam['pin_by_sms'] = '1'; + } + } + if(isset($_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate'])) { + $urlparam['birth_date'] = date('Y-m-d', strtotime($_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate'])); + } + $_SESSION['novalnet'][$this->code]['order_amount'] = $urlparam['amount']; + + $response = NovalnetUtil::doPaymentCall("https://payport.novalnet.de/paygate.jsp", $urlparam); + parse_str($response, $datas); + if ($datas['status'] == 100) { + + $this->updateTransComments($datas, $urlparam); // Update Novalnet transaction comments + $_SESSION['novalnet_invoice_callback_max_time_nn'] = time() + (30 * 60); + } else { + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::getTransactionMessage($datas), 'SSL')); + } + if(MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION != 'True' || (MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && !$this->guranteePaymentInvoiceVerifcation($order))) { + NovalnetUtil::gotoPaymentOnCallback($this->code, $this->fraud_module, $this->fraud_module_status); // Redirect to checkout page for displaying fraud module message + } + } + } + + /** + * Core Function : after_process() + * + */ + function after_process() + { + global $insert_id; + // Form payment reference comments. + $reference_comments = NovalnetUtil::novalnetReferenceComments($insert_id, $this->code, ''); + $order_status['orders_status'] = $order_status_id['orders_status_id'] = ($_SESSION['novalnet'][$this->code]['payment_id'] == 41 ? ($_SESSION['novalnet'][$this->code]['gateway_status'] == 75 ? MODULE_PAYMENT_NOVALNET_INVOICE_PENDING_ORDER_STATUS : ($_SESSION['novalnet'][$this->code]['gateway_status'] == 91 ?MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE : MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_ORDER_STATUS)) : + ($_SESSION['novalnet'][$this->code]['gateway_status'] == 91 ? MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE : MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS)); + $order_status['orders_status'] = ($order_status['orders_status'] > 0) ? $order_status['orders_status'] : DEFAULT_ORDERS_STATUS_ID; + $order_status_id['orders_status_id'] = ($order_status_id['orders_status_id'] > 0) ? $order_status_id['orders_status_id'] : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform(TABLE_ORDERS, $order_status, "update", "orders_id='$insert_id'"); + + $order_status_id['comments'] = $_SESSION['novalnet'][$this->code]['comments'] . (!in_array($_SESSION['novalnet'][$this->code]['gateway_status'],array('75','91')) ? $reference_comments : '' ); + + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $order_status_id, "update", "orders_id='$insert_id'"); + + // Sending post back call to Novalnet server + NovalnetUtil::doSecondCallProcess(array( + 'payment' => $this->code, + 'order_no' => $insert_id + )); + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_INVOICE_STATUS'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $language; + + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_invoice.php'; + + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_STATUS','False', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_STATUS_DESC . "', '1', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_INVOICE_STATUS\'," . MODULE_PAYMENT_NOVALNET_INVOICE_STATUS . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_TEST_MODE_DESC . "', '2', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_INVOICE_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_INVOICE_TEST_MODE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_AUTHENTICATE_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_AUTHENTICATE','capture', '6','', '2', 'tep_mod_select_option(array(\'capture\' => MODULE_PAYMENT_NOVALNET_CAPTURE,\'authorize\' => MODULE_PAYMENT_NOVALNET_AUTHORIZE),\'MODULE_PAYMENT_NOVALNET_INVOICE_AUTHENTICATE\'," . MODULE_PAYMENT_NOVALNET_INVOICE_AUTHENTICATE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FRAUDMODULE_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FRAUDMODULE','False', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FRAUDMODULE_DESC . "','3','tep_mod_select_option(array(\'False\' => MODULE_PAYMENT_NOVALNET_OPTION_NONE,\'CALLBACK\' => MODULE_PAYMENT_NOVALNET_FRAUD_OPTIONCALLBACK,\'SMS\' => MODULE_PAYMENT_NOVALNET_FRAUD_OPTIONSMS,),\'MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FRAUDMODULE\'," . MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FRAUDMODULE . ",' , '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_LIMIT_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_LIMIT', '', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_LIMIT_DESC . "', '4','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_DUE_DATE_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_DUE_DATE', '', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_DUE_DATE_DESC . "', '5','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_VISIBILITY_BY_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_VISIBILITY_BY_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_VISIBILITY_BY_AMOUNT_DESC . "', '6','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_CUSTOMER_INFO_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_CUSTOMER_INFO', '', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_CUSTOMER_INFO_DESC . "', '7','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_SORT_ORDER_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_SORT_ORDER', '0', '6', '" . MODULE_PAYMENT_NOVALNET_INVOICE_SORT_ORDER_DESC . "', '8', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_ORDER_STATUS_DESC . "', '9', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS_DESC . "', '10', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_PAYMENT_ZONE_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_PAYMENT_ZONE', '0', '6', '" . MODULE_PAYMENT_NOVALNET_INVOICE_PAYMENT_ZONE_DESC . "','11', 'tep_cfg_pull_down_zone_classes(', 'tep_get_zone_class_title',now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION','False', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION_DESC . "', '12', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION\'," . MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT', '', '6', '" . MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT_DESC . "','18', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_LIMIT_INVOICE_TITLE . "','MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_INVOICE_LIMIT', '', '6', '".MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_INVOICE_LIMIT_DESC."' , '7', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_PENDING_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_PENDING_ORDER_STATUS', '', '6', '" . MODULE_PAYMENT_NOVALNET_INVOICE_PENDING_ORDER_STATUS_DESC . "','16', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT_TITLE . "','MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT','True', '6','" . MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT_DESC . "','19', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT\'," . MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT . ",' , '', now()) + "); + + } + + /** + * Core Function : remove() + * + */ + function remove() + { + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + $this->validateAdminConfiguration(true); // Validate admin configuration + return array('MODULE_PAYMENT_NOVALNET_INVOICE_STATUS', 'MODULE_PAYMENT_NOVALNET_INVOICE_TEST_MODE','MODULE_PAYMENT_NOVALNET_INVOICE_AUTHENTICATE','MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_INVOICE_LIMIT','MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FRAUDMODULE', 'MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_LIMIT','MODULE_PAYMENT_NOVALNET_INVOICE_DUE_DATE', 'MODULE_PAYMENT_NOVALNET_INVOICE_VISIBILITY_BY_AMOUNT','MODULE_PAYMENT_NOVALNET_INVOICE_CUSTOMER_INFO', 'MODULE_PAYMENT_NOVALNET_INVOICE_SORT_ORDER','MODULE_PAYMENT_NOVALNET_INVOICE_ORDER_STATUS', 'MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_ORDER_STATUS','MODULE_PAYMENT_NOVALNET_INVOICE_PAYMENT_ZONE', 'MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION','MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT','MODULE_PAYMENT_NOVALNET_INVOICE_PENDING_ORDER_STATUS','MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT'); + } + + /** + * Validate admin configuration + * @param $admin + * + * @return boolean + */ + function validateAdminConfiguration($admin = false) + { + if (MODULE_PAYMENT_NOVALNET_INVOICE_STATUS == 'True') { + if (MODULE_PAYMENT_NOVALNET_INVOICE_VISIBILITY_BY_AMOUNT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_INVOICE_VISIBILITY_BY_AMOUNT)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_INVOICE_BLOCK_TITLE); + return false; + } elseif (trim(MODULE_PAYMENT_NOVALNET_INVOICE_DUE_DATE) != '' && !ctype_digit(trim(MODULE_PAYMENT_NOVALNET_INVOICE_DUE_DATE))) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_INVOICE_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_INVOICE_DUE_DATE_ERROR); + return false; + } elseif(MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && (MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT != '' && (!ctype_digit(MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT) || MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT < 999))){ + if(MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT != '' && (!ctype_digit(MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT) || MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT < 999)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_INVOICE_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_INVOICE_GURANTEE_PAYMENT_MIN_AMOUNT_ERROR_MSG); + return false; + } + } + + elseif(MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FRAUDMODULE != 'False' && (MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_LIMIT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_INVOICE_CALLBACK_LIMIT))) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_INVOICE_BLOCK_TITLE); + return false; + } + else { + return true; + } + } + } + + + function gurantee_error($admin = false) + { + global $order; + $order_amount = $order->info['total']*100 ; + $minimum_amount_gurantee = trim(MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT) != '' ? trim(MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT) : '999'; + // Delivery address + $delivery_address = array( + 'street_address' => $order->delivery['street_address'], + 'city' => $order->delivery['city'], + 'postcode' => $order->delivery['postcode'], + 'country' => $order->delivery['country']['iso_code_2'], + ); + // Billing address + $billing_address = array( + 'street_address' => $order->billing['street_address'], + 'city' => $order->billing['city'], + 'postcode' => $order->billing['postcode'], + 'country' => $order->billing['country']['iso_code_2'], + ); + + if(MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION == 'True'){ + if(MODULE_PAYMENT_NOVALNET_INVOICE_ENABLE_FORCE_GUARANTEE_PAYMENT == 'False'){ + if ($delivery_address !== $billing_address) { + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_INVOICE_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_GUARANTEE_INVALID_ADDRESS); + return false; + }else if(!in_array(strtoupper($order->billing['country']['iso_code_2']), array('DE', 'AT', 'CH'))){ + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_INVOICE_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_GUARANTEE_INVALID_COUNTRY); + return false; + }else if($order_amount <= $minimum_amount_gurantee ){ + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_INVOICE_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_GUARANTEE_INVALID_AMOUNT); + return false; + }else if ($order->info['currency'] != 'EUR'){ + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_INVOICE_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_GUARANTEE_INVALID_CURRENCY); + return false; + } + } + } +} + + /** + * Update transaction comments + * @param $payment_response + * @param $input_params + * + * @return none + */ + function updateTransComments($payment_response, $input_params) + { + global $order; + $trans_comments = PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $payment_response['tid'] . (((isset($payment_response['test_mode']) && $payment_response['test_mode'] == 1) || MODULE_PAYMENT_NOVALNET_INVOICE_TEST_MODE == 1) ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + list($invoice_comments, $bank_details) = NovalnetUtil::formInvoicePrepaymentComments($payment_response); // Get Invoice / Prepayment comments in class.novalnetutil.php file + if (empty($_SESSION['novalnet'][$this->code]['bank_details'])) { + $_SESSION['novalnet'][$this->code]['bank_details'] = serialize($bank_details); + } + $_SESSION['novalnet'][$this->code] = array_merge($_SESSION['novalnet'][$this->code], array( + 'tid' => $payment_response['tid'], + 'vendor' => !empty($input_params['vendor']) ? $input_params['vendor'] : $payment_response['vendor'], + 'product' => !empty($input_params['product']) ? $input_params['product'] : $payment_response['product'], + 'tariff' => !empty($input_params['tariff']) ? $input_params['tariff'] : $payment_response['tariff'], + 'auth_code' => !empty($input_params['auth_code']) ? $input_params['auth_code'] : $payment_response['auth_code'], + 'amount' => $_SESSION['novalnet'][$this->code]['order_amount'], + 'total_amount' => $_SESSION['novalnet'][$this->code]['order_amount'], + 'order_currency' => $payment_response['currency'], + 'payment_id' => (MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && $this->guranteePaymentInvoiceVerifcation($order) && NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate']) && NovalnetUtil::check_data($_SESSION['novalnet'][$this->code]['invoicebirthdate'])) ? 41: 27, + 'test_mode' => $payment_response['test_mode'], + 'customer_id' => $payment_response['customer_no'], + 'comments' => $order->info['comments'] . $trans_comments . $invoice_comments, + 'subs_id' => $payment_response['subs_id'], + 'payment_details' => $_SESSION['novalnet'][$this->code]['bank_details'], + 'gateway_status' => ($payment_response['tid_status']) ? $payment_response['tid_status'] : $_SESSION['novalnet'][$this->code]['gateway_status'], + 'customer_no' => $payment_response['customer_no'], + 'due_date' => $payment_response['due_date'], + 'invoice_iban' => $payment_response['invoice_iban'], + 'reference_transaction' => '0', + 'invoice_bic' => $payment_response['invoice_bic'], + 'invoice_bankname' => $payment_response['invoice_bankname'], + 'invoice_bankplace' => $payment_response['invoice_bankplace'], + 'currency' => $payment_response['currency'] + )); + if($_SESSION['novalnet'][$this->code]['payment_id'] == '41' && in_array($_SESSION['novalnet'][$this->code]['gateway_status'], array('75','91','100'))){ + $_SESSION['novalnet'][$this->code]['comments'] = MODULE_PAYMENT_NOVALNET_MENTION_PAYMENT_CATEGORY . PHP_EOL .$_SESSION['novalnet'][$this->code]['comments']; + } + + if($_SESSION['novalnet'][$this->code]['payment_id'] == '41' && $_SESSION['novalnet'][$this->code]['gateway_status'] == '75'){ + $_SESSION['novalnet'][$this->code]['comments'] .= PHP_EOL .MODULE_PAYMENT_NOVALNET_MENTION_GUARANTEE_PAYMENT_PENDING_TEXT.PHP_EOL; + } + + $order->info['comments'] .= $_SESSION['novalnet'][$this->code]['comments']; // Update Novalnet order comments & customer notes in Order table + } + + /** + * Verifing gurantee payment possibility + * @param $order + * + * @return boolean + */ + function guranteePaymentInvoiceVerifcation($order) + { + + $minimum_amount = (MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT != '') ? MODULE_PAYMENT_NOVALNET_INVOICE_GUARANTEE_PAYMENT_MINIMUM_AMOUNT : 999; + return (in_array($order->customer['country']['iso_code_2'], array('AT', 'DE', 'CH' + )) && $order->info['currency'] == 'EUR' && NovalnetUtil::addressVerification($order) && isset($_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate']) && NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_invoicebirthdate']) && NovalnetUtil::getPaymentAmount((array) $order) >= $minimum_amount ); + } +} +?> diff --git a/includes/modules/payment/novalnet_paypal.php b/includes/modules/payment/novalnet_paypal.php new file mode 100644 index 0000000..45d5d5e --- /dev/null +++ b/includes/modules/payment/novalnet_paypal.php @@ -0,0 +1,442 @@ +code = 'novalnet_paypal'; + $this->title = $this->public_title = MODULE_PAYMENT_NOVALNET_PAYPAL_TEXT_TITLE; + + $sql_query = NovalnetUtil::getPaymentDetails($_SESSION['customer_id'], 'novalnet_paypal'); + $payment_details = unserialize($sql_query['payment_details']); + if(in_array(MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE, array('False', 'ZEROAMOUNT')) || (MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE == 'ONECLICK' && (empty($payment_details) || $_REQUEST['nn_paypal_transaction_type'] == '1'))) { + $this->form_action_url = 'https://payport.novalnet.de/paypal_payport'; + } + $this->description = (MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE == 'ONECLICK') ? MODULE_PAYMENT_NOVALNET_PAYPAL_ONE_CLICK_SHOPPING_DESCRIPTION : MODULE_PAYMENT_NOVALNET_PAYPAL_TEXT_DESCRIPTION; + $this->sort_order = 0; + if (strpos(MODULE_PAYMENT_INSTALLED, $this->code) !== false) { + $this->sort_order = MODULE_PAYMENT_NOVALNET_PAYPAL_SORT_ORDER; + $this->enabled = ((MODULE_PAYMENT_NOVALNET_PAYPAL_STATUS == 'True') ? true : false); + } + if ($this->enabled === true) { + if (isset($order) && is_object($order)) { + $this->update_status(); + } + } + echo''; + } + + /** + * Core Function : update_status() + * + */ + function update_status() + { + global $order; + + if (($this->enabled == true) && ((int) MODULE_PAYMENT_NOVALNET_PAYPAL_PAYMENT_ZONE > 0)) { + $check_flag = false; + $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_NOVALNET_PAYPAL_PAYMENT_ZONE . "' and (zone_id < 1 or zone_id = " . $order->billing['zone_id'] . " ) and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); + $check = tep_db_fetch_array($check_query); + if ($check['zone_id']) { + $check_flag = true; + } + if ($check_flag == false) { + $this->enabled = false; + } + } + // disable the module if the order only contains virtual products + if ($this->enabled == true) { + if ($order->content_type == 'virtual') { + $this->enabled = false; + } + } + } + + /** + * Core Function : javascript_validation() + * + */ + function javascript_validation() + { + return false; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + global $order; + + if (!NovalnetUtil::checkMerchantConfiguration() || !$this->validateAdminConfiguration() || !NovalnetUtil::hidePaymentVisibility(NovalnetUtil::getPaymentAmount((array) $order), MODULE_PAYMENT_NOVALNET_PAYPAL_VISIBILITY_BY_AMOUNT)) { // Validate the Novalnet merchant details, paypal admin configuration details and payment visibility + return false; + } + + NovalnetUtil::getLastSuccessPayment($this->code); // To get the payment name of last successful order + $selection['id'] = $this->code; + $selection['module'] = $this->public_title . MODULE_PAYMENT_NOVALNET_PAYPAL_PUBLIC_TITLE; + $selection['module'] .= '
' . $this->description . '' . MODULE_PAYMENT_NOVALNET_REDIRECT_NOTICE_MSG . '
' . trim(strip_tags(MODULE_PAYMENT_NOVALNET_PAYPAL_CUSTOMER_INFO)) . ''; + if (MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE == 'True') { + $selection['module'] .= '
' . MODULE_PAYMENT_NOVALNET_TEST_MODE_MSG; + } + + $one_click_shop = ''; + if (MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE == 'ONECLICK') { + $sqlQuerySet = NovalnetUtil::paypalTransReference($_SESSION['customer_id']); + $paypal_trans_ref = unserialize($sqlQuerySet['payment_details']); + if (!empty($sqlQuerySet)) { + $one_click_shop = '' . MODULE_PAYMENT_NOVALNET_PAYPAL_NEW_ACCOUNT . ' +
+
+ + + + + + + + +
'.MODULE_PAYMENT_NOVALNET_PAYPAL_TRANSACTION_ID.'' . $paypal_trans_ref['paypal_transaction_id'] . '
'.MODULE_PAYMENT_NOVALNET_TRANSACTION_ID.'' . $sqlQuerySet['tid'] . '
+ + '; + } + } + $selection['fields'][] = array( + 'title' => '', + 'field' => ' +
' . $one_click_shop . '
' + ); + return $selection; + } + + /** + * Core Function : pre_confirmation_check() + * + */ + function pre_confirmation_check() + { + $_SESSION['novalnet']['paypal_transaction_type'] = $_REQUEST['nn_paypal_transaction_type']; + return false; + } + + /** + * Core Function : confirmation() + * + */ + function confirmation() + { + global $order; + $_SESSION['novalnet'][$this->code]['order_amount'] = NovalnetUtil::getPaymentAmount((array) $order); + return false; + } + + /** + * Core Function : process_button() + * + */ + function process_button() + { + global $order; + + if (isset($_SESSION['novalnet'][$this->code]['order_amount'])) { + $_SESSION['novalnet'][$this->code] = array( + 'payment_amount' => $_SESSION['novalnet'][$this->code]['order_amount'] + ); + } + + $input_params = array_merge((array) $order, array( + 'payment' => $this->code, + 'payment_amount' => $_SESSION['novalnet'][$this->code]['payment_amount'] + )); + $urlparam = NovalnetUtil::getRequestParams($input_params); + $urlparam['key'] = $this->key; + $urlparam['payment_type'] = $this->payment_type; + + $_SESSION['novalnet']['paypal_param'] = $urlparam; + + + if (MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE == 'ZEROAMOUNT') { + $_SESSION['novalnet']['paypal_order_amount'] = $urlparam['amount']; + $urlparam = NovalnetUtil::novalnetZeroAmountProcess('novalnet_paypal', $urlparam); + if($urlparam['amount'] == '0') { + $urlparam['create_payment_ref'] = '1'; + } + } + $order_amount = $order->info['total']*100; + + if(($order_amount >= trim(MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT) && MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE == 'authorize' ) || (empty (MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT) && MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE == 'authorize' ) && (MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE != 'ZEROAMOUNT' || $urlparam['amount'] != '0')) { // Assigning on hold parameter + $urlparam['on_hold'] = 1; + } + NovalnetUtil::getRedirectParams($urlparam); + $process_button_string = ''; + + if (MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE == 'ONECLICK' && $_SESSION['novalnet']['paypal_transaction_type'] == '0') { + $sql_query = NovalnetUtil::getPaymentDetails($_SESSION['customer_id'], $this->code); + $payment_details = unserialize($sql_query['payment_details']); + if (empty($payment_details)) { + $urlparam['create_payment_ref'] = '1'; + foreach ($urlparam as $key => $value) { + $process_button_string .= tep_draw_hidden_field($key, $value); + } + $process_button_string .= NovalnetUtil::confirmButtonDisableActivate(); + return $process_button_string; + } + return false; + + } else { + + if(MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE == 'ONECLICK') { + $urlparam['create_payment_ref'] = '1'; + } + foreach ($urlparam as $key => $value) { + $process_button_string .= tep_draw_hidden_field($key, $value); + } + $process_button_string .= NovalnetUtil::confirmButtonDisableActivate(); + return $process_button_string; + } + + } + + /** + * Core Function : before_process() + * + */ + function before_process() + { + global $order; + $post = $_REQUEST; + if (MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE == 'ONECLICK') { + if (isset($post['tid']) && $post['tid'] != '') { + if (in_array($post['status'], array(100, 90, 85))) { + $payment_response = NovalnetUtil::decodePaygateResponse($post); // Decoding Novalnet server response + if (NovalnetUtil::validateHashResponse($post)) { //Hash Validation failed + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . utf8_decode(MODULE_PAYMENT_NOVALNET_PAYPAL_REDIRECTION_ERROR_MESSAGE), 'SSL')); + } + $_SESSION['novalnet'][$this->code] = array( + 'tid' => $payment_response['tid'], + 'vendor' => $payment_response['vendor'], + 'product' => $payment_response['product'], + 'tariff' => $payment_response['tariff'], + 'auth_code' => $payment_response['auth_code'], + 'amount' => $payment_response['amount'], + 'total_amount' => $payment_response['amount'], + 'currency' => $payment_response['currency'], + 'gateway_status' => $payment_response['tid_status'], + 'test_mode' => $payment_response['test_mode'], + 'customer_id' => $payment_response['customer_no'], + 'payment_id' => $this->key, + 'subs_id' => $payment_response['subs_id'], + 'reference_transaction' => 0, + 'payment_details' => serialize(array('paypal_transaction_id' => $post['paypal_transaction_id'])) + ); + + + $trans_comments = MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $payment_response['tid'] . (((isset($payment_response['test_mode']) && $payment_response['test_mode'] == 1) || MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE == 'True') ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + $order->info['comments'] .= PHP_EOL.$trans_comments; + } else { + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::getTransactionMessage($post), 'SSL')); + } + } else { + $urlparam = $_SESSION['novalnet']['paypal_param']; + $paypal_ref = NovalnetUtil::paypalTransReference($_SESSION['customer_id']); + $urlparam['payment_ref'] = $paypal_ref['tid']; + // To process on hold product + $order_amount = $order->info['total']*100; + if(($order_amount >= trim(MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT) && MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE == 'authorize' ) || (empty (MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT) && MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE == 'authorize' )){ + $urlparam['on_hold'] = 1; + } + + + $response = NovalnetUtil::doPaymentCall("https://payport.novalnet.de/paygate.jsp", $urlparam); + parse_str($response, $datas); + if ($datas['status'] == 100) { + $_SESSION['novalnet'][$this->code] = array( + 'tid' => $datas['tid'], + 'vendor' => $urlparam['vendor'], + 'product' => $urlparam['product'], + 'tariff' => $urlparam['tariff'], + 'auth_code' => $urlparam['auth_code'], + 'amount' => $datas['amount'], + 'total_amount' => $datas['amount'], + 'currency' => $urlparam['currency'], + 'gateway_status' => $datas['tid_status'], + 'test_mode' => $urlparam['test_mode'], + 'customer_id' => $urlparam['customer_no'], + 'payment_id' => $this->key, + 'subs_id' => $datas['subs_id'], + 'reference_transaction' => 1, + ); + $trans_comments = MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $datas['tid'] . (((isset($datas['test_mode']) && $datas['test_mode'] == 1) || MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE == 'True') ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + $order->info['comments'] .= PHP_EOL.$trans_comments; + } else { + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::getTransactionMessage($datas), 'SSL')); + } + } + } else { + if (isset($post['tid']) && in_array($post['status'], array(100, 90, 85))) { + + $payment_response = NovalnetUtil::decodePaygateResponse($post); // Decoding Novalnet server response + if (NovalnetUtil::validateHashResponse($post)) { //Hash Validation failed + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . utf8_decode(MODULE_PAYMENT_NOVALNET_PAYPAL_REDIRECTION_ERROR_MESSAGE), 'SSL')); + } + $_SESSION['novalnet'][$this->code] = array( + 'tid' => $payment_response['tid'], + 'vendor' => $payment_response['vendor'], + 'product' => $payment_response['product'], + 'tariff' => $payment_response['tariff'], + 'auth_code' => $payment_response['auth_code'], + 'amount' => $payment_response['amount'], + 'total_amount' => $payment_response['amount'], + 'currency' => $payment_response['currency'], + 'gateway_status' => $payment_response['tid_status'], + 'test_mode' => $payment_response['test_mode'], + 'customer_id' => $payment_response['customer_no'], + 'payment_id' => $this->key, + 'subs_id' => $payment_response['subs_id'], + 'reference_transaction' => 0, + ); + if (MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE == 'ZEROAMOUNT') { + $tariff_type = explode('-', MODULE_PAYMENT_NOVALNET_TARIFF_ID); + if ($tariff_type['0'] == 2) { + $urlparam = $_SESSION['novalnet']['paypal_param']; + $_SESSION['novalnet'][$this->code]['zero_transaction'] = '1'; + $_SESSION['novalnet'][$this->code]['zerotrxndetails'] = serialize($urlparam); + $_SESSION['novalnet'][$this->code]['zerotrxnreference'] = $payment_response['tid']; + $_SESSION['novalnet'][$this->code]['reference_transaction'] = '0'; + $_SESSION['novalnet'][$this->code]['total_amount'] = $_SESSION['novalnet']['paypal_order_amount']; + } + } + $trans_comments = MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $payment_response['tid'] . (((isset($payment_response['test_mode']) && $payment_response['test_mode'] == 1) || MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE == 'True') ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + $order->info['comments'] .= PHP_EOL.$trans_comments; + + } else { // Display error message for failure transaction + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::getTransactionMessage($post), 'SSL')); + } + } + } + + /** + * Core Function : after_process() + * + */ + function after_process() + { + global $insert_id; + $payment_order_status = $_SESSION['novalnet'][$this->code]['gateway_status'] =='90' ?MODULE_PAYMENT_NOVALNET_PAYPAL_PENDING_ORDER_STATUS : ($_SESSION['novalnet'][$this->code]['gateway_status'] =='85' ?MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE : MODULE_PAYMENT_NOVALNET_PAYPAL_ORDER_STATUS); + $order_status['orders_status'] = $order_status_id['orders_status_id'] = ($payment_order_status > 0) ? $payment_order_status : DEFAULT_ORDERS_STATUS_ID; + + tep_db_perform(TABLE_ORDERS, $order_status, "update", "orders_id='$insert_id'"); // Update order status in order status table + + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $order_status_id, "update", "orders_id='$insert_id'"); // Update order status id in order status history table + + // Sending post back call to Novalnet server + NovalnetUtil::doSecondCallProcess(array('payment' => $this->code, 'order_no' => $insert_id)); + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_PAYPAL_STATUS'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $language; + + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_paypal.php'; + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_STATUS','False', '6','" . MODULE_PAYMENT_NOVALNET_PAYPAL_STATUS_DESC . "', '1', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_PAYPAL_STATUS\'," . MODULE_PAYMENT_NOVALNET_PAYPAL_STATUS . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE_DESC . "', '2', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE . ",', '', now()), + + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE','False', '6','" . MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE_DESC . "','8', 'tep_mod_select_option(array(\'False\' => MODULE_PAYMENT_NOVALNET_PAYPAL_NONE,\'ONECLICK\' => MODULE_PAYMENT_NOVALNET_PAYPAL_ONE_CLICK,\'ZEROAMOUNT\' => MODULE_PAYMENT_NOVALNET_PAYPAL_ZERO_AMOUNT,),\'MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE\'," . MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE . ",' ,'',now()), + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_VISIBILITY_BY_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_VISIBILITY_BY_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_PAYPAL_VISIBILITY_BY_AMOUNT_DESC . "', '3','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_CUSTOMER_INFO_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_CUSTOMER_INFO', '', '6','" . MODULE_PAYMENT_NOVALNET_PAYPAL_CUSTOMER_INFO_DESC . "', '4','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_SORT_ORDER_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_SORT_ORDER', '0', '6', '" . MODULE_PAYMENT_NOVALNET_PAYPAL_SORT_ORDER_DESC . "', '5', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_PENDING_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_PENDING_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_PAYPAL_PENDING_ORDER_STATUS_DESC . "', '6', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT_TITLE . "','MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT', '', '6', '".MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT_DESC."' , '7', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_PAYPAL_ORDER_STATUS_DESC . "', '7', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE','capture', '6','', '2', 'tep_mod_select_option(array(\'capture\' => MODULE_PAYMENT_NOVALNET_CAPTURE,\'authorize\' => MODULE_PAYMENT_NOVALNET_AUTHORIZE),\'MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE\'," . MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE . ",', '', now()), + + ('" . MODULE_PAYMENT_NOVALNET_PAYPAL_PAYMENT_ZONE_TITLE . "','MODULE_PAYMENT_NOVALNET_PAYPAL_PAYMENT_ZONE', '0', '6', '" . MODULE_PAYMENT_NOVALNET_PAYPAL_PAYMENT_ZONE_DESC . "','8', 'tep_cfg_pull_down_zone_classes(', 'tep_get_zone_class_title',now())"); + } + + /** + * Core Function : remove() + * + */ + function remove() + { + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + echo ''; + $this->validateAdminConfiguration(true); // Validate admin configuration + return array('MODULE_PAYMENT_NOVALNET_PAYPAL_STATUS', 'MODULE_PAYMENT_NOVALNET_PAYPAL_TEST_MODE','MODULE_PAYMENT_NOVALNET_PAYPAL_AUTHENTICATE','MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_PAYPAL_LIMIT','MODULE_PAYMENT_NOVALNET_PAYPAL_SHOP_TYPE', 'MODULE_PAYMENT_NOVALNET_PAYPAL_VISIBILITY_BY_AMOUNT','MODULE_PAYMENT_NOVALNET_PAYPAL_CUSTOMER_INFO', 'MODULE_PAYMENT_NOVALNET_PAYPAL_SORT_ORDER','MODULE_PAYMENT_NOVALNET_PAYPAL_PENDING_ORDER_STATUS', 'MODULE_PAYMENT_NOVALNET_PAYPAL_ORDER_STATUS','MODULE_PAYMENT_NOVALNET_PAYPAL_PAYMENT_ZONE'); + } + + /** + * Validate admin configuration + * @param $admin + * + * @return boolean + */ + function validateAdminConfiguration($admin = false) + { + if (MODULE_PAYMENT_NOVALNET_PAYPAL_STATUS == 'True') { + if (MODULE_PAYMENT_NOVALNET_PAYPAL_VISIBILITY_BY_AMOUNT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_PAYPAL_VISIBILITY_BY_AMOUNT)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_PAYPAL_BLOCK_TITLE); + return false; + } + } + return true; + } +} +?> diff --git a/includes/modules/payment/novalnet_prepayment.php b/includes/modules/payment/novalnet_prepayment.php new file mode 100644 index 0000000..b6ea416 --- /dev/null +++ b/includes/modules/payment/novalnet_prepayment.php @@ -0,0 +1,277 @@ +code = 'novalnet_prepayment'; + $this->title = $this->public_title = MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEXT_TITLE; + $this->description = MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEXT_DESCRIPTION; + + $this->sort_order = 0; + if (strpos(MODULE_PAYMENT_INSTALLED, $this->code) !== false) { + $this->sort_order = MODULE_PAYMENT_NOVALNET_PREPAYMENT_SORT_ORDER; + $this->enabled = ((MODULE_PAYMENT_NOVALNET_PREPAYMENT_STATUS == 'True') ? true : false); + } + + if ($this->enabled === true) { + if (isset($order) && is_object($order)) { + $this->update_status(); + } + } + } + + /** + * Core Function : update_status() + * + */ + function update_status() + { + global $order; + if (($this->enabled == true) && ((int) MODULE_PAYMENT_NOVALNET_PREPAYMENT_PAYMENT_ZONE > 0)) { + $check_flag = false; + $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_PAYMENT_ZONE . "' and (zone_id < 1 or zone_id = " . $order->billing['zone_id'] . " ) and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); + $check = tep_db_fetch_array($check_query); + if ($check['zone_id']) { + $check_flag = true; + } + if ($check_flag == false) { + $this->enabled = false; + } + } + // disable the module if the order only contains virtual products + if ($this->enabled == true) { + if ($order->content_type == 'virtual') { + $this->enabled = false; + } + } + } + + /** + * Core Function : javascript_validation() + * + */ + function javascript_validation() + { + return false; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + global $order; + + + if (!NovalnetUtil::checkMerchantConfiguration() || !$this->validateAdminConfiguration() || !NovalnetUtil::hidePaymentVisibility(NovalnetUtil::getPaymentAmount((array) $order), MODULE_PAYMENT_NOVALNET_PREPAYMENT_VISIBILITY_BY_AMOUNT)) { // Validate the Novalnet merchant details, prepayment admin details and payment visibility + return false; + } + + NovalnetUtil::getLastSuccessPayment($this->code); // To get the payment name of last successful order + $selection['id'] = $this->code; + $selection['module'] = $this->public_title . MODULE_PAYMENT_NOVALNET_PREPAYMENT_PUBLIC_TITLE; + $selection['module'] .= '
' . $this->description . '
' . trim(strip_tags(MODULE_PAYMENT_NOVALNET_PREPAYMENT_CUSTOMER_INFO)) . '
'; + if (MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEST_MODE == 'True') { + $selection['module'] .= MODULE_PAYMENT_NOVALNET_TEST_MODE_MSG; + } + return $selection; + } + + /** + * Core Function : pre_confirmation_check() + * + */ + function pre_confirmation_check() + { + return false; + } + + /** + * Core Function : confirmation() + * + */ + function confirmation() + { + global $order; + $_SESSION['novalnet'][$this->code]['order_amount'] = NovalnetUtil::getPaymentAmount((array) $order); + return false; + } + + /** + * Core Function : process_button() + * + */ + function process_button() + { + if (isset($_SESSION['novalnet'][$this->code]['order_amount'])) { + $_SESSION['novalnet'][$this->code] = array( + 'payment_amount' => $_SESSION['novalnet'][$this->code]['order_amount'] + ); + } + return false; + } + + /** + * Core Function : before_process() + * + */ + function before_process() + { + global $order; + $input_params = array_merge((array) $order, array( + 'payment' => $this->code, + 'payment_amount' => $_SESSION['novalnet'][$this->code]['payment_amount'] + )); + $urlparam = NovalnetUtil::getRequestParams($input_params); + $urlparam['key'] = $this->key; + $urlparam['payment_type'] = $this->payment_type; + $urlparam['invoice_type'] = $this->payment_type; + $response = NovalnetUtil::doPaymentCall("https://payport.novalnet.de/paygate.jsp", $urlparam); + parse_str($response, $datas); + if ($datas['status'] == 100) { + $transaction_comments = $order->info['comments'] . PHP_EOL; + $transaction_comments .= MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $datas['tid'] . PHP_EOL . ((((isset($datas['test_mode']) && $datas['test_mode']) == 1) || MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEST_MODE == 1) ? MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + list($invoice_comments, $bank_details) = NovalnetUtil::formInvoicePrepaymentComments($datas); + $_SESSION['novalnet'][$this->code] = array( + 'tid' => $datas['tid'], + 'vendor' => $urlparam['vendor'], + 'product' => $urlparam['product'], + 'auth_code' => $urlparam['auth_code'], + 'tariff' => $urlparam['tariff'], + 'test_mode' => $datas['test_mode'], + 'amount' => $urlparam['amount'], + 'total_amount' => $urlparam['amount'], + 'currency' => $datas['currency'], + 'gateway_status' => $datas['tid_status'], + 'payment_id' => $this->key, + 'customer_id' => $datas['customer_no'], + 'subs_id' => $datas['subs_id'], + 'payment_details' => serialize($bank_details), + 'comments' => $transaction_comments . $invoice_comments + ); + $order->info['comments'] = PHP_EOL.$transaction_comments . $invoice_comments; + } else { + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::getTransactionMessage($datas), 'SSL')); + } + } + + /** + * Core Function : after_process() + * + */ + function after_process() + { + global $insert_id; + // Form payment reference comments. + $reference_comments = NovalnetUtil::novalnetReferenceComments($insert_id, $this->code, ''); + $order_status['orders_status'] = $order_status_id['orders_status_id'] = (MODULE_PAYMENT_NOVALNET_PREPAYMENT_ORDER_STATUS > 0) ? MODULE_PAYMENT_NOVALNET_PREPAYMENT_ORDER_STATUS : DEFAULT_ORDERS_STATUS_ID; + $order_status_id['comments'] = $_SESSION['novalnet'][$this->code]['comments'] . $reference_comments; + tep_db_perform(TABLE_ORDERS, $order_status, "update", "orders_id='$insert_id'"); + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $order_status_id, "update", "orders_id='$insert_id'"); + // Sending post back call to Novalnet server + NovalnetUtil::doSecondCallProcess(array( + 'payment' => $this->code, + 'order_no' => $insert_id + )); + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_PREPAYMENT_STATUS'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $language; + + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_prepayment.php'; + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_PREPAYMENT_STATUS','False', '6','" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_STATUS_DESC . "', '1', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_PREPAYMENT_STATUS\'," . MODULE_PAYMENT_NOVALNET_PREPAYMENT_STATUS . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEST_MODE_DESC . "', '2', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEST_MODE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_VISIBILITY_BY_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_PREPAYMENT_VISIBILITY_BY_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_VISIBILITY_BY_AMOUNT_DESC . "', '3','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_CUSTOMER_INFO_TITLE . "','MODULE_PAYMENT_NOVALNET_PREPAYMENT_CUSTOMER_INFO', '', '6','" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_CUSTOMER_INFO_DESC . "', '4','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_SORT_ORDER_TITLE . "','MODULE_PAYMENT_NOVALNET_PREPAYMENT_SORT_ORDER', '0', '6', '" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_SORT_ORDER_DESC . "', '5', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_CALLBACK_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_PREPAYMENT_CALLBACK_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_CALLBACK_ORDER_STATUS_DESC . "', '6', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_PREPAYMENT_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_ORDER_STATUS_DESC . "', '7', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_PAYMENT_ZONE_TITLE . "','MODULE_PAYMENT_NOVALNET_PREPAYMENT_PAYMENT_ZONE', '0', '6', '" . MODULE_PAYMENT_NOVALNET_PREPAYMENT_PAYMENT_ZONE_DESC . "','8', 'tep_cfg_pull_down_zone_classes(', 'tep_get_zone_class_title',now())"); + } + + /** + * Core Function : remove() + * + */ + function remove() + { + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + $this->validateAdminConfiguration(true); // Validate admin configuration + return array('MODULE_PAYMENT_NOVALNET_PREPAYMENT_STATUS', 'MODULE_PAYMENT_NOVALNET_PREPAYMENT_TEST_MODE', 'MODULE_PAYMENT_NOVALNET_PREPAYMENT_VISIBILITY_BY_AMOUNT', 'MODULE_PAYMENT_NOVALNET_PREPAYMENT_CUSTOMER_INFO','MODULE_PAYMENT_NOVALNET_PREPAYMENT_SORT_ORDER', 'MODULE_PAYMENT_NOVALNET_PREPAYMENT_ORDER_STATUS','MODULE_PAYMENT_NOVALNET_PREPAYMENT_CALLBACK_ORDER_STATUS', 'MODULE_PAYMENT_NOVALNET_PREPAYMENT_PAYMENT_ZONE'); + } + + /** + * Validate admin configuration + * @param $admin + * + * @return boolean + */ + function validateAdminConfiguration($admin = false) + { + if (MODULE_PAYMENT_NOVALNET_PREPAYMENT_STATUS == 'True') { + if (MODULE_PAYMENT_NOVALNET_PREPAYMENT_VISIBILITY_BY_AMOUNT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_PREPAYMENT_VISIBILITY_BY_AMOUNT)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_PREPAYMENT_BLOCK_TITLE); + return false; + } else { + return true; + } + } + } +} +?> diff --git a/includes/modules/payment/novalnet_przelewy24.php b/includes/modules/payment/novalnet_przelewy24.php new file mode 100644 index 0000000..6e0fbe5 --- /dev/null +++ b/includes/modules/payment/novalnet_przelewy24.php @@ -0,0 +1,288 @@ +code = 'novalnet_przelewy24'; + $this->title = $this->public_title = MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEXT_TITLE; + $this->description = MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEXT_DESCRIPTION; + $this->form_action_url = 'https://payport.novalnet.de/globalbank_transfer'; + + $this->sort_order = 0; + if (strpos(MODULE_PAYMENT_INSTALLED, $this->code) !== false) { + $this->sort_order = MODULE_PAYMENT_NOVALNET_PRZELEWY24_SORT_ORDER; + $this->enabled = ((MODULE_PAYMENT_NOVALNET_PRZELEWY24_STATUS == 'True') ? true : false); + } + if ($this->enabled === true) { + if (isset($order) && is_object($order)) { + $this->update_status(); + } + } + } + + /** + * Core Function : update_status() + * + */ + function update_status() + { + global $order; + if (($this->enabled == true) && ((int) MODULE_PAYMENT_NOVALNET_PRZELEWY24_PAYMENT_ZONE > 0)) { + $check_flag = false; + $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_PAYMENT_ZONE . "' and (zone_id < 1 or zone_id = " . $order->billing['zone_id'] . " ) and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); + $check = tep_db_fetch_array($check_query); + if ($check['zone_id']) { + $check_flag = true; + } + if ($check_flag == false) { + $this->enabled = false; + } + } + // disable the module if the order only contains virtual products + if ($this->enabled == true) { + if ($order->content_type == 'virtual') { + $this->enabled = false; + } + } + } + + /** + * Core Function : javascript_validation() + * + */ + function javascript_validation() + { + return false; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + global $order; + + if (!NovalnetUtil::checkMerchantConfiguration() || !$this->validateAdminConfiguration() || !NovalnetUtil::hidePaymentVisibility(NovalnetUtil::getPaymentAmount((array) $order), MODULE_PAYMENT_NOVALNET_PRZELEWY24_VISIBILITY_BY_AMOUNT)) { // Validate the Novalnet merchant details eps admin configuration details and payment visibility + return false; + } + + NovalnetUtil::getLastSuccessPayment($this->code); // To get the payment name of last successful order + $selection['id'] = $this->code; + $selection['module'] = $this->public_title . MODULE_PAYMENT_NOVALNET_PRZELEWY24_PUBLIC_TITLE; + $selection['module'] .= '
' . $this->description . MODULE_PAYMENT_NOVALNET_REDIRECT_NOTICE_MSG . '
' . trim(strip_tags(MODULE_PAYMENT_NOVALNET_PRZELEWY24_CUSTOMER_INFO)); + if (MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEST_MODE == 'True') { + $selection['module'] .= '
' . MODULE_PAYMENT_NOVALNET_TEST_MODE_MSG; + } + return $selection; + } + + /** + * Core Function : pre_confirmation_check() + * + */ + function pre_confirmation_check() + { + return false; + } + + /** + * Core Function : confirmation() + * + */ + function confirmation() + { + global $order; + $_SESSION['novalnet'][$this->code]['order_amount'] = NovalnetUtil::getPaymentAmount((array) $order); + return false; + } + + /** + * Core Function : process_button() + * + */ + function process_button() + { + global $order; + if (isset($_SESSION['novalnet'][$this->code]['order_amount'])) { + $_SESSION['novalnet'][$this->code] = array( + 'payment_amount' => $_SESSION['novalnet'][$this->code]['order_amount'] + ); + } + $input_params = array_merge((array) $order, array( + 'payment' => $this->code, + 'payment_amount' => $_SESSION['novalnet'][$this->code]['payment_amount'] + )); + $urlparam = NovalnetUtil::getRequestParams($input_params); + $urlparam['key'] = $this->key; + $urlparam['payment_type'] = $this->payment_type; + NovalnetUtil::getRedirectParams($urlparam); + $process_button_string = ''; + + foreach ($urlparam as $key => $value) { + $process_button_string .= tep_draw_hidden_field($key, $value); + } + + $process_button_string .= NovalnetUtil::confirmButtonDisableActivate(); // Hiding Buy button in confirmation page + return $process_button_string; + } + + /** + * Core Function : before_process() + * + */ + function before_process() + { + global $order; + $post = $_REQUEST; + if (isset($post['tid']) && $post['status'] == 100) { // Novalnet transaction status got success + $payment_response = NovalnetUtil::decodePaygateResponse($post); // Decoding Novalnet server response + if (NovalnetUtil::validateHashResponse($post)) { //Hash Validation failed + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . utf8_decode(MODULE_PAYMENT_NOVALNET_PRZELEWY24_REDIRECTION_ERROR_MESSAGE), 'SSL')); + } + $_SESSION['novalnet'][$this->code] = array( + 'tid' => $payment_response['tid'], + 'vendor' => $payment_response['vendor'], + 'product' => $payment_response['product'], + 'tariff' => $payment_response['tariff'], + 'auth_code' => $payment_response['auth_code'], + 'amount' => $payment_response['amount'], + 'total_amount' => $payment_response['amount'], + 'currency' => $payment_response['currency'], + 'gateway_status' => $payment_response['tid_status'], + 'test_mode' => $payment_response['test_mode'], + 'customer_id' => $payment_response['customer_no'], + 'payment_id' => $this->key + ); + $trans_comments = MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $payment_response['tid'] . (((isset($payment_response['test_mode']) && $payment_response['test_mode'] == 1) || MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEST_MODE == 'True') ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + $order->info['comments'] .= PHP_EOL.$trans_comments; + } else { // Novalnet transaction status got failure for displaying error message + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::getTransactionMessage($post), 'SSL')); + } + } + + /** + * Core Function : after_process() + * + */ + function after_process() + { + global $insert_id; + $payment_order_status = ($_SESSION['novalnet'][$this->code]['gateway_status'] == 86) ? MODULE_PAYMENT_NOVALNET_PRZELEWY24_PENDING_ORDER_STATUS : MODULE_PAYMENT_NOVALNET_PRZELEWY24_PENDING_ORDER_STATUS; + $order_status['orders_status'] = $order_status_id['orders_status_id'] = ($payment_order_status > 0) ? $payment_order_status : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform(TABLE_ORDERS, $order_status, "update", "orders_id='$insert_id'"); // Update order status in order status table + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $order_status_id, "update", "orders_id='$insert_id'"); // Update order status id in order status history table + // Sending post back call to Novalnet server + NovalnetUtil::doSecondCallProcess(array( + 'payment' => $this->code, + 'order_no' => $insert_id + )); + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_PRZELEWY24_STATUS'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $language; + + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_przelewy24.php'; + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_PRZELEWY24_STATUS','False', '6','" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_STATUS_DESC . "', '1', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_PRZELEWY24_STATUS\'," . MODULE_PAYMENT_NOVALNET_PRZELEWY24_STATUS . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEST_MODE_DESC . "', '2', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEST_MODE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_VISIBILITY_BY_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_PRZELEWY24_VISIBILITY_BY_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_VISIBILITY_BY_AMOUNT_DESC . "', '3','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_CUSTOMER_INFO_TITLE . "','MODULE_PAYMENT_NOVALNET_PRZELEWY24_CUSTOMER_INFO', '', '6','" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_CUSTOMER_INFO_DESC . "', '4','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_SORT_ORDER_TITLE . "','MODULE_PAYMENT_NOVALNET_PRZELEWY24_SORT_ORDER', '0', '6', '" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_SORT_ORDER_DESC . "', '5', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_PRZELEWY24_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_ORDER_STATUS_DESC . "', '6', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_PENDING_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_PRZELEWY24_PENDING_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_PENDING_ORDER_STATUS_DESC . "', '6', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_PAYMENT_ZONE_TITLE . "','MODULE_PAYMENT_NOVALNET_PRZELEWY24_PAYMENT_ZONE', '0', '6', '" . MODULE_PAYMENT_NOVALNET_PRZELEWY24_PAYMENT_ZONE_DESC . "','7', 'tep_cfg_pull_down_zone_classes(', 'tep_get_zone_class_title',now())"); + } + + /** + * Core Function : remove() + * + */ + function remove() + { + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + $this->validateAdminConfiguration(true); // Validate admin configuration + return array( + 'MODULE_PAYMENT_NOVALNET_PRZELEWY24_STATUS', + 'MODULE_PAYMENT_NOVALNET_PRZELEWY24_TEST_MODE', + 'MODULE_PAYMENT_NOVALNET_PRZELEWY24_VISIBILITY_BY_AMOUNT', + 'MODULE_PAYMENT_NOVALNET_PRZELEWY24_CUSTOMER_INFO', + 'MODULE_PAYMENT_NOVALNET_PRZELEWY24_SORT_ORDER', + 'MODULE_PAYMENT_NOVALNET_PRZELEWY24_ORDER_STATUS', + 'MODULE_PAYMENT_NOVALNET_PRZELEWY24_PENDING_ORDER_STATUS', + 'MODULE_PAYMENT_NOVALNET_PRZELEWY24_PAYMENT_ZONE', + ); + } + + /** + * Validate admin configuration + * @param $admin + * + * @return boolean + */ + function validateAdminConfiguration($admin = false) + { + if (MODULE_PAYMENT_NOVALNET_PRZELEWY24_STATUS == 'True') { + if (MODULE_PAYMENT_NOVALNET_PRZELEWY24_VISIBILITY_BY_AMOUNT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_PRZELEWY24_VISIBILITY_BY_AMOUNT)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_PRZELEWY24_BLOCK_TITLE); + return false; + } + } + return true; + } +} +?> diff --git a/includes/modules/payment/novalnet_sepa.php b/includes/modules/payment/novalnet_sepa.php new file mode 100644 index 0000000..835b467 --- /dev/null +++ b/includes/modules/payment/novalnet_sepa.php @@ -0,0 +1,751 @@ +code = 'novalnet_sepa'; + $this->title = $this->public_title = MODULE_PAYMENT_NOVALNET_SEPA_TEXT_TITLE; + $this->description = MODULE_PAYMENT_NOVALNET_SEPA_TEXT_DESCRIPTION; + + $this->sort_order = 0; + if (strpos(MODULE_PAYMENT_INSTALLED, $this->code) !== false) { + $this->sort_order = MODULE_PAYMENT_NOVALNET_SEPA_SORT_ORDER; + $this->enabled = ((MODULE_PAYMENT_NOVALNET_SEPA_STATUS == 'True') ? true : false); + } + $this->fraud_module = ((MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FRAUDMODULE == 'False') ? false : MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FRAUDMODULE); + $this->fraud_module_status = ($this->fraud_module) ? true : false; + if ($this->enabled === true) { + if (isset($order) && is_object($order)) { + $this->update_status(); + } + } + echo''; + } + + /** + * Core Function : update_status() + * + */ + function update_status() + { + global $order; + if (($this->enabled == true) && ((int) MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_ZONE > 0)) { + $check_flag = false; + $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_ZONE . "' and (zone_id < 1 or zone_id = " . $order->billing['zone_id'] . " ) and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); + $check = tep_db_fetch_array($check_query); + if ($check['zone_id']) { + $check_flag = true; + } + if ($check_flag == false) { + $this->enabled = false; + } + } + // disable the module if the order only contains virtual products + if ($this->enabled == true) { + if ($order->content_type == 'virtual') { + $this->enabled = false; + } + } + } + + /** + * Core Function : javascript_validation() + * + */ + function javascript_validation() + { + return false; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + global $order; + NovalnetUtil::validatecallbacksession(); + $guarantee_payment = NovalnetUtil::displayBirthdateField($order, $this->code); // Check condition for displaying birthdate field + + if (!NovalnetUtil::checkMerchantConfiguration() || $this->gurantee_error() || !$this->validateAdminConfiguration() || !NovalnetUtil::hidePaymentVisibility(NovalnetUtil::getPaymentAmount((array) $order), MODULE_PAYMENT_NOVALNET_SEPA_VISIBILITY_BY_AMOUNT) || !NovalnetUtil::validateCallbackStatus($this->code, $this->fraud_module) ) { // Validate the Novalnet merchant details, prepayment, invoice payment admin details and payment visibility + return false; + } + + NovalnetUtil::getLastSuccessPayment($this->code); // To get the payment name of last successful order + + if (!empty($_SESSION['payment']) && isset($_SESSION['novalnet'][$this->code]['tid']) && $_SESSION['payment'] != $this->code) { + unset($_SESSION['novalnet'][$this->code]['tid'], $_SESSION['novalnet'][$this->code]['secondcall']); + } + $this->fraud_module_status = NovalnetUtil::setFraudModuleStatus($this->code, $this->fraud_module); // Validate status of fraud modules + + $customer_details = NovalnetUtil::getCustomerDetails($order->customer['email_address']); // Get customer details + $_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate'] = $customer_details['customers_dob']; + if(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && $this->guranteePaymentVerifcation($order)) { $this->fraud_module_status = false; + } + $notification = trim(strip_tags(MODULE_PAYMENT_NOVALNET_SEPA_CUSTOMER_INFO)); + if ($guarantee_payment == 'error') { + $notification .= '
'.MODULE_PAYMENT_NOVALNET_FORCE_GUARANTEE_ERROR_MESSAGE; + } + $selection['id'] = $this->code; + $selection['module'] = $this->public_title . MODULE_PAYMENT_NOVALNET_SEPA_PUBLIC_TITLE; + $selection['module'] .= $this->description . ' ' . '
' . $notification; + if (MODULE_PAYMENT_NOVALNET_SEPA_TEST_MODE == 'True') { + $selection['module'] .= '
' . MODULE_PAYMENT_NOVALNET_TEST_MODE_MSG; + } + if (isset($_SESSION['novalnet'][$this->code]['tid']) && $this->fraud_module && $this->fraud_module_status) { + $selection['fields'] = NovalnetUtil::buildCallbackFieldsAfterResponse($this->fraud_module, $this->code); // Display pin number field after getting response + } else { + $customer_name = ((!empty($order->customer['firstname']) ? $order->customer['firstname'] : '') . ' ' . (!empty($order->customer['lastname']) ? $order->customer['lastname'] : '')); + $data = array(); + $data['vendor'] = MODULE_PAYMENT_NOVALNET_VENDOR_ID; + $data['auth_code'] = MODULE_PAYMENT_NOVALNET_AUTH_CODE; + NovalnetUtil::getAffDetails($data); // Affiliate process + $pin_by_callback = ''; + if (in_array($this->fraud_module, array( + 'CALLBACK', + 'SMS' + )) && $this->fraud_module_status) { // Loading Fraud module field + if(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION != 'True' || (MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && !$this->guranteePaymentVerifcation($order))) { + $fraud_module_value = array( + 'CALLBACK' => array( + 'name' => '_fraud_tel', + 'value' => 'telephone' + ), + 'SMS' => array( + 'name' => '_fraud_mobile', + 'value' => 'mobile' + ) + ); + $pin_by_callback = '' . constant('MODULE_PAYMENT_NOVALNET_FRAUDMODULE_' . $this->fraud_module . '_INPUT_TITLE') . ' * + ' . tep_draw_input_field($this->code . $fraud_module_value[$this->fraud_module]['name'], (isset($order->customer[$fraud_module_value[$this->fraud_module]['value']]) ? $order->customer[$fraud_module_value[$this->fraud_module]['value']] : ''), 'id=' . $this->code . '-' . strtolower($this->fraud_module) . ' AUTOCOMPLETE=off') . ''; + } + } + + $birthdate_field = ''; + + if (isset($guarantee_payment) && $guarantee_payment == 'guarantee' && $this->guranteePaymentVerifcation($order) && $order->billing['company'] == '') { // Display guarantee payment date of birth field + $birth_field_label = MODULE_PAYMENT_NOVALNET_ENDCUSTOMER_BIRTH_DATE . ' * '; + $birthdate_field = true; + } + $sqlQuerySet = NovalnetUtil::getPaymentDetails($_SESSION['customer_id'], $this->code); + $payment_details = unserialize($sqlQuerySet['payment_details']); + $form_show = '1'; + + + if (MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE == 'ONECLICK' && !empty($payment_details)) { + $form_show = !empty($_SESSION['novalnet'][$this->code]['novalnet_sepachange_account']) ? '1' : '0'; + $one_click_shop = '' . MODULE_PAYMENT_NOVALNET_SEPA_NEW_ACCOUNT . ' + '; + } else { + $one_click_shop = ''; + } + + $guarantee_field = ''; + if (!empty($birthdate_field) && $this->guranteePaymentVerifcation($order)) { + $guarantee_field = '' . $birth_field_label . ' + ' . $this->get_guarantee_field('novalnet_sepa_birth_date_normal', $customer_details) . ''; + } + + $remote_ip = tep_get_ip_address(); + $remote_ip = (filter_var($remote_ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) || $remote_ip == '::1' || empty($remote_ip)) ? '127.0.0.1' : $remote_ip; + + $sepa_fields = ' + + + + + + + + + + + + + + + + '; + $selection['fields'][] = array( + 'title' => '', + 'field' => $one_click_shop . '
+ + + + + + ' . $guarantee_field . ' + + + ' . $sepa_fields . $pin_by_callback . ' +
' . MODULE_PAYMENT_NOVALNET_ACCOUNT_HOLDER . ' * ' . tep_draw_input_field($this->code . '_account_holder', $customer_name, 'id="' . $this->code . '_account_holder" autocomplete="off" "') . '
' . MODULE_PAYMENT_NOVALNET_ACCOUNT_OR_IBAN . ' * ' . tep_draw_input_field($this->code . '_iban', '', 'id="' . $this->code . '_iban" AUTOCOMPLETE="off"') . '
'.MODULE_PAYMENT_NOVALNET_SEPA_FORM_MANDATE_CONFIRM_TEXT . '
'.MODULE_PAYMENT_NOVALNET_SEPA_FORM_AUTHORISE_TEXT.'
' + ); + + } + return $selection; + } + + /** + * Core Function : pre_confirmation_check() + * + */ + function pre_confirmation_check() + { + global $order; + $post = $_REQUEST; + + $_SESSION['iban'] = $post['novalnet_sepa_iban']; + $_SESSION['novalnet'][$this->code]['nn_sepa_hash'] = $post['nn_sepa_hash']; + if (!empty($post['nn_sepa_js_enabled'])) { + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . MODULE_PAYMENT_NOVALNET_JS_DEACTIVATE_ERROR, 'SSL')); + } + $gurantee_date_normal = ''; + $gurantee_date_one_click = ''; + if (isset($post['novalnet_sepa_birth_date_normal']) && $post['novalnet_sepa_birth_date_normal'] != '' ) { + $_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate'] = $post['novalnet_sepa_birth_date_normal']; + $gurantee_date_normal = $_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate']; + } + if (isset($post['novalnet_sepa_birth_date_one_click'])) { + $gurantee_date_one_click = $post['novalnet_sepa_birth_date_one_click']; + } + $_SESSION['novalnet'][$this->code]['novalnet_sepachange_account'] = !empty($post['novalnet_sepachange_account']) ? $post['novalnet_sepachange_account'] : '0'; + + $guarantee_payment = NovalnetUtil::displayBirthdateField($order, $this->code); // Check condition for displaying birthdate field + + if ($guarantee_payment == 'error') { + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_FORCE_GUARANTEE_ERROR), 'SSL')); + } + if (isset($_SESSION['novalnet'][$this->code]['secondcall'])) { // Validate fraud module pin number field + NovalnetUtil::validateUserInputsOnCallback($this->code, $post, $this->fraud_module); + } elseif (MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT != 'True' && (!NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate']) || !NovalnetUtil::check_data($_REQUEST['novalnet_sepa_birth_date_normal']))) { // Validate age + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_AGE_ERROR), 'SSL')); + } else { // Validate SEPA form mandate confirm + + if(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT != 'True' && !$this->guranteePaymentVerifcation($order) && !NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate'])) { + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_SEPA_GURANTEE_PAYMENT_NOT_MATCH_ERROR_MSG), 'SSL')); + } + if (isset($post['nn_payment_ref_tid_sepa']) && $post['novalnet_sepachange_account'] == 0) { + $_SESSION['novalnet'][$this->code]['nn_payment_ref_enable'] = true; + $_SESSION['novalnet'][$this->code]['nn_payment_ref_tid_sepa'] = $post['nn_payment_ref_tid_sepa']; + return true; + } + // Validate fraud module field + $this->fraud_module_status = NovalnetUtil::setFraudModuleStatus($this->code, $this->fraud_module); + if(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && $this->guranteePaymentVerifcation($order) || (MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT == 'True' && !NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate']))) { + $this->fraud_module_status = false; + } + NovalnetUtil::validateCallbackFields($post, $this->fraud_module, $this->fraud_module_status, $this->code); + } + } + + /** + * Core Function : confirmation() + * + */ + function confirmation() + { + global $order; + // Check amount validation for Fraud module after genarating the pin number + if (isset($_SESSION['novalnet'][$this->code]['secondcall'])) { + if ($_SESSION['novalnet'][$this->code]['order_amount'] != NovalnetUtil::getPaymentAmount((array) $order)) { + if (isset($_SESSION['novalnet'])) { + unset($_SESSION['novalnet']); + } + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::setUTFText(MODULE_PAYMENT_NOVALNET_FRAUDMODULE_AMOUNT_CHANGE_ERROR), 'SSL')); + } + } + $_SESSION['novalnet'][$this->code]['order_amount'] = NovalnetUtil::getPaymentAmount((array) $order); // Payment amount + return false; + } + + /** + * Core Function : process_button() + * + */ + function process_button() + { + $post = $_REQUEST; + if (isset($post[$this->code . '_new_pin']) && $post[$this->code . '_new_pin'] == 1) { // Sending new pin number to Novalnet server + $new_pin_response = NovalnetUtil::doXMLCallbackRequest('TRANSMIT_PIN_AGAIN', $this->code); + $response = NovalnetUtil::getStatusFromXmlResponse($new_pin_response); // Converting Xml response from Novalnet server + if ($response['status'] != 100) { // If the transation is failure + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . $response['status_message'], 'SSL')); + } + } elseif (isset($_SESSION['novalnet'][$this->code]['order_amount'])) { + $novalnet_order_details = isset($_SESSION['novalnet'][$this->code]) ? $_SESSION['novalnet'][$this->code] : array(); + $_SESSION['novalnet'][$this->code] = array_merge($novalnet_order_details, array( + 'payment_amount' => $_SESSION['novalnet'][$this->code]['order_amount'] + ), $post); + } else { // Display error message + $payment_error_return = 'error_message=' . MODULE_PAYMENT_NOVALNET_AMOUNT_ERROR_MESSAGE; + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, $payment_error_return, 'SSL')); + } + + return NovalnetUtil::confirmButtonDisableActivate(); // Hiding Buy button in confirmation page + } + + /** + * Core Function : before_process() + * + */ + function before_process() + { + global $order; + $this->fraud_module_status = NovalnetUtil::setFraudModuleStatus($this->code, $this->fraud_module); + + if(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && $this->guranteePaymentVerifcation($order) || (MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT == 'True' && !NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate']))) { + $this->fraud_module_status = false; + } + $param_inputs = array_merge((array) $order, $_SESSION['novalnet'][$this->code], array( + 'payment' => $this->code, + 'fraud_module' => $this->fraud_module, + 'fraud_module_status' => $this->fraud_module_status + )); + $this->fraud_module_status = isset($_SESSION['novalnet'][$this->code]['nn_payment_ref_enable']) ? FALSE : $this->fraud_module_status; + + if (isset($param_inputs['secondcall']) && $param_inputs['secondcall']) { // Sending pin number to Novalnet server + $callback_response = ($this->fraud_module && in_array($this->fraud_module, array('SMS', 'CALLBACK'))) ? NovalnetUtil::doXMLCallbackRequest('PIN_STATUS', $this->code) : ''; + $response = NovalnetUtil::getStatusFromXmlResponse($callback_response); // Converting Xml response from Novalnet server + $_SESSION['novalnet'][$this->code]['novalnet_sepachange_account'] = 1; + if ($response['status'] != 100) { // Novalnet transaction status got failure for displaying error message + if ($response['status'] == '0529006') { + $_SESSION[$this->code . '_nn_payment_lock'] = true; + } + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . (!empty($response['status_message']) ? NovalnetUtil::setUTFText($response['status_message']) : $response['pin_status']['status_message']), 'SSL')); + } else { // Novalnet transaction status got success + $novalnet_order_details = isset($_SESSION['novalnet'][$this->code]) ? $_SESSION['novalnet'][$this->code] : array(); + $serialize_data = array( + 'bankaccount_holder' => $_SESSION['novalnet'][$this->code]['bankaccount_holder'], + 'iban' => $_SESSION['novalnet'][$this->code]['iban'], + 'tid' => $_SESSION['novalnet'][$this->code]['tid'] + ); + $_SESSION['novalnet'][$this->code]['gateway_status'] = $response['tid_status']; + $this->updateTransComments($serialize_data, $_SESSION['novalnet'][$this->code], ''); + } + } else { + + $urlparam = NovalnetUtil::getRequestParams($param_inputs); // Get common request parameters + $urlparam['key'] = $this->key; + $urlparam['payment_type'] = $this->payment_type; + + // To process on hold product + $order_amount = $order->info['total']*100; + if(($order_amount >= trim(MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_SEPA_LIMIT) && MODULE_PAYMENT_NOVALNET_SEPA_AUTHENTICATE == 'authorize' ) || (empty (MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_SEPA_LIMIT) && MODULE_PAYMENT_NOVALNET_SEPA_AUTHENTICATE == 'authorize' )){ + $urlparam['on_hold'] = 1; + } + + if (!empty($_SESSION['novalnet'][$this->code]['nn_payment_ref_tid_sepa']) && $_SESSION['novalnet'][$this->code]['novalnet_sepachange_account'] == '0') { + $urlparam['payment_ref'] = $_SESSION['novalnet'][$this->code]['nn_payment_ref_tid_sepa']; + unset($_SESSION['novalnet'][$this->code]['nn_payment_ref_tid_sepa']); + } else { + $urlparam['iban'] = $_SESSION['iban']; + $urlparam['bank_account_holder'] = $_SESSION['novalnet'][$this->code]['novalnet_sepa_account_holder']; + $_SESSION['novalnet'][$this->code]['nn_sepa_hash_details'] = $_SESSION['novalnet'][$this->code]['nn_sepa_hash']; + + } + + MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_DUE_DATE !='' ? $urlparam['sepa_due_date'] = NovalnetUtil::sepaDuedate() : ''; + if (isset($this->fraud_module) && $this->fraud_module_status && ((MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE == 'ONECLICK' && !empty($_SESSION['novalnet'][$this->code]['novalnet_sepachange_account'])) || (MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE != 'ONECLICK' && !empty($_SESSION['novalnet'][$this->code]['novalnet_sepachange_account'])))) { // Appending parameters for Fraud module + if($this->fraud_module_status) { + if ($this->fraud_module == 'CALLBACK') { + $urlparam['tel'] = trim($_SESSION['novalnet'][$this->code]['novalnet_sepa_fraud_tel']); + $urlparam['pin_by_callback'] = '1'; + } else { + $urlparam['mobile'] = trim($_SESSION['novalnet'][$this->code]['novalnet_sepa_fraud_mobile']); + $urlparam['pin_by_sms'] = '1'; + } + } + } + + $_SESSION['novalnet'][$this->code]['order_amount'] = $urlparam['amount']; + if (MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE == 'ZEROAMOUNT' && MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION != 'True') { + $urlparam = NovalnetUtil::novalnetZeroAmountProcess('novalnet_sepa', $urlparam); + } + + if (in_array(MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE, array('ZEROAMOUNT', 'ONECLICK'))) { + $urlparam['create_payment_ref'] = '1'; + if(isset($_SESSION['novalnet'][$this->code]['novalnet_sepachange_account']) && $_SESSION['novalnet'][$this->code]['novalnet_sepachange_account'] == '0') { + $_SESSION['novalnet'][$this->code]['nn_sepa_hash_details'] = $_SESSION['novalnet'][$this->code]['nn_sepa_hash']; + unset($urlparam['create_payment_ref']); + } + } + + $tarrif_type = (explode('-', MODULE_PAYMENT_NOVALNET_TARIFF_ID)); + + if(MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE == 'ZEROAMOUNT' && $tarrif_type[0] != 2) { + unset($urlparam['create_payment_ref']); + } + + if (MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True') { + if ($this->guranteePaymentVerifcation($order) && NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate']) && NovalnetUtil::check_data($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate'])) { + // Appending parameters for guarantee payment + $urlparam['key'] = '40'; + $urlparam['payment_type'] = 'GUARANTEED_DIRECT_DEBIT_SEPA'; + $urlparam['birth_date'] = date('Y-m-d', strtotime($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate'])); + if(isset($urlparam['create_payment_ref'])) { + unset($urlparam['create_payment_ref']); + } + } else { + if (MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT == 'False') { + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . MODULE_PAYMENT_NOVALNET_AGE_ERROR, 'SSL')); + } + } + } + + if(isset($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate']) && $_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate'] != '') { + $urlparam['birth_date'] = date('Y-m-d', strtotime($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate'])); + } + + + $response = NovalnetUtil::doPaymentCall('https://payport.novalnet.de/paygate.jsp', $urlparam); //Send + + parse_str($response, $payment_response); + if ($payment_response['status'] == '100') { // Novalnet transaction status got success + $novalnet_order_details = isset($_SESSION['novalnet'][$this->code]) ? $_SESSION['novalnet'][$this->code] : array(); + $serialize_data = array( + 'bankaccount_holder' => $payment_response['bankaccount_holder'], + 'iban' => $payment_response['iban'], + 'tid' => $payment_response['tid'] + ); + $this->updateTransComments($serialize_data, $payment_response, $urlparam); // Update Novalnet transaction comments + } else { // Novalnet transaction status got failure for displaying error message + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::getTransactionMessage($payment_response), 'SSL')); + } + if ((MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE == 'ONECLICK' && !empty($_SESSION['novalnet'][$this->code]['novalnet_sepachange_account'])) || (MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE != 'ONECLICK')) { + if(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION != 'True' || (MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && !$this->guranteePaymentVerifcation($order))) { + NovalnetUtil::gotoPaymentOnCallback($this->code, $this->fraud_module, $this->fraud_module_status); // Redirect to checkout page for displaying fraud module message + } + } + } + } + + /** + * Core Function : after_process() + * + */ + function after_process() + { + global $insert_id; + $order_status['orders_status'] = $order_status_id['orders_status_id'] = ($_SESSION['novalnet'][$this->code]['gateway_status'] == 75) ? MODULE_PAYMENT_NOVALNET_SEPA_PENDING_ORDER_STATUS : ($_SESSION['novalnet'][$this->code]['gateway_status'] == 99 ? MODULE_PAYMENT_NOVALNET_ONHOLD_ORDER_COMPLETE : MODULE_PAYMENT_NOVALNET_SEPA_ORDER_STATUS); + $order_status['orders_status'] = ($order_status['orders_status'] > 0) ? $order_status['orders_status'] : DEFAULT_ORDERS_STATUS_ID; + $order_status_id['orders_status_id'] = ($order_status_id['orders_status_id'] > 0) ? $order_status_id['orders_status_id'] : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform(TABLE_ORDERS, $order_status, "update", "orders_id='$insert_id'"); // Update order status in order status table + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $order_status_id, "update", "orders_id='$insert_id'"); // Update order status id in order status history table + + // Sending post back call to Novalnet server + NovalnetUtil::doSecondCallProcess(array('payment' => $this->code, 'order_no' => $insert_id)); + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_SEPA_STATUS'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $language; + + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_sepa.php'; + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_SEPA_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_STATUS','False', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_STATUS_DESC . "', '1', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_SEPA_STATUS\'," . MODULE_PAYMENT_NOVALNET_SEPA_STATUS . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_TEST_MODE_DESC . "', '2', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_SEPA_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_SEPA_TEST_MODE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FRAUDMODULE_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FRAUDMODULE','False', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FRAUDMODULE_DESC . "','3','tep_mod_select_option(array(\'False\' => MODULE_PAYMENT_NOVALNET_OPTION_NONE,\'CALLBACK\' => MODULE_PAYMENT_NOVALNET_FRAUD_OPTIONCALLBACK,\'SMS\' => MODULE_PAYMENT_NOVALNET_FRAUD_OPTIONSMS,),\'MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FRAUDMODULE\'," . MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FRAUDMODULE . ",' , '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_CALLBACK_LIMIT_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_CALLBACK_LIMIT', '', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_CALLBACK_LIMIT_DESC . "', '4','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_DUE_DATE_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_DUE_DATE', '', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_DUE_DATE_DESC . "', '5','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE','False', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE_DESC . "','7', 'tep_mod_select_option(array(\'False\' => MODULE_PAYMENT_NOVALNET_OPTION_NONE,\'ONECLICK\' => MODULE_PAYMENT_NOVALNET_SEPA_ONE_CLICK,\'ZEROAMOUNT\' => MODULE_PAYMENT_NOVALNET_SEPA_ZERO_AMOUNT,),\'MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE\'," . MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE . ",' ,'',now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_VISIBILITY_BY_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_VISIBILITY_BY_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_VISIBILITY_BY_AMOUNT_DESC . "', '8','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_CUSTOMER_INFO_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_CUSTOMER_INFO', '', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_CUSTOMER_INFO_DESC . "', '9','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_SORT_ORDER_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_SORT_ORDER', '0', '6', '" . MODULE_PAYMENT_NOVALNET_SEPA_SORT_ORDER_DESC . "', '10', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_ORDER_STATUS_DESC . "', '11', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_ZONE_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_ZONE', '0', '6', '" . MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_ZONE_DESC . "','12', 'tep_cfg_pull_down_zone_classes(', 'tep_get_zone_class_title',now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION','False', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION_DESC . "', '15', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION\'," . MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_SEPA_LIMIT_TITLE . "','MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_SEPA_LIMIT', '', '6', '".MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_SEPA_LIMIT_DESC."' , '7', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_AUTHENTICATE_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_AUTHENTICATE','capture', '6','', '2', 'tep_mod_select_option(array(\'capture\' => MODULE_PAYMENT_NOVALNET_CAPTURE,\'authorize\' => MODULE_PAYMENT_NOVALNET_AUTHORIZE),\'MODULE_PAYMENT_NOVALNET_SEPA_AUTHENTICATE\'," . MODULE_PAYMENT_NOVALNET_SEPA_AUTHENTICATE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT', '', '6', '" . MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT_DESC . "','16', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_PENDING_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_PENDING_ORDER_STATUS', '', '6', '" . MODULE_PAYMENT_NOVALNET_SEPA_PENDING_ORDER_STATUS_DESC . "','17', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT_TITLE . "','MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT','True', '6','" . MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT_DESC . "','18', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT\'," . MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT . ",' , '', now()) + "); + } + + /** + * Core Function : remove() + * + */ + function remove() + { + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + $this->validateAdminConfiguration(true); // Validate admin configuration + return array('MODULE_PAYMENT_NOVALNET_SEPA_STATUS', 'MODULE_PAYMENT_NOVALNET_SEPA_TEST_MODE','MODULE_PAYMENT_NOVALNET_SEPA_AUTHENTICATE','MODULE_PAYMENT_NOVALNET_MANUAL_CHECK_SEPA_LIMIT','MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FRAUDMODULE', 'MODULE_PAYMENT_NOVALNET_SEPA_CALLBACK_LIMIT','MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_DUE_DATE','MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE','MODULE_PAYMENT_NOVALNET_SEPA_VISIBILITY_BY_AMOUNT', 'MODULE_PAYMENT_NOVALNET_SEPA_CUSTOMER_INFO','MODULE_PAYMENT_NOVALNET_SEPA_SORT_ORDER', 'MODULE_PAYMENT_NOVALNET_SEPA_ORDER_STATUS', 'MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_ZONE','MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION', 'MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT','MODULE_PAYMENT_NOVALNET_SEPA_PENDING_ORDER_STATUS','MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT'); + } + + /** + * Validate admin configuration + * @param $admin + * + * @return boolean + */ + function validateAdminConfiguration($admin = false) + { + if (MODULE_PAYMENT_NOVALNET_SEPA_STATUS == 'True') { + if (MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_DUE_DATE != '' && (!is_numeric(trim(MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_DUE_DATE)) || MODULE_PAYMENT_NOVALNET_SEPA_PAYMENT_DUE_DATE < 7)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_SEPA_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_SEPA_DUE_DATE_ERROR); + return false; + } elseif (MODULE_PAYMENT_NOVALNET_SEPA_VISIBILITY_BY_AMOUNT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_SEPA_VISIBILITY_BY_AMOUNT)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_SEPA_BLOCK_TITLE); + return false; + } elseif(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True' && (MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT != '' && (!ctype_digit(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT) || MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT < 999))){ + if(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT != '' && (!ctype_digit(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT) || MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT < 999)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_SEPA_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_SEPA_GURANTEE_PAYMENT_MIN_AMOUNT_ERROR_MSG); + return false; + } + } elseif(MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FRAUDMODULE != 'False' && (MODULE_PAYMENT_NOVALNET_SEPA_CALLBACK_LIMIT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_SEPA_CALLBACK_LIMIT))){ + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_SEPA_BLOCK_TITLE); + return false; + } + } + return true; + } + + + function gurantee_error($admin = false) + { + global $order; + $order_amount = $order->info['total']*100 ; + $minimum_amount_gurantee = trim(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT) != '' ? trim(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT) : '999'; + // Delivery address + $delivery_address = array( + 'street_address' => $order->delivery['street_address'], + 'city' => $order->delivery['city'], + 'postcode' => $order->delivery['postcode'], + 'country' => $order->delivery['country']['iso_code_2'], + ); + // Billing address + $billing_address = array( + 'street_address' => $order->billing['street_address'], + 'city' => $order->billing['city'], + 'postcode' => $order->billing['postcode'], + 'country' => $order->billing['country']['iso_code_2'], + ); + if(MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_CONFIGURATION == 'True'){ + if (MODULE_PAYMENT_NOVALNET_SEPA_ENABLE_FORCE_GUARANTEE_PAYMENT == 'False'){ + if ($delivery_address !== $billing_address) { + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_SEPA_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_GUARANTEE_INVALID_ADDRESS); + return false; + }else if(!in_array(strtoupper($order->billing['country']['iso_code_2']), array('DE', 'AT', 'CH'))){ + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_SEPA_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_GUARANTEE_INVALID_COUNTRY); + return false; + }else if($order_amount <= $minimum_amount_gurantee ){ + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_SEPA_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_GUARANTEE_INVALID_AMOUNT); + return false; + }else if ($order->info['currency'] != 'EUR'){ + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_SEPA_BLOCK_TITLE, MODULE_PAYMENT_NOVALNET_GUARANTEE_INVALID_CURRENCY); + return false; + } + } + } +} + + /** + * Return refill hash + * @param $email_address + * + * @return string + */ + function getRefillHash($email_address = '') + { + + if (isset($_SESSION['payment']) && isset($_SESSION['novalnet']['novalnet_sepa']['nn_sepa_hash'])) { + return ((MODULE_PAYMENT_NOVALNET_SEPA_AUTO_FILL == 'True' || MODULE_PAYMENT_NOVALNET_REFILL_BY_SUCCESSFUL_ORDER == 'True') ? $_SESSION['novalnet']['novalnet_sepa']['nn_sepa_hash'] : ''); + } elseif (MODULE_PAYMENT_NOVALNET_REFILL_BY_SUCCESSFUL_ORDER == 'True' && $email_address != '') { + $customer_details = NovalnetUtil::getCustomerDetails($email_address); + $processkey_query = tep_db_query("SELECT process_key, payment_type FROM novalnet_transaction_detail WHERE customer_id='" . tep_db_input($customer_details['customers_id']) . "' ORDER BY id DESC LIMIT 1"); + $getResult = tep_db_fetch_array($processkey_query); + $_SESSION['novalnet']['novalnet_sepa']['nn_sepa_hash'] = ((!empty($getResult['process_key']) && $getResult['payment_type'] == 'novalnet_sepa') ? $getResult['process_key'] : ''); + return isset($_SESSION['novalnet']['novalnet_sepa']['nn_sepa_hash']) ? $_SESSION['novalnet']['novalnet_sepa']['nn_sepa_hash'] : ''; + } + } + + + /** + * Update transaction comments + * @param $serialize_data + * @param $payment_response + * @param $input_params + * + * @return none + */ + function updateTransComments($serialize_data, $payment_response, $input_params) + { + global $order; + if (isset($_SESSION['novalnet'][$this->code]['zero_transaction']) && $_SESSION['novalnet'][$this->code]['zero_transaction'] == '1') { + $_SESSION['novalnet'][$this->code] = array( + 'zerotrxnreference' => $payment_response['tid'], + 'zerotrxndetails' => isset($_SESSION['novalnet'][$this->code]['zerotrxndetails']) ? $_SESSION['novalnet'][$this->code]['zerotrxndetails'] : '', + 'zero_transaction' => isset($_SESSION['novalnet'][$this->code]['zero_transaction']) ? $_SESSION['novalnet'][$this->code]['zero_transaction'] : '0', + 'total_amount' => $_SESSION['novalnet'][$this->code]['order_amount'], + 'payment_id' => $_SESSION['novalnet'][$this->code]['payment_id'], + 'gateway_status' => $_SESSION['novalnet'][$this->code]['gateway_status'] + ); + } + $_SESSION['novalnet'][$this->code] = array_merge($_SESSION['novalnet'][$this->code], array( + 'tid' => $payment_response['tid'], + 'vendor' => !empty($input_params['vendor']) ? $input_params['vendor'] : $payment_response['vendor'], + 'product' => !empty($input_params['product']) ? $input_params['product'] : $payment_response['product'], + 'tariff' => !empty($input_params['tariff']) ? $input_params['tariff'] : $payment_response['tariff'], + 'auth_code' => !empty($input_params['auth_code']) ? $input_params['auth_code'] : $payment_response['auth_code'], + 'payment_id' => !empty($input_params['key']) ? $input_params['key'] : $_SESSION['novalnet'][$this->code]['payment_id'], + 'test_mode' => $payment_response['test_mode'], + 'reference_transaction' => isset($input_params['payment_ref']) ? '1' : '0', + 'amount' => ($_SESSION['novalnet'][$this->code]['zero_transaction'] == '1') ? '0' : $_SESSION['novalnet'][$this->code]['order_amount'], + 'total_amount' => !empty($_SESSION['novalnet'][$this->code]['total_amount']) ? $_SESSION['novalnet'][$this->code]['total_amount'] : $_SESSION['novalnet'][$this->code]['order_amount'], + 'currency' => $payment_response['currency'], + 'gateway_status' => ($payment_response['tid_status']) ? $payment_response['tid_status'] : $_SESSION['novalnet'][$this->code]['gateway_status'], + 'process_key' => (isset($input_params['sepa_hash']) && $input_params['sepa_hash'] != '') ? $input_params['sepa_hash'] : $_SESSION['novalnet'][$this->code]['nn_sepa_hash_details'], + 'subs_id' => !empty($input_params['subs_id']) ? $input_params['subs_id'] : $payment_response['subs_id'], + 'customer_id' => (isset($payment_response['customer_no']) && $payment_response['customer_no'] != '') ? $payment_response['customer_no'] : $payment_response['customer_id'], + 'bankaccount_holder' => $payment_response['bankaccount_holder'], + 'iban' => $payment_response['iban'], + 'order_amount' => !empty($_SESSION['novalnet'][$this->code]['total_amount']) ? $_SESSION['novalnet'][$this->code]['total_amount'] : $_SESSION['novalnet'][$this->code]['order_amount'] + + )); + if (isset($_SESSION['novalnet'][$this->code]['novalnet_sepachange_account']) && $_SESSION['novalnet'][$this->code]['novalnet_sepachange_account'] == '0') { + $_SESSION['novalnet'][$this->code]['process_key'] = ''; + } + if (MODULE_PAYMENT_NOVALNET_SEPA_SHOP_TYPE == 'ONECLICK' && !isset($input_params['payment_ref'])) { + $_SESSION['novalnet'][$this->code]['payment_details'] = serialize($serialize_data); + } + $_SESSION['novalnet_sepa_callback_max_time_nn'] = time() + (30 * 60); + $test_mode = $payment_response['test_mode']; + if ($_SESSION['novalnet'][$this->code]['payment_id'] == '40' && in_array($_SESSION['novalnet'][$this->code]['gateway_status'], array('75','99','100'))){ + $trans_comments = MODULE_PAYMENT_NOVALNET_MENTION_PAYMENT_CATEGORY.PHP_EOL; + } + $trans_comments .= PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $payment_response['tid'] . ((($test_mode == 1) || MODULE_PAYMENT_NOVALNET_SEPA_TEST_MODE == 'True') ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''). PHP_EOL . MODULE_PAYMENT_NOVALNET_MENTION_PAYMENT_CATEGORY_CONFIRM; + $order->info['comments'] = $order->info['comments'] .PHP_EOL .$trans_comments; + } + + /** + * Doing verification for gurantee payment. + * @param $order + * + * @return boolean + */ + function guranteePaymentVerifcation($order) + { + $minimum_amount = (MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT != '') ? MODULE_PAYMENT_NOVALNET_SEPA_GUARANTEE_PAYMENT_MINIMUM_AMOUNT : 999; + + return (in_array($order->customer['country']['iso_code_2'], array('AT', 'DE', 'CH')) && $order->info['currency'] == 'EUR' && NovalnetUtil::addressVerification($order) && isset($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate']) && NovalnetUtil::validateAge($_SESSION['novalnet'][$this->code]['novalnet_sepa_birthdate']) && (NovalnetUtil::getPaymentAmount((array) $order) >= $minimum_amount)); + } + + function get_guarantee_field($name, $customer_details) + { + $customer_dob = !empty($customer_details['customers_dob']) ? date('d-m-Y', strtotime($customer_details['customers_dob'])) : '' ; + return tep_draw_input_field($name, $customer_dob, 'id="' . $name . '" readonly') . '  + + + + + '; + } +} +?> diff --git a/includes/modules/payment/novalnet_sofortbank.php b/includes/modules/payment/novalnet_sofortbank.php new file mode 100644 index 0000000..3ec0e01 --- /dev/null +++ b/includes/modules/payment/novalnet_sofortbank.php @@ -0,0 +1,284 @@ +code = 'novalnet_sofortbank'; + $this->title = $this->public_title = MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEXT_TITLE; + $this->description = MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEXT_DESCRIPTION; + $this->form_action_url = 'https://payport.novalnet.de/online_transfer_payport'; + + $this->sort_order = 0; + if (strpos(MODULE_PAYMENT_INSTALLED, $this->code) !== false) { + $this->sort_order = MODULE_PAYMENT_NOVALNET_SOFORTBANK_SORT_ORDER; + $this->enabled = ((MODULE_PAYMENT_NOVALNET_SOFORTBANK_STATUS == 'True') ? true : false); + } + if ($this->enabled === true) { + if (isset($order) && is_object($order)) { + $this->update_status(); + } + } + } + + /** + * Core Function : update_status() + * + */ + function update_status() + { + global $order; + if (($this->enabled == true) && ((int) MODULE_PAYMENT_NOVALNET_SOFORTBANK_PAYMENT_ZONE > 0)) { + $check_flag = false; + $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_PAYMENT_ZONE . "' and (zone_id < 1 or zone_id = " . $order->billing['zone_id'] . " ) and zone_country_id = '" . $order->billing['country']['id'] . "' order by zone_id"); + $check = tep_db_fetch_array($check_query); + if ($check['zone_id']) { + $check_flag = true; + } + if ($check_flag == false) { + $this->enabled = false; + } + } + // disable the module if the order only contains virtual products + if ($this->enabled == true) { + if ($order->content_type == 'virtual') { + $this->enabled = false; + } + } + } + + /** + * Core Function : javascript_validation() + * + */ + function javascript_validation() + { + return false; + } + + /** + * Core Function : selection() + * + */ + function selection() + { + global $order; + + if (!NovalnetUtil::checkMerchantConfiguration() || !$this->validateAdminConfiguration() || !NovalnetUtil::hidePaymentVisibility(NovalnetUtil::getPaymentAmount((array) $order), MODULE_PAYMENT_NOVALNET_SOFORTBANK_VISIBILITY_BY_AMOUNT)) { // Validate the Novalnet merchant details, sofortbank payment admin configuration details and payment visibility + return false; + } + + NovalnetUtil::getLastSuccessPayment($this->code); // To get the payment name of last successful order + $selection['id'] = $this->code; + $selection['module'] = $this->public_title . MODULE_PAYMENT_NOVALNET_SOFORTBANK_PUBLIC_TITLE; + $selection['module'] .= '
' . $this->description . MODULE_PAYMENT_NOVALNET_REDIRECT_NOTICE_MSG . '
' . trim(strip_tags(MODULE_PAYMENT_NOVALNET_SOFORTBANK_CUSTOMER_INFO)); + if (MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEST_MODE == 'True') { + $selection['module'] .= '
' . MODULE_PAYMENT_NOVALNET_TEST_MODE_MSG; + } + return $selection; + } + + /** + * Core Function : pre_confirmation_check() + * + */ + function pre_confirmation_check() + { + return false; + } + + /** + * Core Function : confirmation() + * + */ + function confirmation() + { + global $order; + $_SESSION['novalnet'][$this->code]['order_amount'] = NovalnetUtil::getPaymentAmount((array) $order); + return false; + } + + /** + * Core Function : process_button() + * + */ + function process_button() + { + global $order; + if (isset($_SESSION['novalnet'][$this->code]['order_amount'])) { + $_SESSION['novalnet'][$this->code] = array( + 'payment_amount' => $_SESSION['novalnet'][$this->code]['order_amount'] + ); + } + $input_params = array_merge((array) $order, array( + 'payment' => $this->code, + 'payment_amount' => $_SESSION['novalnet'][$this->code]['payment_amount'] + )); + $urlparam = NovalnetUtil::getRequestParams($input_params); + $urlparam['key'] = $this->key; + $urlparam['payment_type'] = $this->payment_type; + NovalnetUtil::getRedirectParams($urlparam); + $process_button_string = ''; + foreach ($urlparam as $key => $value) { + $process_button_string .= tep_draw_hidden_field($key, $value); + } + $process_button_string .= NovalnetUtil::confirmButtonDisableActivate(); // Hiding Buy button in confirmation page + return $process_button_string; + + } + + /** + * Core Function : before_process() + * + */ + function before_process() + { + global $order; + $post = $_REQUEST; + if (isset($post['tid']) && $post['status'] == 100) { // Novalnet transaction status got success + $payment_response = NovalnetUtil::decodePaygateResponse($post); // Decoding Novalnet server response + if (NovalnetUtil::validateHashResponse($post)) { //Hash Validation failed + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . utf8_decode(MODULE_PAYMENT_NOVALNET_SOFORT_REDIRECTION_ERROR_MESSAGE), 'SSL')); + } + $_SESSION['novalnet'][$this->code] = array( + 'tid' => $payment_response['tid'], + 'vendor' => $payment_response['vendor'], + 'product' => $payment_response['product'], + 'tariff' => $payment_response['tariff'], + 'auth_code' => $payment_response['auth_code'], + 'amount' => $payment_response['amount'], + 'total_amount' => $payment_response['amount'], + 'currency' => $payment_response['currency'], + 'gateway_status' => $payment_response['tid_status'], + 'test_mode' => $payment_response['test_mode'], + 'customer_id' => $payment_response['customer_no'], + 'payment_id' => $this->key + ); + $trans_comments = MODULE_PAYMENT_NOVALNET_TRANSACTION_DETAILS . PHP_EOL . MODULE_PAYMENT_NOVALNET_TRANSACTION_ID . $payment_response['tid'] . (((isset($payment_response['test_mode']) && $payment_response['test_mode'] == 1) || MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEST_MODE == 'True') ? PHP_EOL . MODULE_PAYMENT_NOVALNET_TEST_ORDER_MSG . PHP_EOL : ''); + $order->info['comments'] .= PHP_EOL.$trans_comments; + } else { // Novalnet transaction status got failure for displaying error message + tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . NovalnetUtil::getTransactionMessage($post), 'SSL')); + } + } + + /** + * Core Function : after_process() + * + */ + function after_process() + { + global $insert_id; + $order_status['orders_status'] = $order_status_id['orders_status_id'] = (MODULE_PAYMENT_NOVALNET_SOFORTBANK_ORDER_STATUS > 0) ? MODULE_PAYMENT_NOVALNET_SOFORTBANK_ORDER_STATUS : DEFAULT_ORDERS_STATUS_ID; + tep_db_perform(TABLE_ORDERS, $order_status, "update", "orders_id='" . $insert_id . "'"); + tep_db_perform(TABLE_ORDERS_STATUS_HISTORY, $order_status_id, "update", "orders_id='$insert_id'"); // Update order status id in order status history table + // Sending post back call to Novalnet server + NovalnetUtil::doSecondCallProcess(array( + 'payment' => $this->code, + 'order_no' => $insert_id + )); + } + + /** + * Core Function : check() + * + */ + function check() + { + if (!isset($this->_check)) { + $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_NOVALNET_SOFORTBANK_STATUS'"); + $this->_check = tep_db_num_rows($check_query); + } + return $this->_check; + } + + /** + * Core Function : install() + * + */ + function install() + { + global $language; + + include_once DIR_FS_CATALOG . DIR_WS_LANGUAGES . $language . '/modules/payment/novalnet_sofortbank.php'; + tep_db_query("INSERT INTO " . TABLE_CONFIGURATION . " + (configuration_title, configuration_key, configuration_value, configuration_group_id, configuration_description, sort_order, set_function, use_function, date_added) + VALUES + ('" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_SOFORTBANK_STATUS','False', '6','" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_STATUS_DESC . "', '1', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_SOFORTBANK_STATUS\'," . MODULE_PAYMENT_NOVALNET_SOFORTBANK_STATUS . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEST_MODE_TITLE . "','MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEST_MODE','False', '6','" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEST_MODE_DESC . "', '2', 'tep_mod_select_option(array(\'True\' => MODULE_PAYMENT_NOVALNET_TRUE,\'False\' => MODULE_PAYMENT_NOVALNET_FALSE),\'MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEST_MODE\'," . MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEST_MODE . ",', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_VISIBILITY_BY_AMOUNT_TITLE . "','MODULE_PAYMENT_NOVALNET_SOFORTBANK_VISIBILITY_BY_AMOUNT', '', '6','" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_VISIBILITY_BY_AMOUNT_DESC . "', '3','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_CUSTOMER_INFO_TITLE . "','MODULE_PAYMENT_NOVALNET_SOFORTBANK_CUSTOMER_INFO', '', '6','" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_CUSTOMER_INFO_DESC . "', '4','', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_SORT_ORDER_TITLE . "','MODULE_PAYMENT_NOVALNET_SOFORTBANK_SORT_ORDER', '0', '6', '" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_SORT_ORDER_DESC . "', '5', '', '', now()), + ('" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_ORDER_STATUS_TITLE . "','MODULE_PAYMENT_NOVALNET_SOFORTBANK_ORDER_STATUS', '0', '6','" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_ORDER_STATUS_DESC . "', '6', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now()), + ('" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_PAYMENT_ZONE_TITLE . "','MODULE_PAYMENT_NOVALNET_SOFORTBANK_PAYMENT_ZONE', '0', '6', '" . MODULE_PAYMENT_NOVALNET_SOFORTBANK_PAYMENT_ZONE_DESC . "','7', 'tep_cfg_pull_down_zone_classes(', 'tep_get_zone_class_title',now())"); + } + + /** + * Core Function : remove() + * + */ + function remove() + { + tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); + } + + /** + * Core Function : keys() + * + */ + function keys() + { + $this->validateAdminConfiguration(true); // Validate admin configuration + return array( + 'MODULE_PAYMENT_NOVALNET_SOFORTBANK_STATUS', + 'MODULE_PAYMENT_NOVALNET_SOFORTBANK_TEST_MODE', + 'MODULE_PAYMENT_NOVALNET_SOFORTBANK_VISIBILITY_BY_AMOUNT', + 'MODULE_PAYMENT_NOVALNET_SOFORTBANK_CUSTOMER_INFO', + 'MODULE_PAYMENT_NOVALNET_SOFORTBANK_SORT_ORDER', + 'MODULE_PAYMENT_NOVALNET_SOFORTBANK_ORDER_STATUS', + 'MODULE_PAYMENT_NOVALNET_SOFORTBANK_PAYMENT_ZONE', + ); + } + + /** + * Validate admin configuration + * @param $admin + * + * @return boolean + */ + function validateAdminConfiguration($admin = false) + { + if (MODULE_PAYMENT_NOVALNET_SOFORTBANK_STATUS == 'True') { + if (MODULE_PAYMENT_NOVALNET_SOFORTBANK_VISIBILITY_BY_AMOUNT != '' && !ctype_digit(MODULE_PAYMENT_NOVALNET_SOFORTBANK_VISIBILITY_BY_AMOUNT)) { + if ($admin) + echo NovalnetUtil::novalnetBackEndShowError(MODULE_PAYMENT_NOVALNET_SOFORTBANK_BLOCK_TITLE); + return false; + } + } + return true; + } +} +?> diff --git a/novalnet_auto_config.php b/novalnet_auto_config.php new file mode 100644 index 0000000..bc3261f --- /dev/null +++ b/novalnet_auto_config.php @@ -0,0 +1,77 @@ +sendRequest($request); +class AutoConfig { + + public function sendRequest($data) + + { + + $request = http_build_query($data); + + $ch = curl_init('https://payport.novalnet.de/autoconfig'); + curl_setopt($ch, CURLOPT_POST, 1); + curl_setopt($ch, CURLOPT_POSTFIELDS, $request); + curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0); + curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($ch, CURLOPT_TIMEOUT, '240'); + $response = curl_exec($ch); + curl_close($ch); + + $response = json_decode($response); + + $jsonerror = json_last_error(); + + if (empty($jsonerror)) + { + if (isset($response->status) && $response->status == '100') { + $merchant_details = array( + 'auto_key' => $data['hash'], + 'vendor_id' => $response->vendor, + 'auth_code' => $response->auth_code, + 'product_id' => $response->product, + 'access_key' => $response->access_key, + 'test_mode' => $response->test_mode, + 'tariff' => $response->tariff, + 'payment_type' => $response->payment, + 'notify_url' => $response->notify_url, + ); + echo json_encode($merchant_details); + exit(); + } elseif (isset($response->status) && $response->status == '106') { + $result = 'You need to configure your outgoing server IP address '.$_SERVER['REMOTE_ADDR'].' at Novalnet. Please configure it in Novalnet admin portal or contact technic@novalnet.de'; + } else { + $result = !empty($response->config_result) ? $response->config_result : $response->status_desc; + } + echo json_encode(array('status_desc' => $result)); + exit(); + } + + } + } + +?> + diff --git a/novalnet_subscription_stop.php b/novalnet_subscription_stop.php new file mode 100644 index 0000000..3f677f1 --- /dev/null +++ b/novalnet_subscription_stop.php @@ -0,0 +1,95 @@ + $datas['tid'], + 'payment_id' => $datas['payment_id'], + 'termination_reason' => $inputs['novalnet_subscribe_termination_reason'], + 'order_id' => $inputs['order_id'], + 'vendor' => $datas['vendor'], + 'product' => $datas['product'], + 'tariff_id' => $datas['tariff'], + 'auth_code' => $datas['auth_code'] + )); + } + header('Location: ' . $inputs['current_request_url']); + exit; +} +/** + * Perform transaction subscription stop process in front end order + * @param $order_id + * + * @return string + */ +function NovalnetSubscriptionStop($order_id) +{ + $transaction_info = NovalnetAdmin::getNovalnetTransDetails($order_id); + $subscription_query = tep_db_query("SELECT subs_id, termination_reason FROM novalnet_subscription_detail WHERE order_no='" . tep_db_input($order_id) . "'"); + $datas = tep_db_fetch_array($subscription_query); + $func_output = ''; + + if ($datas['subs_id'] != 0 && $datas['termination_reason'] == '' && $transaction_info['gateway_status'] != 103) { + $subs_termination_reason = array( + MODULE_PAYMENT_NOVALNET_SUBS_REASON_1, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_2, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_3, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_4, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_5, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_6, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_7, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_8, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_9, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_10, + MODULE_PAYMENT_NOVALNET_SUBS_REASON_11 + ); + $func_output = "

" . MODULE_PAYMENT_NOVALNET_SUBS_CANCEL_TITLE . ":

"; + if (isset($_SESSION['novalneterror'])) { + unset($_SESSION['novalneterror']); + $func_output .= ""; + } + $func_output .= "

" . MODULE_PAYMENT_NOVALNET_SUBS_SELECT_REASON . "

+ + + "; + $func_output .= "  
+
"; + } + return $func_output; +} +?> +