Merge pull request #7978 from eileenmcnaughton/CRM-18240
[civicrm-core.git] / api / v3 / EntityTag.php
CommitLineData
6a488035 1<?php
6a488035
TO
2/*
3 +--------------------------------------------------------------------+
81621fee 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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/**
244bbdd8
CW
29 * This api exposes CiviCRM EntityTag records.
30 *
31 * Use this api to add/remove tags from a contact/activity/etc.
32 * To create/update/delete the tags themselves, use the Tag api.
6a488035
TO
33 *
34 * @package CiviCRM_APIv3
6a488035
TO
35 */
36
6a488035 37/**
0965e988 38 * Get entity tags.
6a488035
TO
39 *
40 * @param array $params
41 *
42 * @return array
43 */
44function civicrm_api3_entity_tag_get($params) {
45
22e263ad 46 if (empty($params['entity_id'])) {
283c85e9 47 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
48 }
92e4c2a5 49 else {
283c85e9 50 //do legacy non-standard behaviour
51 $values = CRM_Core_BAO_EntityTag::getTag($params['entity_id'], $params['entity_table']);
424616b8 52
283c85e9 53 $result = array();
54 foreach ($values as $v) {
55 $result[$v] = array('tag_id' => $v);
56 }
244bbdd8 57 return civicrm_api3_create_success($result, $params, 'EntityTag');
6a488035 58 }
6a488035 59}
11e09c59
TO
60
61/**
0965e988
EM
62 * Adjust Metadata for Get action.
63 *
64 * The metadata is used for setting defaults, documentation & validation.
6a488035 65 *
cf470720 66 * @param array $params
b081365f 67 * Array of parameters determined by getfields.
6a488035
TO
68 */
69function _civicrm_api3_entity_tag_get_spec(&$params) {
6a488035
TO
70 $params['entity_id']['api.aliases'] = array('contact_id');
71 $params['entity_table']['api.default'] = 'civicrm_contact';
72}
73
6a488035 74/**
0965e988 75 * Create an entity tag.
6a488035
TO
76 *
77 * @param array $params
78 *
79 * @return array
6a488035
TO
80 */
81function civicrm_api3_entity_tag_create($params) {
6a488035
TO
82 return _civicrm_api3_entity_tag_common($params, 'add');
83}
84
85/**
0965e988 86 * Mark entity tag as removed.
6a488035
TO
87 *
88 * @param array $params
89 *
90 * @return array
91 */
92function civicrm_api3_entity_tag_delete($params) {
93
94 return _civicrm_api3_entity_tag_common($params, 'remove');
95}
11e09c59
TO
96
97/**
0965e988
EM
98 * Modify metadata.
99 *
d0997921 100 * @param array $params
6a488035
TO
101 */
102function _civicrm_api3_entity_tag_delete_spec(&$params) {
103 // set as not required as tag_id also acceptable & no either/or std yet
104 $params['id']['api.required'] = 0;
105}
106
107/**
0965e988 108 * Helper function for formatting tags (part of api v2 legacy).
6a488035 109 *
72b3a70c 110 * @param array $params
77b97be7 111 * @param string $op
6a488035 112 *
a6c01b45 113 * @return array
6a488035
TO
114 */
115function _civicrm_api3_entity_tag_common($params, $op = 'add') {
116
117 $entityIDs = array();
6a488035
TO
118 $entityTable = 'civicrm_contact';
119 if (is_array($params)) {
120 foreach ($params as $n => $v) {
121 if ((substr($n, 0, 10) == 'contact_id') || (substr($n, 0, 9) == 'entity_id')) {
122 $entityIDs[] = $v;
123 }
124 elseif (substr($n, 0, 6) == 'tag_id') {
125 $tagIDs[] = $v;
126 }
127 elseif (substr($n, 0, 12) == 'entity_table') {
128 $entityTable = $v;
129 }
130 }
131 }
424616b8 132
6a488035
TO
133 if (empty($entityIDs)) {
134 return civicrm_api3_create_error('contact_id is a required field');
135 }
136
137 if (empty($tagIDs)) {
bff5783c
WDC
138 if ($op == 'remove') {
139 $tagIDs = array_keys(CRM_Core_BAO_EntityTag::getContactTags($entityIDs[0]));
140 }
141 else {
142 return civicrm_api3_create_error('tag_id is a required field');
143 }
6a488035
TO
144 }
145
146 $values = array('is_error' => 0);
147 if ($op == 'add') {
148 $values['total_count'] = $values['added'] = $values['not_added'] = 0;
149 foreach ($tagIDs as $tagID) {
424616b8 150 list($te, $a, $na) = CRM_Core_BAO_EntityTag::addEntitiesToTag($entityIDs, $tagID, $entityTable,
151 CRM_Utils_Array::value('check_permissions', $params));
6a488035
TO
152 $values['total_count'] += $te;
153 $values['added'] += $a;
154 $values['not_added'] += $na;
155 }
156 }
157 else {
158 $values['total_count'] = $values['removed'] = $values['not_removed'] = 0;
159 foreach ($tagIDs as $tagID) {
424616b8 160 list($te, $r, $nr) = CRM_Core_BAO_EntityTag::removeEntitiesFromTag($entityIDs, $tagID, $entityTable, CRM_Utils_Array::value('check_permissions', $params));
6a488035
TO
161 $values['total_count'] += $te;
162 $values['removed'] += $r;
163 $values['not_removed'] += $nr;
164 }
165 }
166 return $values;
167}