Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
969e43c8
Commit
969e43c8
authored
11 years ago
by
Michael Gapczynski
Browse files
Options
Downloads
Patches
Plain Diff
Can't determine if debug mode is defined until we read the config
parent
b7b6075d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/config.php
+3
-6
3 additions, 6 deletions
lib/config.php
lib/legacy/config.php
+1
-1
1 addition, 1 deletion
lib/legacy/config.php
tests/lib/config.php
+9
-9
9 additions, 9 deletions
tests/lib/config.php
with
13 additions
and
16 deletions
lib/config.php
+
3
−
6
View file @
969e43c8
...
@@ -47,11 +47,8 @@ class Config {
...
@@ -47,11 +47,8 @@ class Config {
protected
$configDir
;
protected
$configDir
;
protected
$configFilename
;
protected
$configFilename
;
protected
$debugMode
;
public
function
__construct
(
$configDir
)
{
public
function
__construct
(
$configDir
,
$debugMode
)
{
$this
->
configDir
=
$configDir
;
$this
->
configDir
=
$configDir
;
$this
->
debugMode
=
$debugMode
;
$this
->
configFilename
=
$this
->
configDir
.
'config.php'
;
$this
->
configFilename
=
$this
->
configDir
.
'config.php'
;
$this
->
readData
();
$this
->
readData
();
}
}
...
@@ -152,7 +149,7 @@ class Config {
...
@@ -152,7 +149,7 @@ class Config {
private
function
writeData
()
{
private
function
writeData
()
{
// Create a php file ...
// Create a php file ...
$content
=
"<?php
\n
"
;
$content
=
"<?php
\n
"
;
if
(
$this
->
debugMode
)
{
if
(
defined
(
'DEBUG'
)
&&
DEBUG
)
{
$content
.
=
"define('DEBUG',true);
\n
"
;
$content
.
=
"define('DEBUG',true);
\n
"
;
}
}
$content
.
=
'$CONFIG = '
;
$content
.
=
'$CONFIG = '
;
...
@@ -167,7 +164,7 @@ class Config {
...
@@ -167,7 +164,7 @@ class Config {
'You can usually fix this by giving the webserver user write access'
'You can usually fix this by giving the webserver user write access'
.
' to the config directory in ownCloud'
);
.
' to the config directory in ownCloud'
);
}
}
// Prevent others
not to
read the config
// Prevent others
from
read
ing
the config
@
chmod
(
$this
->
configFilename
,
0640
);
@
chmod
(
$this
->
configFilename
,
0640
);
}
}
}
}
This diff is collapsed.
Click to expand it.
lib/legacy/config.php
+
1
−
1
View file @
969e43c8
...
@@ -38,7 +38,7 @@
...
@@ -38,7 +38,7 @@
* This class is responsible for reading and writing config.php, the very basic
* This class is responsible for reading and writing config.php, the very basic
* configuration file of ownCloud.
* configuration file of ownCloud.
*/
*/
OC_Config
::
$object
=
new
\OC\Config
(
OC
::
$SERVERROOT
.
'/config/'
,
defined
(
'DEBUG'
)
&&
DEBUG
);
OC_Config
::
$object
=
new
\OC\Config
(
OC
::
$SERVERROOT
.
'/config/'
);
class
OC_Config
{
class
OC_Config
{
public
static
$object
;
public
static
$object
;
...
...
This diff is collapsed.
Click to expand it.
tests/lib/config.php
+
9
−
9
View file @
969e43c8
...
@@ -13,25 +13,25 @@ class Test_Config extends PHPUnit_Framework_TestCase {
...
@@ -13,25 +13,25 @@ class Test_Config extends PHPUnit_Framework_TestCase {
public
function
testReadData
()
public
function
testReadData
()
{
{
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
,
false
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
);
$this
->
assertAttributeEquals
(
array
(),
'cache'
,
$config
);
$this
->
assertAttributeEquals
(
array
(),
'cache'
,
$config
);
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
,
false
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
);
$this
->
assertAttributeEquals
(
array
(
'foo'
=>
'bar'
),
'cache'
,
$config
);
$this
->
assertAttributeEquals
(
array
(
'foo'
=>
'bar'
),
'cache'
,
$config
);
}
}
public
function
testGetKeys
()
public
function
testGetKeys
()
{
{
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
,
false
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
);
$this
->
assertEquals
(
array
(
'foo'
),
$config
->
getKeys
());
$this
->
assertEquals
(
array
(
'foo'
),
$config
->
getKeys
());
}
}
public
function
testGetValue
()
public
function
testGetValue
()
{
{
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
,
false
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
);
$this
->
assertEquals
(
'bar'
,
$config
->
getValue
(
'foo'
));
$this
->
assertEquals
(
'bar'
,
$config
->
getValue
(
'foo'
));
$this
->
assertEquals
(
null
,
$config
->
getValue
(
'bar'
));
$this
->
assertEquals
(
null
,
$config
->
getValue
(
'bar'
));
$this
->
assertEquals
(
'moo'
,
$config
->
getValue
(
'bar'
,
'moo'
));
$this
->
assertEquals
(
'moo'
,
$config
->
getValue
(
'bar'
,
'moo'
));
...
@@ -40,7 +40,7 @@ class Test_Config extends PHPUnit_Framework_TestCase {
...
@@ -40,7 +40,7 @@ class Test_Config extends PHPUnit_Framework_TestCase {
public
function
testSetValue
()
public
function
testSetValue
()
{
{
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
,
false
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
);
$config
->
setValue
(
'foo'
,
'moo'
);
$config
->
setValue
(
'foo'
,
'moo'
);
$this
->
assertAttributeEquals
(
array
(
'foo'
=>
'moo'
),
'cache'
,
$config
);
$this
->
assertAttributeEquals
(
array
(
'foo'
=>
'moo'
),
'cache'
,
$config
);
$content
=
file_get_contents
(
self
::
CONFIG_FILE
);
$content
=
file_get_contents
(
self
::
CONFIG_FILE
);
...
@@ -69,7 +69,7 @@ EOL
...
@@ -69,7 +69,7 @@ EOL
public
function
testDeleteKey
()
public
function
testDeleteKey
()
{
{
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
,
false
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
);
$config
->
deleteKey
(
'foo'
);
$config
->
deleteKey
(
'foo'
);
$this
->
assertAttributeEquals
(
array
(),
'cache'
,
$config
);
$this
->
assertAttributeEquals
(
array
(),
'cache'
,
$config
);
$content
=
file_get_contents
(
self
::
CONFIG_FILE
);
$content
=
file_get_contents
(
self
::
CONFIG_FILE
);
...
@@ -84,11 +84,11 @@ EOL
...
@@ -84,11 +84,11 @@ EOL
public
function
testSavingDebugMode
()
public
function
testSavingDebugMode
()
{
{
define
(
'DEBUG'
,
true
);
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
file_put_contents
(
self
::
CONFIG_FILE
,
self
::
TESTCONTENT
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
,
true
);
$config
=
new
OC\Config
(
self
::
CONFIG_DIR
);
$config
->
deleteKey
(
'foo'
);
// change something so we save to the config file
$config
->
deleteKey
(
'foo'
);
// change something so we save to the config file
$this
->
assertAttributeEquals
(
array
(),
'cache'
,
$config
);
$this
->
assertAttributeEquals
(
array
(),
'cache'
,
$config
);
$this
->
assertAttributeEquals
(
true
,
'debug_mode'
,
$config
);
$content
=
file_get_contents
(
self
::
CONFIG_FILE
);
$content
=
file_get_contents
(
self
::
CONFIG_FILE
);
$this
->
assertEquals
(
<<<EOL
$this
->
assertEquals
(
<<<EOL
<?php
<?php
...
@@ -102,7 +102,7 @@ EOL
...
@@ -102,7 +102,7 @@ EOL
public
function
testWriteData
()
public
function
testWriteData
()
{
{
$config
=
new
OC\Config
(
'/non-writable'
,
false
);
$config
=
new
OC\Config
(
'/non-writable'
);
try
{
try
{
$config
->
setValue
(
'foo'
,
'bar'
);
$config
->
setValue
(
'foo'
,
'bar'
);
}
catch
(
\OC\HintException
$e
)
{
}
catch
(
\OC\HintException
$e
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment