19 declare(strict_types=1);
41 private int $status = self::MAPPING_UNMAPPED;
47 $this->db = $DIC->database();
49 $this->obj_id = $a_obj_id;
53 public static function treeExists(
int $a_server_id,
int $a_mid,
int $a_tree_id): bool
59 $query =
'SELECT COUNT(*) num FROM ecs_cms_data ' .
60 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
61 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
62 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer');
76 public static function findDeletedNodes(
int $a_server_id,
int $a_mid,
int $a_tree_id): array
82 $query =
'SELECT ed.obj_id obj_id FROM ecs_cms_data ed ' .
83 'LEFT JOIN ecs_cms_tree et ON ed.obj_id = et.child ' .
84 'WHERE et.child IS NULL ' .
85 'AND server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
86 'AND mid = ' .
$ilDB->quote($a_mid) .
' ' .
87 'AND tree_id = ' .
$ilDB->quote($a_tree_id);
92 $deleted[] = $row->obj_id;
97 public static function lookupObjId(
int $a_server_id,
int $a_mid,
int $a_tree_id,
string $cms_id):
int 101 $ilDB = $DIC[
'ilDB'];
102 $logger = $DIC->logger()->wsrv();
104 $query =
'SELECT obj_id FROM ecs_cms_data ' .
105 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
106 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
107 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
108 'AND cms_id = ' .
$ilDB->quote($cms_id,
'text');
111 $logger->debug($query);
126 $ilDB = $DIC->database();
127 $logger = $DIC->logger()->wsrv();
129 $logger->debug($a_server_id .
' ' . $a_mid .
' ' . $cms_id);
131 $query =
'SELECT tree_id FROM ecs_cms_data ' .
132 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
133 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
134 'AND cms_id = ' .
$ilDB->quote($cms_id,
'text') .
' ' .
139 return $row->tree_id;
147 public static function lookupTitle(
int $a_server_id,
int $a_mid,
int $a_tree_id): string
151 $ilDB = $DIC[
'ilDB'];
153 $query =
'SELECT * FROM ecs_cms_data ' .
154 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
155 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
156 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer');
167 public static function lookupTopTerm(
int $a_server_id,
int $a_mid,
int $a_tree_id): string
171 $ilDB = $DIC[
'ilDB'];
173 $query =
'SELECT term FROM ecs_cms_data ' .
174 'JOIN ecs_cms_tree ON obj_id = child ' .
175 'WHERE tree = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
176 'AND server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
177 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
178 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
194 $ilDB = $DIC[
'ilDB'];
196 $query =
'SELECT status,deleted FROM ecs_cms_data ' .
197 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
198 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
199 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
200 'AND obj_id = ' .
$ilDB->quote($obj_id,
'integer');
204 return self::MAPPING_DELETED;
206 return (
int) $row->status;
208 return self::MAPPING_UNMAPPED;
218 $ilDB = $DIC[
'ilDB'];
220 $query =
'SELECT status FROM ecs_cms_data ' .
221 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
222 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
223 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
224 'AND cms_id = ' .
$ilDB->quote($cms_id,
'text');
227 return (
int) $row->status;
229 return self::MAPPING_UNMAPPED;
232 public static function updateStatus(
int $a_server_id,
int $a_mid,
int $a_tree_id): void
235 self::writeAllStatus($a_server_id, $a_mid, $a_tree_id, self::MAPPING_UNMAPPED);
240 $subIds = self::lookupCmsIds(array_merge($cmsTree->getSubTreeIds($assignment), array($assignment)));
257 $cms_ids = self::lookupCmsIds(array($a_obj_id));
269 $ilDB = $DIC[
'ilDB'];
271 $query =
'SELECT cms_id FROM ecs_cms_data ' .
272 'WHERE ' .
$ilDB->in(
'obj_id', $a_obj_ids,
false,
'integer');
277 $cms_ids[] = $row->cms_id;
286 $ilDB = $DIC[
'ilDB'];
288 $query =
'SELECT cms_id FROM ecs_cms_data ' .
289 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
290 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
291 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer');
295 $cms_ids[] = $row->cms_id;
303 public static function writeStatus($a_server_id, $a_mid, $a_tree_id, $cms_ids, $status): bool
307 $ilDB = $DIC[
'ilDB'];
309 $query =
'UPDATE ecs_cms_data ' .
310 'SET status = ' .
$ilDB->quote($status,
'integer') .
' ' .
311 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
312 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
313 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ' .
314 'AND ' .
$ilDB->in(
'cms_id', $cms_ids,
false,
'text');
315 $ilDB->manipulate($query);
322 public static function writeAllStatus($a_server_id, $a_mid, $a_tree_id, $status): bool
326 $ilDB = $DIC[
'ilDB'];
328 $query =
'UPDATE ecs_cms_data ' .
329 'SET status = ' .
$ilDB->quote($status,
'integer') .
' ' .
330 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
331 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
332 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ';
333 $ilDB->manipulate($query);
340 public static function writeAllDeleted($a_server_id, $a_mid, $a_tree_id, $a_deleted_flag): bool
344 $ilDB = $DIC[
'ilDB'];
346 $query =
'UPDATE ecs_cms_data ' .
347 'SET deleted = ' .
$ilDB->quote($a_deleted_flag,
'integer') .
' ' .
348 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
349 'AND mid = ' .
$ilDB->quote($a_mid,
'integer') .
' ' .
350 'AND tree_id = ' .
$ilDB->quote($a_tree_id,
'integer') .
' ';
351 $ilDB->manipulate($query);
364 $ilDB = $DIC[
'ilDB'];
366 $query =
'SELECT DISTINCT(tree_id) tid FROM ecs_cms_data ' .
367 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer') .
' ' .
368 'AND mid = ' .
$ilDB->quote($a_mid,
'integer');
373 $tree_ids[] = (
int) $row->tid;
381 $this->title = $a_title;
391 $this->term = $a_term;
401 $this->obj_id = $a_id;
411 $this->cms_id = $a_id;
421 $this->server_id = $a_id;
431 $this->tree_id = $a_id;
451 $this->status = $a_status;
461 $this->deleted = $a_is_deleted;
472 $this->obj_id = $this->db->nextId(
'ecs_cms_data');
474 $query =
'INSERT INTO ecs_cms_data (obj_id,server_id,mid,tree_id,cms_id,title,term,status,deleted) ' .
476 $this->db->quote($this->obj_id,
'integer') .
', ' .
477 $this->db->quote($this->server_id,
'integer') .
', ' .
478 $this->db->quote($this->mid,
'integer') .
', ' .
479 $this->db->quote($this->tree_id,
'integer') .
', ' .
480 $this->db->quote($this->cms_id,
'text') .
', ' .
481 $this->db->quote($this->title,
'text') .
', ' .
482 $this->db->quote($this->term,
'text') .
', ' .
483 $this->db->quote($this->status,
'integer') .
', ' .
484 $this->db->quote($this->deleted,
'integer') .
' ' .
486 $this->db->manipulate($query);
492 $query =
"UPDATE ecs_cms_data SET " .
493 'title = ' . $this->db->quote($this->title,
'text') .
', ' .
494 'term = ' . $this->db->quote($this->term,
'text') .
', ' .
495 'status = ' . $this->db->quote($this->status,
'text') .
', ' .
496 'deleted = ' . $this->db->quote($this->
isDeleted(),
'integer') .
' ' .
497 'WHERE obj_id = ' . $this->db->quote($this->obj_id,
'integer');
498 $this->db->manipulate($query);
501 public function delete():
void 503 $query =
"DELETE FROM ecs_cms_data " .
504 'WHERE obj_id = ' . $this->db->quote($this->obj_id,
'integer');
505 $this->db->manipulate($query);
510 $query =
"DELETE FROM ecs_cms_data " .
511 'WHERE server_id = ' . $this->db->quote($this->server_id,
'integer') .
' ' .
512 'AND mid = ' . $this->db->quote($this->mid,
'integer') .
' ' .
513 'AND tree_id = ' . $this->db->quote($this->tree_id,
'integer') .
' ';
514 $this->db->manipulate($query);
521 $ilDB = $DIC[
'ilDB'];
523 $query =
"DELETE FROM ecs_cms_data " .
524 'WHERE server_id = ' .
$ilDB->quote($a_server_id,
'integer');
525 $ilDB->manipulate($query);
528 protected function read(): void
530 $query =
'SELECT * FROM ecs_cms_data ' .
531 'WHERE obj_id = ' . $this->db->quote($this->obj_id,
'integer');
532 $res = $this->db->query($query);
534 $this->title = $row->title;
535 $this->term = $row->term;
536 $this->server_id = $row->server_id;
537 $this->mid = $row->mid;
538 $this->tree_id = $row->tree_id;
539 $this->cms_id = $row->cms_id;
540 $this->status = $row->status;
541 $this->deleted = $row->deleted;
static lookupCmsIdsOfTree($a_server_id, $a_mid, $a_tree_id)
const MAPPING_PENDING_DISCONNECTABLE
static writeAllDeleted($a_server_id, $a_mid, $a_tree_id, $a_deleted_flag)
Write deleted status.
static lookupTreeIds(int $a_server_id, int $a_mid)
setDeleted($a_is_deleted)
__construct(int $a_obj_id=0)
static lookupAssignmentIds(int $a_server_id, int $a_mid, int $a_tree_id)
Lookup assignments.
static treeExists(int $a_server_id, int $a_mid, int $a_tree_id)
static lookupObjId(int $a_server_id, int $a_mid, int $a_tree_id, string $cms_id)
static updateStatus(int $a_server_id, int $a_mid, int $a_tree_id)
static findDeletedNodes(int $a_server_id, int $a_mid, int $a_tree_id)
Find deleted nodes Uses a left join since this is more robust.
static lookupFirstTreeOfNode($a_server_id, $a_mid, $cms_id)
Lookup first obj_id of cms node.
static lookupStatusByObjId(int $a_server_id, int $a_mid, int $a_tree_id, int $obj_id)
Lookup status.
static lookupTopTerm(int $a_server_id, int $a_mid, int $a_tree_id)
Lookup term (highest term in cms tree)
static writeAllStatus($a_server_id, $a_mid, $a_tree_id, $status)
Update status.
static lookupCmsIds(array $a_obj_ids)
static lookupTitle(int $a_server_id, int $a_mid, int $a_tree_id)
Lookup title by obj id.
static lookupStatusByCmsId(int $a_server_id, int $a_mid, int $a_tree_id, string $cms_id)
Lookup status.
static lookupCmsId($a_obj_id)
Lookup cms id.
static writeStatus($a_server_id, $a_mid, $a_tree_id, $cms_ids, $status)
Update status.
const MAPPING_PENDING_NOT_DISCONNECTABLE
static deleteByServerId($a_server_id)