18 declare(strict_types=1);
46 $this->db = $DIC->database();
47 $this->log = $DIC->logger()->wsrv();
48 $this->eventHandler = $DIC->event();
61 return self::$instances[$a_server_id] ?? (self::$instances[$a_server_id] =
89 $this->log->warning(
'Cannot start ecs task execution: ' . $exc->getMessage());
101 $this->event_reader->refresh();
109 for (
$i = 0;
$i < self::MAX_TASKS;
$i++) {
110 if (!$event = $this->event_reader->shift()) {
111 $this->log->info(__METHOD__ .
': No more pending events found. DONE');
115 $this->log->info(
"Eventdump" . print_r($event,
true));
119 $event_ignored =
false;
120 switch ($event[
'type']) {
131 $this->log->debug(
"got handler " . get_class($handler));
133 $this->log->error(
"Could not get handler for :" . $event[
'type']);
138 $this->log->debug(
'Handling new cms tree event.');
151 $this->log->info(__METHOD__ .
': Ignoring event type in queue ' . $event[
'type']);
152 $event_ignored =
true;
161 $this->log->warning(
'Unknown type in queue, raising new event handling event: ' . $event[
'type']);
162 $event_ignored =
true;
164 $this->eventHandler->raise(
165 'Services/WebServices/ECS',
167 array(
'event' => $event)
172 if ($event_ignored) {
173 $this->event_reader->deleteEvent($event[
'event_id']);
178 if (isset($handler)) {
179 switch ($event[
'op']) {
187 $res = $handler->handleDelete($this->
getServer(), $event[
'id'], $this->mids);
188 $this->log->info(__METHOD__ .
': Handling delete. DONE');
192 $res = $handler->handleCreate($this->
getServer(), $event[
'id'], $this->mids);
193 $this->log->info(__METHOD__ .
': Handling create. DONE');
197 $res = $handler->handleUpdate($this->
getServer(), $event[
'id'], $this->mids);
198 $this->log->info(__METHOD__ .
': Handling update. DONE');
202 $this->log->info(__METHOD__ .
': Unknown event operation in queue ' . $event[
'op']);
207 $this->log->info(__METHOD__ .
': Processing of event done ' . $event[
'event_id']);
208 $this->event_reader->deleteEvent($event[
'event_id']);
210 $this->log->info(__METHOD__ .
': Processing of event failed ' . $event[
'event_id']);
220 $query =
"SELECT usr_id FROM usr_data WHERE auth_mode = 'ecs' " .
221 "AND time_limit_until < " . time() .
" " .
222 "AND time_limit_unlimited = 0 " .
223 "AND (time_limit_until - time_limit_from) < 7200";
227 $this->log->info(__METHOD__ .
': Deleting deprecated ECS user account ' . $user_obj->getLogin());
237 $this->mids = array();
240 foreach ($reader->getCommunities() as $com) {
241 foreach ($com->getParticipants() as $part) {
242 if ($part->isSelf()) {
243 $this->mids[] = $part->getMID();
const TYPE_REMOTE_CATEGORY
readMIDs()
Read MID's of this installation.
getServer()
Get server setting.
static getInstanceByEventType(string $a_type)
Get instance by ilECSEvent(QueueReader) type.
readEvents()
Read EContent.
ilAppEventHandler $eventHandler
handleEvents()
Handle events.
startTaskExecution()
Start Tasks.
handleDeprecatedAccounts()
Delete deprecate ECS accounts.
Synchronize member assignments.
const TYPE_DIRECTORY_TREES
static getInstanceByServerId(int $a_server_id)
Get singleton instance per server.
Reads ECS events and stores them in the database.
const TYPE_REMOTE_LEARNING_MODULE
static _getInstanceByServerId($a_server_id)
get singleton instance Private access use ilECSTaskScheduler::start() or ilECSTaskScheduler::startTas...
const TYPE_CMS_COURSE_MEMBERS
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
const TYPE_REMOTE_GLOSSARY
__construct(ilECSSetting $setting)
Singleton constructor.
const TYPE_ENROLMENT_STATUS
ilECSEventQueueReader $event_reader