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
|
<?php
ConfigModule::registerModule(
'AdAuth', // ID
Dictionary::translate('config-module', 'adAuth_title'), // Title
Dictionary::translate('config-module', 'adAuth_description'), // Description
Dictionary::translate('config-module', 'group_authentication'), // Group
true // Only one per config?
);
class ConfigModule_AdAuth extends ConfigModule
{
const VERSION = 1;
private static $REQUIRED_FIELDS = array('server', 'searchbase', 'binddn');
private static $OPTIONAL_FIELDS = array('bindpw', 'home', 'ssl', 'fingerprint', 'certificate');
protected function generateInternal($tgz, $parent)
{
Trigger::ldadp($this->id(), $parent);
$config = $this->moduleData;
if (preg_match('/^([^\:]+)\:(\d+)$/', $config['server'], $out)) {
$config['server'] = $out[1];
$config['adport'] = $out[2];
}
$config['parentTask'] = $parent;
$config['failOnParentFail'] = false;
$config['proxyip'] = Property::getServerIp();
$config['proxyport'] = 3100 + $this->id();
$config['filename'] = $tgz;
$config['moduleid'] = $this->id();
return Taskmanager::submit('CreateLdapConfig', $config);
}
protected function moduleVersion()
{
return self::VERSION;
}
protected function validateConfig()
{
// Check if required fields are filled
return Util::hasAllKeys($this->moduleData, self::$REQUIRED_FIELDS);
}
public function setData($key, $value)
{
if (!in_array($key, self::$REQUIRED_FIELDS) && !in_array($key, self::$OPTIONAL_FIELDS))
return false;
$this->moduleData[$key] = $value;
return true;
}
// ############## Callbacks #############################
/**
* Server IP changed - rebuild all AD modules.
*/
public function event_serverIpChanged()
{
error_log('Calling generate on ' . $this->title());
$this->generate(false);
}
}
|