-
Notifications
You must be signed in to change notification settings - Fork 1
/
lib.php
202 lines (176 loc) · 7.02 KB
/
lib.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?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/>.
/**
* Cohort enrolment plugin.
*
* @package enrol
* @subpackage jwc
* @copyright 2010 Petr Skoda {@link http://skodak.org}
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
/**
* Cohort enrolment plugin implementation.
* @author Petr Skoda
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class enrol_jwc_plugin extends enrol_plugin {
/**
* Returns localised name of enrol instance
*
* @param object $instance (null is accepted too)
* @return string
*/
public function get_instance_name($instance) {
global $DB;
if (empty($instance)) {
$enrol = $this->get_name();
return get_string('pluginname', 'enrol_'.$enrol);
} else if (empty($instance->name)) {
$enrol = $this->get_name();
if ($role = $DB->get_record('role', array('id'=>$instance->roleid))) {
$role = role_get_name($role, get_context_instance(CONTEXT_COURSE, $instance->courseid));
} else {
$role = get_string('error');
}
return get_string('pluginname', 'enrol_'.$enrol) . ' (' . format_string($instance->customchar1.'-'.$instance->customchar2) . ')';
} else {
return format_string($instance->name);
}
}
/**
* Returns link to page which may be used to add new instance of enrolment plugin in course.
* @param int $courseid
* @return moodle_url page url
*/
public function get_newinstance_link($courseid) {
if (!$this->can_add_new_instances($courseid)) {
return NULL;
}
// multiple instances supported - multiple parent courses linked
return new moodle_url('/enrol/jwc/addinstance.php', array('id'=>$courseid));
}
/**
* Given a courseid this function returns true if the user is able to enrol or configure jwc
*
* @param int $courseid
* @return bool
*/
protected function can_add_new_instances($courseid) {
global $DB, $CFG;
$coursecontext = get_context_instance(CONTEXT_COURSE, $courseid);
if (!has_capability('moodle/course:enrolconfig', $coursecontext) or !has_capability('enrol/jwc:config', $coursecontext)) {
return false;
}
require_once("$CFG->dirroot/enrol/jwc/locallib.php");
if (!enrol_jwc_get_cas_teachers($courseid)) {
// 课程中必须有使用cas认证的教师
return false;
}
return true;
}
/**
* Called for all enabled enrol plugins that returned true from is_cron_required().
* @return void
*/
public function cron() {
global $DB, $CFG;
// purge all roles if jwc sync disabled, those can be recreated later here in cron
if (!enrol_is_enabled('jwc')) {
role_unassign_all(array('component'=>'jwc_enrol'));
return;
}
// 管理员可以设定清除所有选课
if ($this->get_config('unenrolall')) {
$instances = $DB->get_records('enrol', array('enrol' => 'jwc'));
foreach ($instances as $instance) {
//first unenrol all users
$participants = $DB->get_recordset('user_enrolments', array('enrolid'=>$instance->id));
foreach ($participants as $participant) {
$this->unenrol_user($instance, $participant->userid);
}
$participants->close();
// now clean up all remainders that were not removed correctly
$DB->delete_records('role_assignments', array('itemid'=>$instance->id, 'component'=>'jwc'));
$DB->delete_records('user_enrolments', array('enrolid'=>$instance->id));
}
$this->set_config('unenrolall', 0);
return;
}
// 暂时禁用cron。将来通过是否有数据更改来决定cron同步周期
// require_once("$CFG->dirroot/enrol/jwc/locallib.php");
// enrol_jwc_sync();
}
/**
* Validates course edit form data
*
* @param object $instance enrol instance or null if does not exist yet
* @param array $data
* @param object $context context of existing course or parent category if course does not exist
* @return array errors array
*/
public function course_edit_validation($instance, array $data, $context) {
global $CFG;
$errors = array();
if (!empty($data['idnumber'])) {
require_once("$CFG->dirroot/enrol/jwc/locallib.php");
$jwc = new jwc_helper();
$errormsg = '';
if (!$jwc->get_all_courses($data['idnumber'], $this->get_config('semester'), $errormsg)) {
$errors['idnumber'] = '在教务处查询此课程编号出错:'.$errormsg.'(留空可跳过此检查)';
}
}
return $errors;
}
/**
* Called after updating/inserting course.
*
* @param bool $inserted true if course just inserted
* @param object $course
* @param object $data form data
* @return void
*/
public function course_updated($inserted, $course, $data) {
global $CFG, $DB;
if (!$inserted) {
if (!empty($course->idnumber)) {
$instance = $DB->get_record('enrol', array('enrol' => 'jwc', 'courseid' => $course->id, 'customchar1' => $course->idnumber), '*', IGNORE_MULTIPLE);
if (!$instance) { // Always keep old instance and add new instance if idnumber changed
$this->add_instance($course, array('customchar1' => $course->idnumber, 'roleid' => $this->get_config('roleid')));
}
}
// sync jwc enrols
require_once("$CFG->dirroot/enrol/jwc/locallib.php");
enrol_jwc_sync($course->id);
} else {
if (!empty($course->idnumber)) {
$this->add_instance($course, array('customchar1' => $course->idnumber, 'roleid' => $this->get_config('roleid')));
}
}
}
}
/**
* Indicates API features that the enrol plugin supports.
*
* @param string $feature
* @return mixed True if yes (some features may use other values)
*/
function enrol_jwc_supports($feature) {
switch($feature) {
case ENROL_RESTORE_TYPE: return ENROL_RESTORE_EXACT;
default: return null;
}
}