Merge pull request #12557 from eileenmcnaughton/activity
[civicrm-core.git] / CRM / Core / Payment / Dummy.php
CommitLineData
6a488035
TO
1<?php
2/*
3 * Copyright (C) 2007
4 * Licensed to CiviCRM under the Academic Free License version 3.0.
5 *
6 * Written and contributed by Ideal Solution, LLC (http://www.idealso.com)
7 *
8 */
9
10/**
11 *
12 * @package CRM
13 * @author Marshal Newrock <marshal@idealso.com>
14 * $Id: Dummy.php 45429 2013-02-06 22:11:18Z lobo $
15 */
16
c866eb5f
TO
17/**
18 * Dummy payment processor
6a488035
TO
19 */
20class CRM_Core_Payment_Dummy extends CRM_Core_Payment {
7da04cde 21 const CHARSET = 'iso-8859-1';
6a488035
TO
22
23 protected $_mode = NULL;
24
25 protected $_params = array();
f8fe0df6 26 protected $_doDirectPaymentResult = array();
27
28 /**
eca28728
EM
29 * Set result from do Direct Payment for test purposes.
30 *
f8fe0df6 31 * @param array $doDirectPaymentResult
eca28728 32 * Result to be returned from test.
f8fe0df6 33 */
34 public function setDoDirectPaymentResult($doDirectPaymentResult) {
35 $this->_doDirectPaymentResult = $doDirectPaymentResult;
9d0f10b7 36 if (empty($this->_doDirectPaymentResult['trxn_id'])) {
f44bbd1d 37 $this->_doDirectPaymentResult['trxn_id'] = array();
9d0f10b7
EM
38 }
39 else {
40 $this->_doDirectPaymentResult['trxn_id'] = (array) $doDirectPaymentResult['trxn_id'];
41 }
f8fe0df6 42 }
6a488035
TO
43
44 /**
45 * We only need one instance of this object. So we use the singleton
46 * pattern and cache the instance in this variable
47 *
48 * @var object
6a488035
TO
49 */
50 static private $_singleton = NULL;
51
52 /**
fe482240 53 * Constructor.
6a488035 54 *
6a0b768e
TO
55 * @param string $mode
56 * The mode of operation: live or test.
6a488035 57 *
77b97be7
EM
58 * @param $paymentProcessor
59 *
60 * @return \CRM_Core_Payment_Dummy
6a488035 61 */
00be9182 62 public function __construct($mode, &$paymentProcessor) {
6a488035
TO
63 $this->_mode = $mode;
64 $this->_paymentProcessor = $paymentProcessor;
65 $this->_processorName = ts('Dummy Processor');
66 }
67
6a488035 68 /**
fe482240 69 * Submit a payment using Advanced Integration Method.
6a488035 70 *
6a0b768e
TO
71 * @param array $params
72 * Assoc array of input parameters for this transaction.
6a488035 73 *
a6c01b45
CW
74 * @return array
75 * the result in a nice formatted array (or an error object)
6a488035 76 */
00be9182 77 public function doDirectPayment(&$params) {
6a488035
TO
78 // Invoke hook_civicrm_paymentProcessor
79 // In Dummy's case, there is no translation of parameters into
80 // the back-end's canonical set of parameters. But if a processor
81 // does this, it needs to invoke this hook after it has done translation,
82 // but before it actually starts talking to its proprietary back-end.
3a1f9fd3 83 if (!empty($params['is_recur'])) {
84 $throwAnENoticeIfNotSetAsTheseAreRequired = $params['frequency_interval'] . $params['frequency_unit'];
85 }
6a488035
TO
86 // no translation in Dummy processor
87 $cookedParams = $params;
88 CRM_Utils_Hook::alterPaymentProcessorParams($this,
89 $params,
90 $cookedParams
91 );
7758bd2b
EM
92 // This means we can test failing transactions by setting a past year in expiry. A full expiry check would
93 // be more complete.
5a89b539 94 if (!empty($params['credit_card_exp_date']['Y']) && date('Y') >
7758bd2b
EM
95 CRM_Core_Payment_Form::getCreditCardExpirationYear($params)) {
96 $error = new CRM_Core_Error(ts('transaction failed'));
97 return $error;
98 }
f8fe0df6 99 //end of hook invocation
100 if (!empty($this->_doDirectPaymentResult)) {
9d0f10b7
EM
101 $result = $this->_doDirectPaymentResult;
102 $result['trxn_id'] = array_shift($this->_doDirectPaymentResult['trxn_id']);
103 return $result;
f8fe0df6 104 }
6a488035 105 if ($this->_mode == 'test') {
353ffa53
TO
106 $query = "SELECT MAX(trxn_id) FROM civicrm_contribution WHERE trxn_id LIKE 'test\\_%'";
107 $p = array();
108 $trxn_id = strval(CRM_Core_Dao::singleValueQuery($query, $p));
109 $trxn_id = str_replace('test_', '', $trxn_id);
110 $trxn_id = intval($trxn_id) + 1;
24dc4331 111 $params['trxn_id'] = 'test_' . $trxn_id . '_' . uniqid();
6a488035
TO
112 }
113 else {
353ffa53
TO
114 $query = "SELECT MAX(trxn_id) FROM civicrm_contribution WHERE trxn_id LIKE 'live_%'";
115 $p = array();
116 $trxn_id = strval(CRM_Core_Dao::singleValueQuery($query, $p));
117 $trxn_id = str_replace('live_', '', $trxn_id);
118 $trxn_id = intval($trxn_id) + 1;
24dc4331 119 $params['trxn_id'] = 'live_' . $trxn_id . '_' . uniqid();
6a488035
TO
120 }
121 $params['gross_amount'] = $params['amount'];
3a2251cf
DG
122 // Add a fee_amount so we can make sure fees are handled properly in underlying classes.
123 $params['fee_amount'] = 1.50;
124 $params['net_amount'] = $params['gross_amount'] - $params['fee_amount'];
125
6a488035
TO
126 return $params;
127 }
128
fbcb6fba 129 /**
3e473c0b 130 * Are back office payments supported.
131 *
132 * E.g paypal standard won't permit you to enter a credit card associated with someone else's login.
133 *
fbcb6fba
EM
134 * @return bool
135 */
d8ce0d68 136 protected function supportsLiveMode() {
50d71c08 137 return TRUE;
fbcb6fba
EM
138 }
139
6c786a9b 140 /**
eca28728
EM
141 * Generate error object.
142 *
143 * Throwing exceptions is preferred over this.
144 *
145 * @param string $errorCode
146 * @param string $errorMessage
6c786a9b 147 *
eca28728
EM
148 * @return CRM_Core_Error
149 * Error object.
6c786a9b 150 */
00be9182 151 public function &error($errorCode = NULL, $errorMessage = NULL) {
6a488035
TO
152 $e = CRM_Core_Error::singleton();
153 if ($errorCode) {
154 $e->push($errorCode, 0, NULL, $errorMessage);
155 }
156 else {
157 $e->push(9001, 0, NULL, 'Unknown System Error.');
158 }
159 return $e;
160 }
161
162 /**
fe482240 163 * This function checks to see if we have the right config values.
6a488035 164 *
a6c01b45
CW
165 * @return string
166 * the error message if any
6a488035 167 */
00be9182 168 public function checkConfig() {
6a488035
TO
169 return NULL;
170 }
96025800 171
10df056e 172 /**
173 * Get an array of the fields that can be edited on the recurring contribution.
174 *
175 * Some payment processors support editing the amount and other scheduling details of recurring payments, especially
176 * those which use tokens. Others are fixed. This function allows the processor to return an array of the fields that
177 * can be updated from the contribution recur edit screen.
178 *
179 * The fields are likely to be a subset of these
180 * - 'amount',
181 * - 'installments',
182 * - 'frequency_interval',
183 * - 'frequency_unit',
184 * - 'cycle_day',
185 * - 'next_sched_contribution_date',
186 * - 'end_date',
187 * - 'failure_retry_day',
188 *
189 * The form does not restrict which fields from the contribution_recur table can be added (although if the html_type
190 * metadata is not defined in the xml for the field it will cause an error.
191 *
192 * Open question - would it make sense to return membership_id in this - which is sometimes editable and is on that
193 * form (UpdateSubscription).
194 *
195 * @return array
196 */
197 public function getEditableRecurringScheduleFields() {
198 return array('amount', 'next_sched_contribution_date');
199 }
200
6a488035 201}