summaryrefslogtreecommitdiffstats
path: root/modules-available/sysconfig/addmodule_sshkey.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules-available/sysconfig/addmodule_sshkey.inc.php')
-rw-r--r--modules-available/sysconfig/addmodule_sshkey.inc.php72
1 files changed, 72 insertions, 0 deletions
diff --git a/modules-available/sysconfig/addmodule_sshkey.inc.php b/modules-available/sysconfig/addmodule_sshkey.inc.php
new file mode 100644
index 00000000..b5ab4ad6
--- /dev/null
+++ b/modules-available/sysconfig/addmodule_sshkey.inc.php
@@ -0,0 +1,72 @@
+<?php
+
+/*
+ * Wizard for configuring the sshd (client side).
+ */
+
+class SshKey_Start extends AddModule_Base
+{
+
+ protected function renderInternal()
+ {
+ if ($this->edit !== false) {
+ $data = $this->edit->getData(false) + array(
+ 'title' => $this->edit->title(),
+ 'edit' => $this->edit->id(),
+ );
+ } else {
+ $data = array();
+ }
+ Render::addDialog(Dictionary::translateFile('config-module', 'sshkey_title'), false, 'sshkey-start', $data + array(
+ 'step' => 'SshKey_Finish',
+ ));
+ }
+
+}
+
+class SshKey_Finish extends AddModule_Base
+{
+
+ protected function preprocessInternal()
+ {
+ $title = Request::post('title');
+ if (empty($title)) {
+ Message::addError('missing-title');
+ return;
+ }
+ // Seems ok, create entry
+ if ($this->edit === false) {
+ $module = ConfigModule::getInstance('SshKey');
+ } else {
+ $module = $this->edit;
+ }
+ if ($module === false) {
+ Message::addError('main.error-read', 'sshkey.inc.php');
+ Util::redirect('?do=SysConfig&action=addmodule&step=SshKey_Start');
+ }
+ if (!$module->setData('publicKey', Request::post('publicKey'))) {
+ Message::addError('main.value-invalid', 'pubkey', Request::post('publicKey'));
+ Util::redirect('?do=SysConfig&action=addmodule&step=SshKey_Start');
+ }
+ if ($this->edit !== false) {
+ $ret = $module->update($title);
+ } else {
+ $ret = $module->insert($title);
+ }
+ if (!$ret) {
+ Util::redirect('?do=SysConfig&action=addmodule&step=SshKey_Start');
+ } elseif (!$module->generate($this->edit === false, NULL, 200)) {
+ Util::redirect('?do=SysConfig&action=addmodule&step=SshKey_Start');
+ }
+ // Yay
+ if ($this->edit !== false) {
+ Message::addSuccess('module-edited');
+ } else {
+ Message::addSuccess('module-added');
+ AddModule_Base::setStep('AddModule_Assign', $module->id());
+ return;
+ }
+ Util::redirect('?do=SysConfig');
+ }
+
+}