3 declare(strict_types=1);
28 protected \ILIAS\Notes\Service
$notes;
55 public function __construct(
int $a_id = 0,
bool $a_reference =
true)
59 $this->db = $DIC->database();
64 $this->notes = $DIC->notes();
76 $this->access_type = $a_value;
86 $this->access_begin = $a_value;
96 $this->access_end = $a_value;
106 $this->access_visibility = $a_value;
116 $this->question = $a_value;
126 $this->image = $a_value;
136 $this->view_results = $a_value;
146 $this->period = $a_value;
156 $this->period_begin = $a_value;
166 $this->period_end = $a_value;
176 $this->max_number_answers = $a_value;
186 $this->result_sort_by_votes = $a_value;
196 $this->mode_non_anonymous = $a_value;
206 $this->show_comments = $a_value;
216 $this->show_results_as = $a_value;
228 $set =
$ilDB->query(
"SELECT * FROM il_poll" .
229 " WHERE id = " .
$ilDB->quote($this->getId(),
"integer"));
230 $row =
$ilDB->fetchAssoc($set);
231 $this->
setQuestion((
string) ($row[
"question"] ??
''));
232 $this->
setImage((
string) ($row[
"image"] ??
''));
233 $this->
setViewResults((
int) ($row[
"view_results"] ?? self::VIEW_RESULTS_AFTER_VOTE));
240 $this->
setShowResultsAs((
int) ($row[
"show_results_as"] ?? self::SHOW_RESULTS_AS_BARCHART));
250 $this->
setAccessBegin((
int) ($activation[
"timing_start"] ?? time()));
251 $this->
setAccessEnd((
int) ($activation[
"timing_end"] ?? time()));
261 "image" => array(
"text", $this->
getImage()),
273 protected function doCreate(
bool $clone_mode =
false): void
277 if ($this->
getId()) {
279 $fields[
"id"] = array(
"integer", $this->
getId());
281 $ilDB->insert(
"il_poll", $fields);
289 $block->setType(
"poll");
290 $block->setContextObjId($this->
getId());
291 $block->setContextObjType(
"poll");
300 if ($this->
getId()) {
306 array(
"id" => array(
"integer", $this->
getId()))
318 $activation->update($this->ref_id);
327 if ($this->
getId()) {
335 $ilDB->manipulate(
"DELETE FROM il_poll" .
336 " WHERE id = " .
$ilDB->quote($this->id,
"integer"));
348 $image = array(
"tmp_name" => $image,
350 $new_obj->uploadImage($image,
true);
356 if ($cp_options->isRootNode($this->getRefId())) {
368 foreach ($answers as $item) {
369 $new_obj->saveAnswer($item[
"answer"]);
383 $path = self::initStorage($this->
id);
404 public static function initStorage(
int $a_id, ?
string $a_subdir = null): string
409 $path = $storage->getAbsolutePath() .
"/";
412 $path .= $a_subdir .
"/";
414 if (!is_dir(
$path)) {
422 public function uploadImage(array $a_upload,
bool $a_clone =
false): bool
431 $name = (string) ($a_upload[
'name'] ??
'');
432 $tmp_name = (string) ($a_upload[
'tmp_name'] ??
'');
433 $clean_name = preg_replace(
"/[^a-zA-Z0-9\_\.\-]/",
"",
$name);
435 $path = self::initStorage($this->
id);
436 $original =
"org_" . $this->
id .
"_" . $clean_name;
437 $thumb =
"thb_" . $this->
id .
"_" . $clean_name;
438 $processed = $this->
id .
"_" . $clean_name;
444 $success = copy($tmp_name,
$path . $original);
447 chmod(
$path . $original, 0770);
457 $convert_100 = $original_file .
"[0] -geometry \"100x100>\" -quality 100 PNG:" . $thumb_file;
459 $escaped_convert_100 = str_replace(
'-geometry "100x100>',
'-geometry "100x100>', $escaped_convert_100);
462 $convert_300 = $original_file .
"[0] -geometry \"" . self::getImageSize() .
">\" -quality 100 PNG:" . $processed_file;
464 $escaped_convert_300 = str_replace(
'-geometry "' . self::getImageSize() .
'>"',
'-geometry "' . self::getImageSize() .
'>"', $escaped_convert_300);
490 $sql =
"SELECT * FROM il_poll_answer" .
491 " WHERE poll_id = " .
$ilDB->quote($this->
getId(),
"integer") .
493 $set =
$ilDB->query($sql);
494 while ($row =
$ilDB->fetchAssoc($set)) {
504 $sql =
"SELECT * FROM il_poll_answer" .
505 " WHERE id = " .
$ilDB->quote($a_id,
"integer");
506 $set =
$ilDB->query($sql);
507 return (array)
$ilDB->fetchAssoc($set);
514 if (!trim($a_text)) {
518 $id =
$ilDB->nextId(
"il_poll_answer");
522 $sql =
"SELECT max(pos) pos" .
523 " FROM il_poll_answer" .
524 " WHERE poll_id = " .
$ilDB->quote($this->
getId(),
"integer");
525 $set =
$ilDB->query($sql);
526 $a_pos =
$ilDB->fetchAssoc($set);
527 $a_pos = (
int) ($a_pos[
"pos"] ?? 0) + 10;
531 "id" => array(
"integer",
$id),
532 "poll_id" => array(
"integer", $this->
getId()),
533 "answer" => array(
"text", trim($a_text)),
534 "pos" => array(
"integer", $a_pos)
536 $ilDB->insert(
"il_poll_answer", $fields);
547 array(
"answer" => array(
"text", $a_text)),
548 array(
"id" => array(
"integer", $a_id))
557 foreach ($answers as $item) {
558 $id = (
int) ($item[
'id'] ?? 0);
559 $pos[
$id] = (
int) ($item[
"pos"] ?? 10);
572 foreach (array_keys($a_pos) as
$id) {
577 array(
"pos" => array(
"integer", $pos)),
578 array(
"id" => array(
"integer", $id))
588 $ilDB->manipulate(
"DELETE FROM il_poll_vote" .
589 " WHERE answer_id = " .
$ilDB->quote($this->getId(),
"integer"));
591 $ilDB->manipulate(
"DELETE FROM il_poll_answer" .
592 " WHERE id = " .
$ilDB->quote($a_id,
"integer"));
600 if ($this->
getId()) {
603 $ilDB->manipulate(
"DELETE FROM il_poll_answer" .
604 " WHERE poll_id = " .
$ilDB->quote($this->getId(),
"integer"));
612 if ($this->
getId()) {
613 $ilDB->manipulate(
"DELETE FROM il_poll_vote" .
614 " WHERE poll_id = " .
$ilDB->quote($this->getId(),
"integer"));
625 foreach ($a_answers as $answer) {
629 foreach ($existing as $idx => $item) {
630 if (trim($answer) === (
string) ($item[
"answer"] ??
'')) {
632 unset($existing[$idx]);
634 $id = (
int) ($item[
"id"] ?? 0);
644 if (isset(
$id) && is_int(
$id)) {
651 if (count($existing)) {
652 foreach ($existing as $item) {
653 if (isset($item[
"id"])) {
672 public function saveVote(
int $a_user_id, array $a_answers): void
678 foreach ($a_answers as $answer_id) {
679 $fields = array(
"user_id" => array(
"integer", $a_user_id),
680 "poll_id" => array(
"integer", $this->
getId()),
681 "answer_id" => array(
"integer", $answer_id));
682 $this->db->insert(
"il_poll_vote", $fields);
688 $sql =
"SELECT user_id" .
689 " FROM il_poll_vote" .
690 " WHERE poll_id = " . $this->db->quote($this->
getId(),
"integer") .
691 " AND user_id = " . $this->db->quote($a_user_id,
"integer");
692 $this->db->setLimit(1, 0);
693 $set = $this->db->query($sql);
694 return (
bool) $this->db->numRows($set);
699 $sql =
"SELECT COUNT(DISTINCT(user_id)) cnt" .
700 " FROM il_poll_vote" .
701 " WHERE poll_id = " . $this->db->quote($this->
getId(),
"integer");
702 $set = $this->db->query($sql);
703 $row = $this->db->fetchAssoc($set);
704 return (
int) $row[
"cnt"];
712 $sql =
"SELECT answer_id, count(*) cnt" .
713 " FROM il_poll_vote" .
714 " WHERE poll_id = " . $this->db->quote($this->
getId(),
"integer") .
715 " GROUP BY answer_id";
716 $set = $this->db->query($sql);
717 while ($row = $this->db->fetchAssoc($set)) {
718 $cnt += (
int) $row[
"cnt"];
719 $res[(
int) $row[
"answer_id"]] = array(
"abs" => (
int) $row[
"cnt"],
"perc" => 0);
722 foreach (
$res as
$id => $item) {
723 $abs = (
int) ($item[
'abs'] ?? 0);
728 $res[
$id][
"perc"] = $abs / $cnt * 100;
741 $sql =
"SELECT answer_id, user_id, firstname, lastname, login" .
742 " FROM il_poll_vote" .
743 " JOIN usr_data ON (usr_data.usr_id = il_poll_vote.user_id)" .
744 " WHERE poll_id = " .
$ilDB->quote($this->
getId(),
"integer");
745 $set =
$ilDB->query($sql);
746 while ($row =
$ilDB->fetchAssoc($set)) {
747 $user_id = (
int) ($row[
"user_id"] ?? 0);
748 if (!isset(
$res[$user_id])) {
749 $res[$user_id] = $row;
751 $res[$user_id][
"answers"][] = (
int) ($row[
"answer_id"] ?? 0);
static deleteAllEntries(int $ref_id)
Delete all db entries for ref id.
setAccessBegin(int $a_value)
const VIEW_RESULTS_AFTER_PERIOD
const VIEW_RESULTS_AFTER_VOTE
hasUserVoted(int $a_user_id)
setSortResultByVotes(bool $a_value)
bool $result_sort_by_votes
setImage(string $a_value)
const VIEW_RESULTS_ALWAYS
setAccessType(int $a_value)
const SHOW_RESULTS_AS_PIECHART
const TIMINGS_DEACTIVATED
setAccessEnd(int $a_value)
setQuestion(string $a_value)
static escapeShellArg(string $a_arg)
updateAnswer(int $a_id, string $a_text)
const SHOW_RESULTS_AS_BARCHART
setShowComments(bool $a_value)
setVotingPeriod(bool $a_value)
setMaxNumberOfAnswers(int $a_value)
setShowResultsAs(int $a_value)
setNonAnonymous(bool $a_value)
setViewResults(int $a_value)
setVotingPeriodBegin(int $a_value)
updateAnswerPositions(array $a_pos)
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
__construct(int $a_id=0, bool $a_reference=true)
uploadImage(array $a_upload, bool $a_clone=false)
setOfflineStatus(bool $status)
static execQuoted(string $cmd, ?string $args=null)
static escapeShellCmd(string $a_arg)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
saveAnswers(array $a_answers)
setAccessVisibility(bool $a_value)
static getItem(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
doCreate(bool $clone_mode=false)
static initStorage(int $a_id, ?string $a_subdir=null)
doCloneObject(ilObject2 $new_obj, int $a_target_id, ?int $a_copy_id=0)
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS Notes Service $notes
saveAnswer(string $a_text, ?int $a_pos=null)
static _getInstance(int $a_copy_id)
Class ilObjectActivation.
saveVote(int $a_user_id, array $a_answers)
getImageFullPath(bool $a_as_thumb=false)
setVotingPeriodEnd(int $a_value)