summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Controller/ConfigController.php8
-rw-r--r--app/Model/ConfigModel.php7
-rw-r--r--app/Template/config/upload_db.php8
3 files changed, 12 insertions, 11 deletions
diff --git a/app/Controller/ConfigController.php b/app/Controller/ConfigController.php
index 222549f4..62ae8201 100644
--- a/app/Controller/ConfigController.php
+++ b/app/Controller/ConfigController.php
@@ -207,7 +207,7 @@ class ConfigController extends BaseController
*/
public function uploadDb()
{
- $this->response->html($this->helper->layout->config('config/upload_db', array()));
+ $this->response->html($this->template->render('config/upload_db'));
}
/**
@@ -215,14 +215,16 @@ class ConfigController extends BaseController
*
* @access public
*/
- public function uploadDbSave()
+ public function saveUploadedDb()
{
$filename = $this->request->getFilePath('file');
+
if (!file_exists($filename) || !$this->configModel->uploadDatabase($filename)) {
- $this->flash->failure(t('Unable to read your file'));
+ $this->flash->failure(t('Unable to read uploaded file.'));
} else {
$this->flash->success(t('Database upload done.'));
}
+
$this->response->redirect($this->helper->url->to('ConfigController', 'index'));
}
diff --git a/app/Model/ConfigModel.php b/app/Model/ConfigModel.php
index b45199fd..7f48f34f 100644
--- a/app/Model/ConfigModel.php
+++ b/app/Model/ConfigModel.php
@@ -52,14 +52,13 @@ class ConfigModel extends SettingModel
* Replace database file with uploaded one
*
* @access public
- * @return boolean
+ * @param string $file
+ * @return bool
*/
public function uploadDatabase($file)
{
-
$this->db->closeConnection();
- $result = file_put_contents(DB_FILENAME, gzdecode(file_get_contents($file)));
- return $result == false? false: true;
+ return file_put_contents(DB_FILENAME, gzdecode(file_get_contents($file))) !== false;
}
/**
diff --git a/app/Template/config/upload_db.php b/app/Template/config/upload_db.php
index 4d02c9a8..d7aaac86 100644
--- a/app/Template/config/upload_db.php
+++ b/app/Template/config/upload_db.php
@@ -3,12 +3,12 @@
</div>
<div class="alert">
- <ul>
- <li><?= t('You can upload Gzip compressed Sqlite database you previously downloaded') ?></li>
- </ul>
+ <p>
+ <?= t('You can upload the Gzip compressed Sqlite database previously downloaded.') ?>
+ </p>
</div>
-<form action="<?= $this->url->href('ConfigController', 'uploadDbSave') ?>" method="post" enctype="multipart/form-data">
+<form action="<?= $this->url->href('ConfigController', 'saveUploadedDb') ?>" method="post" enctype="multipart/form-data">
<?= $this->form->csrf() ?>
<?= $this->form->label(t('Database file'), 'file') ?>