Merge pull request #10245 from agh1/4.7.19-releasenotes
[civicrm-core.git] / api / v3 / MembershipStatus.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
1f4ea726 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 +--------------------------------------------------------------------+
26 */
27
28/**
c28e1768 29 * This api exposes CiviCRM membership status.
6a488035
TO
30 *
31 * @package CiviCRM_APIv3
6a488035
TO
32 */
33
6a488035 34/**
d1b0d05e 35 * Create a Membership Status.
6a488035 36 *
cf470720 37 * @param array $params
d1b0d05e 38 * Array of name/value property values of civicrm_membership_status.
6a488035 39 *
a6c01b45 40 * @return array
6a488035
TO
41 */
42function civicrm_api3_membership_status_create($params) {
43 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
44}
45
4f94e3fa
MM
46/**
47 * Adjust Metadata for Create action.
48 *
49 * The metadata is used for setting defaults, documentation & validation.
50 *
51 * @param array $params
52 * Array of parameters determined by getfields.
53 */
54function _civicrm_api3_membership_status_create_spec(&$params) {
55 $params['name']['api.required'] = 1;
56}
57
6a488035
TO
58/**
59 * Get a membership status.
60 *
61 * This api is used for finding an existing membership status.
62 *
cf470720
TO
63 * @param array $params
64 * An associative array of name/value property values of civicrm_membership_status.
6a488035 65 *
16b10e64
CW
66 * @return array
67 * Array of all found membership status property values.
6a488035
TO
68 */
69function civicrm_api3_membership_status_get($params) {
70 return _civicrm_api3_basic_get('CRM_Member_BAO_MembershipStatus', $params);
71}
72
73/**
d1b0d05e 74 * Update an existing membership status.
6a488035
TO
75 *
76 * This api is used for updating an existing membership status.
b081365f 77 * Required parameters: id of a membership status
6a488035 78 *
2241036a 79 * @param array $params
dc64d047
EM
80 * Array of name/value property values of civicrm_membership_status.
81 *
6a488035
TO
82 * @deprecated - should just use create
83 *
a6c01b45 84 * @return array
16b10e64 85 * Array of updated membership status property values
6a488035 86 */
d1b0d05e 87function civicrm_api3_membership_status_update($params) {
6a488035
TO
88
89 civicrm_api3_verify_mandatory($params, NULL, array('id'));
90 //don't allow duplicate names.
91 $name = CRM_Utils_Array::value('name', $params);
92 if ($name) {
6a488035
TO
93 $status = new CRM_Member_DAO_MembershipStatus();
94 $status->name = $params['name'];
95 if ($status->find(TRUE) && $status->id != $params['id']) {
96 return civicrm_api3_create_error(ts('A membership status with this name already exists.'));
97 }
98 }
99
6a488035
TO
100 $membershipStatusBAO = new CRM_Member_BAO_MembershipStatus();
101 $membershipStatusBAO->id = $params['id'];
102 if ($membershipStatusBAO->find(TRUE)) {
103 $fields = $membershipStatusBAO->fields();
104 foreach ($fields as $name => $field) {
105 if (array_key_exists($name, $params)) {
106 $membershipStatusBAO->$name = $params[$name];
107 }
108 }
109 $membershipStatusBAO->save();
110 }
111 $membershipStatus = array();
112 _civicrm_api3_object_to_array(clone($membershipStatusBAO), $membershipStatus);
113 $membershipStatus['is_error'] = 0;
114 return $membershipStatus;
115}
116
117/**
22242c87 118 * Deletes an existing membership status.
6a488035
TO
119 *
120 * This API is used for deleting a membership status
121 *
decce855 122 * @param array $params
a6c01b45 123 * @return array
8089541a
SL
124 * @throws API_Exception
125 * @throws CRM_Core_Exception
6a488035
TO
126 */
127function civicrm_api3_membership_status_delete($params) {
128
129 $memberStatusDelete = CRM_Member_BAO_MembershipStatus::del($params['id'], TRUE);
a60c0bc8
SL
130 if ($memberStatusDelete) {
131 throw new API_Exception($memberStatusDelete['error_message']);
132 }
133 return civicrm_api3_create_success();
6a488035
TO
134}
135
136/**
22242c87 137 * Derives the Membership Status of a given Membership Record.
6a488035
TO
138 *
139 * This API is used for deriving Membership Status of a given Membership
140 * record using the rules encoded in the membership_status table.
141 *
100fef9d 142 * @param array $membershipParams
77b97be7
EM
143 *
144 * @throws API_Exception
6a488035 145 *
317fceb4 146 * @return array
72b3a70c 147 * Array of status id and status name
6a488035
TO
148 */
149function civicrm_api3_membership_status_calc($membershipParams) {
6a488035 150 if (!($membershipID = CRM_Utils_Array::value('membership_id', $membershipParams))) {
5f11bbcc 151 throw new API_Exception('membershipParams do not contain membership_id');
6a488035
TO
152 }
153
22e263ad 154 if (empty($membershipParams['id'])) {
5f11bbcc
EM
155 //for consistency lets make sure id is set as this will get passed to hooks downstream
156 $membershipParams['id'] = $membershipID;
157 }
6a488035 158 $query = "
5f11bbcc 159SELECT start_date, end_date, join_date, membership_type_id
6a488035
TO
160 FROM civicrm_membership
161 WHERE id = %1
162";
163
164 $params = array(1 => array($membershipID, 'Integer'));
5f11bbcc 165 $dao = CRM_Core_DAO::executeQuery($query, $params);
6a488035 166 if ($dao->fetch()) {
5f11bbcc
EM
167 $membershipTypeID = empty($membershipParams['membership_type_id']) ? $dao->membership_type_id : $membershipParams['membership_type_id'];
168 $result = CRM_Member_BAO_MembershipStatus::getMembershipStatusByDate($dao->start_date, $dao->end_date, $dao->join_date, 'today', CRM_Utils_Array::value('ignore_admin_only', $membershipParams), $membershipTypeID, $membershipParams);
6a488035 169 //make is error zero only when valid status found.
a7488080 170 if (!empty($result['id'])) {
6a488035
TO
171 $result['is_error'] = 0;
172 }
173 }
174 else {
5f11bbcc
EM
175 $dao->free();
176 throw new API_Exception('did not find a membership record');
6a488035
TO
177 }
178 $dao->free();
179 return $result;
180}