This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.
More...
|
| 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. More...
|
| |
| 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. More...
|
| |
| 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. More...
|
| |
| static | getNumberOfFinishedCategoryRatingsForWikis (int $a_obj_id, int $sub_obj_id, string $sub_obj_type, array $all_category_ids) |
| |
| 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. More...
|
| |
| static | getExportData (int $a_obj_id, string $a_obj_type, ?array $a_category_ids=null) |
| | Get export data. More...
|
| |
| static | preloadListGUIData (array $a_obj_ids) |
| | Preload rating data for list guis. More...
|
| |
| static | hasRatingInListGUI (int $a_obj_id, string $a_obj_type) |
| |
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.
ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.
If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Class ilRating
- Author
- Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de
Definition at line 24 of file class.ilRating.php.
◆ getExportData()
| static ilRating::getExportData |
( |
int |
$a_obj_id, |
|
|
string |
$a_obj_type, |
|
|
?array |
$a_category_ids = null |
|
) |
| |
|
static |
Get export data.
- Parameters
-
| int | $a_obj_id | |
| string | $a_obj_type | |
| ?array | $a_category_ids |
- Returns
- array
Definition at line 259 of file class.ilRating.php.
263 : array {
265
267
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") .
273 " ORDER BY tstamp";
274 if ($a_category_ids) {
275 $q .=
" AND " .
$ilDB->in(
"category_id", $a_category_ids,
"",
"integer");
276 }
278 while ($row =
$ilDB->fetchAssoc($set)) {
280 }
282 }
Referenced by ilRatingCategoryGUI\export().
◆ getNumberOfFinishedCategoryRatingsForWikis()
| static ilRating::getNumberOfFinishedCategoryRatingsForWikis |
( |
int |
$a_obj_id, |
|
|
int |
$sub_obj_id, |
|
|
string |
$sub_obj_type, |
|
|
array |
$all_category_ids |
|
) |
| |
|
static |
Definition at line 165 of file class.ilRating.php.
170 : int {
172
174 if (empty($all_category_ids)) {
175 return 0;
176 }
177 $category_count = count($all_category_ids);
178 $category_ids_csv = implode(",", array_map("intval", $all_category_ids));
179
180 $query = "
181 SELECT COUNT(*) cnt FROM (
182 SELECT user_id
183 FROM il_rating
188 AND category_id IN (" . $category_ids_csv . ")
189 GROUP BY user_id
190 HAVING count(DISTINCT category_id) = " .
$ilDB->quote($category_count,
"integer") .
"
191 ) full_users
192 ";
193
194 $set =
$ilDB->query($query);
195 $rec =
$ilDB->fetchAssoc($set);
196 return (int) ($rec["cnt"] ?? 0);
197 }
◆ getOverallRatingForObject()
| static ilRating::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 |
|
) |
| |
|
static |
Get overall rating for an object.
- Parameters
-
| int | $a_obj_id | Object ID |
| string | $a_obj_type | Object Type |
| ?int | $a_sub_obj_id Subobject ID |
| ?string | $a_sub_obj_type Subobject Type |
| ?int | $a_category_id Category ID |
Definition at line 208 of file class.ilRating.php.
214 : array {
216
218
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];
221 }
222
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");
226 if ($a_sub_obj_id) {
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);
229 } else {
230 $q .=
" AND sub_obj_type = " .
$ilDB->quote(
"-",
"text");
231 }
232
233 if ($a_category_id !== null) {
234 $q .=
" AND category_id = " .
$ilDB->quote($a_category_id,
"integer");
235 }
236 $q .=
" GROUP BY user_id";
238 $avg = $cnt = 0;
239 while ($rec =
$ilDB->fetchAssoc($set)) {
240 $cnt++;
241 $avg += $rec["av"];
242 }
243 if ($cnt > 0) {
244 $avg = $avg / $cnt;
245 } else {
246 $avg = 0;
247 }
248 return array("cnt" => $cnt, "avg" => $avg);
249 }
Referenced by ilWikiStat\getAverageRating(), ilDclRatingRecordFieldModel\getExportValue(), and ilDclRatingRecordFieldModel\getValue().
◆ getRatingForUserAndObject()
| static ilRating::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 |
|
) |
| |
|
static |
Get rating for a user and an object.
- Parameters
-
| int | $a_obj_id | Object ID |
| string | $a_obj_type | Object Type |
| int | $a_sub_obj_id | Subobject ID |
| string | $a_sub_obj_type | Subobject Type |
| int | $a_user_id | User ID |
| ?int | $a_category_id Category ID |
Definition at line 135 of file class.ilRating.php.
142 : float {
144
146
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;
149 }
150
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");
159 }
161 $rec =
$ilDB->fetchAssoc($set);
162 return (float) $rec["av"];
163 }
Referenced by ilExcCriteriaRating\hasValue().
◆ hasRatingInListGUI()
| static ilRating::hasRatingInListGUI |
( |
int |
$a_obj_id, |
|
|
string |
$a_obj_type |
|
) |
| |
|
static |
Definition at line 361 of file class.ilRating.php.
364 : bool {
365 return isset(self::$list_data["all"][$a_obj_type . "/" . $a_obj_id]);
366 }
◆ preloadListGUIData()
| static ilRating::preloadListGUIData |
( |
array |
$a_obj_ids | ) |
|
|
static |
Preload rating data for list guis.
- Parameters
-
Definition at line 289 of file class.ilRating.php.
291 : void {
293
295 $ilUser =
$DIC->user();
296
297 $tmp =
$res = $res_user = array();
298
299
300 $q =
"SELECT obj_id, obj_type, user_id, AVG(rating) av" .
301 " FROM il_rating" .
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()) {
309
310 $res_user[$rec["obj_type"] . "/" . $rec["obj_id"]] = (float) $rec["av"];
311 }
312 }
313
314
315 foreach ($tmp as $obj_id => $votes) {
316 $res[$obj_id] = array(
"avg" => array_sum($votes) /
sizeof($votes),
317 "cnt" => sizeof($votes));
318 }
319
320
321
322 $set =
$ilDB->query(
"SELECT file_id, rating" .
323 " FROM file_data" .
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])) {
331 }
332 }
333
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])) {
343 }
344 }
345
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])) {
355 }
356 }
357
358 self::$list_data = array(
"all" =>
$res,
"user" => $res_user);
359 }
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Referenced by ilObjectListGUIPreloader\preload().
◆ resetRatingForUserAndObject()
| static ilRating::resetRatingForUserAndObject |
( |
int |
$a_obj_id, |
|
|
string |
$a_obj_type, |
|
|
int |
$a_sub_obj_id, |
|
|
string |
$a_sub_obj_type, |
|
|
int |
$a_user_id |
|
) |
| |
|
static |
◆ writeRatingForUserAndObject()
| static ilRating::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 |
|
) |
| |
|
static |
Write rating for a user and an object.
- Parameters
-
| int | $a_obj_id | Object ID |
| string | $a_obj_type | Object Type |
| ?int | $a_sub_obj_id Subobject ID |
| ?string | $a_sub_obj_type Subobject Type |
| int | $a_user_id | User ID |
| int | $a_rating | Rating |
| int | $a_category_id | Category ID |
Definition at line 39 of file class.ilRating.php.
47 : void {
49
51
52 if ($a_rating < 0) {
53 $a_rating = 0;
54 }
55
56 if ($a_rating > 5) {
57 $a_rating = 5;
58 }
59
61 return;
62 }
63
64 if ($a_category_id) {
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"));
72 }
73
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"));
81
82 if ($a_rating) {
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") .
")");
93 }
94 }
Referenced by ilRatingGUI\saveRating(), ilExcCriteriaRating\updateFromAjax(), and ilLMPresentationGUI\updatePageRating().
◆ $list_data
| array ilRating::$list_data = [] |
|
staticprotected |
The documentation for this class was generated from the following file: