From 9f7de6317d2a44b613bcd7fa51b334c854ce63f9 Mon Sep 17 00:00:00 2001 From: Costantino Cito Date: Mon, 15 Jun 2015 09:45:39 +0200 Subject: [PATCH] MDL-50537 mod_chat: New WS mod_chat_get_chats_by_courses --- lib/db/services.php | 1 + mod/chat/classes/external.php | 130 ++++++++++++++++++++++++++++ mod/chat/tests/externallib_test.php | 49 +++++++++++ version.php | 2 +- 4 files changed, 181 insertions(+), 1 deletion(-) diff --git a/lib/db/services.php b/lib/db/services.php index 7f20cf602d5..79228fdd7c5 100644 --- a/lib/db/services.php +++ b/lib/db/services.php @@ -1166,6 +1166,7 @@ $services = array( 'mod_chat_send_chat_message', 'mod_chat_get_chat_latest_messages', 'mod_chat_view_chat', + 'mod_chat_get_chats_by_courses', 'mod_book_view_book', ), 'enabled' => 0, diff --git a/mod/chat/classes/external.php b/mod/chat/classes/external.php index 26204d68a48..311c2a0edfc 100644 --- a/mod/chat/classes/external.php +++ b/mod/chat/classes/external.php @@ -493,4 +493,134 @@ class mod_chat_external extends external_api { ); } + /** + * Describes the parameters for get_chats_by_courses. + * + * @return external_external_function_parameters + * @since Moodle 3.0 + */ + public static function get_chats_by_courses_parameters() { + return new external_function_parameters ( + array( + 'courseids' => new external_multiple_structure( + new external_value(PARAM_INT, 'course id'), + 'Array of course ids', VALUE_DEFAULT, array() + ), + ) + ); + } + /** + * Returns a list of chats in a provided list of courses, + * if no list is provided all chats that the user can view will be returned. + * + * @param array $courseids the course ids + * @return array of chats details + * @since Moodle 3.0 + */ + public static function get_chats_by_courses($courseids = array()) { + global $CFG; + $params = self::validate_parameters(self::get_chats_by_courses_parameters(), array('courseids' => $courseids)); + $warnings = array(); + if (!empty($params['courseids'])) { + $courses = array(); + $courseids = $params['courseids']; + } else { + $courses = enrol_get_my_courses(); + $courseids = array_keys($courses); + } + // Array to store the chats to return. + $arrchats = array(); + // Ensure there are courseids to loop through. + if (!empty($courseids)) { + // Array of the courses we are going to retrieve the chats from. + $arraycourses = array(); + // Go through the courseids. + foreach ($courseids as $cid) { + // Check the user can function in this context. + try { + $context = context_course::instance($cid); + self::validate_context($context); + // Check if this course was already loaded (by enrol_get_my_courses). + if (!isset($courses[$cid])) { + $courses[$cid] = get_course($cid); + } + $arraycourses[$cid] = $courses[$cid]; + } catch (Exception $e) { + $warnings[] = array( + 'item' => 'course', + 'itemid' => $cid, + 'warningcode' => '1', + 'message' => 'No access rights in course context '.$e->getMessage() + ); + } + } + // Get the chats in this course, this function checks users visibility permissions. + // We can avoid then additional validate_context calls. + $chats = get_all_instances_in_courses("chat", $arraycourses); + foreach ($chats as $chat) { + $chatcontext = context_module::instance($chat->coursemodule); + // Entry to return. + $chatdetails = array(); + // First, we return information that any user can see in the web interface. + $chatdetails['id'] = $chat->id; + $chatdetails['coursemodule'] = $chat->coursemodule; + $chatdetails['course'] = $chat->course; + $chatdetails['name'] = $chat->name; + // Format intro. + list($chatdetails['intro'], $chatdetails['introformat']) = + external_format_text($chat->intro, $chat->introformat, + $chatcontext->id, 'mod_chat', 'intro', null); + if (has_capability('moodle/course:manageactivities', $chatcontext)) { + $chatdetails['keepdays'] = $chat->keepdays; + $chatdetails['studentlogs'] = $chat->studentlogs; + $chatdetails['chattime'] = $chat->chattime; + $chatdetails['schedule'] = $chat->schedule; + $chatdetails['timemodified'] = $chat->timemodified; + $chatdetails['section'] = $chat->section; + $chatdetails['visible'] = $chat->visible; + $chatdetails['groupmode'] = $chat->groupmode; + $chatdetails['groupingid'] = $chat->groupingid; + } + $arrchats[] = $chatdetails; + } + } + $result = array(); + $result['chats'] = $arrchats; + $result['warnings'] = $warnings; + return $result; + } + /** + * Describes the get_chats_by_courses return value. + * + * @return external_single_structure + * @since Moodle 3.0 + */ + public static function get_chats_by_courses_returns() { + return new external_single_structure( + array( + 'chats' => new external_multiple_structure( + new external_single_structure( + array( + 'id' => new external_value(PARAM_INT, 'Chat id'), + 'coursemodule' => new external_value(PARAM_INT, 'Course module id'), + 'course' => new external_value(PARAM_TEXT, 'Course id'), + 'name' => new external_value(PARAM_TEXT, 'Chat name'), + 'intro' => new external_value(PARAM_RAW, 'The Chat intro'), + 'introformat' => new external_format_value('intro'), + 'keepdays' => new external_value(PARAM_INT, 'keep days', VALUE_OPTIONAL), + 'studentlogs' => new external_value(PARAM_INT, 'student logs visible to everyone', VALUE_OPTIONAL), + 'chattime' => new external_value(PARAM_RAW, 'chat time', VALUE_OPTIONAL), + 'schedule' => new external_value(PARAM_INT, 'schedule type', VALUE_OPTIONAL), + 'timemodified' => new external_value(PARAM_RAW, 'time of last modification', VALUE_OPTIONAL), + 'section' => new external_value(PARAM_INT, 'course section id', VALUE_OPTIONAL), + 'visible' => new external_value(PARAM_BOOL, 'visible', VALUE_OPTIONAL), + 'groupmode' => new external_value(PARAM_INT, 'group mode', VALUE_OPTIONAL), + 'groupingid' => new external_value(PARAM_INT, 'group id', VALUE_OPTIONAL), + ), 'Chats' + ) + ), + 'warnings' => new external_warnings(), + ) + ); + } } diff --git a/mod/chat/tests/externallib_test.php b/mod/chat/tests/externallib_test.php index 5497b24a941..d8265b92427 100644 --- a/mod/chat/tests/externallib_test.php +++ b/mod/chat/tests/externallib_test.php @@ -217,6 +217,55 @@ class mod_chat_external_testcase extends externallib_advanced_testcase { } catch (moodle_exception $e) { $this->assertEquals('nopermissions', $e->errorcode); } + } + /** + * Test get_chats_by_courses + */ + public function test_get_chats_by_courses() { + global $DB, $USER; + $this->resetAfterTest(true); + $this->setAdminUser(); + $course1 = self::getDataGenerator()->create_course(); + $chatoptions1 = array( + 'course' => $course1->id, + 'name' => 'First Chat' + ); + $chat1 = self::getDataGenerator()->create_module('chat', $chatoptions1); + $course2 = self::getDataGenerator()->create_course(); + $chatoptions2 = array( + 'course' => $course2->id, + 'name' => 'Second Chat' + ); + $chat2 = self::getDataGenerator()->create_module('chat', $chatoptions2); + $student1 = $this->getDataGenerator()->create_user(); + $studentrole = $DB->get_record('role', array('shortname' => 'student')); + // Enroll Student1 in Course1. + self::getDataGenerator()->enrol_user($student1->id, $course1->id, $studentrole->id); + $this->setUser($student1); + $chats = mod_chat_external::get_chats_by_courses(array()); + // We need to execute the return values cleaning process to simulate the web service server. + $chats = external_api::clean_returnvalue(mod_chat_external::get_chats_by_courses_returns(), $chats); + $this->assertCount(1, $chats['chats']); + $this->assertEquals('First Chat', $chats['chats'][0]['name']); + // As Student you cannot see some chat properties like 'showunanswered'. + $this->assertFalse(isset($chats['chats'][0]['section'])); + // Student1 is not enrolled in this Course. + // The webservice will give a warning! + $chats = mod_chat_external::get_chats_by_courses(array($course2->id)); + // We need to execute the return values cleaning process to simulate the web service server. + $chats = external_api::clean_returnvalue(mod_chat_external::get_chats_by_courses_returns(), $chats); + $this->assertCount(0, $chats['chats']); + $this->assertEquals(1, $chats['warnings'][0]['warningcode']); + // Now as admin. + $this->setAdminUser(); + // As Admin we can see this chat. + $chats = mod_chat_external::get_chats_by_courses(array($course2->id)); + // We need to execute the return values cleaning process to simulate the web service server. + $chats = external_api::clean_returnvalue(mod_chat_external::get_chats_by_courses_returns(), $chats); + $this->assertCount(1, $chats['chats']); + $this->assertEquals('Second Chat', $chats['chats'][0]['name']); + // As an Admin you can see some chat properties like 'section'. + $this->assertEquals(0, $chats['chats'][0]['section']); } } diff --git a/version.php b/version.php index 024de437c55..163ebd673d0 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2015090900.00; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2015090900.01; // YYYYMMDD = weekly release date of this DEV branch. // RR = release increments - 00 in DEV branches. // .XX = incremental changes. -- 2.43.0