entity_id = $entityID; $entityTag->entity_table = $entityTable; $entityTag->find(); while ($entityTag->fetch()) { $tags[$entityTag->tag_id] = $entityTag->tag_id; } return $tags; } /** * Takes an associative array and creates a entityTag object. * * the function extract all the params it needs to initialize the create a * group object. the params array could contain additional unused name/value * pairs * * @param array $params * (reference ) an assoc array of name/value pairs. * * @return CRM_Core_BAO_EntityTag */ public static function add(&$params) { $dataExists = self::dataExists($params); if (!$dataExists) { return NULL; } $entityTag = new CRM_Core_BAO_EntityTag(); $entityTag->copyValues($params); // dont save the object if it already exists, CRM-1276 if (!$entityTag->find(TRUE)) { //invoke pre hook CRM_Utils_Hook::pre('create', 'EntityTag', $params['tag_id'], $params); $entityTag->save(); //invoke post hook on entityTag // we are using this format to keep things consistent between the single and bulk operations // so a bit different from other post hooks $object = [0 => [0 => $params['entity_id']], 1 => $params['entity_table']]; CRM_Utils_Hook::post('create', 'EntityTag', $params['tag_id'], $object); } return $entityTag; } /** * Check if there is data to create the object. * * @param array $params * An assoc array of name/value pairs. * * @return bool */ public static function dataExists($params) { return !($params['tag_id'] == 0); } /** * Delete the tag for a contact. * * @param array $params * (reference ) an assoc array of name/value pairs. */ public static function del(&$params) { //invoke pre hook if (!empty($params['tag_id'])) { CRM_Utils_Hook::pre('delete', 'EntityTag', $params['tag_id'], $params); } $entityTag = new CRM_Core_BAO_EntityTag(); $entityTag->copyValues($params); $entityTag->delete(); //invoke post hook on entityTag if (!empty($params['tag_id'])) { $object = [0 => [0 => $params['entity_id']], 1 => $params['entity_table']]; CRM_Utils_Hook::post('delete', 'EntityTag', $params['tag_id'], $object); } } /** * Given an array of entity ids and entity table, add all the entity to the tags. * * @param array $entityIds * (reference ) the array of entity ids to be added. * @param int $tagId * The id of the tag. * @param string $entityTable * Name of entity table default:civicrm_contact. * @param bool $applyPermissions * Should permissions be applied in this function. * * @return array * (total, added, notAdded) count of entities added to tag */ public static function addEntitiesToTag(&$entityIds, $tagId, $entityTable, $applyPermissions) { $numEntitiesAdded = 0; $numEntitiesNotAdded = 0; $entityIdsAdded = []; //invoke pre hook for entityTag $preObject = [$entityIds, $entityTable]; CRM_Utils_Hook::pre('create', 'EntityTag', $tagId, $preObject); foreach ($entityIds as $entityId) { // CRM-17350 - check if we have permission to edit the contact // that this tag belongs to. if ($applyPermissions && !self::checkPermissionOnEntityTag($entityId, $entityTable)) { $numEntitiesNotAdded++; continue; } $tag = new CRM_Core_DAO_EntityTag(); $tag->entity_id = $entityId; $tag->tag_id = $tagId; $tag->entity_table = $entityTable; if (!$tag->find()) { $tag->save(); $entityIdsAdded[] = $entityId; $numEntitiesAdded++; } else { $numEntitiesNotAdded++; } } //invoke post hook on entityTag $object = [$entityIdsAdded, $entityTable]; CRM_Utils_Hook::post('create', 'EntityTag', $tagId, $object); CRM_Contact_BAO_GroupContactCache::opportunisticCacheFlush(); return [count($entityIds), $numEntitiesAdded, $numEntitiesNotAdded]; } /** * Basic check for ACL permission on editing/creating/removing a tag. * * In the absence of something better contacts get a proper check and other entities * default to 'edit all contacts'. This is currently only accessed from the api which previously * applied edit all contacts to all - so while still too restrictive it represents a loosening. * * Current possible entities are attachments, activities, cases & contacts. * * @param int $entityID * @param string $entityTable * * @return bool */ public static function checkPermissionOnEntityTag($entityID, $entityTable) { if ($entityTable == 'civicrm_contact') { return CRM_Contact_BAO_Contact_Permission::allow($entityID, CRM_Core_Permission::EDIT); } else { return CRM_Core_Permission::check('edit all contacts'); } } /** * Given an array of entity ids and entity table, remove entity(s)tags. * * @param array $entityIds * (reference ) the array of entity ids to be removed. * @param int $tagId * The id of the tag. * @param string $entityTable * Name of entity table default:civicrm_contact. * @param bool $applyPermissions * Should permissions be applied in this function. * * @return array * (total, removed, notRemoved) count of entities removed from tags */ public static function removeEntitiesFromTag(&$entityIds, $tagId, $entityTable, $applyPermissions) { $numEntitiesRemoved = 0; $numEntitiesNotRemoved = 0; $entityIdsRemoved = []; //invoke pre hook for entityTag $preObject = [$entityIds, $entityTable]; CRM_Utils_Hook::pre('delete', 'EntityTag', $tagId, $preObject); foreach ($entityIds as $entityId) { // CRM-17350 - check if we have permission to edit the contact // that this tag belongs to. if ($applyPermissions && !self::checkPermissionOnEntityTag($entityId, $entityTable)) { $numEntitiesNotRemoved++; continue; } $tag = new CRM_Core_DAO_EntityTag(); $tag->entity_id = $entityId; $tag->tag_id = $tagId; $tag->entity_table = $entityTable; if ($tag->find()) { $tag->delete(); $entityIdsRemoved[] = $entityId; $numEntitiesRemoved++; } else { $numEntitiesNotRemoved++; } } //invoke post hook on entityTag $object = [$entityIdsRemoved, $entityTable]; CRM_Utils_Hook::post('delete', 'EntityTag', $tagId, $object); CRM_Contact_BAO_GroupContactCache::opportunisticCacheFlush(); return [count($entityIds), $numEntitiesRemoved, $numEntitiesNotRemoved]; } /** * Takes an associative array and creates tag entity record for all tag entities. * * @param array $params * (reference) an assoc array of name/value pairs. * @param string $entityTable * @param int $entityID */ public static function create(&$params, $entityTable, $entityID) { // get categories for the entity id $entityTag = CRM_Core_BAO_EntityTag::getTag($entityID, $entityTable); // get the list of all the categories $allTag = CRM_Core_BAO_Tag::getTags($entityTable); // this fix is done to prevent warning generated by array_key_exits incase of empty array is given as input if (!is_array($params)) { $params = []; } // this fix is done to prevent warning generated by array_key_exits incase of empty array is given as input if (!is_array($entityTag)) { $entityTag = []; } // check which values has to be inserted/deleted for contact foreach ($allTag as $key => $varValue) { $tagParams['entity_table'] = $entityTable; $tagParams['entity_id'] = $entityID; $tagParams['tag_id'] = $key; if (array_key_exists($key, $params) && !array_key_exists($key, $entityTag)) { // insert a new record CRM_Core_BAO_EntityTag::add($tagParams); } elseif (!array_key_exists($key, $params) && array_key_exists($key, $entityTag)) { // delete a record for existing contact CRM_Core_BAO_EntityTag::del($tagParams); } } } /** * This function returns all entities assigned to a specific tag. * * @param object $tag * An object of a tag. * * @return array * array of entity ids */ public function getEntitiesByTag($tag) { $entityIds = []; $entityTagDAO = new CRM_Core_DAO_EntityTag(); $entityTagDAO->tag_id = $tag->id; $entityTagDAO->find(); while ($entityTagDAO->fetch()) { $entityIds[] = $entityTagDAO->entity_id; } return $entityIds; } /** * Get contact tags. * * @param int $contactID * @param bool $count * * @return array */ public static function getContactTags($contactID, $count = FALSE) { $contactTags = []; if (!$count) { $select = "SELECT ct.id, ct.name "; } else { $select = "SELECT count(*) as cnt"; } $query = "{$select} FROM civicrm_tag ct INNER JOIN civicrm_entity_tag et ON ( ct.id = et.tag_id AND et.entity_id = {$contactID} AND et.entity_table = 'civicrm_contact' AND ct.is_tagset = 0 )"; $dao = CRM_Core_DAO::executeQuery($query); if ($count) { $dao->fetch(); return $dao->cnt; } while ($dao->fetch()) { $contactTags[$dao->id] = $dao->name; } return $contactTags; } /** * Get child contact tags given parentId. * * @param int $parentId * @param int $entityId * @param string $entityTable * * @return array */ public static function getChildEntityTags($parentId, $entityId, $entityTable = 'civicrm_contact') { $entityTags = []; $query = "SELECT ct.id as tag_id, name FROM civicrm_tag ct INNER JOIN civicrm_entity_tag et ON ( et.entity_id = {$entityId} AND et.entity_table = '{$entityTable}' AND et.tag_id = ct.id) WHERE ct.parent_id = {$parentId}"; $dao = CRM_Core_DAO::executeQuery($query); while ($dao->fetch()) { $entityTags[$dao->tag_id] = [ 'id' => $dao->tag_id, 'name' => $dao->name, ]; } return $entityTags; } /** * Merge two tags * * Tag A will inherit all of tag B's properties. * Tag B will be deleted. * * @param int $tagAId * @param int $tagBId * * @return array */ public function mergeTags($tagAId, $tagBId) { $queryParams = [ 1 => [$tagAId, 'Integer'], 2 => [$tagBId, 'Integer'], ]; // re-compute used_for field $query = "SELECT id, name, used_for FROM civicrm_tag WHERE id IN (%1, %2)"; $dao = CRM_Core_DAO::executeQuery($query, $queryParams); $tags = []; while ($dao->fetch()) { $label = ($dao->id == $tagAId) ? 'tagA' : 'tagB'; $tags[$label] = $dao->name; $tags["{$label}_used_for"] = $dao->used_for ? explode(",", $dao->used_for) : []; } $usedFor = array_merge($tags["tagA_used_for"], $tags["tagB_used_for"]); $usedFor = implode(',', array_unique($usedFor)); $tags["used_for"] = explode(",", $usedFor); // get all merge queries together $sqls = [ // 1. update entity tag entries "UPDATE IGNORE civicrm_entity_tag SET tag_id = %1 WHERE tag_id = %2", // 2. move children "UPDATE civicrm_tag SET parent_id = %1 WHERE parent_id = %2", // 3. update used_for info for tag A & children "UPDATE civicrm_tag SET used_for = '{$usedFor}' WHERE id = %1 OR parent_id = %1", // 4. delete tag B "DELETE FROM civicrm_tag WHERE id = %2", // 5. remove duplicate entity tag records "DELETE et2.* from civicrm_entity_tag et1 INNER JOIN civicrm_entity_tag et2 ON et1.entity_table = et2.entity_table AND et1.entity_id = et2.entity_id AND et1.tag_id = et2.tag_id WHERE et1.id < et2.id", // 6. remove orphaned entity_tags "DELETE FROM civicrm_entity_tag WHERE tag_id = %2", ]; $tables = ['civicrm_entity_tag', 'civicrm_tag']; // Allow hook_civicrm_merge() to add SQL statements for the merge operation AND / OR // perform any other actions like logging CRM_Utils_Hook::merge('sqls', $sqls, $tagAId, $tagBId, $tables); // call the SQL queries in one transaction $transaction = new CRM_Core_Transaction(); foreach ($sqls as $sql) { CRM_Core_DAO::executeQuery($sql, $queryParams, TRUE, NULL, TRUE); } $transaction->commit(); $tags['status'] = TRUE; return $tags; } /** * Get options for a given field. * * @see CRM_Core_DAO::buildOptions * @see CRM_Core_DAO::buildOptionsContext * * @param string $fieldName * @param string $context * As per CRM_Core_DAO::buildOptionsContext. * @param array $props * whatever is known about this dao object. * * @return array|bool */ public static function buildOptions($fieldName, $context = NULL, $props = []) { $params = []; if ($fieldName == 'tag' || $fieldName == 'tag_id') { if (!empty($props['entity_table'])) { $entity = CRM_Utils_Type::escape($props['entity_table'], 'String'); $params[] = "used_for LIKE '%$entity%'"; } // Output tag list as nested hierarchy // TODO: This will only work when api.entity is "entity_tag". What about others? if ($context == 'search' || $context == 'create') { $dummyArray = []; return CRM_Core_BAO_Tag::getTags(CRM_Utils_Array::value('entity_table', $props, 'civicrm_contact'), $dummyArray, CRM_Utils_Array::value('parent_id', $params), '- '); } } $options = CRM_Core_PseudoConstant::get(__CLASS__, $fieldName, $params, $context); // Special formatting for validate/match context if ($fieldName == 'entity_table' && in_array($context, ['validate', 'match'])) { $options = []; foreach (self::buildOptions($fieldName) as $tableName => $label) { $bao = CRM_Core_DAO_AllCoreTables::getClassForTable($tableName); $apiName = CRM_Core_DAO_AllCoreTables::getBriefName($bao); $options[$tableName] = $apiName; } } return $options; } }