ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilTreeTrashQueries.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 
13 {
14  protected const QUERY_LIMIT = 10;
15 
19  private $ref_id = 0;
20 
21 
22  private $tree = null;
23 
27  private $logger;
28 
32  private $db;
33 
38  public function __construct()
39  {
40  global $DIC;
41 
42 
43  $this->db = $DIC->database();
44  $this->logger = $DIC->logger()->tree();
45 
46  $this->tree = $DIC->repositoryTree();
47  }
48 
53  public function isTrashedTrash(array $ref_ids)
54  {
55  global $DIC;
56 
57  $tree = $DIC->repositoryTree();
58 
59  $query = 'select tree,child,parent from tree ' .
60  'where ' . $this->db->in('child', $ref_ids, false, \ilDBConstants::T_INTEGER);
61  $res = $this->db->query($query);
62  $trashed_trash = false;
63  while ($row = $res->fetchRow(\ilDBConstants::FETCHMODE_OBJECT)) {
64  if ((int) $row->child != ((int) $row->tree * -1)) {
65  $trashed_trash = true;
66  }
67  if ($tree->isDeleted($row->parent)) {
68  $trashed_trash = true;
69  }
70  }
71  return $trashed_trash;
72  }
73 
79  public function findRepositoryLocationForDeletedNode(int $deleted_node)
80  {
81  $query = 'select parent from tree ' .
82  'where child = ' . $this->db->quote($deleted_node, \ilDBConstants::T_INTEGER) . ' ' .
83  'and tree = ' . $this->db->quote($deleted_node * -1, \ilDBConstants::T_INTEGER);
84  $this->logger->info($query);
85  $res = $this->db->query($query);
86  while ($row = $res->fetchRow(\ilDBConstants::FETCHMODE_OBJECT)) {
87  return $row->parent;
88  }
89  $this->logger->warning('Invalid node given for restoring to original location: deleted node id: ' . $deleted_node);
90  throw new \ilRepositoryException('Invalid node given for restoring to original location');
91  }
92 
98  {
99  $subtreequery = $this->tree->getTrashSubTreeQuery($ref_id, ['child']);
100 
101  $query = 'select distinct(type) obj_type from object_data obd ' .
102  'join object_reference obr on obd.obj_id = obr.obj_id ' .
103  'where ref_id in (' .
104  $subtreequery . ' ' .
105  ') ';
106 
107  $this->logger->dump($query);
108 
109  $res = $this->db->query($query);
110  $obj_types = [];
111  while ($row = $res->fetchRow(\ilDBConstants::FETCHMODE_OBJECT)) {
112  $obj_types[] = $row->obj_type;
113  }
114  return $obj_types;
115  }
116 
122  {
123  $res = $this->db->query($this->tree->getTrashSubTreeQuery($ref_id, ['child']));
124  return (int) $res->numRows();
125  }
126 
139  public function getTrashNodeForContainer(
140  int $ref_id,
141  array $filter,
142  int &$max_entries,
143  string $order_field,
144  string $order_direction,
145  int $limit = self::QUERY_LIMIT,
146  int $offset = 0
147  ) {
148  $subtreequery = $this->tree->getTrashSubTreeQuery($ref_id, ['child']);
149 
150  $select = 'select ref_id, obd.obj_id, type, title, description, deleted, deleted_by ';
151  $select_count = 'select count(ref_id) max_entries ';
152 
153  $from = 'from object_data obd ' .
154  'join object_reference obr on obd.obj_id = obr.obj_id ' .
155  'where ref_id in (' .
156  $subtreequery . ' ' .
157  ') ';
158 
159  $order = ' ';
160  if ($order_field) {
161  $order = 'ORDER BY ' . $order_field . ' ' . $order_direction;
162  }
163 
164  $query = $select . $from . $this->appendTrashNodeForContainerQueryFilter($filter) . $order;
165  $query_count = $select_count . $from . $this->appendTrashNodeForContainerQueryFilter($filter);
166 
167 
168  $this->logger->dump($query);
169 
173  $res_max_entries = $this->db->query($query_count);
174  while ($max_entries_row = $res_max_entries->fetchRow(\ilDBConstants::FETCHMODE_OBJECT)) {
175  $max_entries = $max_entries_row->max_entries;
176  }
177 
178  $this->db->setLimit($limit, $offset);
179  $res = $this->db->query($query);
180 
181 
182  $items = [];
183  while ($row = $res->fetchRow(\ilDBConstants::FETCHMODE_OBJECT)) {
184  $item = new \ilTreeTrashItem();
185  $item->setObjId($row->obj_id);
186  $item->setRefId($row->ref_id);
187  $item->setTitle($row->title);
188  $item->setDescription($row->description);
189  $item->setType($row->type);
190  $item->setDeleted($row->deleted);
191  $item->setDeletedBy($row->deleted_by);
192 
193  $items[] = $item;
194  }
195  return $items;
196  }
197 
198 
199 
206  {
207  $query = 'with recursive trash (child,tree) as ' .
208  '( select child, tree from tree where child = ' . $this->db->quote($ref_id, \ilDBConstants::T_INTEGER) . ' ' .
209  'union select tc.child,tc.tree from tree tc join tree tp on tp.child = tc.parent ) ' .
210  'select * from trash where tree < 1 ';
211 
212  $trash_ids = [];
213 
214  try {
215  $res = $this->db->query($query);
216  while ($row = $res->fetchRow(\ilDBConstants::FETCHMODE_OBJECT)) {
217  $trash_ids[] = $row->child;
218  }
219  } catch (\ilDatabaseException $e) {
220  $this->logger->warning($query . ' is not supported');
221  }
222  }
223 
228  protected function appendTrashNodeForContainerQueryFilter(array $filter) : string
229  {
230  $query = '';
231  if (isset($filter['type'])) {
232  $query .= 'and ' . $this->db->like(
233  'type',
235  $filter['type'] . '%'
236  ) . ' ';
237  }
238  if (isset($filter['title'])) {
239  $query .= 'and ' . $this->db->like(
240  'title',
242  '%' . $filter['title'] . '%'
243  ) . ' ';
244  }
245  if (
246  $filter['deleted']['from'] instanceof \ilDate &&
247  $filter['deleted']['to'] instanceof \ilDate) {
248  $query .= ('and deleted between ' .
249  $this->db->quote($filter['deleted']['from']->get(\IL_CAL_DATE), \ilDBConstants::T_TEXT) . ' and ' .
250  $this->db->quote($filter['deleted']['to']->get(IL_CAL_DATE), \ilDBConstants::T_TEXT) . ' ');
251  } elseif ($filter['deleted']['from'] instanceof \ilDate) {
252  $query .= 'and deleted >= ' . $this->db->quote($filter['deleted']['from']->get(IL_CAL_DATE), \ilDBConstants::T_TEXT) . ' ';
253  } elseif ($filter['deleted']['to'] instanceof \ilDate) {
254  $query .= 'and deleted <= ' . $this->db->quote($filter['deleted']['to']->get(IL_CAL_DATE), \ilDBConstants::T_TEXT) . ' ';
255  }
256 
257  if (isset($filter['deleted_by']) && !empty($filter['deleted_by'])) {
258  $usr_id = \ilObjUser::_lookupId($filter['deleted_by']);
259  if ($usr_id > 0) {
260  $query .= 'and deleted_by = ' . $this->db->quote($usr_id, \ilDBConstants::T_INTEGER) . ' ';
261  }
262  }
263 
264  return $query;
265  }
266 }
getTrashNodeForContainer(int $ref_id, array $filter, int &$max_entries, string $order_field, string $order_direction, int $limit=self::QUERY_LIMIT, int $offset=0)
Get trashed nodes.
appendTrashNodeForContainerQueryFilter(array $filter)
getTrashedNodeTypesForContainer(int $ref_id)
getTrashedNodesForContainerUsingRecursion(int $ref_id)
Unfortunately not supported by mysql 5.
static _lookupId($a_user_str)
Lookup id by login.
Class ilDatabaseException.
__construct()
ilTreeTrash constructor.
Class for single dates.
foreach($_POST as $key=> $value) $res
global $DIC
Definition: goto.php:24
findRepositoryLocationForDeletedNode(int $deleted_node)
getNumberOfTrashedNodesForTrashedContainer(int $ref_id)
$query
const IL_CAL_DATE