ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSearchCommandQueue.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
29 {
30  private static ?self $instance = null;
31 
32  protected ilDBInterface $db;
33 
37  protected function __construct()
38  {
39  global $DIC;
40 
41  $this->db = $DIC->database();
42  }
43 
47  public static function factory(): ilSearchCommandQueue
48  {
49  if (self::$instance instanceof ilSearchCommandQueue) {
50  return self::$instance;
51  }
52  return self::$instance = new ilSearchCommandQueue();
53  }
54 
58  public function store(ilSearchCommandQueueElement $element): void
59  {
60  $query = "SELECT obj_id, obj_type FROM search_command_queue " .
61  "WHERE obj_id = " . $this->db->quote($element->getObjId(), 'integer') . " " .
62  "AND obj_type = " . $this->db->quote($element->getObjType(), 'text');
63  $res = $this->db->query($query);
64  if ($res->numRows()) {
65  $this->update($element);
66  } else {
67  $this->insert($element);
68  }
69  }
70 
74  protected function insert(ilSearchCommandQueueElement $element): void
75  {
76  $query = "INSERT INTO search_command_queue (obj_id,obj_type,sub_id,sub_type,command,last_update,finished) " .
77  "VALUES( " .
78  $this->db->quote($element->getObjId(), 'integer') . ", " .
79  $this->db->quote($element->getObjType(), 'text') . ", " .
80  "0, " .
81  "''," .
82  $this->db->quote($element->getCommand(), 'text') . ", " .
83  $this->db->now() . ", " .
84  "0 " .
85  ")";
86  $res = $this->db->manipulate($query);
87  }
88 
92  protected function update(ilSearchCommandQueueElement $element): void
93  {
94  $query = "UPDATE search_command_queue " .
95  "SET command = " . $this->db->quote($element->getCommand(), 'text') . ", " .
96  "last_update = " . $this->db->now() . ", " .
97  "finished = " . $this->db->quote(0, 'integer') . " " .
98  "WHERE obj_id = " . $this->db->quote($element->getObjId(), 'integer') . " " .
99  "AND obj_type = " . $this->db->quote($element->getObjType(), 'text');
100  $res = $this->db->manipulate($query);
101  }
102 }
$res
Definition: ltiservices.php:66
Represents an entry for the search command queue.
store(ilSearchCommandQueueElement $element)
update / save new entry
insert(ilSearchCommandQueueElement $element)
Insert new entry.
static factory()
get singleton instance
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
update(ilSearchCommandQueueElement $element)
Update existing entry.
global $DIC
Definition: shib_login.php:22