diff options
| author | Simon Rettberg | 2015-02-06 16:12:45 +0100 |
|---|---|---|
| committer | Simon Rettberg | 2015-02-06 16:12:45 +0100 |
| commit | 161180cdf4e915526bc8d62c0301a09130fbf59e (patch) | |
| tree | 3f59fd0da89fe42c2838885eef82b23064cac8a4 /inc/configmodule | |
| parent | Finish config module editing (diff) | |
| download | slx-admin-161180cdf4e915526bc8d62c0301a09130fbf59e.tar.gz slx-admin-161180cdf4e915526bc8d62c0301a09130fbf59e.tar.xz slx-admin-161180cdf4e915526bc8d62c0301a09130fbf59e.zip | |
Add sshd config module
Diffstat (limited to 'inc/configmodule')
| -rw-r--r-- | inc/configmodule/adauth.inc.php | 7 | ||||
| -rw-r--r-- | inc/configmodule/customodule.inc.php | 4 | ||||
| -rw-r--r-- | inc/configmodule/sshconfig.inc.php | 63 |
3 files changed, 64 insertions, 10 deletions
diff --git a/inc/configmodule/adauth.inc.php b/inc/configmodule/adauth.inc.php index 11087286..828469c3 100644 --- a/inc/configmodule/adauth.inc.php +++ b/inc/configmodule/adauth.inc.php @@ -47,13 +47,6 @@ class ConfigModule_AdAuth extends ConfigModule return true; } - public function getData($key) - { - if (!is_array($this->moduleData) || !isset($this->moduleData[$key])) - return false; - return $this->moduleData[$key]; - } - // ############## Callbacks ############################# /** diff --git a/inc/configmodule/customodule.inc.php b/inc/configmodule/customodule.inc.php index 89f63549..31796e9c 100644 --- a/inc/configmodule/customodule.inc.php +++ b/inc/configmodule/customodule.inc.php @@ -19,9 +19,7 @@ class ConfigModule_CustomModule extends ConfigModule protected function generateInternal($tgz, $parent) { if (!$this->validateConfig()) { - if ($this->archive() !== false && file_exists($this->archive())) - return true; // No new temp file given, old archive still exists, pretend it worked... - return false; + return $this->archive() !== false && file_exists($this->archive()); // No new temp file given, old archive still exists, pretend it worked... } $task = Taskmanager::submit('MoveFile', array( 'source' => $this->tmpFile, diff --git a/inc/configmodule/sshconfig.inc.php b/inc/configmodule/sshconfig.inc.php new file mode 100644 index 00000000..853acf6a --- /dev/null +++ b/inc/configmodule/sshconfig.inc.php @@ -0,0 +1,63 @@ +<?php + +ConfigModule::registerModule( + ConfigModule_SshConfig::MODID, // ID + Dictionary::translate('config-module', 'sshconfig_title'), // Title + Dictionary::translate('config-module', 'sshconfig_description'), // Description + Dictionary::translate('config-module', 'group_sshconfig'), // Group + true // Only one per config? +); + +class ConfigModule_SshConfig extends ConfigModule +{ + const MODID = 'SshConfig'; + const VERSION = 1; + + protected function generateInternal($tgz, $parent) + { + if (!$this->validateConfig()) + return false; + $config = $this->moduleData + array( + 'filename' => $tgz, + 'failOnParentFail' => false, + 'parent' => $parent + ); + // Create config module, which will also check if the pubkey is valid + return Taskmanager::submit('SshdConfigGenerator', $config); + } + + protected function moduleVersion() + { + return self::VERSION; + } + + protected function validateConfig() + { + return isset($this->moduleData['publicKey']) && isset($this->moduleData['allowPasswordLogin']) && isset($this->moduleData['listenPort']); + } + + public function setData($key, $value) + { + switch ($key) { + case 'publicKey': + break; + case 'allowPasswordLogin': + if ($value === true || $value === 'yes') + $value = 'yes'; + elseif ($value === false || $value === 'no') + $value = 'no'; + else + return false; + break; + case 'listenPort': + if (!is_numeric($value) || $value < 1 || $value > 65535) + return false; + break; + default: + return false; + } + $this->moduleData[$key] = $value; + return true; + } + +} |
