19 declare(strict_types=1);
37 $this->
logger->debug(
'START - Add new entry to certificate cron job queue');
39 $id = $this->database->nextId(
'il_cert_cron_queue');
42 'id' => [
'integer',
$id],
43 'obj_id' => [
'integer', $certificateQueueEntry->
getObjId()],
44 'usr_id' => [
'integer', $certificateQueueEntry->
getUserId()],
46 'state' => [
'text', $certificateQueueEntry->
getState()],
48 'template_id' => [
'integer', $certificateQueueEntry->
getTemplateId()],
51 $this->
logger->debug(sprintf(
52 'Save queue entry with following values: %s',
53 json_encode($row, JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT)
55 $this->
logger->debug(
'END - Added entry to queue');
57 $this->database->insert(
'il_cert_cron_queue', $row);
62 $this->
logger->debug(sprintf(
'START - Remove entry(id: "%s") from queue', $id));
64 $sql =
'DELETE FROM il_cert_cron_queue WHERE id = ' . $this->database->quote($id,
'integer');
66 $this->database->manipulate($sql);
68 $this->
logger->debug(sprintf(
'END - Entry(id: "%s") deleted from queue', $id));
76 $this->
logger->debug(
'START - Fetch all entries from queue');
78 $sql =
'SELECT * FROM il_cert_cron_queue';
79 $query = $this->database->query($sql);
82 while ($row = $this->database->fetchAssoc(
$query)) {
83 $this->
logger->debug(sprintf(
84 'Queue entry found: "%s"',
85 json_encode($row, JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT)
91 $row[
'adapter_class'],
93 (
int) $row[
'template_id'],
94 (
int) $row[
'started_timestamp'],
99 $this->
logger->debug(sprintf(
'END - All queue entries fetched(Total: "%s")', count($result)));
106 $this->
logger->debug(sprintf(
'START - Remove entries for user (usr_id: "%s") from queue', $user_id));
108 $sql =
'DELETE FROM il_cert_cron_queue WHERE usr_id = ' . $this->database->quote($user_id,
'integer');
110 $this->database->manipulate($sql);
112 $this->
logger->debug(sprintf(
'END - Entries for user (usr_id: "%s") deleted from queue', $user_id));
__construct(ilDBInterface $database, ilLogger $logger)
removeFromQueueByUserId(int $user_id)
addToQueue(ilCertificateQueueEntry $certificateQueueEntry)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins