summaryrefslogtreecommitdiff
path: root/app/Model/ConfigModel.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Model/ConfigModel.php')
-rw-r--r--app/Model/ConfigModel.php89
1 files changed, 89 insertions, 0 deletions
diff --git a/app/Model/ConfigModel.php b/app/Model/ConfigModel.php
new file mode 100644
index 00000000..945c5e6f
--- /dev/null
+++ b/app/Model/ConfigModel.php
@@ -0,0 +1,89 @@
+<?php
+
+namespace Kanboard\Model;
+
+use Kanboard\Core\Security\Token;
+
+/**
+ * Config model
+ *
+ * @package Kanboard\Model
+ * @author Frederic Guillot
+ */
+class ConfigModel extends SettingModel
+{
+ /**
+ * Get a config variable with in-memory caching
+ *
+ * @access public
+ * @param string $name Parameter name
+ * @param string $default_value Default value of the parameter
+ * @return string
+ */
+ public function get($name, $default_value = '')
+ {
+ $options = $this->memoryCache->proxy($this, 'getAll');
+ return isset($options[$name]) && $options[$name] !== '' ? $options[$name] : $default_value;
+ }
+
+ /**
+ * Optimize the Sqlite database
+ *
+ * @access public
+ * @return boolean
+ */
+ public function optimizeDatabase()
+ {
+ return $this->db->getConnection()->exec('VACUUM');
+ }
+
+ /**
+ * Compress the Sqlite database
+ *
+ * @access public
+ * @return string
+ */
+ public function downloadDatabase()
+ {
+ return gzencode(file_get_contents(DB_FILENAME));
+ }
+
+ /**
+ * Get the Sqlite database size in bytes
+ *
+ * @access public
+ * @return integer
+ */
+ public function getDatabaseSize()
+ {
+ return DB_DRIVER === 'sqlite' ? filesize(DB_FILENAME) : 0;
+ }
+
+ /**
+ * Regenerate a token
+ *
+ * @access public
+ * @param string $option Parameter name
+ * @return boolean
+ */
+ public function regenerateToken($option)
+ {
+ return $this->save(array($option => Token::getToken()));
+ }
+
+ /**
+ * Prepare data before save
+ *
+ * @access public
+ * @param array $values
+ * @return array
+ */
+ public function prepare(array $values)
+ {
+ if (! empty($values['application_url']) && substr($values['application_url'], -1) !== '/') {
+ $values['application_url'] = $values['application_url'].'/';
+ }
+
+ return $values;
+ }
+}