43 ?
string $a_sub_obj_type,
46 int $a_category_id = 0
65 $ilDB->manipulate(
"DELETE FROM il_rating WHERE " .
66 "user_id = " .
$ilDB->quote($a_user_id,
"integer") .
" AND " .
67 "obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
" AND " .
68 "obj_type = " .
$ilDB->quote($a_obj_type,
"text") .
" AND " .
69 "sub_obj_id = " .
$ilDB->quote((
int) $a_sub_obj_id,
"integer") .
" AND " .
70 $ilDB->equals(
"sub_obj_type", $a_sub_obj_type,
"text",
true) .
" AND " .
71 "category_id = " .
$ilDB->quote(0,
"integer"));
74 $ilDB->manipulate(
"DELETE FROM il_rating WHERE " .
75 "user_id = " .
$ilDB->quote($a_user_id,
"integer") .
" AND " .
76 "obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
" AND " .
77 "obj_type = " .
$ilDB->quote($a_obj_type,
"text") .
" AND " .
78 "sub_obj_id = " .
$ilDB->quote((
int) $a_sub_obj_id,
"integer") .
" AND " .
79 $ilDB->equals(
"sub_obj_type", $a_sub_obj_type,
"text",
true) .
" AND " .
80 "category_id = " .
$ilDB->quote($a_category_id,
"integer"));
83 $ilDB->manipulate(
"INSERT INTO il_rating (user_id, obj_id, obj_type," .
84 "sub_obj_id, sub_obj_type, category_id, rating, tstamp) VALUES (" .
85 $ilDB->quote($a_user_id,
"integer") .
"," .
86 $ilDB->quote($a_obj_id,
"integer") .
"," .
87 $ilDB->quote($a_obj_type,
"text") .
"," .
88 $ilDB->quote((
int) $a_sub_obj_id,
"integer") .
"," .
89 $ilDB->quote($a_sub_obj_type,
"text") .
"," .
90 $ilDB->quote($a_category_id,
"integer") .
"," .
91 $ilDB->quote($a_rating,
"integer") .
"," .
92 $ilDB->quote(time(),
"integer") .
")");
109 string $a_sub_obj_type,
116 $ilDB->manipulate(
"DELETE FROM il_rating WHERE " .
117 "user_id = " .
$ilDB->quote($a_user_id,
"integer") .
" AND " .
118 "obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
" AND " .
119 "obj_type = " .
$ilDB->quote($a_obj_type,
"text") .
" AND " .
120 "sub_obj_id = " .
$ilDB->quote($a_sub_obj_id,
"integer") .
" AND " .
121 $ilDB->equals(
"sub_obj_type", $a_sub_obj_type,
"text",
true));
139 string $a_sub_obj_type,
141 ?
int $a_category_id =
null
147 if (isset(self::$list_data[
"user"][$a_obj_type .
"/" . $a_obj_id])) {
148 return self::$list_data[
"user"][$a_obj_type .
"/" . $a_obj_id] ?? 0;
151 $q =
"SELECT AVG(rating) av FROM il_rating WHERE " .
152 "user_id = " .
$ilDB->quote($a_user_id,
"integer") .
" AND " .
153 "obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
" AND " .
154 "obj_type = " .
$ilDB->quote($a_obj_type,
"text") .
" AND " .
155 "sub_obj_id = " .
$ilDB->quote($a_sub_obj_id,
"integer") .
" AND " .
156 $ilDB->equals(
"sub_obj_type", $a_sub_obj_type,
"text",
true);
157 if ($a_category_id !==
null) {
158 $q .=
" AND category_id = " .
$ilDB->quote($a_category_id,
"integer");
161 $rec =
$ilDB->fetchAssoc($set);
162 return (
float) $rec[
"av"];
168 string $sub_obj_type,
169 array $all_category_ids
174 if (empty($all_category_ids)) {
177 $category_count = count($all_category_ids);
178 $category_ids_csv = implode(
",", array_map(
"intval", $all_category_ids));
181 SELECT COUNT(*) cnt FROM (
188 AND category_id IN (" . $category_ids_csv .
")
190 HAVING count(DISTINCT category_id) = " .
$ilDB->quote($category_count,
"integer") .
"
194 $set =
$ilDB->query($query);
195 $rec =
$ilDB->fetchAssoc($set);
196 return (
int) ($rec[
"cnt"] ?? 0);
211 ?
int $a_sub_obj_id =
null,
212 ?
string $a_sub_obj_type =
null,
213 ?
int $a_category_id =
null
219 if (isset(self::$list_data[
"all"][$a_obj_type .
"/" . $a_obj_id])) {
220 return self::$list_data[
"all"][$a_obj_type .
"/" . $a_obj_id];
223 $q =
"SELECT AVG(rating) av FROM il_rating" .
224 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
225 " AND obj_type = " .
$ilDB->quote($a_obj_type,
"text");
227 $q .=
" AND sub_obj_id = " .
$ilDB->quote($a_sub_obj_id,
"integer") .
228 " AND " .
$ilDB->equals(
"sub_obj_type", $a_sub_obj_type,
"text",
true);
230 $q .=
" AND sub_obj_type = " .
$ilDB->quote(
"-",
"text");
233 if ($a_category_id !==
null) {
234 $q .=
" AND category_id = " .
$ilDB->quote($a_category_id,
"integer");
236 $q .=
" GROUP BY user_id";
239 while ($rec =
$ilDB->fetchAssoc($set)) {
248 return array(
"cnt" => $cnt,
"avg" => $avg);
262 ?array $a_category_ids =
null
269 $q =
"SELECT sub_obj_id, sub_obj_type, rating, category_id, user_id, tstamp " .
270 "FROM il_rating WHERE " .
271 "obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
" AND " .
272 "obj_type = " .
$ilDB->quote($a_obj_type,
"text") .
274 if ($a_category_ids) {
275 $q .=
" AND " .
$ilDB->in(
"category_id", $a_category_ids,
"",
"integer");
278 while ($row =
$ilDB->fetchAssoc($set)) {
295 $ilUser =
$DIC->user();
297 $tmp =
$res = $res_user = array();
300 $q =
"SELECT obj_id, obj_type, user_id, AVG(rating) av" .
302 " WHERE " .
$ilDB->in(
"obj_id", $a_obj_ids,
"",
"integer") .
303 " AND sub_obj_id = " .
$ilDB->quote(0,
"integer") .
304 " GROUP BY obj_id, obj_type, user_id";
306 while ($rec =
$ilDB->fetchAssoc($set)) {
307 $tmp[$rec[
"obj_type"] .
"/" . $rec[
"obj_id"]][$rec[
"user_id"]] = (float) $rec[
"av"];
308 if ($rec[
"user_id"] == $ilUser->getId()) {
310 $res_user[$rec[
"obj_type"] .
"/" . $rec[
"obj_id"]] = (float) $rec[
"av"];
315 foreach ($tmp as $obj_id => $votes) {
316 $res[$obj_id] = array(
"avg" => array_sum($votes) /
sizeof($votes),
317 "cnt" =>
sizeof($votes));
322 $set =
$ilDB->query(
"SELECT file_id, rating" .
324 " WHERE " .
$ilDB->in(
"file_id", $a_obj_ids,
"",
'integer'));
325 while ($row =
$ilDB->fetchAssoc($set)) {
326 $id =
"file/" . $row[
"file_id"];
327 if ($row[
"rating"] && !isset(
$res[
$id])) {
328 $res[
$id] = array(
"avg" => 0,
"cnt" => 0);
329 } elseif (!$row[
"rating"] && isset(
$res[
$id])) {
334 $set =
$ilDB->query(
"SELECT id, rating_overall" .
335 " FROM il_wiki_data" .
336 " WHERE " .
$ilDB->in(
"id", $a_obj_ids,
"",
'integer'));
337 while ($row =
$ilDB->fetchAssoc($set)) {
338 $id =
"wiki/" . $row[
"id"];
339 if ($row[
"rating_overall"] && !isset(
$res[
$id])) {
340 $res[
$id] = array(
"avg" => 0,
"cnt" => 0);
341 } elseif (!$row[
"rating_overall"] && isset(
$res[
$id])) {
346 $set =
$ilDB->query(
"SELECT id, rating" .
347 " FROM content_object" .
348 " WHERE " .
$ilDB->in(
"id", $a_obj_ids,
"",
'integer'));
349 while ($row =
$ilDB->fetchAssoc($set)) {
350 $id =
"lm/" . $row[
"id"];
351 if ($row[
"rating"] && !isset(
$res[
$id])) {
352 $res[
$id] = array(
"avg" => 0,
"cnt" => 0);
353 } elseif (!$row[
"rating"] && isset(
$res[
$id])) {
358 self::$list_data = array(
"all" =>
$res,
"user" => $res_user);
365 return isset(self::$list_data[
"all"][$a_obj_type .
"/" . $a_obj_id]);
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getNumberOfFinishedCategoryRatingsForWikis(int $a_obj_id, int $sub_obj_id, string $sub_obj_type, array $all_category_ids)
static preloadListGUIData(array $a_obj_ids)
Preload rating data for list guis.
static resetRatingForUserAndObject(int $a_obj_id, string $a_obj_type, int $a_sub_obj_id, string $a_sub_obj_type, int $a_user_id)
Reset rating for a user and an object.
static getRatingForUserAndObject(int $a_obj_id, string $a_obj_type, int $a_sub_obj_id, string $a_sub_obj_type, int $a_user_id, ?int $a_category_id=null)
Get rating for a user and an object.
static hasRatingInListGUI(int $a_obj_id, string $a_obj_type)
static writeRatingForUserAndObject(int $a_obj_id, string $a_obj_type, ?int $a_sub_obj_id, ?string $a_sub_obj_type, int $a_user_id, int $a_rating, int $a_category_id=0)
Write rating for a user and an object.
static getOverallRatingForObject(int $a_obj_id, string $a_obj_type, ?int $a_sub_obj_id=null, ?string $a_sub_obj_type=null, ?int $a_category_id=null)
Get overall rating for an object.
static getExportData(int $a_obj_id, string $a_obj_type, ?array $a_category_ids=null)
Get export data.
return['delivery_method'=> 'php',]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...