Merge pull request #19291 from eileenmcnaughton/prof
[civicrm-core.git] / ext / search / Civi / Search / Admin.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 namespace Civi\Search;
13
14 /**
15 * Class Admin
16 * @package Civi\Search
17 */
18 class Admin {
19
20 /**
21 * @return array
22 */
23 public static function getAdminSettings():array {
24 $schema = self::getSchema();
25 return [
26 'schema' => $schema,
27 'joins' => self::getJoins(array_column($schema, NULL, 'name')),
28 'operators' => \CRM_Utils_Array::makeNonAssociative(self::getOperators()),
29 'functions' => \CRM_Api4_Page_Api4Explorer::getSqlFunctions(),
30 'displayTypes' => Display::getDisplayTypes(['name', 'label', 'description', 'icon']),
31 ];
32 }
33
34 /**
35 * @return string[]
36 */
37 public static function getOperators():array {
38 return [
39 '=' => '=',
40 '!=' => '≠',
41 '>' => '>',
42 '<' => '<',
43 '>=' => '≥',
44 '<=' => '≤',
45 'CONTAINS' => ts('Contains'),
46 'IN' => ts('Is One Of'),
47 'NOT IN' => ts('Not One Of'),
48 'LIKE' => ts('Is Like'),
49 'NOT LIKE' => ts('Not Like'),
50 'BETWEEN' => ts('Is Between'),
51 'NOT BETWEEN' => ts('Not Between'),
52 'IS NULL' => ts('Is Null'),
53 'IS NOT NULL' => ts('Not Null'),
54 ];
55 }
56
57 /**
58 * Fetch all entities the current user has permission to `get`
59 * @return array
60 */
61 public static function getSchema() {
62 $schema = [];
63 $entities = \Civi\Api4\Entity::get()
64 ->addSelect('name', 'title', 'type', 'title_plural', 'description', 'icon', 'paths', 'dao', 'bridge')
65 ->addWhere('searchable', '=', TRUE)
66 ->addOrderBy('title_plural')
67 ->setChain([
68 'get' => ['$name', 'getActions', ['where' => [['name', '=', 'get']]], ['params']],
69 ])->execute();
70 $getFields = ['name', 'label', 'description', 'options', 'input_type', 'input_attrs', 'data_type', 'serialize', 'fk_entity'];
71 foreach ($entities as $entity) {
72 // Skip if entity doesn't have a 'get' action or the user doesn't have permission to use get
73 if ($entity['get']) {
74 // Add paths (but only RUD actions) with translated titles
75 foreach ($entity['paths'] as $action => $path) {
76 unset($entity['paths'][$action]);
77 switch ($action) {
78 case 'view':
79 $title = ts('View %1', [1 => $entity['title']]);
80 break;
81
82 case 'update':
83 $title = ts('Edit %1', [1 => $entity['title']]);
84 break;
85
86 case 'delete':
87 $title = ts('Delete %1', [1 => $entity['title']]);
88 break;
89
90 default:
91 continue 2;
92 }
93 $entity['paths'][] = [
94 'path' => $path,
95 'title' => $title,
96 'action' => $action,
97 ];
98 }
99 $entity['fields'] = (array) civicrm_api4($entity['name'], 'getFields', [
100 'select' => $getFields,
101 'where' => [['name', 'NOT IN', ['api_key', 'hash']]],
102 'orderBy' => ['label'],
103 ]);
104 $params = $entity['get'][0];
105 // Entity must support at least these params or it is too weird for search kit
106 if (!array_diff(['select', 'where', 'orderBy', 'limit', 'offset'], array_keys($params))) {
107 \CRM_Utils_Array::remove($params, 'checkPermissions', 'debug', 'chain', 'language', 'select', 'where', 'orderBy', 'limit', 'offset');
108 unset($entity['get']);
109 $schema[] = ['params' => array_keys($params)] + array_filter($entity);
110 }
111 }
112 }
113 return $schema;
114 }
115
116 /**
117 * @param array $allowedEntities
118 * @return array
119 */
120 public static function getJoins(array $allowedEntities) {
121 $joins = [];
122 foreach ($allowedEntities as $entity) {
123 if (!empty($entity['dao'])) {
124 /* @var \CRM_Core_DAO $daoClass */
125 $daoClass = $entity['dao'];
126 $references = $daoClass::getReferenceColumns();
127 // Only the first bridge reference gets processed, so if it's dynamic we want to be sure it's first in the list
128 usort($references, function($reference) {
129 return is_a($reference, 'CRM_Core_Reference_Dynamic') ? -1 : 1;
130 });
131 $fields = array_column($entity['fields'], NULL, 'name');
132 $bridge = in_array('EntityBridge', $entity['type']) ? $entity['name'] : NULL;
133 foreach ($references as $reference) {
134 $keyField = $fields[$reference->getReferenceKey()] ?? NULL;
135 // Exclude any joins that are better represented by pseudoconstants
136 if (is_a($reference, 'CRM_Core_Reference_OptionValue')
137 || !$keyField || !empty($keyField['options'])
138 // Limit bridge joins to just the first
139 || $bridge && array_search($keyField['name'], $entity['bridge']) !== 0
140 // Sanity check - table should match
141 || $daoClass::getTableName() !== $reference->getReferenceTable()
142 ) {
143 continue;
144 }
145 foreach ($reference->getTargetEntities() as $targetTable => $targetEntityName) {
146 if (!isset($allowedEntities[$targetEntityName]) || $targetEntityName === $entity['name']) {
147 continue;
148 }
149 $targetEntity = $allowedEntities[$targetEntityName];
150 // Dynamic references use a column like "entity_table"
151 $dynamicCol = $reference->getTypeColumn();
152 // Non-bridge joins directly between 2 entities
153 if (!$bridge) {
154 // Add the straight 1-1 join
155 $alias = $entity['name'] . '_' . $targetEntityName . '_' . $keyField['name'];
156 $joins[$entity['name']][] = [
157 'label' => $entity['title'] . ' ' . $targetEntity['title'],
158 'description' => $dynamicCol ? '' : $keyField['label'],
159 'entity' => $targetEntityName,
160 'conditions' => self::getJoinConditions($keyField['name'], $alias . '.' . $reference->getTargetKey(), $targetTable, $dynamicCol),
161 'alias' => $alias,
162 'multi' => FALSE,
163 ];
164 // Flip the conditions & add the reverse (1-n) join
165 $alias = $targetEntityName . '_' . $entity['name'] . '_' . $keyField['name'];
166 $joins[$targetEntityName][] = [
167 'label' => $targetEntity['title'] . ' ' . $entity['title_plural'],
168 'description' => $dynamicCol ? '' : $keyField['label'],
169 'entity' => $entity['name'],
170 'conditions' => self::getJoinConditions($reference->getTargetKey(), $alias . '.' . $keyField['name'], $targetTable, $dynamicCol ? $alias . '.' . $dynamicCol : NULL),
171 'alias' => $alias,
172 'multi' => TRUE,
173 ];
174 }
175 // Bridge joins (sanity check - bridge must specify exactly 2 FK fields)
176 elseif (count($entity['bridge']) === 2) {
177 // Get the other entity being linked through this bridge
178 $baseKey = array_search($reference->getReferenceKey(), $entity['bridge']) ? $entity['bridge'][0] : $entity['bridge'][1];
179 $baseEntity = $allowedEntities[$fields[$baseKey]['fk_entity']] ?? NULL;
180 if (!$baseEntity) {
181 continue;
182 }
183 // Add joins for the two entities that connect through this bridge (n-n)
184 $symmetric = $baseEntity['name'] === $targetEntityName;
185 $targetsTitle = $symmetric ? $allowedEntities[$bridge]['title_plural'] : $targetEntity['title_plural'];
186 $alias = $baseEntity['name'] . "_{$bridge}_" . $targetEntityName;
187 $joins[$baseEntity['name']][] = [
188 'label' => $baseEntity['title'] . ' ' . $targetsTitle,
189 'description' => ts('Multiple %1 per %2', [1 => $targetsTitle, 2 => $baseEntity['title']]),
190 'entity' => $targetEntityName,
191 'conditions' => array_merge(
192 [$bridge],
193 self::getJoinConditions('id', $alias . '.' . $baseKey, NULL, NULL)
194 ),
195 'bridge' => $bridge,
196 'alias' => $alias,
197 'multi' => TRUE,
198 ];
199 if (!$symmetric) {
200 $alias = $targetEntityName . "_{$bridge}_" . $baseEntity['name'];
201 $joins[$targetEntityName][] = [
202 'label' => $targetEntity['title'] . ' ' . $baseEntity['title_plural'],
203 'description' => ts('Multiple %1 per %2', [1 => $baseEntity['title_plural'], 2 => $targetEntity['title']]),
204 'entity' => $baseEntity['name'],
205 'conditions' => array_merge(
206 [$bridge],
207 self::getJoinConditions($reference->getTargetKey(), $alias . '.' . $keyField['name'], $targetTable, $dynamicCol ? $alias . '.' . $dynamicCol : NULL)
208 ),
209 'bridge' => $bridge,
210 'alias' => $alias,
211 'multi' => TRUE,
212 ];
213 }
214 }
215 }
216 }
217 }
218 }
219 return $joins;
220 }
221
222 /**
223 * Boilerplate join clause
224 *
225 * @param string $nearCol
226 * @param string $farCol
227 * @param string $targetTable
228 * @param string|null $dynamicCol
229 * @return array[]
230 */
231 private static function getJoinConditions($nearCol, $farCol, $targetTable, $dynamicCol) {
232 $conditions = [
233 [
234 $nearCol,
235 '=',
236 $farCol,
237 ],
238 ];
239 if ($dynamicCol) {
240 $conditions[] = [
241 $dynamicCol,
242 '=',
243 "'$targetTable'",
244 ];
245 }
246 return $conditions;
247 }
248
249 }