19 declare(strict_types=1);
32 protected \ilDBInterface
$db;
60 $query =
'SELECT' . PHP_EOL
61 .
'suggested_solution_id, question_fi, internal_link, import_id, ' 62 .
'subquestion_index, type, tstamp, value' . PHP_EOL
63 .
'FROM ' . self::TABLE_SUGGESTED_SOLUTIONS . PHP_EOL
64 .
'WHERE question_fi = ' . $this->db->quote($question_id,
'integer');
66 $result = $this->db->query($query);
68 while ($row = $this->db->fetchAssoc($result)) {
69 $last_update = \DateTimeImmutable::createFromFormat(
'U', (
string) $row[
'tstamp']);
71 if ($row[
'type'] ===
null || $row[
'type'] ===
'') {
76 (
int) $row[
'suggested_solution_id'],
77 (
int) $row[
'question_fi'],
78 (
string) $row[
'internal_link'],
79 (
string) $row[
'import_id'],
80 (
int) $row[
'subquestion_index'],
81 (
string) $row[
'type'],
82 (
string) $row[
'value'],
90 public function update(array $suggested_solutions): void
92 foreach ($suggested_solutions as $solution) {
93 if (!is_a($solution, SuggestedSolution::class)) {
94 throw new \Exception(
'cannot update other than SuggestedSolution');
98 foreach ($suggested_solutions as $solution) {
99 $query =
'DELETE FROM ' . self::TABLE_SUGGESTED_SOLUTIONS . PHP_EOL
100 .
'WHERE question_fi = ' . $this->db->quote($solution->getQuestionId(),
'integer') . PHP_EOL
101 .
'AND subquestion_index = ' . $this->db->quote($solution->getSubQuestionIndex(),
'integer');
102 $this->db->manipulate($query);
104 $next_id = $this->db->nextId(self::TABLE_SUGGESTED_SOLUTIONS);
106 if ($solution->isOfTypeLink()) {
107 $internal_link = $solution->getInternalLink();
110 self::TABLE_SUGGESTED_SOLUTIONS,
112 'suggested_solution_id' => [
'integer', $next_id],
113 'question_fi' => [
'integer', $solution->getQuestionId()],
114 'type' => [
'text',$solution->getType()],
115 'value' => [
'clob', $solution->getStorableValue()],
116 'internal_link' => [
'text', $internal_link],
117 'import_id' => [
'text', $solution->getImportId()],
118 'subquestion_index' => [
'integer', $solution->getSubquestionIndex() ],
119 'tstamp' => [
'integer', $this->
getNow()->format(
'U')]
127 public function delete(
int $suggested_solution_id):
void 129 $query =
'DELETE FROM ' . self::TABLE_SUGGESTED_SOLUTIONS . PHP_EOL
130 .
'WHERE suggested_solution_id = ' . $this->db->quote($suggested_solution_id,
'integer');
131 $this->db->manipulate($query);
136 $query =
'DELETE FROM ' . self::TABLE_SUGGESTED_SOLUTIONS . PHP_EOL
137 .
'WHERE question_fi = ' . $this->db->quote($question_id,
'integer');
138 $this->db->manipulate($query);
142 public function clone(
int $source_question_id,
int $target_question_id): void
144 if ($source_question_id === $target_question_id) {
145 throw new \LogicException(
'do not sync with same question');
148 $suggested_solutions = [];
149 foreach ($this->
selectFor($source_question_id) as $solution) {
150 $suggested_solutions[] = $solution->withQuestionId($target_question_id);
152 $this->
update($suggested_solutions);
158 string $internal_link,
160 int $subquestion_index,
167 $suggestion_class = SuggestedSolutionFile::class;
173 $suggestion_class = SuggestedSolutionLink::class;
174 $value = $internal_link;
177 throw new \LogicException(
'invalid suggestion-type in repo.');
180 return new $suggestion_class(
193 return new \DateTimeImmutable();
205 if (preg_match(
"/il_(\d*?)_(\w+)_(\d+)/", $solution->getInternalLink(), $matches)) {
update(array $suggested_solutions)
deleteForQuestion(int $question_id)
static _saveLink(string $a_source_type, int $a_source_id, string $a_target_type, int $a_target_id, int $a_target_inst=0, string $a_source_lang="-")
save internal link information
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const TABLE_SUGGESTED_SOLUTIONS
clone(int $source_question_id, int $target_question_id)
create(int $question_id, string $type)
static _deleteAllLinksOfSource(string $a_source_type, int $a_source_id, string $a_lang="-")
Delete all links of a given source.
Repository for suggested solutions.
buildSuggestedSolution(int $id, int $question_id, string $internal_link, string $import_id, int $subquestion_index, string $type, string $value, \DateTimeImmutable $last_update)
selectFor(int $question_id)
return SuggestedSolution[]
additionalOnStore(SuggestedSolution $solution)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(\ilDBInterface $db)
additionalOnDelete(int $question_id)