Merge pull request #10822 from amsharma9/master
[civicrm-core.git] / CRM / Financial / BAO / PaymentProcessorType.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
0f03f337 6 | Copyright CiviCRM LLC (c) 2004-2017 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
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. |
13 | |
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. |
18 | |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
0f03f337 31 * @copyright CiviCRM LLC (c) 2004-2017
6a488035
TO
32 */
33class CRM_Financial_BAO_PaymentProcessorType extends CRM_Financial_DAO_PaymentProcessorType {
34
35 /**
fe482240 36 * Static holder for the default payment processor.
6a488035
TO
37 */
38 static $_defaultPaymentProcessorType = NULL;
39
40 /**
fe482240 41 * Class constructor.
6a488035 42 */
00be9182 43 public function __construct() {
6a488035
TO
44 parent::__construct();
45 }
46
47 /**
fe482240 48 * Fetch object based on array of properties.
6a488035 49 *
ed5dd492
TO
50 * @param array $params
51 * (reference ) an assoc array of name/value pairs.
52 * @param array $defaults
53 * (reference ) an assoc array to hold the flattened values.
6a488035 54 *
cded2ebf 55 * @return CRM_Core_BAO_LocationType|null
16b10e64 56 * object on success, null otherwise
6a488035 57 */
00be9182 58 public static function retrieve(&$params, &$defaults) {
6a488035
TO
59 $paymentProcessorType = new CRM_Financial_DAO_PaymentProcessorType();
60 $paymentProcessorType->copyValues($params);
61 if ($paymentProcessorType->find(TRUE)) {
62 CRM_Core_DAO::storeValues($paymentProcessorType, $defaults);
63 return $paymentProcessorType;
64 }
65 return NULL;
66 }
67
68 /**
fe482240 69 * Update the is_active flag in the db.
6a488035 70 *
ed5dd492
TO
71 * @param int $id
72 * Id of the database record.
73 * @param bool $is_active
74 * Value we want to set the is_active field.
6a488035 75 *
a6c01b45 76 * @return Object
b44e3f84 77 * DAO object on success, null otherwise
6a488035 78 *
6a488035 79 */
00be9182 80 public static function setIsActive($id, $is_active) {
6a488035
TO
81 return CRM_Core_DAO::setFieldValue('CRM_Financial_DAO_PaymentProcessorType', $id, 'is_active', $is_active);
82 }
83
84 /**
fe482240 85 * Retrieve the default payment processor.
6a488035 86 *
a6c01b45
CW
87 * @return object
88 * The default payment processor object on success,
6a488035 89 * null otherwise
6a488035 90 */
00be9182 91 public static function &getDefault() {
6a488035
TO
92 if (self::$_defaultPaymentProcessorType == NULL) {
93 $params = array('is_default' => 1);
94 $defaults = array();
95 self::$_defaultPaymentProcessorType = self::retrieve($params, $defaults);
96 }
97 return self::$_defaultPaymentProcessorType;
98 }
99
100 /**
100fef9d 101 * Add the payment-processor type in the db
6a488035 102 *
ed5dd492
TO
103 * @param array $params
104 * (reference ) an assoc array of name/value pairs.
77b97be7
EM
105 *
106 * @throws Exception
c490a46a 107 * @return CRM_Financial_DAO_PaymentProcessorType
6a488035 108 */
00be9182 109 public static function create(&$params) {
6a488035
TO
110 $paymentProcessorType = new CRM_Financial_DAO_PaymentProcessorType();
111 $paymentProcessorType->copyValues($params);
112
006389de 113 /* @codingStandardsIgnoreStart
6a488035
TO
114 // adapted from CRM_Core_Extensions_Payment::install
115 foreach (array(
116 'class_name',
117 'title',
118 'name',
119 'description',
120 'user_name_label',
121 'password_label',
122 'signature_label',
123 'subject_label',
124 'url_site_default',
125 'url_api_default',
126 'url_recur_default',
127 'url_site_test_default',
128 'url_api_test_default',
129 'url_recur_test_default',
130 'url_button_default',
131 'url_button_test_default',
132 'billing_mode',
133 'is_recur',
134 'payment_type'
006389de 135 ) as $trimmable) {
6a488035
TO
136 if (isset($paymentProcessorType->{$trimmable})) {
137 $paymentProcessorType->{$trimmable} = trim($paymentProcessorType->{$trimmable});
138 }
139 }
006389de 140 @codingStandardsIgnoreEnd */
6a488035
TO
141
142 if (isset($paymentProcessorType->billing_mode)) {
143 // ugh unidirectional manipulation
144 if (!is_numeric($paymentProcessorType->billing_mode)) {
5973d43c 145 $billingModes = array_flip(self::buildOptions('billing_mode'));
6a488035
TO
146 if (array_key_exists($paymentProcessorType->billing_mode, $billingModes)) {
147 $paymentProcessorType->billing_mode = $billingModes[$paymentProcessorType->billing_mode];
148 }
149 }
5973d43c 150 if (!array_key_exists($paymentProcessorType->billing_mode, self::buildOptions('billing_mode'))) {
6a488035
TO
151 throw new Exception("Unrecognized billing_mode");
152 }
153 }
154
155 // FIXME handle is_default
156 if (!empty($paymentProcessorType->id)) {
157 $ppByName = self::getAllPaymentProcessorTypes('name');
158 if (array_key_exists($paymentProcessorType->name, $ppByName)) {
159 if ($ppByName[$paymentProcessorType->name] != $paymentProcessorType->id) {
160 CRM_Core_Error::fatal('This payment processor type already exists.');
161 }
162 }
163 }
164
165 return $paymentProcessorType->save();
166 }
167
168 /**
fe482240 169 * Delete payment processor.
6a488035 170 *
ed5dd492
TO
171 * @param int $paymentProcessorTypeId
172 * ID of the processor to be deleted.
6a488035 173 *
ae5ffbb7 174 * @return bool|NULL
6a488035 175 */
00be9182 176 public static function del($paymentProcessorTypeId) {
6a488035
TO
177 $query = "
178SELECT pp.id processor_id
179FROM civicrm_payment_processor pp, civicrm_payment_processor_type ppt
180WHERE pp.payment_processor_type_id = ppt.id AND ppt.id = %1";
181
182 $params = array(1 => array($paymentProcessorTypeId, 'Integer'));
183 $dao = CRM_Core_DAO::executeQuery($query, $params);
184
185 if ($dao->fetch()) {
186 CRM_Core_Session::setStatus(ts('There is a Payment Processor associated with selected Payment Processor type, hence it can not be deleted.'), ts('Deletion Error'), 'error');
ae5ffbb7 187 return NULL;
6a488035
TO
188 }
189
190 $paymentProcessorType = new CRM_Financial_DAO_PaymentProcessorType();
191 $paymentProcessorType->id = $paymentProcessorTypeId;
192 if ($paymentProcessorType->delete()) {
d3e86119 193 CRM_Core_Session::setStatus(ts('Selected Payment Processor type has been deleted.<br/>'), '', 'success');
6a488035
TO
194 return TRUE;
195 }
196 }
197
e0ef6999
EM
198 /**
199 * @param $attr
200 *
201 * @return array
202 */
6a488035
TO
203 static private function getAllPaymentProcessorTypes($attr) {
204 $ppt = array();
205 $dao = new CRM_Financial_DAO_PaymentProcessorType();
206 $dao->find();
207 while ($dao->fetch()) {
208 $ppt[$dao->$attr] = $dao->id;
209 }
210 return $ppt;
211 }
5973d43c 212
6a488035 213}