blob: b45199fd9c64ba9ddaaf133464c17d37e739fad2 (
plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<?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));
}
/**
* Replace database file with uploaded one
*
* @access public
* @return boolean
*/
public function uploadDatabase($file)
{
$this->db->closeConnection();
$result = file_put_contents(DB_FILENAME, gzdecode(file_get_contents($file)));
return $result == false? false: true;
}
/**
* 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;
}
}
|