getMapper(); if ($ext->isExtensionKey($paymentProcessor['class_name'])) { $paymentClass = $ext->keyToClass($paymentProcessor['class_name'], 'payment'); require_once ($ext->classToPath($paymentClass)); } else { $paymentClass = 'CRM_Core_' . $paymentProcessor['class_name']; require_once (str_replace('_', DIRECTORY_SEPARATOR, $paymentClass) . '.php'); } //load the object. self::$_singleton[$cacheKey] = $paymentClass::singleton($mode, $paymentProcessor); } //load the payment form for required processor. if ($paymentForm !== NULL) { self::$_singleton[$cacheKey]->setForm($paymentForm); } return self::$_singleton[$cacheKey]; } /** * @param $params * * @return mixed */ public static function logPaymentNotification($params) { $message = 'payment_notification '; if (!empty($params['processor_name'])) { $message .= 'processor_name=' . $params['processor_name']; } if (!empty($params['processor_id'])) { $message .= 'processor_id=' . $params['processor_id']; } $log = new CRM_Utils_SystemLogger(); $log->alert($message, $_REQUEST); } /** * Setter for the payment form that wants to use the processor * * @param CRM_Core_Form $paymentForm * */ function setForm(&$paymentForm) { $this->_paymentForm = $paymentForm; } /** * Getter for payment form that is using the processor * * @return CRM_Core_Form A form object */ function getForm() { return $this->_paymentForm; } /** * Getter for accessing member vars * */ function getVar($name) { return isset($this->$name) ? $this->$name : NULL; } /** * This function collects all the information from a web/api form and invokes * the relevant payment processor specific functions to perform the transaction * * @param array $params assoc array of input parameters for this transaction * * @return array the result in an nice formatted array (or an error object) * @abstract */ abstract function doDirectPayment(&$params); /** * This function checks to see if we have the right config values * * @internal param string $mode the mode we are operating in (live or test) * * @return string the error message if any * @public */ abstract function checkConfig(); /** * @param $paymentProcessor * * @return bool */ static function paypalRedirect(&$paymentProcessor) { if (!$paymentProcessor) { return FALSE; } if (isset($_GET['payment_date']) && isset($_GET['merchant_return_link']) && CRM_Utils_Array::value('payment_status', $_GET) == 'Completed' && $paymentProcessor['payment_processor_type'] == "PayPal_Standard" ) { return TRUE; } return FALSE; } /** * Page callback for civicrm/payment/ipn * @public */ static function handleIPN() { self::handlePaymentMethod( 'PaymentNotification', array( 'processor_name' => @$_GET['processor_name'], 'processor_id' => @$_GET['processor_id'], 'mode' => @$_GET['mode'], ) ); } /** * Payment callback handler. The processor_name or processor_id is passed in. * Note that processor_id is more reliable as one site may have more than one instance of a * processor & ideally the processor will be validating the results * Load requested payment processor and call that processor's handle<$method> method * * @public * @param $method * @param array $params */ static function handlePaymentMethod($method, $params = array()) { if (!isset($params['processor_id']) && !isset($params['processor_name'])) { CRM_Core_Error::fatal("Either 'processor_id' or 'processor_name' param is required for payment callback"); } self::logPaymentNotification($params); // Query db for processor .. $mode = @$params['mode']; $sql = "SELECT ppt.class_name, ppt.name as processor_name, pp.id AS processor_id FROM civicrm_payment_processor_type ppt INNER JOIN civicrm_payment_processor pp ON pp.payment_processor_type_id = ppt.id AND pp.is_active AND pp.is_test = %1"; $args[1] = array($mode == 'test' ? 1 : 0, 'Integer'); if (isset($params['processor_id'])) { $sql .= " WHERE pp.id = %2"; $args[2] = array($params['processor_id'], 'Integer'); $notfound = "No active instances of payment processor ID#'{$params['processor_id']}' were found."; } else { $sql .= " WHERE ppt.name = %2"; $args[2] = array($params['processor_name'], 'String'); $notfound = "No active instances of the '{$params['processor_name']}' payment processor were found."; } $dao = CRM_Core_DAO::executeQuery($sql, $args); // Check whether we found anything at all .. if (!$dao->N) { CRM_Core_Error::fatal($notfound); } $method = 'handle' . $method; $extension_instance_found = FALSE; // In all likelihood, we'll just end up with the one instance returned here. But it's // possible we may get more. Hence, iterate through all instances .. while ($dao->fetch()) { // Check pp is extension $ext = CRM_Extension_System::singleton()->getMapper(); if ($ext->isExtensionKey($dao->class_name)) { $paymentClass = $ext->keyToClass($dao->class_name, 'payment'); require_once $ext->classToPath($paymentClass); } else { // Legacy or extension as module instance if (empty($paymentClass)) { $paymentClass = 'CRM_Core_' . $dao->class_name; } } $paymentProcessor = CRM_Financial_BAO_PaymentProcessor::getPayment($dao->processor_id, $mode); // Should never be empty - we already established this processor_id exists and is active. if (empty($paymentProcessor)) { continue; } // Instantiate PP $processorInstance = $paymentClass::singleton($mode, $paymentProcessor); // Does PP implement this method, and can we call it? if (!method_exists($processorInstance, $method) || !is_callable(array($processorInstance, $method)) ) { // on the off chance there is a double implementation of this processor we should keep looking for another // note that passing processor_id is more reliable & we should work to deprecate processor_name continue; } // Everything, it seems, is ok - execute pp callback handler $processorInstance->$method(); $extension_instance_found = TRUE; } if (!$extension_instance_found) CRM_Core_Error::fatal( "No extension instances of the '{$params['processor_name']}' payment processor were found.
" . "$method method is unsupported in legacy payment processors." ); // Exit here on web requests, allowing just the plain text response to be echoed if ($method == 'handlePaymentNotification') { CRM_Utils_System::civiExit(); } } /** * Function to check whether a method is present ( & supported ) by the payment processor object. * * @param string $method method to check for. * * @return boolean * @public */ function isSupported($method = 'cancelSubscription') { return method_exists(CRM_Utils_System::getClassName($this), $method); } /** * @param null $entityID * @param null $entity * @param string $action * * @return string */ function subscriptionURL($entityID = NULL, $entity = NULL, $action = 'cancel') { if ($action == 'cancel') { $url = 'civicrm/contribute/unsubscribe'; } elseif ($action == 'billing') { //in notify mode don't return the update billing url if ($this->_paymentProcessor['billing_mode'] == self::BILLING_MODE_NOTIFY) { return NULL; } $url = 'civicrm/contribute/updatebilling'; } elseif ($action == 'update') { $url = 'civicrm/contribute/updaterecur'; } $session = CRM_Core_Session::singleton(); $userId = $session->get('userID'); $checksumValue = ""; if ($entityID && $entity == 'membership') { if (!$userId) { $contactID = CRM_Core_DAO::getFieldValue("CRM_Member_DAO_Membership", $entityID, "contact_id"); $checksumValue = CRM_Contact_BAO_Contact_Utils::generateChecksum($contactID, NULL, 'inf'); $checksumValue = "&cs={$checksumValue}"; } return CRM_Utils_System::url($url, "reset=1&mid={$entityID}{$checksumValue}", TRUE, NULL, FALSE, TRUE); } if ($entityID && $entity == 'contribution') { if (!$userId) { $contactID = CRM_Core_DAO::getFieldValue("CRM_Contribute_DAO_Contribution", $entityID, "contact_id"); $checksumValue = CRM_Contact_BAO_Contact_Utils::generateChecksum($contactID, NULL, 'inf'); $checksumValue = "&cs={$checksumValue}"; } return CRM_Utils_System::url($url, "reset=1&coid={$entityID}{$checksumValue}", TRUE, NULL, FALSE, TRUE); } if ($entityID && $entity == 'recur') { if (!$userId) { $sql = " SELECT con.contact_id FROM civicrm_contribution_recur rec INNER JOIN civicrm_contribution con ON ( con.contribution_recur_id = rec.id ) WHERE rec.id = %1 GROUP BY rec.id"; $contactID = CRM_Core_DAO::singleValueQuery($sql, array(1 => array($entityID, 'Integer'))); $checksumValue = CRM_Contact_BAO_Contact_Utils::generateChecksum($contactID, NULL, 'inf'); $checksumValue = "&cs={$checksumValue}"; } return CRM_Utils_System::url($url, "reset=1&crid={$entityID}{$checksumValue}", TRUE, NULL, FALSE, TRUE); } if ($this->isSupported('accountLoginURL')) { return $this->accountLoginURL(); } return $this->_paymentProcessor['url_recur']; } }