forked from webong/plugin-paystack-moodle-enrol
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathlib.php
525 lines (477 loc) · 16.8 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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
<?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/>.
/**
* Paystack enrolment plugin.
*
* This plugin allows you to set up paid courses.
*
* @package enrol_paystack
* @copyright 2019 Paystack
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
// The base class 'enrol_plugin' can be found at lib/enrollib.php. Override
// methods as necessary.
/**
* Class enrol_paystack_plugin.
*/
class enrol_paystack_plugin extends enrol_plugin
{
/**
* Returns name of this enrol plugin
*
* @return string
*/
public function get_name()
{
// Second word in class is always enrol name, sorry, no fancy plugin names with.
$words = explode('_', get_class($this));
return $words[1];
}
/**
* Return connection mode of this enrol plugin.
*
* @return boolean
*/
public function get_mode()
{
return $this->get_config('mode') == "1" ? true : false;
}
/**
* Return public key of this enrol plugin.
*
* @return string
*/
public function get_publickey()
{
return $this->get_mode() ?
$this->get_config('live_publickey') :
$this->get_config('test_publickey') ;
}
/**
* Return secret key of this enrol plugin.
*
* @return string
*/
public function get_secretkey()
{
return $this->get_mode() ?
$this->get_config('live_secretkey') :
$this->get_config('test_secretkey') ;
}
/**
* Defines if user can be managed from admin.
*
* @param stdClass $instance course enrol instance
* @return bool - true means it is possible to change enrol period and status in user_enrolments table
*/
public function allow_manage(stdClass $instance)
{
return has_capability('enrol/paystack:manage', context_course::instance($instance->courseid));
}
/**
* Returns optional enrolment information icons.
*
* This is used in course list for quick overview of enrolment options.
*
* We are not using single instance parameter because sometimes
* we might want to prevent icon repetition when multiple instances
* of one type exist. One instance may also produce several icons.
*
* @param array $instances all enrol instances of this type in one course
* @return array of pix_icon
*/
public function get_info_icons(array $instances)
{
$found = false;
foreach ($instances as $instance) {
if ($instance->enrolstartdate != 0 && $instance->enrolstartdate > time()) {
continue;
}
if ($instance->enrolenddate != 0 && $instance->enrolenddate < time()) {
continue;
}
$found = true;
break;
}
if ($found) {
return array(new pix_icon('icon', get_string('pluginname', 'enrol_paystack'), 'enrol_paystack'));
}
return array();
}
/**
* Is it possible to hide/show enrol instance via standard UI?
*
* @param stdClass $instance
* @return bool
*/
public function can_hide_show_instance($instance)
{
$context = context_course::instance($instance->courseid);
return has_capability('enrol/paystack:config', $context);
}
/**
* Is it possible to delete enrol instance via standard UI?
*
* @param stdClass $instance
* @return bool
*/
public function can_delete_instance($instance)
{
$context = context_course::instance($instance->courseid);
return has_capability('enrol/paystack:config', $context);
}
/**
* Return whether or not, given the current state, it is possible to edit an instance
* of this enrolment plugin in the course. Used by the standard editing UI
* to generate a link to the edit instance form if editing is allowed.
*
* @param stdClass $instance
* @return boolean
*/
public function can_edit_instance($instance)
{
$context = context_course::instance($instance->courseid);
return has_capability('enrol/' . $instance->enrol . ':config', $context);
}
/**
* Defines if 'enrol me' link will be shown on course page.
*
* @param stdClass $instance of the plugin
* @return bool(true or false)
*/
public function show_enrolme_link(stdClass $instance)
{
return ($instance->status == ENROL_INSTANCE_ENABLED);
}
/**
* This add 'Edit' icon on admin panel to allow edit existing instance
* Has possibility to add more icons for additional functionality
* Create icon and add to $icons array
*
* @param stdClass $instance course enrol instance
* @return icons - List on icons that will be added to plugin instance
*/
public function get_action_icons(stdClass $instance)
{
global $OUTPUT;
if ($instance->enrol !== 'paystack') {
throw new coding_exception('invalid enrol instance!');
}
$context = context_course::instance($instance->courseid);
$icons = array();
if (has_capability('enrol/paystack:config', $context)) {
$editlink = new moodle_url("/enrol/paystack/edit.php", array('courseid' => $instance->courseid, 'id' => $instance->id));
$icons[] = $OUTPUT->action_icon(
$editlink,
new pix_icon(
't/edit',
get_string('edit'),
'core',
array('class' => 'iconsmall')
)
);
}
return $icons;
}
/**
* Sets up navigation entries.
*
* @param stdClass $instancesnode
* @param stdClass $instance
* @return void
*/
public function add_course_navigation($instancesnode, stdClass $instance)
{
if ($instance->enrol !== 'paystack') {
throw new coding_exception('Invalid enrol instance type!');
}
$context = context_course::instance($instance->courseid);
if (has_capability('enrol/paystack:config', $context)) {
$managelink = new moodle_url('/enrol/paystack/edit.php', array('courseid' => $instance->courseid, 'id' => $instance->id));
$instancesnode->add($this->get_instance_name($instance), $managelink, navigation_node::TYPE_SETTING);
}
}
/**
* Does this plugin allow manual unenrolment of all users?
* All plugins allowing this must implement 'enrol/xxx:unenrol' capability
*
* @param stdClass $instance course enrol instance
* @return bool - true means user with 'enrol/xxx:unenrol' may unenrol others freely,
* false means nobody may touch user_enrolments
*/
public function allow_unenrol(stdClass $instance)
{
$context = context_course::instance($instance->courseid);
if (has_capability('enrol/paystack:unenrolself', $context)) {
return true;
}
}
/**
* Returns list of unenrol links for all enrol instances in course.
*
* @param int $instance
* @return moodle_url or NULL if self unenrolment not supported
*/
public function get_unenrolself_link($instance)
{
global $USER, $CFG, $DB;
$name = $this->get_name();
if ($instance->enrol !== $name) {
throw new coding_exception('invalid enrol instance!');
}
if ($instance->courseid == SITEID) {
return null;
}
if (!enrol_is_enabled($name)) {
return null;
}
if ($instance->status != ENROL_INSTANCE_ENABLED) {
return null;
}
if (!file_exists("$CFG->dirroot/enrol/$name/unenrolself.php")) {
return null;
}
$context = context_course::instance($instance->courseid, MUST_EXIST);
if (!has_capability("enrol/$name:unenrolself", $context)) {
return null;
}
if (!$DB->record_exists(
'user_enrolments',
array(
'enrolid' => $instance->id,
'userid' => $USER->id,
'status' => ENROL_USER_ACTIVE
)
)) {
return null;
}
return new moodle_url("/enrol/$name/unenrolself.php", array('enrolid' => $instance->id));
}
/**
* Does this plugin allow manual unenrolment of a specific user?
* All plugins allowing this must implement 'enrol/xxx:unenrol' capability.
*
* This is useful especially for synchronisation plugins that.
* do suspend instead of full unenrolment.
*
* @param stdClass $instance course enrol instance
* @param stdClass $ue record from user_enrolments table, specifies user
*
* @return bool - true means user with 'enrol/xxx:unenrol' may unenrol this user,
* false means nobody may touch this user enrolment
*/
public function allow_unenrol_user(stdClass $instance, stdClass $ue)
{
return $this->allow_unenrol($instance);
}
/**
* 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)
{
$context = context_course::instance($courseid, MUST_EXIST);
if (!has_capability('moodle/course:enrolconfig', $context) or !has_capability('enrol/paystack:config', $context)) {
return null;
}
// Multiple instances supported - different cost for different roles.
return new moodle_url('/enrol/paystack/edit.php', array('courseid' => $courseid));
}
/**
* Creates course enrol form, checks if form submitted.
* and enrols user if necessary. It can also redirect.
*
* @param stdClass $instance
* @redirect redirects to the custom enrolment page.
*/
public function enrol_page_hook(stdClass $instance)
{
global $CFG, $OUTPUT, $SESSION, $USER, $DB;
ob_start();
if ($DB->record_exists('user_enrolments', array('userid' => $USER->id, 'enrolid' => $instance->id))) {
return ob_get_clean();
}
if ($instance->enrolstartdate != 0 && $instance->enrolstartdate > time()) {
return ob_get_clean();
}
if ($instance->enrolenddate != 0 && $instance->enrolenddate < time()) {
return ob_get_clean();
}
$course = $DB->get_record('course', array('id' => $instance->courseid));
$context = context_course::instance($course->id);
$shortname = format_string($course->shortname, true, array('context' => $context));
$strloginto = get_string("loginto", "", $shortname);
$strcourses = get_string("courses");
// Pass $view=true to filter hidden caps if the user cannot see them
if ($users = get_users_by_capability(
$context,
'moodle/course:update',
'u.*',
'u.id ASC',
'',
'',
'',
'',
false,
true
)) {
$users = sort_by_roleassignment_authority($users, $context);
$teacher = array_shift($users);
} else {
$teacher = false;
}
if ( (float) $instance->cost <= 0 ) {
$cost = (float) $this->get_config('cost');
} else {
$cost = (float) $instance->cost;
}
if (abs($cost) < 0.01) { // no cost, other enrolment methods (instances) should be used
echo '<p>'.get_string('nocost', 'enrol_paystack').'</p>';
} else {
// Calculate localised and "." cost, make sure we send Paystack the same value,
// please note Paystack expects amount with 2 decimal places and "." separator.
$localisedcost = format_float($cost, 2, true);
$cost = format_float($cost, 2, false);
if (isguestuser()) { // force login only for guest user, not real users with guest role
$wwwroot = $CFG->wwwroot;
echo '<div class="mdl-align"><p>'.get_string('paymentrequired').'</p>';
echo '<p><b>'.get_string('cost').": $instance->currency $localisedcost".'</b></p>';
echo '<p><a href="'.$wwwroot.'/login/">'.get_string('loginsite').'</a></p>';
echo '</div>';
} else {
//Sanitise some fields before building the Paystack form
$coursefullname = format_string($course->fullname, true, array('context'=>$context));
$courseshortname = $shortname;
$userfullname = fullname($USER);
$userfirstname = $USER->firstname;
$userlastname = $USER->lastname;
$useremail = $USER->email;
$instancename = $this->get_instance_name($instance);
$customfields = $this->get_custom_fields();
$publickey = $this->get_publickey();
$reference = $this->getHashedToken();
include($CFG->dirroot.'/enrol/paystack/enrol.html');
}
}
return $OUTPUT->box(ob_get_clean());
}
/**
* Get all custom fields available for plugin.
*
* @return $customfields.
*/
public function get_custom_fields()
{
global $USER, $DB;
$customfieldrecords = $DB->get_records('user_info_field');
$configured_customfields = explode(',', get_config('enrol_paystack', 'customfields'));
$customfields = [];
foreach ($customfieldrecords as $cus) {
foreach($configured_customfields as $con) {
if($con == $cus->shortname){
$customfields[] = [
'display_name' => $cus->name ,
'variable_name' => $cus->shortname,
'value' => $USER->profile[$con]
];
}
}
}
return $customfields;
}
/**
* Lists all currencies available for plugin.
*
* @return $currencies.
*/
public function get_currencies()
{
$codes = array('NGN', 'USD', 'GHS', 'KES', 'XOF', 'ZAR','EGP');
$currencies = array();
foreach ($codes as $c) {
$currencies[$c] = new lang_string($c, 'core_currencies');
}
return $currencies;
}
/**
* Converts all currency to cent value.
*
* @param string $cost Reqular price.
* @return integer $kobo price value in kobo.
*/
public function get_cost_kobo($cost)
{
if (is_string($cost)) {
$cost = floatval($cost);
}
$kobo = round($cost, 2) * 100;
return $kobo;
}
/**
* Converts cost from cent value to dollar.
*
* @param string $cost cost in kobo.
* @return float $full cost in naira.
*/
public function get_cost_full($cost)
{
if (is_string($cost)) {
$cost = floatval($cost);
}
$full = round($cost, 2) / 100;
return $full;
}
/**
* Generate a random secure crypt figure
* @param integer $min
* @param integer $max
* @return integer
*/
private static function secureCrypt($min, $max)
{
$range = $max - $min;
if ($range < 0) {
return $min; // not so random...
}
$log = log($range, 2);
$bytes = (int) ($log / 8) + 1; // length in bytes
$bits = (int) $log + 1; // length in bits
$filter = (int) (1 << $bits) - 1; // set all lower bits to 1
do {
$rnd = hexdec(bin2hex(openssl_random_pseudo_bytes($bytes)));
$rnd = $rnd & $filter; // discard irrelevant bits
} while ($rnd >= $range);
return $min + $rnd;
}
/**
* Finally, generate a hashed token
* @param integer $length
* @return string
*/
public static function getHashedToken($length = 25)
{
$token = "";
$pool = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
$max = strlen($pool);
for ($i = 0; $i < $length; $i++) {
$token .= $pool[static::secureCrypt(0, $max)];
}
return $token;
}
}