Skip to content

Commit

Permalink
Merge branch 'master' into h5p
Browse files Browse the repository at this point in the history
  • Loading branch information
milt authored Oct 25, 2024
2 parents 69dec2f + 8ec991b commit 02efe51
Show file tree
Hide file tree
Showing 84 changed files with 2,265 additions and 193 deletions.
66 changes: 66 additions & 0 deletions src/transformer/events/core/group_member_added.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transform for the group member added event.
*
* @package logstore_xapi
* @copyright Milt Reder <[email protected]>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace src\transformer\events\core;

use src\transformer\utils as utils;

/**
* Transform for the group member added event.
*
* @param array $config The transformer config settings.
* @param \stdClass $event The event to be transformed.
* @return array
*/
function group_member_added(array $config, \stdClass $event) {
$repo = $config['repo'];
$user = $repo->read_record_by_id('user', $event->userid);
$member = $repo->read_record_by_id('user', $event->relateduserid);
$course = $repo->read_record_by_id('course', $event->courseid);
$lang = utils\get_course_lang($course);
$group = $repo->read_record_by_id($event->objecttable, $event->objectid);

return [[
'actor' => utils\get_user($config, $member),
'verb' => [
'id' => 'http://activitystrea.ms/join',
'display' => [
$lang => 'Joined'
],
],
'object' => utils\get_activity\course_group($config, $course, $group),
'context' => [
'instructor' => utils\get_user($config, $user),
'extensions' => utils\extensions\base($config, $event, null),
'contextActivities' => [
'parent' => [
utils\get_activity\course($config, $course),
],
'category' => [
utils\get_activity\site($config),
],
],
]
]];
}
66 changes: 66 additions & 0 deletions src/transformer/events/core/group_member_removed.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transform for the group member removed event.
*
* @package logstore_xapi
* @copyright Milt Reder <[email protected]>
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace src\transformer\events\core;

use src\transformer\utils as utils;

/**
* Transform for the group member removed event.
*
* @param array $config The transformer config settings.
* @param \stdClass $event The event to be transformed.
* @return array
*/
function group_member_removed(array $config, \stdClass $event) {
$repo = $config['repo'];
$user = $repo->read_record_by_id('user', $event->userid);
$member = $repo->read_record_by_id('user', $event->relateduserid);
$course = $repo->read_record_by_id('course', $event->courseid);
$lang = utils\get_course_lang($course);
$group = $repo->read_record_by_id($event->objecttable, $event->objectid);

return [[
'actor' => utils\get_user($config, $member),
'verb' => [
'id' => 'http://activitystrea.ms/leave',
'display' => [
$lang => 'Left'
],
],
'object' => utils\get_activity\course_group($config, $course, $group),
'context' => [
'instructor' => utils\get_user($config, $user),
'extensions' => utils\extensions\base($config, $event, null),
'contextActivities' => [
'parent' => [
utils\get_activity\course($config, $course),
],
'category' => [
utils\get_activity\site($config),
],
],
]
]];
}
74 changes: 74 additions & 0 deletions src/transformer/events/core/group_message_sent.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transformer fn for group message sent event.
*
* @package logstore_xapi
* @copyright Milt Reder <[email protected]>
*
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace src\transformer\events\core;

use src\transformer\utils as utils;

/**
* Transformer fn for group message sent event.
*
* @param array $config The transformer config settings.
* @param \stdClass $event The event to be transformed.
* @return array
*/

function group_message_sent(array $config, \stdClass $event) {
$repo = $config['repo'];
$user = $repo->read_record_by_id('user', $event->userid);
$message = $repo->read_record_by_id('messages', $event->objectid);
$conversation = $repo->read_record_by_id(
'message_conversations',
$message->conversationid
);
$group = $repo->read_record_by_id('groups', $conversation->itemid);
$course = $repo->read_record_by_id('course', $group->courseid);
$lang = utils\get_course_lang($course);

return [[
'actor' => utils\get_user($config, $user),
'verb' => [
'id' => 'http://activitystrea.ms/send',
'display' => [
$lang => 'Sent'
],
],
'object' => utils\get_activity\message($config, $lang, $message),
'context' => [
'extensions' => utils\extensions\base($config, $event, null),
'contextActivities' => [
'grouping' => [
utils\get_activity\course_group($config, $course, $group)
],
'parent' => [
utils\get_activity\course($config, $course),
],
'category' => [
utils\get_activity\site($config),
],
],
]
]];
}
74 changes: 74 additions & 0 deletions src/transformer/events/core/question_created.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transformer fn for question created event.
*
* @package logstore_xapi
* @copyright Milt Reder <[email protected]>
*
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace src\transformer\events\core;

use src\transformer\utils as utils;
use src\transformer\utils\get_activity\definition\question as qdef;

/**
* Transformer fn for question created event.
*
* @param array $config The transformer config settings.
* @param \stdClass $event The event to be transformed.
* @return array
*/

function question_created(array $config, \stdClass $event) {
$repo = $config['repo'];
$user = $repo->read_record_by_id('user', $event->userid);
$course = $repo->read_record_by_id('course', $event->courseid);
$question = $repo->read_record_by_id('question', $event->objectid);
$lang = utils\get_course_lang($course);

$definition = qdef\get_definition($config, $question, $lang);

$definition['extensions']['https://xapi.edlm/profiles/edlm-lms/concepts/activity-extensions/moodle-question-type'] = $question->qtype;

return [[
'actor' => utils\get_user($config, $user),
'verb' => [
'id' => 'http://activitystrea.ms/create',
'display' => [
$lang => 'Created'
],
],
'object' => [
'id' => $config['app_url'] . '/question?id=' . $question->id,
'definition' => $definition,
],
'context' => [
'extensions' => utils\extensions\base($config, $event, null),
'contextActivities' => [
'parent' => [
utils\get_activity\course($config, $course)
],
'category' => [
utils\get_activity\site($config),
],
],
]
]];
}
75 changes: 75 additions & 0 deletions src/transformer/events/core/search_results_viewed.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.

/**
* Transformer fn for search results viewed event.
*
* @package logstore_xapi
* @copyright Milt Reder <[email protected]>
*
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

namespace src\transformer\events\core;

use src\transformer\utils as utils;

/**
* Transformer fn for search results viewed event.
*
* @param array $config The transformer config settings.
* @param \stdClass $event The event to be transformed.
* @return array
*/

function search_results_viewed(array $config, \stdClass $event) {
$repo = $config['repo'];
$user = $repo->read_record_by_id('user', $event->userid);
$lang = $config['source_lang'];
$info = unserialize($event->other);

return [[
'actor' => utils\get_user($config, $user),
'verb' => [
'id' => 'https://w3id.org/xapi/acrossx/verbs/searched',
'display' => [
$lang => 'Searched'
],
],
'object' => [
'id' => $config['app_url'] . '/search/index.php',
'objectType' => 'Activity',
'definition' => [
'type' => 'https://w3id.org/xapi/acrossx/activities/webpage',
'name' => [
$lang => 'Global Search'
],
],
],
'result' => [
'response' => $info['q'],
],
'context' => [
'extensions' => utils\extensions\base($config, $event, null),
'contextActivities' => [
'category' => [
utils\get_activity\site($config),
],
],
],
]];

}
Loading

0 comments on commit 02efe51

Please sign in to comment.