Fix new config value in tests
This commit is contained in:
parent
74eef23492
commit
55e5319f19
@ -22,6 +22,6 @@
|
|||||||
<config name="stroke_opacity" value="d:0;" />
|
<config name="stroke_opacity" value="d:0;" />
|
||||||
<config name="stroke_weight" value="i:0;" />
|
<config name="stroke_weight" value="i:0;" />
|
||||||
<config name="units" value="s:6:"metric";" />
|
<config name="units" value="s:6:"metric";" />
|
||||||
<config name="upload_maxsize" value="i:0;" />
|
<config name="upload_maxsize" value="i:5242880;" />
|
||||||
<ol_layers />
|
<ol_layers />
|
||||||
</dataset>
|
</dataset>
|
||||||
|
@ -81,7 +81,7 @@ class MigrateTest extends UloggerDatabaseTestCase {
|
|||||||
["name" => "stroke_opacity", "value" => "i:1;"],
|
["name" => "stroke_opacity", "value" => "i:1;"],
|
||||||
["name" => "stroke_weight", "value" => "i:22;"],
|
["name" => "stroke_weight", "value" => "i:22;"],
|
||||||
["name" => "units", "value" => "s:8:\"imperial\";"],
|
["name" => "units", "value" => "s:8:\"imperial\";"],
|
||||||
["name" => "upload_maxsize", "value" => "i:0;"]
|
["name" => "upload_maxsize", "value" => "i:5242880;"]
|
||||||
]];
|
]];
|
||||||
$actual = $this->getConnection()->createQueryTable(
|
$actual = $this->getConnection()->createQueryTable(
|
||||||
"config",
|
"config",
|
||||||
|
@ -135,10 +135,9 @@ class uConfig {
|
|||||||
* @var int Maximum size of uploaded files in bytes.
|
* @var int Maximum size of uploaded files in bytes.
|
||||||
* Will be adjusted to system maximum upload size
|
* Will be adjusted to system maximum upload size
|
||||||
*/
|
*/
|
||||||
public $uploadMaxSize;
|
public $uploadMaxSize = 5242880;
|
||||||
|
|
||||||
public function __construct($useDatabase = true) {
|
public function __construct($useDatabase = true) {
|
||||||
$this->uploadMaxSize = uUtils::getUploadMaxSize();
|
|
||||||
if ($useDatabase) {
|
if ($useDatabase) {
|
||||||
$this->setFromDatabase();
|
$this->setFromDatabase();
|
||||||
}
|
}
|
||||||
@ -227,10 +226,10 @@ class uConfig {
|
|||||||
WHEN 'color_start' THEN $placeholder
|
WHEN 'color_start' THEN $placeholder
|
||||||
WHEN 'color_stop' THEN $placeholder
|
WHEN 'color_stop' THEN $placeholder
|
||||||
WHEN 'google_key' THEN $placeholder
|
WHEN 'google_key' THEN $placeholder
|
||||||
WHEN 'interval_seconds' THEN $placeholder
|
|
||||||
WHEN 'lang' THEN $placeholder
|
|
||||||
WHEN 'latitude' THEN $placeholder
|
WHEN 'latitude' THEN $placeholder
|
||||||
WHEN 'longitude' THEN $placeholder
|
WHEN 'longitude' THEN $placeholder
|
||||||
|
WHEN 'interval_seconds' THEN $placeholder
|
||||||
|
WHEN 'lang' THEN $placeholder
|
||||||
WHEN 'map_api' THEN $placeholder
|
WHEN 'map_api' THEN $placeholder
|
||||||
WHEN 'pass_lenmin' THEN $placeholder
|
WHEN 'pass_lenmin' THEN $placeholder
|
||||||
WHEN 'pass_strength' THEN $placeholder
|
WHEN 'pass_strength' THEN $placeholder
|
||||||
@ -429,10 +428,18 @@ class uConfig {
|
|||||||
}
|
}
|
||||||
if (isset($arr['upload_maxsize']) && is_numeric($arr['upload_maxsize'])) {
|
if (isset($arr['upload_maxsize']) && is_numeric($arr['upload_maxsize'])) {
|
||||||
$this->uploadMaxSize = (int) $arr['upload_maxsize'];
|
$this->uploadMaxSize = (int) $arr['upload_maxsize'];
|
||||||
if ($this->uploadMaxSize === 0 || $this->uploadMaxSize > uUtils::getUploadMaxSize()) {
|
$this->setUploadLimit();
|
||||||
$this->uploadMaxSize = uUtils::getUploadMaxSize();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adjust uploadMaxSize to system limits
|
||||||
|
*/
|
||||||
|
private function setUploadLimit() {
|
||||||
|
$limit = uUtils::getSystemUploadLimit();
|
||||||
|
if ($this->uploadMaxSize <= 0 || $this->uploadMaxSize > $limit) {
|
||||||
|
$this->uploadMaxSize = $limit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,7 +141,7 @@ class uUpload {
|
|||||||
|
|
||||||
$file = NULL;
|
$file = NULL;
|
||||||
$fileError = isset($fileMeta[self::META_ERROR]) ? $fileMeta[self::META_ERROR] : UPLOAD_ERR_OK;
|
$fileError = isset($fileMeta[self::META_ERROR]) ? $fileMeta[self::META_ERROR] : UPLOAD_ERR_OK;
|
||||||
if ($fileMeta[self::META_SIZE] > uUtils::getUploadMaxSize() && $fileError == UPLOAD_ERR_OK) {
|
if ($fileMeta[self::META_SIZE] > uUtils::getSystemUploadLimit() && $fileError == UPLOAD_ERR_OK) {
|
||||||
$fileError = UPLOAD_ERR_FORM_SIZE;
|
$fileError = UPLOAD_ERR_FORM_SIZE;
|
||||||
}
|
}
|
||||||
if ($fileError == UPLOAD_ERR_OK) {
|
if ($fileError == UPLOAD_ERR_OK) {
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
*
|
*
|
||||||
* @return int Number of bytes
|
* @return int Number of bytes
|
||||||
*/
|
*/
|
||||||
public static function getUploadMaxSize() {
|
public static function getSystemUploadLimit() {
|
||||||
$upload_max_filesize = self::iniGetBytes('upload_max_filesize');
|
$upload_max_filesize = self::iniGetBytes('upload_max_filesize');
|
||||||
$post_max_size = self::iniGetBytes('post_max_size');
|
$post_max_size = self::iniGetBytes('post_max_size');
|
||||||
// post_max_size = 0 means unlimited size
|
// post_max_size = 0 means unlimited size
|
||||||
|
@ -106,7 +106,7 @@ INSERT INTO `config` (`name`, `value`) VALUES
|
|||||||
('stroke_opacity', 'd:1;'),
|
('stroke_opacity', 'd:1;'),
|
||||||
('stroke_weight', 'i:2;'),
|
('stroke_weight', 'i:2;'),
|
||||||
('units', 's:6:"metric";'),
|
('units', 's:6:"metric";'),
|
||||||
('upload_maxsize', 'i:0;');
|
('upload_maxsize', 'i:5242880;');
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
@ -108,7 +108,7 @@ INSERT INTO config (name, value) VALUES
|
|||||||
('stroke_opacity', 'd:1;'),
|
('stroke_opacity', 'd:1;'),
|
||||||
('stroke_weight', 'i:2;'),
|
('stroke_weight', 'i:2;'),
|
||||||
('units', 's:6:"metric";'),
|
('units', 's:6:"metric";'),
|
||||||
('upload_maxsize', 'i:0;');
|
('upload_maxsize', 'i:5242880;');
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
@ -103,7 +103,7 @@ INSERT INTO `config` (`name`, `value`) VALUES
|
|||||||
('stroke_opacity', 'd:1;'),
|
('stroke_opacity', 'd:1;'),
|
||||||
('stroke_weight', 'i:2;'),
|
('stroke_weight', 'i:2;'),
|
||||||
('units', 's:6:"metric";'),
|
('units', 's:6:"metric";'),
|
||||||
('upload_maxsize', 'i:0;');
|
('upload_maxsize', 'i:5242880;');
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user