This repository was archived by the owner on Jun 10, 2026. It is now read-only.
forked from open-lms-open-source/moodle-cachestore_redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddinstanceform.php
More file actions
132 lines (114 loc) · 5.27 KB
/
Copy pathaddinstanceform.php
File metadata and controls
132 lines (114 loc) · 5.27 KB
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
<?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/>.
/**
* Redis Cache Store - Add instance form
*
* @package cachestore_redis
* @copyright 2013 Adam Durana
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
global $CFG;
require_once($CFG->dirroot.'/cache/forms.php');
require_once(__DIR__.'/lib.php');
/**
* Form for adding instance of Redis Cache Store.
*
* @copyright 2013 Adam Durana
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class cachestore_redis_addinstance_form extends cachestore_addinstance_form {
/**
* Builds the form for creating an instance.
*/
protected function configuration_definition() {
$form = $this->_form;
$form->addElement('checkbox', 'clustermode',
get_string('clustermode', 'cachestore_redis'),
cachestore_redis::is_cluster_available() ? '' : get_string('clustermodeunavailable', 'cachestore_redis'),
cachestore_redis::is_cluster_available() ? '' : 'disabled');
$form->addElement('textarea', 'server', get_string('server', 'cachestore_redis'), array('size' => 24));
$form->setType('server', PARAM_TEXT);
$form->addHelpButton('server', 'server', 'cachestore_redis');
$form->addRule('server', get_string('required'), 'required');
$form->addElement('passwordunmask', 'password', get_string('password', 'cachestore_redis'));
$form->setType('password', PARAM_RAW);
$form->addHelpButton('password', 'password', 'cachestore_redis');
$form->addElement('text', 'prefix', get_string('prefix', 'cachestore_redis'), array('size' => 16));
$form->setType('prefix', PARAM_TEXT); // We set to text but we have a rule to limit to alphanumext.
$form->addHelpButton('prefix', 'prefix', 'cachestore_redis');
$form->addRule('prefix', get_string('prefixinvalid', 'cachestore_redis'), 'regex', '#^[a-zA-Z0-9\-_]+$#');
$serializeroptions = cachestore_redis::config_get_serializer_options();
$form->addElement('select', 'serializer', get_string('useserializer', 'cachestore_redis'), $serializeroptions);
$form->addHelpButton('serializer', 'useserializer', 'cachestore_redis');
$form->setDefault('serializer', Redis::SERIALIZER_PHP);
$form->setType('serializer', PARAM_INT);
$compressoroptions = cachestore_redis::config_get_compressor_options();
$form->addElement('select', 'compressor', get_string('usecompressor', 'cachestore_redis'), $compressoroptions);
$form->addHelpButton('compressor', 'usecompressor', 'cachestore_redis');
$form->setDefault('compressor', cachestore_redis::COMPRESSOR_NONE);
$form->setType('compressor', PARAM_INT);
}
/**
* Validates the configuration form data
*
* @param array $data
* @param array $files
* @return array
*/
public function configuration_validation($data, $files, $errors) {
$clusteravailable = cachestore_redis::is_cluster_available();
$clustermode = !empty($data['clustermode']);
$servers = explode("\n", $data['server']);
// Sanity check, check if RedisCluster installed (should not happend as checkbox is disabled).
if (!$clusteravailable && $clustermode) {
$errors['clustermode'] = get_string('clustermodeunavailable', 'cachestore_redis');
}
if ($clustermode) {
$errors = $this->configuration_validation_serverscluster($servers, $errors);
} else {
// Multiple servers only allowed in cluster mode.
if (count($servers) != 1) {
$errors['server'] = get_string('formerror_singleserveronly', 'cachestore_redis');
}
}
return $errors;
}
private function configuration_validation_serverscluster($servers, $errors) {
// In cluster mode port is mandatory.
foreach ($servers as $server) {
$server = trim($server);
if (empty($server)) {
continue;
}
$addressport = explode(':', $server);
if (count($addressport) != 2) {
if (!array_key_exists('server', $errors)) {
$errors['server'] = [];
}
$errors['server'][] = get_string(
'formerror_clusterserver',
'cachestore_redis',
['server' => $server]
);
}
}
if (array_key_exists('server', $errors)) {
$errors['server'] = implode('<br />', $errors['server']);
}
return $errors;
}
}