Add BAO function and hook for checkAccess
[civicrm-core.git] / Civi / Api4 / Generic / DAODeleteAction.php
CommitLineData
19b53e5b
C
1<?php
2
380f3545
TO
3/*
4 +--------------------------------------------------------------------+
41498ac5 5 | Copyright CiviCRM LLC. All rights reserved. |
380f3545 6 | |
41498ac5
TO
7 | This work is published under the GNU AGPLv3 license with some |
8 | permitted exceptions and without any warranty. For full license |
9 | and copyright information, see https://civicrm.org/licensing |
380f3545
TO
10 +--------------------------------------------------------------------+
11 */
12
13/**
14 *
15 * @package CRM
ca5cec67 16 * @copyright CiviCRM LLC https://civicrm.org/licensing
380f3545
TO
17 */
18
19
19b53e5b
C
20namespace Civi\Api4\Generic;
21
22/**
e3c6d5ff 23 * Delete one or more $ENTITIES.
fc95d9a5 24 *
e3c6d5ff 25 * $ENTITIES are deleted based on criteria specified in `where` parameter (required).
19b53e5b
C
26 */
27class DAODeleteAction extends AbstractBatchAction {
28 use Traits\DAOActionTrait;
29
30 /**
31 * Batch delete function
32 */
33 public function _run(Result $result) {
34 $defaults = $this->getParamDefaults();
8a0c3604 35 if ($defaults['where'] && $this->where === $defaults['where']) {
19b53e5b
C
36 throw new \API_Exception('Cannot delete ' . $this->getEntityName() . ' with no "where" parameter specified');
37 }
38
3c7c8fa6 39 $items = $this->getBatchRecords();
8a0c3604
CW
40 if ($items) {
41 $result->exchangeArray($this->deleteObjects($items));
19b53e5b 42 }
19b53e5b
C
43 }
44
45 /**
46 * @param $items
47 * @return array
48 * @throws \API_Exception
49 */
50 protected function deleteObjects($items) {
51 $ids = [];
52 $baoName = $this->getBaoName();
53
54 if ($this->getCheckPermissions()) {
2ee9afab
CW
55 foreach (array_keys($items) as $key) {
56 $items[$key]['check_permissions'] = TRUE;
57 $this->checkContactPermissions($baoName, $items[$key]);
19b53e5b
C
58 }
59 }
60
61 if ($this->getEntityName() !== 'EntityTag' && method_exists($baoName, 'del')) {
62 foreach ($items as $item) {
63 $args = [$item['id']];
64 $bao = call_user_func_array([$baoName, 'del'], $args);
65 if ($bao !== FALSE) {
66 $ids[] = ['id' => $item['id']];
67 }
68 else {
69 throw new \API_Exception("Could not delete {$this->getEntityName()} id {$item['id']}");
70 }
71 }
72 }
73 else {
236f858e
CW
74 foreach ($baoName::deleteRecords($items) as $instance) {
75 $ids[] = ['id' => $instance->id];
19b53e5b
C
76 }
77 }
78 return $ids;
79 }
80
81}