19 declare(strict_types=1);
36 $this->db = $DIC->database();
45 if (!isset(self::$instance)) {
48 return self::$instance;
59 $query =
'SELECT * from ecs_import ' .
60 'WHERE server_id = ' . $this->db->quote($a_server_id,
'integer') .
' ' .
61 'AND mid = ' . $this->db->quote($a_mid,
'integer') .
' ' .
62 'AND econtent_id = ' . $this->db->quote($a_econtent_id,
'text');
63 $res = $this->db->query($query);
65 return $row->content_id;
75 $query =
"SELECT obj_id FROM ecs_import " .
76 "WHERE content_id = " . $this->db->quote($a_content_id,
'integer') .
" " .
77 "&& mid = " . $this->db->quote($a_mid,
'integer') .
" " .
78 '&& server_id = ' . $this->db->quote($a_server_id,
'integer') .
' ';
80 if (!is_null($a_sub_id)) {
81 $query .=
'AND sub_id = ' . $this->db->quote($a_sub_id,
'text');
83 $query .=
'AND sub_id IS NULL';
85 $res = $this->db->query($query);
88 return (
int) $row->obj_id;
95 $query =
"SELECT obj_id FROM ecs_import " .
96 "WHERE content_id = " . $this->db->quote($a_content_id,
'integer');
98 $res = $this->db->query($query);
102 $obj_ids[] = $row->obj_id;
114 $query =
'SELECT * from ecs_import ' .
115 'WHERE server_id = ' . $this->db->quote($a_server_id,
'integer') .
' ' .
116 'AND mid = ' . $this->db->quote($a_mid,
'integer') .
' ' .
117 'AND content_id = ' . $this->db->quote($a_content_id,
'text');
118 $res = $this->db->query($query);
120 return (
int) $row->econtent_id;
132 $query =
"SELECT * FROM ecs_import ei JOIN object_data obd ON ei.obj_id = obd.obj_id " .
133 'WHERE server_id = ' . $this->db->quote($a_server_id) .
' ' .
135 $res = $this->db->query($query);
137 $all[$row->econtent_id] = $row->obj_id;
151 $query =
"SELECT * FROM ecs_import " .
152 "WHERE mid = " . $this->db->quote($a_mid,
'integer') .
" " .
153 'AND server_id = ' . $this->db->quote($a_server_id,
'integer');
155 $res = $this->db->query($query);
158 $obj_ids[] = $row->obj_id;
168 $query =
"SELECT * FROM ecs_import WHERE obj_id = " . $this->db->quote($a_obj_id,
'integer') .
" ";
169 $res = $this->db->query($query);
171 return $row->econtent_id;
181 $query =
'SELECT * FROM ecs_import WHERE obj_id = ' . $this->db->quote($a_obj_id,
'integer');
182 $res = $this->db->query($query);
184 return (
int) $row->server_id;
195 $query =
"SELECT obj_id FROM ecs_import WHERE econtent_id = " . $this->db->quote($a_econtent_id,
'text') .
" " .
196 'AND server_id = ' . $this->db->quote($a_server_id,
'integer');
197 $res = $this->db->query($query);
200 $obj_ids[] = (
int) $row->obj_id;
208 public function _lookupObjId(
int $a_server_id,
string $a_econtent_id,
int $a_mid, ?
string $a_sub_id =
null):
int 210 $query =
"SELECT obj_id FROM ecs_import " .
211 "WHERE econtent_id = " . $this->db->quote($a_econtent_id,
'text') .
" " .
212 "AND mid = " . $this->db->quote($a_mid,
'integer') .
" " .
213 'AND server_id = ' . $this->db->quote($a_server_id,
'integer') .
' ';
215 if (!is_null($a_sub_id)) {
216 $query .=
'AND sub_id = ' . $this->db->quote($a_sub_id,
'text');
218 $query .=
'AND sub_id IS NULL';
220 $res = $this->db->query($query);
223 return (
int) $row->obj_id;
235 $query =
"DELETE FROM ecs_import " .
236 "WHERE obj_id = " . $this->db->quote($a_obj_id,
'integer') .
" ";
237 $this->db->manipulate($query);
246 $query =
'DELETE FROM ecs_import ' .
247 'WHERE server_id = ' . $this->db->quote($a_server_id,
'integer');
248 $this->db->manipulate($query);
256 public function deleteRessources(
int $a_server_id,
int $a_mid, array $a_econtent_ids): bool
258 $query =
'DELETE FROM ecs_import ' .
259 'WHERE server_id = ' . $this->db->quote($a_server_id,
'integer') .
' ' .
260 'AND mid = ' . $this->db->quote($a_mid,
'integer') .
' ' .
261 'AND ' . $this->db->in(
'econtent_id', $a_econtent_ids,
false,
'text');
262 $this->db->manipulate($query);
269 public function _isImported(
int $a_server_id,
string $a_econtent_id,
int $a_mid, ?
string $a_sub_id =
null):
int 271 return $this->
_lookupObjId($a_server_id, $a_econtent_id, $a_mid, $a_sub_id);
276 $query =
'UPDATE ecs_import SET server_id = ' . $this->db->quote(0,
'integer') .
277 ' WHERE server_id = ' . $this->db->quote($a_server_id,
'integer');
278 $this->db->manipulate($query);
static ilECSImportManager $instance
_lookupObjId(int $a_server_id, string $a_econtent_id, int $a_mid, ?string $a_sub_id=null)
loogup obj_id by econtent and mid and server_id
lookupServerId(int $a_obj_id)
Lookup server id of imported content.
_isImported(int $a_server_id, string $a_econtent_id, int $a_mid, ?string $a_sub_id=null)
check if econtent is imported for a specific mid
lookupObjIdByContentId(int $a_server_id, int $a_mid, int $a_content_id, ?string $a_sub_id=null)
Lookup obj_id by content id.
_lookupObjIdsByMID($a_server_id, $a_mid)
lookup obj ids by mid
Manage the ECS imported contents.
static getPossibleRemoteTypes(bool $a_with_captions=false)
Get all possible remote object types.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
lookupObjIdsByContentId($a_content_id)
static getInstance()
Get the singleton instance of this ilECSImportManager.
_lookupEContentId(int $a_obj_id)
get econent_id
resetServerId($a_server_id)
deleteRessources(int $a_server_id, int $a_mid, array $a_econtent_ids)
Delete ressources.
getAllImportedRemoteObjects($a_server_id)
get all imported links
_lookupObjIds($a_server_id, $a_econtent_id)
Lookup obj_id.
lookupContentId($a_server_id, $a_mid, $a_econtent_id)
Lookup content id The content is the - not necessarily unique - id provided by the econtent type...
lookupEContentIdByContentId($a_server_id, $a_mid, $a_content_id)
Lookup econtent id The econtent id is the unique id from ecs.
deleteByServer(int $a_server_id)
Delete by server id.
_deleteByObjId($a_obj_id)
Delete by obj_id.