mirror of
https://github.com/LdesignMedia/moodle-availability_ipaddress.git
synced 2026-05-16 21:41:28 +02:00
Merge pull request #12 from LdesignMedia/86c46bd0u-predefined-ranges
Update #86c46bd0u - Add support for predefined IP addresses/ranges
This commit is contained in:
32
README.md
32
README.md
@@ -1,32 +1,36 @@
|
||||
## Moodle - availability ip address plugin
|
||||
|
||||
[](https://github.com/LdesignMedia/moodle-availability_ipaddress/actions/workflows/ci.yml)
|
||||
|
||||
Enhance activity security by restricting access based on IP address. This plugin allows you to control the availability of any chosen
|
||||
activity, making it accessible only to users from specified IP addresses.
|
||||
|
||||
## Author
|
||||

|
||||
<img src="https://ldesignmedia.nl/themes/ldesignmedia/assets/images/logo/logo.svg" alt="ldesignmedia" height="70px">
|
||||
|
||||
* Author: Luuk Verhoeven, [ldesignmedia.nl](https://ldesignmedia.nl/)
|
||||
* Author: Vincent Cornelis, [ldesignmedia.nl](https://ldesignmedia.nl/)
|
||||
* Min. required: Moodle 4.0
|
||||
* Supports PHP: 7.4
|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
## List of features
|
||||
- Supports comma separate list of ip-addresses
|
||||
- Subnet support, eg 192.168.1.0/24
|
||||
- Inline ip-address validation
|
||||
- Turning on/off with eye icon, without lossing the input value.
|
||||
- Turning on/off with eye icon, without losing the input value.
|
||||
|
||||
## Installation
|
||||
1. Copy this plugin to the `availability\condition\ipaddress` folder on the server
|
||||
@@ -60,6 +64,8 @@ Contributions are welcome and will be fully credited. We accept contributions vi
|
||||
|
||||
## Changelog
|
||||
|
||||
- 2024080401 Added support for pre-configuring IP ranges by admins
|
||||
- 2025052200 Tested on Moodle 5.0
|
||||
- 2025040400 Tested on Moodle 4.5
|
||||
- 2024072000 Tested on Moodle 4.4
|
||||
- 2022021100 Thanks for adding ip-range support @[juacas](https://github.com/juacas)
|
||||
|
||||
@@ -38,25 +38,41 @@ use core_availability\info;
|
||||
class condition extends \core_availability\condition {
|
||||
|
||||
/**
|
||||
* Manual provided IP addresses.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected string $ipaddresses = '';
|
||||
|
||||
/**
|
||||
* Predefined IP address ranges.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected array $predefinedranges = [];
|
||||
|
||||
/**
|
||||
* condition constructor.
|
||||
*
|
||||
* @param \stdClass $structure
|
||||
*/
|
||||
public function __construct($structure) {
|
||||
public function __construct(\stdClass $structure) {
|
||||
if (isset($structure->ipaddresses)) {
|
||||
$this->ipaddresses = $structure->ipaddresses;
|
||||
}
|
||||
if (isset($structure->predefined_ranges)) {
|
||||
$this->predefinedranges = $structure->predefined_ranges;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines whether a particular item is currently available
|
||||
* according to this availability condition.
|
||||
*
|
||||
* Note: Cannot add type declarations for $not, $grabthelot, and $userid parameters
|
||||
* as the parent core_availability\condition::is_available() method doesn't have them,
|
||||
* and PHP requires compatibility with parent method signatures when overriding.
|
||||
*
|
||||
* If implementations require a course or modinfo, they should use
|
||||
* the get methods in $info.
|
||||
*
|
||||
@@ -78,14 +94,43 @@ class condition extends \core_availability\condition {
|
||||
* @return bool True if available
|
||||
*/
|
||||
public function is_available($not, info $info, $grabthelot, $userid): bool {
|
||||
global $DB;
|
||||
|
||||
if (empty($this->ipaddresses)) {
|
||||
// Collect all IP addresses to check.
|
||||
$allipaddresses = [];
|
||||
|
||||
// Add custom IP addresses.
|
||||
if (!empty($this->ipaddresses)) {
|
||||
$allipaddresses[] = trim($this->ipaddresses);
|
||||
}
|
||||
|
||||
// Add predefined ranges.
|
||||
if (!empty($this->predefinedranges)) {
|
||||
$ranges = $DB->get_records_list(
|
||||
'availability_ipaddress_pre',
|
||||
'id',
|
||||
$this->predefinedranges,
|
||||
'',
|
||||
'ipaddresses'
|
||||
);
|
||||
foreach ($ranges as $range) {
|
||||
if (!empty($range->ipaddresses)) {
|
||||
$allipaddresses[] = trim($range->ipaddresses);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// If no IP addresses are configured, the condition passes.
|
||||
if (empty($allipaddresses)) {
|
||||
return !$not;
|
||||
}
|
||||
|
||||
// Check if ip-address matches.
|
||||
if (address_in_subnet(getremoteaddr(), trim($this->ipaddresses))) {
|
||||
return !$not;
|
||||
// Check if user's IP matches any of the allowed addresses.
|
||||
$userip = getremoteaddr();
|
||||
foreach ($allipaddresses as $iplist) {
|
||||
if (address_in_subnet($userip, $iplist)) {
|
||||
return !$not;
|
||||
}
|
||||
}
|
||||
|
||||
return $not;
|
||||
@@ -97,6 +142,9 @@ class condition extends \core_availability\condition {
|
||||
* students if the activity is not available to them, and for staff to see
|
||||
* what conditions are.
|
||||
*
|
||||
* Note: Cannot add type declarations for $full and $not parameters as the parent
|
||||
* core_availability\condition::get_description() method doesn't have them.
|
||||
*
|
||||
* The $full parameter can be used to distinguish between 'staff' cases
|
||||
* (when displaying all information about the activity) and 'student' cases
|
||||
* (when displaying only conditions they don't meet).
|
||||
@@ -115,7 +163,10 @@ class condition extends \core_availability\condition {
|
||||
* @return string Information string (for admin) about all restrictions on this item
|
||||
*/
|
||||
public function get_description($full, $not, info $info): string {
|
||||
return get_string('require_condition', 'availability_ipaddress', getremoteaddr());
|
||||
|
||||
$desc = $not ? 'require_condition_not' : 'require_condition';
|
||||
|
||||
return get_string($desc, 'availability_ipaddress', getremoteaddr());
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -151,10 +202,16 @@ class condition extends \core_availability\condition {
|
||||
* @return \stdClass Structure object (ready to be made into JSON format)
|
||||
*/
|
||||
public function save(): \stdClass {
|
||||
return (object) [
|
||||
$result = (object) [
|
||||
'type' => 'ipaddress',
|
||||
'ipaddresses' => $this->ipaddresses,
|
||||
];
|
||||
|
||||
if (!empty($this->predefinedranges)) {
|
||||
$result->predefined_ranges = $this->predefinedranges;
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
151
classes/form/range_form.php
Normal file
151
classes/form/range_form.php
Normal file
@@ -0,0 +1,151 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Form for managing predefined IP ranges.
|
||||
*
|
||||
* @package availability_ipaddress
|
||||
* @copyright 04/08/2025 LdesignMedia.nl - Luuk Verhoeven
|
||||
* @author Vincent Cornelis
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace availability_ipaddress\form;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $CFG;
|
||||
require_once($CFG->libdir . '/formslib.php');
|
||||
|
||||
/**
|
||||
* Form for managing predefined IP ranges.
|
||||
*
|
||||
* @package availability_ipaddress
|
||||
* @copyright 04/08/2025 LdesignMedia.nl - Luuk Verhoeven
|
||||
* @author Vincent Cornelis
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class range_form extends \moodleform {
|
||||
|
||||
/**
|
||||
* Define the form.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function definition(): void {
|
||||
$mform = $this->_form;
|
||||
$id = $this->_customdata['id'] ?? 0;
|
||||
|
||||
// Hidden id field.
|
||||
$mform->addElement('hidden', 'id');
|
||||
$mform->setType('id', PARAM_INT);
|
||||
$mform->setDefault('id', $id);
|
||||
|
||||
// Name field.
|
||||
$mform->addElement('text', 'name', get_string('range_name', 'availability_ipaddress'));
|
||||
$mform->setType('name', PARAM_TEXT);
|
||||
$mform->addRule('name', null, 'required', null, 'client');
|
||||
$mform->addHelpButton('name', 'range_name', 'availability_ipaddress');
|
||||
|
||||
// IP addresses field.
|
||||
$mform->addElement(
|
||||
'text',
|
||||
'ipaddresses',
|
||||
get_string('ipaddresses', 'availability_ipaddress'),
|
||||
['size' => 100]
|
||||
);
|
||||
$mform->setType('ipaddresses', PARAM_TEXT);
|
||||
$mform->addRule('ipaddresses', null, 'required', null, 'client');
|
||||
$mform->addHelpButton('ipaddresses', 'ipaddresses_help', 'availability_ipaddress');
|
||||
|
||||
// Description field.
|
||||
$mform->addElement('textarea', 'description', get_string('description'),
|
||||
['rows' => 3, 'cols' => 60]);
|
||||
$mform->setType('description', PARAM_TEXT);
|
||||
|
||||
// Enabled field.
|
||||
$mform->addElement('advcheckbox', 'enabled', get_string('enabled', 'availability_ipaddress'));
|
||||
$mform->setDefault('enabled', 1);
|
||||
|
||||
// Action buttons.
|
||||
$this->add_action_buttons();
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate the form data.
|
||||
*
|
||||
* Note: Parameter type declarations cannot be added here as the parent
|
||||
* moodleform::validation() method doesn't have them, and PHP requires
|
||||
* compatibility with parent method signatures when overriding.
|
||||
*
|
||||
* @param array $data
|
||||
* @param array $files
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function validation($data, $files) {
|
||||
$errors = parent::validation($data, $files);
|
||||
|
||||
// Validate IP addresses.
|
||||
if (!empty($data['ipaddresses'])) {
|
||||
$ipaddresses = explode(',', $data['ipaddresses']);
|
||||
foreach ($ipaddresses as $ip) {
|
||||
$ip = trim($ip);
|
||||
if (!$this->validate_ip_format($ip)) {
|
||||
$errors['ipaddresses'] = get_string('error_ipaddress', 'availability_ipaddress');
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $errors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate IP address format.
|
||||
*
|
||||
* @param string $ip
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
private function validate_ip_format(string $ip): bool {
|
||||
|
||||
// Use the same validation logic as the main plugin.
|
||||
// This is a simplified version - you might want to use the same regex as in JS.
|
||||
if (filter_var($ip, FILTER_VALIDATE_IP)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Check for CIDR notation.
|
||||
if (strpos($ip, '/') !== false) {
|
||||
[$addr, $mask] = explode('/', $ip);
|
||||
if (filter_var($addr, FILTER_VALIDATE_IP) && is_numeric($mask)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
// Check for IP range.
|
||||
if (strpos($ip, '-') !== false) {
|
||||
[$start, $end] = explode('-', $ip);
|
||||
if (filter_var($start, FILTER_VALIDATE_IP)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -44,7 +44,42 @@ class frontend extends \core_availability\frontend {
|
||||
return [
|
||||
'js:ipaddress',
|
||||
'error_ipaddress',
|
||||
'predefined_ranges',
|
||||
'custom_ipaddress',
|
||||
'use_predefined',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get additional parameters for the JavaScript module.
|
||||
*
|
||||
* Note: Cannot add type declaration for $course parameter as the parent
|
||||
* core_availability\frontend::get_javascript_init_params() method doesn't
|
||||
* have it, and PHP requires compatibility with parent method signatures.
|
||||
*
|
||||
* @param \stdClass $course Course object
|
||||
* @param \cm_info|null $cm Course module
|
||||
* @param \section_info|null $section Section
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected function get_javascript_init_params($course, ?\cm_info $cm = null, ?\section_info $section = null): array {
|
||||
global $DB;
|
||||
|
||||
// Get enabled predefined IP ranges.
|
||||
$ranges = $DB->get_records('availability_ipaddress_pre', ['enabled' => 1], 'name', 'id, name, ipaddresses');
|
||||
|
||||
// Format for JavaScript.
|
||||
$rangedata = [];
|
||||
foreach ($ranges as $range) {
|
||||
$rangedata[] = [
|
||||
'id' => $range->id,
|
||||
'name' => format_string($range->name),
|
||||
'ipaddresses' => $range->ipaddresses,
|
||||
];
|
||||
}
|
||||
|
||||
return [$rangedata];
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
365
classes/helper.php
Normal file
365
classes/helper.php
Normal file
@@ -0,0 +1,365 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Helper functions for availability_ipaddress.
|
||||
*
|
||||
* @package availability_ipaddress
|
||||
* @copyright 04/08/2025 LdesignMedia.nl - Luuk Verhoeven
|
||||
* @author Vincent Cornelis
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace availability_ipaddress;
|
||||
|
||||
/**
|
||||
* Helper class for availability_ipaddress.
|
||||
*
|
||||
* @package availability_ipaddress
|
||||
* @copyright 04/08/2025 LdesignMedia.nl - Luuk Verhoeven
|
||||
* @author Vincent Cornelis
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class helper {
|
||||
|
||||
/**
|
||||
* Check if a predefined range is in use.
|
||||
*
|
||||
* @param int $rangeid The ID of the range to check.
|
||||
*
|
||||
* @return array Array with 'inuse' boolean and 'count' of uses.
|
||||
*/
|
||||
public static function is_range_in_use(int $rangeid): array {
|
||||
$activities = [];
|
||||
|
||||
// Check course modules.
|
||||
$moduleactivities = self::check_range_in_modules($rangeid);
|
||||
$activities = array_merge($activities, $moduleactivities);
|
||||
|
||||
// Check sections.
|
||||
$sectionactivities = self::check_range_in_sections($rangeid);
|
||||
$activities = array_merge($activities, $sectionactivities);
|
||||
|
||||
$count = count($activities);
|
||||
|
||||
return [
|
||||
'inuse' => ($count > 0),
|
||||
'count' => $count,
|
||||
'activities' => $activities,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a range is used in course modules.
|
||||
*
|
||||
* @param int $rangeid The ID of the range to check.
|
||||
*
|
||||
* @return array Array of activities using the range.
|
||||
*/
|
||||
private static function check_range_in_modules(int $rangeid): array {
|
||||
global $DB;
|
||||
|
||||
$activities = [];
|
||||
|
||||
$sql = "SELECT cm.id, cm.course, cm.availability, cm.module, cm.instance,
|
||||
c.fullname as coursename, m.name as modname
|
||||
FROM {course_modules} cm
|
||||
JOIN {course} c ON c.id = cm.course
|
||||
JOIN {modules} m ON m.id = cm.module
|
||||
WHERE cm.availability IS NOT NULL AND cm.availability != ''";
|
||||
|
||||
$modules = $DB->get_records_sql($sql);
|
||||
|
||||
foreach ($modules as $module) {
|
||||
$availability = json_decode($module->availability);
|
||||
if (!$availability || !self::check_availability_tree($availability, $rangeid)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$activityname = self::get_module_name($module);
|
||||
$activities[] = [
|
||||
'coursename' => $module->coursename,
|
||||
'cmid' => $module->id,
|
||||
'name' => $activityname,
|
||||
];
|
||||
}
|
||||
|
||||
return $activities;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the name of a module.
|
||||
*
|
||||
* @param \stdClass $module The module record.
|
||||
*
|
||||
* @return string The module name.
|
||||
*/
|
||||
private static function get_module_name(\stdClass $module): string {
|
||||
global $DB;
|
||||
|
||||
try {
|
||||
if ($DB->get_manager()->table_exists($module->modname)) {
|
||||
$activity = $DB->get_record($module->modname, ['id' => $module->instance], 'name', IGNORE_MISSING);
|
||||
if ($activity && !empty($activity->name)) {
|
||||
return $activity->name;
|
||||
}
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
// Table doesn't exist or other database error - fall through to default.
|
||||
debugging('Error getting module name: ' . $e->getMessage(), DEBUG_DEVELOPER);
|
||||
}
|
||||
|
||||
return get_string('modulename', $module->modname);
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a range is used in course sections.
|
||||
*
|
||||
* @param int $rangeid The ID of the range to check.
|
||||
*
|
||||
* @return array Array of sections using the range.
|
||||
*/
|
||||
private static function check_range_in_sections(int $rangeid): array {
|
||||
global $DB;
|
||||
|
||||
$activities = [];
|
||||
|
||||
$sql = "SELECT cs.id, cs.course, cs.availability, cs.name, cs.section, c.fullname as coursename
|
||||
FROM {course_sections} cs
|
||||
JOIN {course} c ON c.id = cs.course
|
||||
WHERE cs.availability IS NOT NULL AND cs.availability != ''";
|
||||
|
||||
$sections = $DB->get_records_sql($sql);
|
||||
|
||||
foreach ($sections as $section) {
|
||||
$availability = json_decode($section->availability);
|
||||
if (!$availability || !self::check_availability_tree($availability, $rangeid)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$sectionname = $section->name ?: get_string('section') . ' ' . $section->section;
|
||||
$activities[] = [
|
||||
'coursename' => $section->coursename,
|
||||
'cmid' => 0,
|
||||
'name' => $sectionname,
|
||||
];
|
||||
}
|
||||
|
||||
return $activities;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recursively check availability tree for range usage.
|
||||
*
|
||||
* @param \stdClass $availability The availability tree.
|
||||
* @param int $rangeid The range ID to look for.
|
||||
*
|
||||
* @return bool True if range is found in tree.
|
||||
*/
|
||||
private static function check_availability_tree(\stdClass $availability, int $rangeid): bool {
|
||||
|
||||
// Check if this is an IP address condition.
|
||||
if (isset($availability->type) && $availability->type === 'ipaddress') {
|
||||
if (isset($availability->predefined_ranges) && is_array($availability->predefined_ranges)) {
|
||||
return in_array($rangeid, $availability->predefined_ranges);
|
||||
}
|
||||
}
|
||||
|
||||
// Check nested conditions (for groups).
|
||||
if (isset($availability->c) && is_array($availability->c)) {
|
||||
foreach ($availability->c as $condition) {
|
||||
if (self::check_availability_tree($condition, $rangeid)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get usage details for a range as HTML.
|
||||
*
|
||||
* @param int $rangeid The range ID.
|
||||
*
|
||||
* @return string HTML string with usage details.
|
||||
*/
|
||||
public static function get_range_usage_html(int $rangeid): string {
|
||||
$usage = self::is_range_in_use($rangeid);
|
||||
|
||||
if (!$usage['inuse']) {
|
||||
return '';
|
||||
}
|
||||
|
||||
$html = \html_writer::tag('p', get_string('range_in_use_count', 'availability_ipaddress', $usage['count']));
|
||||
|
||||
if (!empty($usage['activities'])) {
|
||||
$items = [];
|
||||
foreach (array_slice($usage['activities'], 0, 5) as $activity) {
|
||||
$items[] = $activity['coursename'] . ': ' . $activity['name'];
|
||||
}
|
||||
$html .= \html_writer::alist($items);
|
||||
|
||||
if (count($usage['activities']) > 5) {
|
||||
$more = count($usage['activities']) - 5;
|
||||
$html .= \html_writer::tag('p', get_string('and_x_more', 'availability_ipaddress', $more));
|
||||
}
|
||||
}
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove a predefined range from all availability restrictions.
|
||||
*
|
||||
* @param int $rangeid The ID of the range to remove.
|
||||
*
|
||||
* @return int Number of restrictions updated.
|
||||
*/
|
||||
public static function remove_range_from_restrictions(int $rangeid): int {
|
||||
global $DB;
|
||||
|
||||
$updatecount = 0;
|
||||
|
||||
// Update course modules.
|
||||
$sql = "SELECT cm.id, cm.availability
|
||||
FROM {course_modules} cm
|
||||
WHERE cm.availability IS NOT NULL AND cm.availability != ''";
|
||||
|
||||
$modules = $DB->get_records_sql($sql);
|
||||
|
||||
foreach ($modules as $module) {
|
||||
$availability = json_decode($module->availability);
|
||||
if ($availability && self::remove_range_from_tree($availability, $rangeid)) {
|
||||
$module->availability = json_encode($availability);
|
||||
$DB->update_record('course_modules', $module);
|
||||
$updatecount++;
|
||||
|
||||
// Rebuild course cache.
|
||||
$course = $DB->get_record('course', ['id' => $DB->get_field('course_modules', 'course', ['id' => $module->id])]);
|
||||
if ($course) {
|
||||
rebuild_course_cache($course->id, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Update course sections.
|
||||
$sql = "SELECT cs.id, cs.course, cs.availability
|
||||
FROM {course_sections} cs
|
||||
WHERE cs.availability IS NOT NULL AND cs.availability != ''";
|
||||
|
||||
$sections = $DB->get_records_sql($sql);
|
||||
|
||||
foreach ($sections as $section) {
|
||||
$availability = json_decode($section->availability);
|
||||
if ($availability && self::remove_range_from_tree($availability, $rangeid)) {
|
||||
$section->availability = json_encode($availability);
|
||||
$DB->update_record('course_sections', $section);
|
||||
$updatecount++;
|
||||
|
||||
// Rebuild course cache.
|
||||
rebuild_course_cache($section->course, true);
|
||||
}
|
||||
}
|
||||
|
||||
return $updatecount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recursively remove range from availability tree.
|
||||
*
|
||||
* @param \stdClass $availability The availability tree.
|
||||
* @param int $rangeid The range ID to remove.
|
||||
*
|
||||
* @return bool True if tree was modified.
|
||||
*/
|
||||
private static function remove_range_from_tree(\stdClass $availability, int $rangeid): bool {
|
||||
$modified = false;
|
||||
|
||||
// Process IP address conditions.
|
||||
if (self::is_ipaddress_condition($availability)) {
|
||||
$modified = self::remove_range_from_condition($availability, $rangeid);
|
||||
}
|
||||
|
||||
// Process nested conditions.
|
||||
return self::process_nested_conditions($availability, $rangeid) || $modified;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the availability item is an IP address condition.
|
||||
*
|
||||
* @param \stdClass $availability The availability item.
|
||||
*
|
||||
* @return bool True if it's an IP address condition.
|
||||
*/
|
||||
private static function is_ipaddress_condition(\stdClass $availability): bool {
|
||||
return isset($availability->type) && $availability->type === 'ipaddress';
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove range from an IP address condition.
|
||||
*
|
||||
* @param \stdClass $availability The availability condition.
|
||||
* @param int $rangeid The range ID to remove.
|
||||
*
|
||||
* @return bool True if the condition was modified.
|
||||
*/
|
||||
private static function remove_range_from_condition(\stdClass $availability, int $rangeid): bool {
|
||||
if (!isset($availability->predefined_ranges) || !is_array($availability->predefined_ranges)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$key = array_search($rangeid, $availability->predefined_ranges);
|
||||
if ($key === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Remove the range from the array.
|
||||
array_splice($availability->predefined_ranges, $key, 1);
|
||||
|
||||
// If no ranges left, remove the predefined_ranges property.
|
||||
if (empty($availability->predefined_ranges)) {
|
||||
unset($availability->predefined_ranges);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Process nested conditions in availability tree.
|
||||
*
|
||||
* @param \stdClass $availability The availability item.
|
||||
* @param int $rangeid The range ID to remove.
|
||||
*
|
||||
* @return bool True if any nested condition was modified.
|
||||
*/
|
||||
private static function process_nested_conditions(\stdClass $availability, int $rangeid): bool {
|
||||
if (!isset($availability->c) || !is_array($availability->c)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$modified = false;
|
||||
foreach ($availability->c as $condition) {
|
||||
if (self::remove_range_from_tree($condition, $rangeid)) {
|
||||
$modified = true;
|
||||
}
|
||||
}
|
||||
|
||||
return $modified;
|
||||
}
|
||||
|
||||
}
|
||||
238
classes/table/ipranges_table.php
Normal file
238
classes/table/ipranges_table.php
Normal file
@@ -0,0 +1,238 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Table class for displaying IP address ranges.
|
||||
*
|
||||
* @package availability_ipaddress
|
||||
* @copyright 04/08/2025 LdesignMedia.nl - Luuk Verhoeven
|
||||
* @author Vincent Cornelis
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace availability_ipaddress\table;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $CFG;
|
||||
require_once($CFG->libdir . '/tablelib.php');
|
||||
|
||||
use table_sql;
|
||||
use html_writer;
|
||||
use moodle_url;
|
||||
use pix_icon;
|
||||
use confirm_action;
|
||||
|
||||
/**
|
||||
* Table class for IP address ranges.
|
||||
*
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
* @package availability_ipaddress
|
||||
* @copyright 04/08/2025 LdesignMedia.nl - Luuk Verhoeven
|
||||
* @author Vincent Cornelis
|
||||
*/
|
||||
class ipranges_table extends table_sql {
|
||||
|
||||
/**
|
||||
* @var moodle_url The base URL for the page.
|
||||
*/
|
||||
public $baseurl;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param string $uniqueid Unique ID for the table.
|
||||
* @param moodle_url $baseurl The base URL for the page.
|
||||
*/
|
||||
public function __construct(string $uniqueid, moodle_url $baseurl) {
|
||||
parent::__construct($uniqueid);
|
||||
$this->baseurl = $baseurl;
|
||||
|
||||
// Define columns and headers.
|
||||
$columns = ['name', 'description', 'ipaddresses', 'enabled', 'actions'];
|
||||
$headers = [
|
||||
get_string('name'),
|
||||
get_string('description'),
|
||||
get_string('ipaddresses', 'availability_ipaddress'),
|
||||
get_string('enabled', 'availability_ipaddress'),
|
||||
get_string('actions'),
|
||||
];
|
||||
|
||||
$this->define_columns($columns);
|
||||
$this->define_headers($headers);
|
||||
|
||||
// Set attributes.
|
||||
$this->set_attribute('class', 'generaltable');
|
||||
$this->sortable(true, 'name', SORT_ASC);
|
||||
$this->no_sorting('description');
|
||||
$this->no_sorting('actions');
|
||||
$this->collapsible(false);
|
||||
$this->pageable(true);
|
||||
$this->is_downloadable(false);
|
||||
|
||||
$this->define_baseurl($baseurl);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set up the SQL query.
|
||||
*
|
||||
* @param int $pagesize Number of records per page.
|
||||
* @param bool $useinitialsbar Whether to use the initials bar.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function set_sql_data(int $pagesize = 30, bool $useinitialsbar = false): void {
|
||||
$fields = 'id, name, description, ipaddresses, enabled, timecreated, timemodified';
|
||||
$from = '{availability_ipaddress_pre}';
|
||||
$where = '1=1';
|
||||
$params = [];
|
||||
|
||||
$this->set_sql($fields, $from, $where, $params);
|
||||
$this->set_count_sql("SELECT COUNT(*) FROM {availability_ipaddress_pre}");
|
||||
}
|
||||
|
||||
/**
|
||||
* Column for name.
|
||||
*
|
||||
* @param \stdClass $range The range record.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function col_name(\stdClass $range): string {
|
||||
return format_string($range->name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Column for description.
|
||||
*
|
||||
* @param \stdClass $range The range record.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function col_description(\stdClass $range): string {
|
||||
if (empty($range->description)) {
|
||||
return '-';
|
||||
}
|
||||
$description = format_string($range->description);
|
||||
// Truncate if too long.
|
||||
if (strlen($description) > 100) {
|
||||
$truncated = substr($description, 0, 97) . '...';
|
||||
|
||||
return html_writer::tag('span', $truncated, ['title' => $description]);
|
||||
}
|
||||
|
||||
return $description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Column for IP addresses.
|
||||
*
|
||||
* @param \stdClass $range The range record.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function col_ipaddresses(\stdClass $range): string {
|
||||
$ips = s($range->ipaddresses);
|
||||
// Truncate if too long and add tooltip.
|
||||
if (strlen($ips) > 50) {
|
||||
$truncated = substr($ips, 0, 47) . '...';
|
||||
|
||||
return html_writer::tag(
|
||||
'span',
|
||||
html_writer::tag('code', $truncated),
|
||||
['title' => $ips]
|
||||
);
|
||||
}
|
||||
|
||||
return html_writer::tag('code', $ips);
|
||||
}
|
||||
|
||||
/**
|
||||
* Column for enabled status.
|
||||
*
|
||||
* @param \stdClass $range The range record.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function col_enabled(\stdClass $range): string {
|
||||
return $range->enabled ? get_string('yes') : get_string('no');
|
||||
}
|
||||
|
||||
/**
|
||||
* Column for actions.
|
||||
*
|
||||
* @param \stdClass $range The range record.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function col_actions(\stdClass $range): string {
|
||||
global $OUTPUT;
|
||||
|
||||
$actions = [];
|
||||
|
||||
// Edit action.
|
||||
$editurl = new moodle_url($this->baseurl, ['action' => 'edit', 'id' => $range->id]);
|
||||
$actions[] = $OUTPUT->action_icon($editurl,
|
||||
new pix_icon('t/edit', get_string('edit')));
|
||||
|
||||
// Toggle action.
|
||||
$toggleurl = new moodle_url($this->baseurl, ['action' => 'toggle', 'id' => $range->id, 'sesskey' => sesskey()]);
|
||||
$toggleicon = $range->enabled ? 't/hide' : 't/show';
|
||||
$togglestring = $range->enabled ? get_string('disable') : get_string('enable');
|
||||
|
||||
// Check if range is in use and add confirmation if disabling.
|
||||
if ($range->enabled) {
|
||||
$usage = \availability_ipaddress\helper::is_range_in_use($range->id);
|
||||
if ($usage['inuse']) {
|
||||
// Create confirmation message with usage details.
|
||||
$message = \availability_ipaddress\helper::get_range_usage_html($range->id);
|
||||
$message .= \html_writer::tag('p', get_string('confirm_disable_range', 'availability_ipaddress'),
|
||||
['class' => 'font-weight-bold']);
|
||||
$actions[] = $OUTPUT->action_icon($toggleurl, new pix_icon($toggleicon, $togglestring),
|
||||
new confirm_action($message));
|
||||
} else {
|
||||
$actions[] = $OUTPUT->action_icon($toggleurl, new pix_icon($toggleicon, $togglestring));
|
||||
}
|
||||
} else {
|
||||
// Enabling doesn't need confirmation.
|
||||
$actions[] = $OUTPUT->action_icon($toggleurl, new pix_icon($toggleicon, $togglestring));
|
||||
}
|
||||
|
||||
// Delete action.
|
||||
$deleteurl = new moodle_url($this->baseurl, [
|
||||
'action' => 'delete',
|
||||
'id' => $range->id,
|
||||
'sesskey' => sesskey(),
|
||||
]);
|
||||
|
||||
// Check if range is in use and add usage info to confirmation.
|
||||
$usage = \availability_ipaddress\helper::is_range_in_use($range->id);
|
||||
if ($usage['inuse']) {
|
||||
$message = \availability_ipaddress\helper::get_range_usage_html($range->id);
|
||||
$message .= \html_writer::tag('p', get_string('confirm_delete_range', 'availability_ipaddress'),
|
||||
['class' => 'font-weight-bold']);
|
||||
} else {
|
||||
$message = get_string('confirm_delete_range', 'availability_ipaddress');
|
||||
}
|
||||
|
||||
$actions[] = $OUTPUT->action_icon($deleteurl,
|
||||
new pix_icon('t/delete', get_string('delete')),
|
||||
new confirm_action($message));
|
||||
|
||||
return implode(' ', $actions);
|
||||
}
|
||||
|
||||
}
|
||||
25
db/install.xml
Normal file
25
db/install.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<XMLDB PATH="availability/condition/ipaddress/db" VERSION="20240104" COMMENT="XMLDB file for availability_ipaddress plugin"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="../../../../lib/xmldb/xmldb.xsd"
|
||||
>
|
||||
<TABLES>
|
||||
<TABLE NAME="availability_ipaddress_pre" COMMENT="Stores predefined IP address ranges for availability_ipaddress">
|
||||
<FIELDS>
|
||||
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" SEQUENCE="true"/>
|
||||
<FIELD NAME="name" TYPE="char" LENGTH="255" NOTNULL="true" COMMENT="Display name for the IP range"/>
|
||||
<FIELD NAME="ipaddresses" TYPE="text" NOTNULL="true" COMMENT="Comma-separated list of IP addresses/ranges"/>
|
||||
<FIELD NAME="description" TYPE="text" NOTNULL="false" COMMENT="Optional description of this IP range"/>
|
||||
<FIELD NAME="enabled" TYPE="int" LENGTH="1" NOTNULL="true" DEFAULT="1" COMMENT="Whether this range is available for selection"/>
|
||||
<FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0"/>
|
||||
<FIELD NAME="timemodified" TYPE="int" LENGTH="10" NOTNULL="true" DEFAULT="0"/>
|
||||
</FIELDS>
|
||||
<KEYS>
|
||||
<KEY NAME="primary" TYPE="primary" FIELDS="id"/>
|
||||
</KEYS>
|
||||
<INDEXES>
|
||||
<INDEX NAME="enabled" UNIQUE="false" FIELDS="enabled"/>
|
||||
</INDEXES>
|
||||
</TABLE>
|
||||
</TABLES>
|
||||
</XMLDB>
|
||||
94
db/upgrade.php
Normal file
94
db/upgrade.php
Normal file
@@ -0,0 +1,94 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Upgrade script for availability_ipaddress.
|
||||
*
|
||||
* @package availability_ipaddress
|
||||
* @copyright 04/08/2025 LdesignMedia.nl - Luuk Verhoeven
|
||||
* @author Vincent Cornelis
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Upgrade function.
|
||||
*
|
||||
* @param int $oldversion The old version of the plugin
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
function xmldb_availability_ipaddress_upgrade(int $oldversion): bool {
|
||||
global $DB;
|
||||
|
||||
$dbman = $DB->get_manager();
|
||||
|
||||
if ($oldversion < 2025070400) {
|
||||
// Define table availability_ipaddress_pre to be created.
|
||||
$table = new xmldb_table('availability_ipaddress_pre');
|
||||
|
||||
// Adding fields to table availability_ipaddress_pre.
|
||||
$table->add_field('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null);
|
||||
$table->add_field('name', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null);
|
||||
$table->add_field('ipaddresses', XMLDB_TYPE_TEXT, null, null, XMLDB_NOTNULL, null, null);
|
||||
$table->add_field('description', XMLDB_TYPE_TEXT, null, null, null, null, null);
|
||||
$table->add_field('enabled', XMLDB_TYPE_INTEGER, '1', null, XMLDB_NOTNULL, null, '1');
|
||||
$table->add_field('sortorder', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
|
||||
$table->add_field('timecreated', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
|
||||
$table->add_field('timemodified', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, null, '0');
|
||||
|
||||
// Adding keys to table availability_ipaddress_pre.
|
||||
$table->add_key('primary', XMLDB_KEY_PRIMARY, ['id']);
|
||||
|
||||
// Adding indexes to table availability_ipaddress_pre.
|
||||
$table->add_index('enabled_sortorder', XMLDB_INDEX_NOTUNIQUE, ['enabled', 'sortorder']);
|
||||
|
||||
// Conditionally launch create table for availability_ipaddress_pre.
|
||||
if (!$dbman->table_exists($table)) {
|
||||
$dbman->create_table($table);
|
||||
}
|
||||
|
||||
// Availability_ipaddress savepoint reached.
|
||||
upgrade_plugin_savepoint(true, 2025070400, 'availability', 'ipaddress');
|
||||
}
|
||||
|
||||
if ($oldversion < 2025080401) {
|
||||
// Remove sortorder field from availability_ipaddress_pre table.
|
||||
$table = new xmldb_table('availability_ipaddress_pre');
|
||||
|
||||
// Drop the index that includes sortorder.
|
||||
$index = new xmldb_index('enabled_sortorder', XMLDB_INDEX_NOTUNIQUE, ['enabled', 'sortorder']);
|
||||
if ($dbman->index_exists($table, $index)) {
|
||||
$dbman->drop_index($table, $index);
|
||||
}
|
||||
|
||||
// Drop the sortorder field.
|
||||
$field = new xmldb_field('sortorder');
|
||||
if ($dbman->field_exists($table, $field)) {
|
||||
$dbman->drop_field($table, $field);
|
||||
}
|
||||
|
||||
// Add a new index for enabled only.
|
||||
$index = new xmldb_index('enabled', XMLDB_INDEX_NOTUNIQUE, ['enabled']);
|
||||
if (!$dbman->index_exists($table, $index)) {
|
||||
$dbman->add_index($table, $index);
|
||||
}
|
||||
|
||||
// Availability_ipaddress savepoint reached.
|
||||
upgrade_plugin_savepoint(true, 2025080401, 'availability', 'ipaddress');
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
@@ -24,10 +24,15 @@
|
||||
* @author Luuk Verhoeven
|
||||
**/
|
||||
|
||||
// We like comments and our own sorting.
|
||||
// phpcs:disable moodle.Files.LangFilesOrdering.UnexpectedComment
|
||||
// phpcs:disable moodle.Files.LangFilesOrdering.IncorrectOrder
|
||||
|
||||
$string['pluginname'] = 'IP address';
|
||||
$string['description'] = 'Restrict access by ip-address or subnet';
|
||||
$string['title'] = 'IP address';
|
||||
$string['require_condition'] = 'Matching ip-address/subnet. (Your IP:{$a})';
|
||||
$string['require_condition'] = 'ip-address/subnet is allowed (Your IP:{$a})';
|
||||
$string['require_condition_not'] = 'ip-address/subnet is not blocked (Your IP:{$a})';
|
||||
|
||||
// Errors.
|
||||
$string['error_ipaddress'] = 'Incorrect ip-address/subnet format';
|
||||
@@ -37,3 +42,35 @@ $string['js:ipaddress'] = 'Require network address';
|
||||
|
||||
// Privacy provider.
|
||||
$string['privacy:metadata'] = 'The restriction by activity ipaddress plugin does not store any personal data.';
|
||||
|
||||
// Predefined ranges.
|
||||
$string['setting:manage_predefined_ranges'] = 'IP address - Manage predefined IP ranges';
|
||||
$string['manage_predefined_ranges'] = 'Manage predefined IP ranges';
|
||||
$string['predefined_ranges'] = 'Predefined IP ranges';
|
||||
$string['custom_ipaddress'] = 'Custom IP address(es)';
|
||||
$string['use_predefined'] = 'Use predefined IP addresses';
|
||||
$string['range_name'] = 'Range name';
|
||||
$string['range_name_help'] = 'A descriptive name for this IP range, e.g., "Campus Network" or "Library Computers"';
|
||||
$string['ipaddresses'] = 'IP addresses';
|
||||
$string['ipaddresses_help'] = 'Enter IP addresses separated by commas. Supports single IPs (192.168.1.1), ranges (192.168.1.1-255), and subnets (192.168.1.0/24)';
|
||||
$string['ipaddresses_help_help'] = '<p>Enter one or more IP addresses or ranges, separated by commas.</p>
|
||||
<p><strong>Examples:</strong></p>
|
||||
<ul>
|
||||
<li><strong>Single IP:</strong> <code>192.168.1.1</code></li>
|
||||
<li><strong>IP range:</strong> <code>192.168.1.1-255</code></li>
|
||||
<li><strong>Subnet:</strong> <code>192.168.1.0/24</code></li>
|
||||
<li><strong>Multiple:</strong> <code>192.168.1.1,10.0.0.0/8,172.16.0.1-255</code></li>
|
||||
</ul>';
|
||||
$string['enabled'] = 'Enabled';
|
||||
$string['sortorder'] = 'Sort order';
|
||||
$string['existing_ranges'] = 'Existing IP ranges';
|
||||
$string['range_created'] = 'IP range created successfully';
|
||||
$string['range_updated'] = 'IP range updated successfully';
|
||||
$string['range_deleted'] = 'IP range deleted successfully';
|
||||
$string['confirm_delete_range'] = 'Deleting this IP range will remove it from all restrictions where it is used. Are you sure you want to permanently delete it?';
|
||||
$string['range_in_use_count'] = 'This IP range is currently used in {$a} restriction(s).';
|
||||
$string['and_x_more'] = '... and {$a} more.';
|
||||
$string['confirm_disable_range'] = 'This IP range is currently in use. Disabling it will remove it from all restrictions where it is used. Are you sure you want to continue?';
|
||||
$string['range_in_use_title'] = 'IP Range In Use';
|
||||
$string['range_disabled_and_removed'] = 'IP range disabled and removed from {$a} restriction(s).';
|
||||
$string['range_deleted_and_removed'] = 'IP range deleted and removed from {$a} restriction(s).';
|
||||
|
||||
123
manage_ranges.php
Normal file
123
manage_ranges.php
Normal file
@@ -0,0 +1,123 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Manage predefined IP address ranges.
|
||||
*
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* @package availability_ipaddress
|
||||
* @copyright 04/08/2025 LdesignMedia.nl - Luuk Verhoeven
|
||||
* @author Vincent Cornelis
|
||||
*/
|
||||
|
||||
require_once(__DIR__ . '/../../../config.php');
|
||||
require_once($CFG->libdir . '/adminlib.php');
|
||||
|
||||
admin_externalpage_setup('availability_ipaddress_ranges');
|
||||
|
||||
$action = optional_param('action', '', PARAM_ALPHA);
|
||||
$id = optional_param('id', 0, PARAM_INT);
|
||||
|
||||
$PAGE->set_url('/availability/condition/ipaddress/manage_ranges.php');
|
||||
$PAGE->set_title(get_string('manage_predefined_ranges', 'availability_ipaddress'));
|
||||
$PAGE->set_heading(get_string('manage_predefined_ranges', 'availability_ipaddress'));
|
||||
|
||||
// Handle actions.
|
||||
if ($action === 'delete' && confirm_sesskey()) {
|
||||
// Remove from all restrictions before deleting.
|
||||
$removed = \availability_ipaddress\helper::remove_range_from_restrictions($id);
|
||||
|
||||
$DB->delete_records('availability_ipaddress_pre', ['id' => $id]);
|
||||
|
||||
if ($removed > 0) {
|
||||
redirect($PAGE->url, get_string('range_deleted_and_removed', 'availability_ipaddress', $removed),
|
||||
null, \core\output\notification::NOTIFY_SUCCESS);
|
||||
} else {
|
||||
redirect($PAGE->url, get_string('range_deleted', 'availability_ipaddress'), null,
|
||||
\core\output\notification::NOTIFY_SUCCESS);
|
||||
}
|
||||
}
|
||||
|
||||
if ($action === 'toggle' && confirm_sesskey()) {
|
||||
$record = $DB->get_record('availability_ipaddress_pre', ['id' => $id], '*', MUST_EXIST);
|
||||
|
||||
$record->enabled = !$record->enabled;
|
||||
$record->timemodified = time();
|
||||
$DB->update_record('availability_ipaddress_pre', $record);
|
||||
|
||||
// If we just disabled the range, remove it from all restrictions.
|
||||
if (!$record->enabled) {
|
||||
$removed = \availability_ipaddress\helper::remove_range_from_restrictions($id);
|
||||
if ($removed > 0) {
|
||||
redirect($PAGE->url, get_string('range_disabled_and_removed', 'availability_ipaddress', $removed),
|
||||
null, \core\output\notification::NOTIFY_SUCCESS);
|
||||
}
|
||||
}
|
||||
|
||||
redirect($PAGE->url);
|
||||
}
|
||||
|
||||
// Handle form submission for adding/editing.
|
||||
if ($action === 'add' || $action === 'edit') {
|
||||
$formurl = new moodle_url($PAGE->url, ['action' => $action, 'id' => $id]);
|
||||
$form = new \availability_ipaddress\form\range_form($formurl, ['id' => $id]);
|
||||
|
||||
if ($form->is_cancelled()) {
|
||||
redirect($PAGE->url);
|
||||
}
|
||||
|
||||
if ($data = $form->get_data()) {
|
||||
if ($data->id) {
|
||||
// Update existing.
|
||||
$data->timemodified = time();
|
||||
$DB->update_record('availability_ipaddress_pre', $data);
|
||||
redirect($PAGE->url, get_string('range_updated', 'availability_ipaddress'), null,
|
||||
\core\output\notification::NOTIFY_SUCCESS);
|
||||
} else {
|
||||
// Create new.
|
||||
$data->timecreated = time();
|
||||
$data->timemodified = time();
|
||||
$DB->insert_record('availability_ipaddress_pre', $data);
|
||||
redirect($PAGE->url, get_string('range_created', 'availability_ipaddress'), null,
|
||||
\core\output\notification::NOTIFY_SUCCESS);
|
||||
}
|
||||
}
|
||||
|
||||
// Load data for editing.
|
||||
if ($action === 'edit' && $id) {
|
||||
$record = $DB->get_record('availability_ipaddress_pre', ['id' => $id], '*', MUST_EXIST);
|
||||
$form->set_data($record);
|
||||
}
|
||||
|
||||
echo $OUTPUT->header();
|
||||
$form->display();
|
||||
echo $OUTPUT->footer();
|
||||
exit;
|
||||
}
|
||||
|
||||
// Display page.
|
||||
echo $OUTPUT->header();
|
||||
|
||||
// Add new button.
|
||||
echo $OUTPUT->single_button(new moodle_url($PAGE->url, ['action' => 'add']), get_string('add'), 'get');
|
||||
|
||||
// Create and display table.
|
||||
$table = new \availability_ipaddress\table\ipranges_table('availability-ipaddress-ranges', $PAGE->url);
|
||||
$table->set_sql_data(30);
|
||||
$table->out(30, true);
|
||||
|
||||
echo $OUTPUT->footer();
|
||||
46
settings.php
Normal file
46
settings.php
Normal file
@@ -0,0 +1,46 @@
|
||||
<?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/>.
|
||||
|
||||
/**
|
||||
* Settings for availability_ipaddress.
|
||||
*
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*
|
||||
* @package availability_ipaddress
|
||||
* @copyright 04/08/2025 LdesignMedia.nl - Luuk Verhoeven
|
||||
* @author Vincent Cornelis
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $ADMIN;
|
||||
|
||||
if ($hassiteconfig) {
|
||||
|
||||
// Add external page for managing IP ranges.
|
||||
$ADMIN->add(
|
||||
'availabilitysettings',
|
||||
new admin_externalpage(
|
||||
'availability_ipaddress_ranges',
|
||||
get_string('setting:manage_predefined_ranges', 'availability_ipaddress'),
|
||||
new moodle_url('/availability/condition/ipaddress/manage_ranges.php'),
|
||||
'moodle/site:config'
|
||||
));
|
||||
}
|
||||
|
||||
// Set the visible name of auto generated settings page to empty string,
|
||||
// to avoid showing it in the settings tree, as we only add the external page.
|
||||
$settings->visiblename = '';
|
||||
@@ -27,8 +27,8 @@
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$plugin->component = 'availability_ipaddress';
|
||||
$plugin->version = 2025052100;
|
||||
$plugin->release = '5.0.0';
|
||||
$plugin->version = 2025080401;
|
||||
$plugin->release = '5.0.2';
|
||||
$plugin->requires = 2016120500;
|
||||
$plugin->maturity = MATURITY_STABLE;
|
||||
$plugin->supported = [400, 500];
|
||||
|
||||
@@ -43,9 +43,11 @@ M.availability_ipaddress.form = Y.Object(M.core_availability.plugin);
|
||||
* @method initInner
|
||||
* @param {Array} param Array of objects
|
||||
*/
|
||||
M.availability_ipaddress.form.initInner = function() {
|
||||
M.availability_ipaddress.form.initInner = function(param) {
|
||||
"use strict";
|
||||
Y.log('M.availability_ipaddress 1.10');
|
||||
// Store predefined ranges from backend.
|
||||
this.predefinedRanges = param || [];
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -80,24 +82,68 @@ M.availability_ipaddress.form.getValue = function(field, node) {
|
||||
*/
|
||||
M.availability_ipaddress.form.getNode = function(json) {
|
||||
"use strict";
|
||||
var html, node, root, id;
|
||||
var html, node, root, id, selectId, i, range;
|
||||
|
||||
// Make sure we work with unique id.
|
||||
id = 'ipaddresses' + M.availability_ipaddress.form.instId;
|
||||
selectId = 'predefined' + M.availability_ipaddress.form.instId;
|
||||
M.availability_ipaddress.form.instId += 1;
|
||||
|
||||
// Create HTML structure.
|
||||
html = '';
|
||||
html += '<span class="availability-group"><label for="' + id + '"><span class="p-r-1">' +
|
||||
M.util.get_string('title', 'availability_ipaddress') + ' </span></label>';
|
||||
html += '<input type="text" placeholder="192.168.178.1,231.54.211.0/20,231.3.56.211" name="ipaddresses" id="' + id + '">';
|
||||
node = Y.Node.create('<span class="form-inline">' + html + '</span>');
|
||||
html = '<div class="availability-ipaddress-container">';
|
||||
|
||||
// Add predefined ranges if available.
|
||||
if (this.predefinedRanges && this.predefinedRanges.length > 0) {
|
||||
html += '<div class="availability-group">';
|
||||
html += '<label><span class="p-r-1">' +
|
||||
M.util.get_string('use_predefined', 'availability_ipaddress') + '</span></label>';
|
||||
html += '<select name="predefined_ranges" id="' + selectId +
|
||||
'" multiple="multiple" class="form-control" style="min-height: 100px;">';
|
||||
|
||||
for (i = 0; i < this.predefinedRanges.length; i++) {
|
||||
range = this.predefinedRanges[i];
|
||||
html += '<option value="' + range.id + '" data-ipaddresses="' + Y.Escape.html(range.ipaddresses) + '">';
|
||||
html += Y.Escape.html(range.name);
|
||||
html += '</option>';
|
||||
}
|
||||
|
||||
html += '</select>';
|
||||
html += '</div>';
|
||||
|
||||
html += '<div class="availability-group" style="margin-top: 10px;">';
|
||||
html += '<label for="' + id + '"><span class="p-r-1">' +
|
||||
M.util.get_string('custom_ipaddress', 'availability_ipaddress') + '</span></label>';
|
||||
} else {
|
||||
html += '<div class="availability-group">';
|
||||
html += '<label for="' + id + '"><span class="p-r-1">' +
|
||||
M.util.get_string('title', 'availability_ipaddress') + '</span></label>';
|
||||
}
|
||||
|
||||
html += '<input type="text" placeholder="192.168.178.1,231.54.211.0/20,231.3.56.211" name="ipaddresses" id="' +
|
||||
id + '" class="form-control">';
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
|
||||
node = Y.Node.create('<div>' + html + '</div>');
|
||||
|
||||
// Set initial values, if specified.
|
||||
if (json.ipaddresses !== undefined) {
|
||||
node.one('input[name=ipaddresses]').set('value', json.ipaddresses);
|
||||
}
|
||||
|
||||
// Set selected predefined ranges if specified.
|
||||
if (json.predefined_ranges !== undefined && this.predefinedRanges && this.predefinedRanges.length > 0) {
|
||||
var select = node.one('select[name=predefined_ranges]');
|
||||
if (select) {
|
||||
json.predefined_ranges.forEach(function(rangeId) {
|
||||
var option = select.one('option[value="' + rangeId + '"]');
|
||||
if (option) {
|
||||
option.set('selected', true);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// Add event handlers (first time only).
|
||||
if (!M.availability_ipaddress.form.addedEvents) {
|
||||
M.availability_ipaddress.form.addedEvents = true;
|
||||
@@ -106,6 +152,11 @@ M.availability_ipaddress.form.getNode = function(json) {
|
||||
// Trigger the updating of the hidden availability data whenever the ipaddress field changes.
|
||||
M.core_availability.form.update();
|
||||
}, '.availability_ipaddress input[name=ipaddresses]');
|
||||
|
||||
root.delegate('change', function() {
|
||||
// Trigger the updating when predefined ranges are selected.
|
||||
M.core_availability.form.update();
|
||||
}, '.availability_ipaddress select[name=predefined_ranges]');
|
||||
}
|
||||
|
||||
return node;
|
||||
@@ -120,6 +171,10 @@ M.availability_ipaddress.form.getNode = function(json) {
|
||||
M.availability_ipaddress.validateIpaddress = function(ipaddresses) {
|
||||
'use strict';
|
||||
Y.log(ipaddresses);
|
||||
// Return true for empty string - it's valid to have no custom IPs
|
||||
if (!ipaddresses || ipaddresses.trim() === '') {
|
||||
return true;
|
||||
}
|
||||
ipaddresses = ipaddresses.split(',');
|
||||
for (var i in ipaddresses) {
|
||||
|
||||
@@ -134,7 +189,7 @@ M.availability_ipaddress.validateIpaddress = function(ipaddresses) {
|
||||
var ipv4Regex = new RegExp(
|
||||
'^(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)' +
|
||||
'(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}-' +
|
||||
'([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]){1}$',
|
||||
'(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)$',
|
||||
'gm'
|
||||
);
|
||||
|
||||
@@ -178,6 +233,20 @@ M.availability_ipaddress.form.fillValue = function(value, node) {
|
||||
// with the structure used in the __construct and save functions
|
||||
// within condition.php.
|
||||
value.ipaddresses = this.getValue('ipaddresses', node);
|
||||
|
||||
// Get selected predefined ranges.
|
||||
var select = node.one('select[name=predefined_ranges]');
|
||||
if (select) {
|
||||
var selectedRanges = [];
|
||||
select.get('options').each(function(option) {
|
||||
if (option.get('selected')) {
|
||||
selectedRanges.push(parseInt(option.get('value')));
|
||||
}
|
||||
});
|
||||
if (selectedRanges.length > 0) {
|
||||
value.predefined_ranges = selectedRanges;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -190,8 +259,9 @@ M.availability_ipaddress.form.fillErrors = function(errors, node) {
|
||||
var value = {};
|
||||
this.fillValue(value, node);
|
||||
|
||||
// Basic ipaddresses checks.
|
||||
if (M.availability_ipaddress.validateIpaddress(value.ipaddresses) === false) {
|
||||
// Basic ipaddresses checks - only validate if not empty.
|
||||
if (value.ipaddresses && value.ipaddresses.trim() !== '' &&
|
||||
M.availability_ipaddress.validateIpaddress(value.ipaddresses) === false) {
|
||||
errors.push('availability_ipaddress:error_ipaddress');
|
||||
}
|
||||
};
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -43,8 +43,10 @@ M.availability_ipaddress.form = Y.Object(M.core_availability.plugin);
|
||||
* @method initInner
|
||||
* @param {Array} param Array of objects
|
||||
*/
|
||||
M.availability_ipaddress.form.initInner = function() {
|
||||
M.availability_ipaddress.form.initInner = function(param) {
|
||||
"use strict";
|
||||
// Store predefined ranges from backend.
|
||||
this.predefinedRanges = param || [];
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -77,24 +79,68 @@ M.availability_ipaddress.form.getValue = function(field, node) {
|
||||
*/
|
||||
M.availability_ipaddress.form.getNode = function(json) {
|
||||
"use strict";
|
||||
var html, node, root, id;
|
||||
var html, node, root, id, selectId, i, range;
|
||||
|
||||
// Make sure we work with unique id.
|
||||
id = 'ipaddresses' + M.availability_ipaddress.form.instId;
|
||||
selectId = 'predefined' + M.availability_ipaddress.form.instId;
|
||||
M.availability_ipaddress.form.instId += 1;
|
||||
|
||||
// Create HTML structure.
|
||||
html = '';
|
||||
html += '<span class="availability-group"><label for="' + id + '"><span class="p-r-1">' +
|
||||
M.util.get_string('title', 'availability_ipaddress') + ' </span></label>';
|
||||
html += '<input type="text" placeholder="192.168.178.1,231.54.211.0/20,231.3.56.211" name="ipaddresses" id="' + id + '">';
|
||||
node = Y.Node.create('<span class="form-inline">' + html + '</span>');
|
||||
html = '<div class="availability-ipaddress-container">';
|
||||
|
||||
// Add predefined ranges if available.
|
||||
if (this.predefinedRanges && this.predefinedRanges.length > 0) {
|
||||
html += '<div class="availability-group">';
|
||||
html += '<label><span class="p-r-1">' +
|
||||
M.util.get_string('use_predefined', 'availability_ipaddress') + '</span></label>';
|
||||
html += '<select name="predefined_ranges" id="' + selectId +
|
||||
'" multiple="multiple" class="form-control" style="min-height: 100px;">';
|
||||
|
||||
for (i = 0; i < this.predefinedRanges.length; i++) {
|
||||
range = this.predefinedRanges[i];
|
||||
html += '<option value="' + range.id + '" data-ipaddresses="' + Y.Escape.html(range.ipaddresses) + '">';
|
||||
html += Y.Escape.html(range.name);
|
||||
html += '</option>';
|
||||
}
|
||||
|
||||
html += '</select>';
|
||||
html += '</div>';
|
||||
|
||||
html += '<div class="availability-group" style="margin-top: 10px;">';
|
||||
html += '<label for="' + id + '"><span class="p-r-1">' +
|
||||
M.util.get_string('custom_ipaddress', 'availability_ipaddress') + '</span></label>';
|
||||
} else {
|
||||
html += '<div class="availability-group">';
|
||||
html += '<label for="' + id + '"><span class="p-r-1">' +
|
||||
M.util.get_string('title', 'availability_ipaddress') + '</span></label>';
|
||||
}
|
||||
|
||||
html += '<input type="text" placeholder="192.168.178.1,231.54.211.0/20,231.3.56.211" name="ipaddresses" id="' +
|
||||
id + '" class="form-control">';
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
|
||||
node = Y.Node.create('<div>' + html + '</div>');
|
||||
|
||||
// Set initial values, if specified.
|
||||
if (json.ipaddresses !== undefined) {
|
||||
node.one('input[name=ipaddresses]').set('value', json.ipaddresses);
|
||||
}
|
||||
|
||||
// Set selected predefined ranges if specified.
|
||||
if (json.predefined_ranges !== undefined && this.predefinedRanges && this.predefinedRanges.length > 0) {
|
||||
var select = node.one('select[name=predefined_ranges]');
|
||||
if (select) {
|
||||
json.predefined_ranges.forEach(function(rangeId) {
|
||||
var option = select.one('option[value="' + rangeId + '"]');
|
||||
if (option) {
|
||||
option.set('selected', true);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// Add event handlers (first time only).
|
||||
if (!M.availability_ipaddress.form.addedEvents) {
|
||||
M.availability_ipaddress.form.addedEvents = true;
|
||||
@@ -103,6 +149,11 @@ M.availability_ipaddress.form.getNode = function(json) {
|
||||
// Trigger the updating of the hidden availability data whenever the ipaddress field changes.
|
||||
M.core_availability.form.update();
|
||||
}, '.availability_ipaddress input[name=ipaddresses]');
|
||||
|
||||
root.delegate('change', function() {
|
||||
// Trigger the updating when predefined ranges are selected.
|
||||
M.core_availability.form.update();
|
||||
}, '.availability_ipaddress select[name=predefined_ranges]');
|
||||
}
|
||||
|
||||
return node;
|
||||
@@ -116,6 +167,10 @@ M.availability_ipaddress.form.getNode = function(json) {
|
||||
*/
|
||||
M.availability_ipaddress.validateIpaddress = function(ipaddresses) {
|
||||
'use strict';
|
||||
// Return true for empty string - it's valid to have no custom IPs
|
||||
if (!ipaddresses || ipaddresses.trim() === '') {
|
||||
return true;
|
||||
}
|
||||
ipaddresses = ipaddresses.split(',');
|
||||
for (var i in ipaddresses) {
|
||||
|
||||
@@ -129,7 +184,7 @@ M.availability_ipaddress.validateIpaddress = function(ipaddresses) {
|
||||
var ipv4Regex = new RegExp(
|
||||
'^(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)' +
|
||||
'(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}-' +
|
||||
'([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]){1}$',
|
||||
'(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)$',
|
||||
'gm'
|
||||
);
|
||||
|
||||
@@ -168,6 +223,20 @@ M.availability_ipaddress.form.fillValue = function(value, node) {
|
||||
// with the structure used in the __construct and save functions
|
||||
// within condition.php.
|
||||
value.ipaddresses = this.getValue('ipaddresses', node);
|
||||
|
||||
// Get selected predefined ranges.
|
||||
var select = node.one('select[name=predefined_ranges]');
|
||||
if (select) {
|
||||
var selectedRanges = [];
|
||||
select.get('options').each(function(option) {
|
||||
if (option.get('selected')) {
|
||||
selectedRanges.push(parseInt(option.get('value')));
|
||||
}
|
||||
});
|
||||
if (selectedRanges.length > 0) {
|
||||
value.predefined_ranges = selectedRanges;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -180,8 +249,9 @@ M.availability_ipaddress.form.fillErrors = function(errors, node) {
|
||||
var value = {};
|
||||
this.fillValue(value, node);
|
||||
|
||||
// Basic ipaddresses checks.
|
||||
if (M.availability_ipaddress.validateIpaddress(value.ipaddresses) === false) {
|
||||
// Basic ipaddresses checks - only validate if not empty.
|
||||
if (value.ipaddresses && value.ipaddresses.trim() !== '' &&
|
||||
M.availability_ipaddress.validateIpaddress(value.ipaddresses) === false) {
|
||||
errors.push('availability_ipaddress:error_ipaddress');
|
||||
}
|
||||
};
|
||||
|
||||
90
yui/src/form/js/form.js
vendored
90
yui/src/form/js/form.js
vendored
@@ -41,9 +41,11 @@ M.availability_ipaddress.form = Y.Object(M.core_availability.plugin);
|
||||
* @method initInner
|
||||
* @param {Array} param Array of objects
|
||||
*/
|
||||
M.availability_ipaddress.form.initInner = function() {
|
||||
M.availability_ipaddress.form.initInner = function(param) {
|
||||
"use strict";
|
||||
Y.log('M.availability_ipaddress 1.10');
|
||||
// Store predefined ranges from backend.
|
||||
this.predefinedRanges = param || [];
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -78,24 +80,68 @@ M.availability_ipaddress.form.getValue = function(field, node) {
|
||||
*/
|
||||
M.availability_ipaddress.form.getNode = function(json) {
|
||||
"use strict";
|
||||
var html, node, root, id;
|
||||
var html, node, root, id, selectId, i, range;
|
||||
|
||||
// Make sure we work with unique id.
|
||||
id = 'ipaddresses' + M.availability_ipaddress.form.instId;
|
||||
selectId = 'predefined' + M.availability_ipaddress.form.instId;
|
||||
M.availability_ipaddress.form.instId += 1;
|
||||
|
||||
// Create HTML structure.
|
||||
html = '';
|
||||
html += '<span class="availability-group"><label for="' + id + '"><span class="p-r-1">' +
|
||||
M.util.get_string('title', 'availability_ipaddress') + ' </span></label>';
|
||||
html += '<input type="text" placeholder="192.168.178.1,231.54.211.0/20,231.3.56.211" name="ipaddresses" id="' + id + '">';
|
||||
node = Y.Node.create('<span class="form-inline">' + html + '</span>');
|
||||
html = '<div class="availability-ipaddress-container">';
|
||||
|
||||
// Add predefined ranges if available.
|
||||
if (this.predefinedRanges && this.predefinedRanges.length > 0) {
|
||||
html += '<div class="availability-group">';
|
||||
html += '<label><span class="p-r-1">' +
|
||||
M.util.get_string('use_predefined', 'availability_ipaddress') + '</span></label>';
|
||||
html += '<select name="predefined_ranges" id="' + selectId +
|
||||
'" multiple="multiple" class="form-control" style="min-height: 100px;">';
|
||||
|
||||
for (i = 0; i < this.predefinedRanges.length; i++) {
|
||||
range = this.predefinedRanges[i];
|
||||
html += '<option value="' + range.id + '" data-ipaddresses="' + Y.Escape.html(range.ipaddresses) + '">';
|
||||
html += Y.Escape.html(range.name);
|
||||
html += '</option>';
|
||||
}
|
||||
|
||||
html += '</select>';
|
||||
html += '</div>';
|
||||
|
||||
html += '<div class="availability-group" style="margin-top: 10px;">';
|
||||
html += '<label for="' + id + '"><span class="p-r-1">' +
|
||||
M.util.get_string('custom_ipaddress', 'availability_ipaddress') + '</span></label>';
|
||||
} else {
|
||||
html += '<div class="availability-group">';
|
||||
html += '<label for="' + id + '"><span class="p-r-1">' +
|
||||
M.util.get_string('title', 'availability_ipaddress') + '</span></label>';
|
||||
}
|
||||
|
||||
html += '<input type="text" placeholder="192.168.178.1,231.54.211.0/20,231.3.56.211" name="ipaddresses" id="' +
|
||||
id + '" class="form-control">';
|
||||
html += '</div>';
|
||||
html += '</div>';
|
||||
|
||||
node = Y.Node.create('<div>' + html + '</div>');
|
||||
|
||||
// Set initial values, if specified.
|
||||
if (json.ipaddresses !== undefined) {
|
||||
node.one('input[name=ipaddresses]').set('value', json.ipaddresses);
|
||||
}
|
||||
|
||||
// Set selected predefined ranges if specified.
|
||||
if (json.predefined_ranges !== undefined && this.predefinedRanges && this.predefinedRanges.length > 0) {
|
||||
var select = node.one('select[name=predefined_ranges]');
|
||||
if (select) {
|
||||
json.predefined_ranges.forEach(function(rangeId) {
|
||||
var option = select.one('option[value="' + rangeId + '"]');
|
||||
if (option) {
|
||||
option.set('selected', true);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// Add event handlers (first time only).
|
||||
if (!M.availability_ipaddress.form.addedEvents) {
|
||||
M.availability_ipaddress.form.addedEvents = true;
|
||||
@@ -104,6 +150,11 @@ M.availability_ipaddress.form.getNode = function(json) {
|
||||
// Trigger the updating of the hidden availability data whenever the ipaddress field changes.
|
||||
M.core_availability.form.update();
|
||||
}, '.availability_ipaddress input[name=ipaddresses]');
|
||||
|
||||
root.delegate('change', function() {
|
||||
// Trigger the updating when predefined ranges are selected.
|
||||
M.core_availability.form.update();
|
||||
}, '.availability_ipaddress select[name=predefined_ranges]');
|
||||
}
|
||||
|
||||
return node;
|
||||
@@ -118,6 +169,10 @@ M.availability_ipaddress.form.getNode = function(json) {
|
||||
M.availability_ipaddress.validateIpaddress = function(ipaddresses) {
|
||||
'use strict';
|
||||
Y.log(ipaddresses);
|
||||
// Return true for empty string - it's valid to have no custom IPs
|
||||
if (!ipaddresses || ipaddresses.trim() === '') {
|
||||
return true;
|
||||
}
|
||||
ipaddresses = ipaddresses.split(',');
|
||||
for (var i in ipaddresses) {
|
||||
|
||||
@@ -132,7 +187,7 @@ M.availability_ipaddress.validateIpaddress = function(ipaddresses) {
|
||||
var ipv4Regex = new RegExp(
|
||||
'^(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)' +
|
||||
'(?:\\.(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]\\d|\\d)){3}-' +
|
||||
'([0-1]?[0-9]?[0-9]?|2[0-4][0-9]|25[0-5]){1}$',
|
||||
'(?:25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)$',
|
||||
'gm'
|
||||
);
|
||||
|
||||
@@ -176,6 +231,20 @@ M.availability_ipaddress.form.fillValue = function(value, node) {
|
||||
// with the structure used in the __construct and save functions
|
||||
// within condition.php.
|
||||
value.ipaddresses = this.getValue('ipaddresses', node);
|
||||
|
||||
// Get selected predefined ranges.
|
||||
var select = node.one('select[name=predefined_ranges]');
|
||||
if (select) {
|
||||
var selectedRanges = [];
|
||||
select.get('options').each(function(option) {
|
||||
if (option.get('selected')) {
|
||||
selectedRanges.push(parseInt(option.get('value')));
|
||||
}
|
||||
});
|
||||
if (selectedRanges.length > 0) {
|
||||
value.predefined_ranges = selectedRanges;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -188,8 +257,9 @@ M.availability_ipaddress.form.fillErrors = function(errors, node) {
|
||||
var value = {};
|
||||
this.fillValue(value, node);
|
||||
|
||||
// Basic ipaddresses checks.
|
||||
if (M.availability_ipaddress.validateIpaddress(value.ipaddresses) === false) {
|
||||
// Basic ipaddresses checks - only validate if not empty.
|
||||
if (value.ipaddresses && value.ipaddresses.trim() !== '' &&
|
||||
M.availability_ipaddress.validateIpaddress(value.ipaddresses) === false) {
|
||||
errors.push('availability_ipaddress:error_ipaddress');
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user