3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2017 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2017
33 class CiviContributeProcessor
{
34 static $_paypalParamsMapper = array(
35 //category => array(paypal_param => civicrm_field);
37 'salutation' => 'prefix_id',
38 'firstname' => 'first_name',
39 'lastname' => 'last_name',
40 'middlename' => 'middle_name',
41 'suffix' => 'suffix_id',
45 'shiptoname' => 'address_name',
46 'shiptostreet' => 'street_address',
47 'shiptostreet2' => 'supplemental_address_1',
48 'shiptocity' => 'city',
49 'shiptostate' => 'state_province',
50 'shiptozip' => 'postal_code',
51 'countrycode' => 'country',
53 'transaction' => array(
54 'amt' => 'total_amount',
55 'feeamt' => 'fee_amount',
56 'transactionid' => 'trxn_id',
57 'currencycode' => 'currency',
58 'l_name0' => 'source',
59 'ordertime' => 'receive_date',
62 'l_number0' => 'note',
63 'is_test' => 'is_test',
64 'transactiontype' => 'trxn_type',
65 'recurrences' => 'installments',
68 'invnum' => 'invoice_id',
69 'subscriptiondate' => 'start_date',
70 'subscriptionid' => 'processor_id',
71 'timestamp' => 'modified_date',
75 static $_csvParamsMapper = array(
76 // Note: if csv header is not present in the mapper, header itself
77 // is considered as a civicrm field.
78 //category => array(csv_header => civicrm_field);
80 'first_name' => 'first_name',
81 'last_name' => 'last_name',
82 'middle_name' => 'middle_name',
86 'street_address' => 'street_address',
87 'supplemental_address_1' => 'supplemental_address_1',
89 'postal_code' => 'postal_code',
90 'country' => 'country',
92 'transaction' => array(
93 'total_amount' => 'total_amount',
94 'trxn_id' => 'trxn_id',
95 'currency' => 'currency',
97 'receive_date' => 'receive_date',
99 'is_test' => 'is_test',
104 * @param $paymentProcessor
105 * @param $paymentMode
109 public static function paypal($paymentProcessor, $paymentMode, $start, $end) {
110 $url = "{$paymentProcessor['url_api']}nvp";
113 'user' => $paymentProcessor['user_name'],
114 'pwd' => $paymentProcessor['password'],
115 'signature' => $paymentProcessor['signature'],
121 'method' => 'TransactionSearch',
122 'startdate' => $start,
126 require_once 'CRM/Core/Payment/PayPalImpl.php';
128 // as invokeAPI fetch only last 100 transactions.
129 // we should require recursive calls to process more than 100.
130 // first fetch transactions w/ give date intervals.
131 // if we get error code w/ result, which means we do have more than 100
132 // manipulate date interval accordingly and fetch again.
135 $result = CRM_Core_Payment_PayPalImpl
::invokeAPI($args, $url);
136 require_once "CRM/Contribute/BAO/Contribution/Utils.php";
138 $keyArgs['method'] = 'GetTransactionDetails';
139 foreach ($result as $name => $value) {
140 if (substr($name, 0, 15) == 'l_transactionid') {
142 // We don't/can't process subscription notifications, which appear
143 // to be identified by transaction ids beginning with S-
144 if (substr($value, 0, 2) == 'S-') {
148 // Before we bother making a remote API call to PayPal to lookup
149 // details about a transaction, let's make sure that it doesn't
150 // already exist in the database.
151 require_once 'CRM/Contribute/DAO/Contribution.php';
152 $dao = new CRM_Contribute_DAO_Contribution();
153 $dao->trxn_id
= $value;
154 if ($dao->find(TRUE)) {
155 preg_match('/(\d+)$/', $name, $matches);
157 $email = $result["l_email{$seq}"];
158 $amt = $result["l_amt{$seq}"];
159 CRM_Core_Error
::debug_log_message("Skipped (already recorded) - $email, $amt, $value ..<p>", TRUE);
163 $keyArgs['transactionid'] = $value;
164 $trxnDetails = CRM_Core_Payment_PayPalImpl
::invokeAPI($keyArgs, $url);
165 if (is_a($trxnDetails, 'CRM_Core_Error')) {
166 echo "PAYPAL ERROR: Skipping transaction id: $value<p>";
170 // only process completed payments
171 if (strtolower($trxnDetails['paymentstatus']) != 'completed') {
175 // only process receipts, not payments
176 if (strtolower($trxnDetails['transactiontype']) == 'sendmoney') {
180 $params = self
::formatAPIParams($trxnDetails,
181 self
::$_paypalParamsMapper,
184 if ($paymentMode == 'test') {
185 $params['transaction']['is_test'] = 1;
188 $params['transaction']['is_test'] = 0;
192 if (self
::processAPIContribution($params)) {
193 CRM_Core_Error
::debug_log_message("Processed - {$trxnDetails['email']}, {$trxnDetails['amt']}, {$value} ..<p>", TRUE);
196 CRM_Core_Error
::debug_log_message("Skipped - {$trxnDetails['email']}, {$trxnDetails['amt']}, {$value} ..<p>", TRUE);
199 catch (CiviCRM_API3_Exception
$e) {
200 CRM_Core_Error
::debug_log_message("Skipped - {$trxnDetails['email']}, {$trxnDetails['amt']}, {$value} ..<p>", TRUE);
204 if ($result['l_errorcode0'] == '11002') {
205 $end = $result['l_timestamp99'];
206 $end_time = strtotime("{$end}", time());
207 $end_date = date('Y-m-d\T00:00:00.00\Z', $end_time);
208 $args['enddate'] = $end_date;
210 } while ($result['l_errorcode0'] == '11002');
213 public static function csv() {
214 $csvFile = '/home/deepak/Desktop/crm-4247.csv';
218 $handle = fopen($csvFile, "r");
220 CRM_Core_Error
::fatal("Can't locate csv file.");
223 require_once "CRM/Contribute/BAO/Contribution/Utils.php";
224 while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
226 $data['header'] = $header;
227 $params = self
::formatAPIParams($data,
228 self
::$_csvParamsMapper,
231 if (self
::processAPIContribution($params)) {
232 CRM_Core_Error
::debug_log_message("Processed - line $row of csv file .. {$params['email']}, {$params['transaction']['total_amount']}, {$params['transaction']['trxn_id']} ..<p>", TRUE);
235 CRM_Core_Error
::debug_log_message("Skipped - line $row of csv file .. {$params['email']}, {$params['transaction']['total_amount']}, {$params['transaction']['trxn_id']} ..<p>", TRUE);
238 // clean up memory from dao's
239 CRM_Core_DAO
::freeResult();
242 // we assuming - first row is always the header line
244 CRM_Core_Error
::debug_log_message("Considering first row ( line $row ) as HEADER ..<p>", TRUE);
246 if (empty($header)) {
247 CRM_Core_Error
::fatal("Header is empty.");
255 public static function process() {
256 require_once 'CRM/Utils/Request.php';
258 $type = CRM_Utils_Request
::retrieve('type', 'String', CRM_Core_DAO
::$_nullObject, FALSE, 'csv', 'REQUEST');
259 $type = strtolower($type);
263 $start = CRM_Utils_Request
::retrieve('start', 'String',
264 CRM_Core_DAO
::$_nullObject, FALSE, 31, 'REQUEST'
266 $end = CRM_Utils_Request
::retrieve('end', 'String',
267 CRM_Core_DAO
::$_nullObject, FALSE, 0, 'REQUEST'
270 CRM_Core_Error
::fatal("Start offset can't be less than End offset.");
273 $start = date('Y-m-d', time() - $start * 24 * 60 * 60) . 'T00:00:00.00Z';
274 $end = date('Y-m-d', time() - $end * 24 * 60 * 60) . 'T23:59:00.00Z';
276 $ppID = CRM_Utils_Request
::retrieve('ppID', 'Integer',
277 CRM_Core_DAO
::$_nullObject, TRUE, NULL, 'REQUEST'
279 $mode = CRM_Utils_Request
::retrieve('ppMode', 'String',
280 CRM_Core_DAO
::$_nullObject, FALSE, 'live', 'REQUEST'
283 $paymentProcessor = CRM_Financial_BAO_PaymentProcessor
::getPayment($ppID, $mode);
285 CRM_Core_Error
::debug_log_message("Start Date=$start, End Date=$end, ppID=$ppID, mode=$mode <p>", TRUE);
287 return self
::$type($paymentProcessor, $mode, $start, $end);
295 * @param array $apiParams
297 * @param string $type
298 * @param bool $category
302 public static function formatAPIParams($apiParams, $mapper, $type = 'paypal', $category = TRUE) {
303 $type = strtolower($type);
305 if (!in_array($type, array(
310 // return the params as is
313 $params = $transaction = array();
315 if ($type == 'paypal') {
316 foreach ($apiParams as $detail => $val) {
317 if (isset($mapper['contact'][$detail])) {
318 $params[$mapper['contact'][$detail]] = $val;
320 elseif (isset($mapper['location'][$detail])) {
321 $params['address'][1][$mapper['location'][$detail]] = $val;
323 elseif (isset($mapper['transaction'][$detail])) {
326 // Sadly, PayPal seems to send two distinct data elements in a single field,
327 // so we break them out here. This is somewhat ugly and tragic.
334 list($frequency_interval, $frequency_unit) = explode(' ', $val);
335 $transaction['frequency_interval'] = $frequency_interval;
336 $transaction['frequency_unit'] = $freqUnits[$frequency_unit];
339 case 'subscriptiondate':
341 // PayPal dates are in ISO-8601 format. We need a format that
343 $unix_timestamp = strtotime($val);
344 $transaction[$mapper['transaction'][$detail]] = date('YmdHis', $unix_timestamp);
351 $val = "[PayPal_field:{$detail}] {$val}";
352 $transaction[$mapper['transaction'][$detail]] = !empty($transaction[$mapper['transaction'][$detail]]) ?
$transaction[$mapper['transaction'][$detail]] . " <br/> " . $val : $val;
357 $transaction[$mapper['transaction'][$detail]] = $val;
362 if (!empty($transaction) && $category) {
363 $params['transaction'] = $transaction;
366 $params +
= $transaction;
369 CRM_Contribute_BAO_Contribution_Utils
::_fillCommonParams($params, $type);
374 if ($type == 'csv') {
375 $header = $apiParams['header'];
376 unset($apiParams['header']);
377 foreach ($apiParams as $key => $val) {
378 if (isset($mapper['contact'][$header[$key]])) {
379 $params[$mapper['contact'][$header[$key]]] = $val;
381 elseif (isset($mapper['location'][$header[$key]])) {
382 $params['address'][1][$mapper['location'][$header[$key]]] = $val;
384 elseif (isset($mapper['transaction'][$header[$key]])) {
385 $transaction[$mapper['transaction'][$header[$key]]] = $val;
388 $params[$header[$key]] = $val;
392 if (!empty($transaction) && $category) {
393 $params['transaction'] = $transaction;
396 $params +
= $transaction;
399 CRM_Contribute_BAO_Contribution_Utils
::_fillCommonParams($params, $type);
407 * @deprecated function.
409 * This function has probably been defunct for quite a long time.
411 * @param array $params
415 public static function processAPIContribution($params) {
416 if (empty($params) ||
array_key_exists('error', $params)) {
420 $params['contact_id'] = CRM_Contact_BAO_Contact
::getFirstDuplicateContact($params, 'Individual', 'Unsupervised', array(), FALSE);
422 $contact = civicrm_api3('Contact', 'create', $params);
424 // only pass transaction params to contribution::create, if available
425 if (array_key_exists('transaction', $params)) {
426 $params = $params['transaction'];
427 $params['contact_id'] = $contact['id'];
430 $params['custom'] = CRM_Core_BAO_CustomField
::postProcess($params,
431 CRM_Utils_Array
::value('id', $params, NULL),
434 // create contribution
436 // if this is a recurring contribution then process it first
437 if ($params['trxn_type'] == 'subscrpayment') {
438 // see if a recurring record already exists
439 $recurring = new CRM_Contribute_BAO_ContributionRecur();
440 $recurring->processor_id
= $params['processor_id'];
441 if (!$recurring->find(TRUE)) {
442 $recurring = new CRM_Contribute_BAO_ContributionRecur();
443 $recurring->invoice_id
= $params['invoice_id'];
444 $recurring->find(TRUE);
447 // This is the same thing the CiviCRM IPN handler does to handle
448 // subsequent recurring payments to avoid duplicate contribution
449 // errors due to invoice ID. See:
450 // ./CRM/Core/Payment/PayPalIPN.php:200
451 if ($recurring->id
) {
452 $params['invoice_id'] = md5(uniqid(rand(), TRUE));
455 $recurring->copyValues($params);
457 if (is_a($recurring, 'CRM_Core_Error')) {
461 $params['contribution_recur_id'] = $recurring->id
;
465 $contribution = CRM_Contribute_BAO_Contribution
::create($params);
466 if (!$contribution->id
) {
475 // bootstrap the environment and run the processor
477 require_once '../civicrm.config.php';
478 require_once 'CRM/Core/Config.php';
479 $config = CRM_Core_Config
::singleton();
481 CRM_Utils_System
::authenticateScript(TRUE);
483 //log the execution of script
484 CRM_Core_Error
::debug_log_message('ContributionProcessor.php');
486 $lock = Civi
::lockManager()->acquire('worker.contribute.CiviContributeProcessor');
488 if ($lock->isAcquired()) {
489 // try to unset any time limits
490 if (!ini_get('safe_mode')) {
494 CiviContributeProcessor
::process();
497 throw new Exception('Could not acquire lock, another CiviContributeProcessor process is running');
502 echo "Done processing<p>";