Merge pull request #13979 from totten/master-phpcbf-2
[civicrm-core.git] / api / v3 / Domain.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 +--------------------------------------------------------------------+
26 */
27
28/**
244bbdd8 29 * This api exposes CiviCRM Domain configuration settings.
6a488035
TO
30 *
31 * @package CiviCRM_APIv3
6a488035
TO
32 */
33
34/**
244bbdd8 35 * Get CiviCRM Domain details.
9d32e6f7 36 *
d0997921 37 * @param array $params
9d32e6f7 38 *
645ee340
EM
39 * @return array
40 * @throws \API_Exception
6a488035
TO
41 */
42function civicrm_api3_domain_get($params) {
43
395d8dc6 44 $params['version'] = CRM_Utils_Array::value('domain_version', $params);
6a488035
TO
45 unset($params['version']);
46
47 $bao = new CRM_Core_BAO_Domain();
a7488080 48 if (!empty($params['current_domain'])) {
6a488035
TO
49 $domainBAO = CRM_Core_Config::domainID();
50 $params['id'] = $domainBAO;
51 }
461c9a60
EM
52 if (!empty($params['options']) && !empty($params['options']['is_count'])) {
53 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
54 }
6a488035 55
244bbdd8
CW
56 _civicrm_api3_dao_set_filter($bao, $params, TRUE);
57 $domains = _civicrm_api3_dao_to_array($bao, $params, TRUE, 'Domain');
6a488035
TO
58
59 foreach ($domains as $domain) {
9b873358 60 if (!empty($domain['contact_id'])) {
cf8f0fff
CW
61 $values = [];
62 $locparams = [
21dfd5f5 63 'contact_id' => $domain['contact_id'],
cf8f0fff 64 ];
6a488035 65 $values['location'] = CRM_Core_BAO_Location::getValues($locparams, TRUE);
cf8f0fff 66 $address_array = [
207f62c6 67 'street_address', 'supplemental_address_1', 'supplemental_address_2', 'supplemental_address_3',
6a488035
TO
68 'city', 'state_province_id', 'postal_code', 'country_id',
69 'geo_code_1', 'geo_code_2',
cf8f0fff 70 ];
6a488035 71
481a74f4 72 if (!empty($values['location']['email'])) {
6a488035
TO
73 $domain['domain_email'] = CRM_Utils_Array::value('email', $values['location']['email'][1]);
74 }
75
481a74f4 76 if (!empty($values['location']['phone'])) {
cf8f0fff 77 $domain['domain_phone'] = [
678bb176 78 'phone_type' => CRM_Core_PseudoConstant::getLabel('CRM_Core_BAO_Phone', 'phone_type_id',
79 CRM_Utils_Array::value(
80 'phone_type_id',
81 $values['location']['phone'][1]
82 )
28a04ea9 83 ),
84 'phone' => CRM_Utils_Array::value(
678bb176 85 'phone',
86 $values['location']['phone'][1]
28a04ea9 87 ),
e29f3512 88 ];
35671d00 89 }
6a488035 90
481a74f4 91 if (!empty($values['location']['address'])) {
35671d00
TO
92 foreach ($address_array as $value) {
93 $domain['domain_address'][$value] = CRM_Utils_Array::value($value,
6a488035 94 $values['location']['address'][1]
35671d00
TO
95 );
96 }
6a488035 97 }
6a488035
TO
98
99 list($domain['from_name'],
100 $domain['from_email']
101 ) = CRM_Core_BAO_Domain::getNameAndEmail(TRUE);
73156a79
JV
102
103 // Rename version to domain_version, see CRM-17430.
104 $domain['domain_version'] = $domain['version'];
105 unset($domain['version']);
6a488035
TO
106 $domains[$domain['id']] = array_merge($domains[$domain['id']], $domain);
107 }
108 }
109
244bbdd8 110 return civicrm_api3_create_success($domains, $params, 'Domain', 'get', $bao);
6a488035 111}
11e09c59
TO
112
113/**
9d32e6f7 114 * Adjust Metadata for Get action.
6a488035 115 *
0aa0303c
EM
116 * The metadata is used for setting defaults, documentation & validation.
117 *
cf470720 118 * @param array $params
b081365f 119 * Array of parameters determined by getfields.
6a488035
TO
120 */
121function _civicrm_api3_domain_get_spec(&$params) {
cf8f0fff 122 $params['current_domain'] = [
b2ed8e73
CW
123 'title' => "Current Domain",
124 'description' => "get loaded domain",
cf8f0fff 125 ];
6a488035
TO
126}
127
128/**
244bbdd8 129 * Create a new Domain.
6a488035
TO
130 *
131 * @param array $params
132 *
133 * @return array
6a488035
TO
134 */
135function civicrm_api3_domain_create($params) {
753f36b3
JV
136 if (isset($params['domain_version'])) {
137 $params['version'] = $params['domain_version'];
138 }
139 else {
35a07880
JV
140 unset($params['version']);
141 }
ddaf2161 142 $result = _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Domain');
73156a79 143
73156a79 144 $result_value = CRM_Utils_Array::first($result['values']);
9f954e37
JV
145 if (isset($result_value['version'])) {
146 // Rename version to domain_version, see CRM-17430.
147 $result_value['domain_version'] = $result_value['version'];
148 unset($result_value['version']);
149 $result['values'][$result['id']] = $result_value;
150 }
73156a79 151 return $result;
6a488035 152}
11e09c59
TO
153
154/**
0aa0303c
EM
155 * Adjust Metadata for Create action.
156 *
157 * The metadata is used for setting defaults, documentation & validation.
6a488035 158 *
cf470720 159 * @param array $params
b081365f 160 * Array of parameters determined by getfields.
6a488035
TO
161 */
162function _civicrm_api3_domain_create_spec(&$params) {
cf8f0fff 163 $params['domain_version'] = [
3301016d
JV
164 'title' => "CiviCRM Version",
165 'description' => "The civicrm version this instance is running",
5fe3f641 166 'type' => CRM_Utils_Type::T_STRING,
cf8f0fff 167 ];
6a488035
TO
168 $params['domain_version']['api.required'] = 1;
169 unset($params['version']);
170 $params['name']['api.required'] = 1;
171}