forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'wip-mdl-40126' of git://github.com/rajeshtaneja/moodle
- Loading branch information
Showing
8 changed files
with
363 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?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/>. | ||
|
||
/** | ||
* Self enrol plugin external functions and service definitions. | ||
* | ||
* @package enrol_self | ||
* @copyright 2013 Rajesh Taneja <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
* @since Moodle 2.6 | ||
*/ | ||
|
||
$functions = array( | ||
'enrol_self_get_instance_info' => array( | ||
'classname' => 'enrol_self_external', | ||
'methodname' => 'get_instance_info', | ||
'classpath' => 'enrol/self/externallib.php', | ||
'description' => 'self enrolment instance information.', | ||
'type' => 'read' | ||
) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<?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/>. | ||
|
||
/** | ||
* Self enrol plugin external functions | ||
* | ||
* @package enrol_self | ||
* @copyright 2013 Rajesh Taneja <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
require_once("$CFG->libdir/externallib.php"); | ||
|
||
/** | ||
* Self enrolment external functions. | ||
* | ||
* @package enrol_self | ||
* @copyright 2012 Rajesh Taneja <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
* @since Moodle 2.6 | ||
*/ | ||
class enrol_self_external extends external_api { | ||
|
||
/** | ||
* Returns description of get_instance_info() parameters. | ||
* | ||
* @return external_function_parameters | ||
*/ | ||
public static function get_instance_info_parameters() { | ||
return new external_function_parameters( | ||
array('instanceid' => new external_value(PARAM_INT, 'instance id of self enrolment plugin.')) | ||
); | ||
} | ||
|
||
/** | ||
* Return self-enrolment instance information. | ||
* | ||
* @param int $instanceid instance id of self enrolment plugin. | ||
* @return array instance information. | ||
*/ | ||
public static function get_instance_info($instanceid) { | ||
global $DB, $CFG; | ||
|
||
require_once($CFG->libdir . '/enrollib.php'); | ||
|
||
$params = self::validate_parameters(self::get_instance_info_parameters(), array('instanceid' => $instanceid)); | ||
|
||
// Retrieve self enrolment plugin. | ||
$enrolplugin = enrol_get_plugin('self'); | ||
if (empty($enrolplugin)) { | ||
throw new moodle_exception('invaliddata', 'error'); | ||
} | ||
|
||
$enrolinstance = $DB->get_record('enrol', array('id' => $params['instanceid']), '*', MUST_EXIST); | ||
$coursecontext = context_course::instance($enrolinstance->courseid); | ||
$categorycontext = $coursecontext->get_parent_context(); | ||
self::validate_context($categorycontext); | ||
|
||
$instanceinfo = (array) $enrolplugin->get_enrol_info($enrolinstance); | ||
if (isset($instanceinfo['requiredparam']->enrolpassword)) { | ||
$instanceinfo['enrolpassword'] = $instanceinfo['requiredparam']->enrolpassword; | ||
} | ||
unset($instanceinfo->requiredparam); | ||
|
||
return $instanceinfo; | ||
} | ||
|
||
/** | ||
* Returns description of get_instance_info() result value. | ||
* | ||
* @return external_description | ||
*/ | ||
public static function get_instance_info_returns() { | ||
return new external_single_structure( | ||
array( | ||
'id' => new external_value(PARAM_INT, 'id of course enrolment instance'), | ||
'courseid' => new external_value(PARAM_INT, 'id of course'), | ||
'type' => new external_value(PARAM_PLUGIN, 'type of enrolment plugin'), | ||
'name' => new external_value(PARAM_RAW, 'name of enrolment plugin'), | ||
'status' => new external_value(PARAM_RAW, 'status of enrolment plugin'), | ||
'enrolpassword' => new external_value(PARAM_RAW, 'password required for enrolment', VALUE_OPTIONAL), | ||
) | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<?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/>. | ||
|
||
/** | ||
* Self enrol external PHPunit tests | ||
* | ||
* @package enrol_self | ||
* @copyright 2013 Rajesh Taneja <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
* @since Moodle 2.6 | ||
*/ | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
global $CFG; | ||
|
||
require_once($CFG->dirroot . '/webservice/tests/helpers.php'); | ||
require_once($CFG->dirroot . '/enrol/self/externallib.php'); | ||
|
||
class enrol_self_external_testcase extends externallib_advanced_testcase { | ||
|
||
/** | ||
* Test get_instance_info | ||
*/ | ||
public function test_get_instance_info() { | ||
global $DB; | ||
|
||
$this->resetAfterTest(true); | ||
|
||
// Check if self enrolment plugin is enabled. | ||
$selfplugin = enrol_get_plugin('self'); | ||
$this->assertNotEmpty($selfplugin); | ||
|
||
$studentrole = $DB->get_record('role', array('shortname'=>'student')); | ||
$this->assertNotEmpty($studentrole); | ||
|
||
$course = self::getDataGenerator()->create_course(); | ||
|
||
// Add enrolment methods for course. | ||
$instanceid1 = $selfplugin->add_instance($course, array('status' => ENROL_INSTANCE_ENABLED, | ||
'name' => 'Test instance 1', | ||
'customint6' => 1, | ||
'roleid' => $studentrole->id)); | ||
$instanceid2 = $selfplugin->add_instance($course, array('status' => ENROL_INSTANCE_DISABLED, | ||
'customint6' => 1, | ||
'name' => 'Test instance 2', | ||
'roleid' => $studentrole->id)); | ||
|
||
$instanceid3 = $selfplugin->add_instance($course, array('status' => ENROL_INSTANCE_ENABLED, | ||
'roleid' => $studentrole->id, | ||
'customint6' => 1, | ||
'name' => 'Test instance 3', | ||
'password' => 'test')); | ||
|
||
$enrolmentmethods = $DB->get_records('enrol', array('courseid' => $course->id, 'status' => ENROL_INSTANCE_ENABLED)); | ||
$this->assertCount(3, $enrolmentmethods); | ||
|
||
$instanceinfo1 = enrol_self_external::get_instance_info($instanceid1); | ||
|
||
$this->assertEquals($instanceid1, $instanceinfo1['id']); | ||
$this->assertEquals($course->id, $instanceinfo1['courseid']); | ||
$this->assertEquals('self', $instanceinfo1['type']); | ||
$this->assertEquals('Test instance 1', $instanceinfo1['name']); | ||
$this->assertTrue($instanceinfo1['status']); | ||
$this->assertFalse(isset($instanceinfo1['enrolpassword'])); | ||
|
||
$instanceinfo2 = enrol_self_external::get_instance_info($instanceid2); | ||
$this->assertEquals($instanceid2, $instanceinfo2['id']); | ||
$this->assertEquals($course->id, $instanceinfo2['courseid']); | ||
$this->assertEquals('self', $instanceinfo2['type']); | ||
$this->assertEquals('Test instance 2', $instanceinfo2['name']); | ||
$this->assertEquals(get_string('canntenrol', 'enrol_self'), $instanceinfo2['status']); | ||
$this->assertFalse(isset($instanceinfo2['enrolpassword'])); | ||
|
||
$instanceinfo3 = enrol_self_external::get_instance_info($instanceid3); | ||
$this->assertEquals($instanceid3, $instanceinfo3['id']); | ||
$this->assertEquals($course->id, $instanceinfo3['courseid']); | ||
$this->assertEquals('self', $instanceinfo3['type']); | ||
$this->assertEquals('Test instance 3', $instanceinfo3['name']); | ||
$this->assertTrue($instanceinfo3['status']); | ||
$this->assertEquals(get_string('password', 'enrol_self'), $instanceinfo3['enrolpassword']); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters