nextcloud/lib/public/Config.php

165 lines
4.9 KiB
PHP
Raw Normal View History

2012-05-02 15:28:56 +04:00
<?php
/**
2016-07-21 18:07:57 +03:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
2015-03-26 13:44:34 +03:00
* @author Bart Visscher <bartv@thisnet.nl>
2016-05-26 20:56:05 +03:00
* @author Frank Karlitschek <frank@karlitschek.de>
2015-03-26 13:44:34 +03:00
* @author Georg Ehrke <georg@owncloud.com>
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
2016-05-26 20:56:05 +03:00
* @author Lukas Reschke <lukas@statuscode.ch>
2015-03-26 13:44:34 +03:00
* @author Morris Jobke <hey@morrisjobke.de>
2016-07-21 19:13:36 +03:00
* @author Robin Appelman <robin@icewind.nl>
2015-03-26 13:44:34 +03:00
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
2015-03-26 13:44:34 +03:00
* @license AGPL-3.0
*
2015-03-26 13:44:34 +03:00
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
2015-03-26 13:44:34 +03:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2015-03-26 13:44:34 +03:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
2015-03-26 13:44:34 +03:00
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
/**
* Public interface of ownCloud for apps to use.
* Config Class
*
*/
/**
* Use OCP namespace for all classes that are considered public.
*
* Classes that use this namespace are for use by apps, and not for use by internal
* OC classes
*/
2012-05-02 15:28:56 +04:00
namespace OCP;
2012-05-19 12:36:57 +04:00
/**
2013-02-11 20:44:02 +04:00
* This class provides functions to read and write configuration data.
* configuration can be on a system, application or user level
2015-04-19 02:04:59 +03:00
* @deprecated 8.0.0 use methods of \OCP\IConfig
2012-05-19 12:36:57 +04:00
*/
2012-05-02 15:28:56 +04:00
class Config {
/**
* Gets a value from config.php
2012-09-23 04:39:11 +04:00
* @param string $key key
* @param mixed $default = null default value
* @return mixed the value or $default
2015-04-19 02:04:59 +03:00
* @deprecated 8.0.0 use method getSystemValue of \OCP\IConfig
2012-05-02 15:28:56 +04:00
*
* This function gets the value from config.php. If it does not exist,
* $default will be returned.
*/
2012-09-07 17:22:01 +04:00
public static function getSystemValue( $key, $default = null ) {
return \OC::$server->getConfig()->getSystemValue( $key, $default );
2012-05-02 15:28:56 +04:00
}
/**
* Sets a value
2012-09-23 04:39:11 +04:00
* @param string $key key
* @param mixed $value value
2012-09-23 04:39:11 +04:00
* @return bool
2015-04-19 02:04:59 +03:00
* @deprecated 8.0.0 use method setSystemValue of \OCP\IConfig
2012-05-02 15:28:56 +04:00
*
* This function sets the value and writes the config.php. If the file can
* not be written, false will be returned.
*/
2012-09-07 17:22:01 +04:00
public static function setSystemValue( $key, $value ) {
2013-03-19 11:47:29 +04:00
try {
\OC::$server->getConfig()->setSystemValue( $key, $value );
2014-04-07 22:57:08 +04:00
} catch (\Exception $e) {
2013-03-19 11:47:29 +04:00
return false;
}
return true;
2012-05-02 15:28:56 +04:00
}
2014-06-02 20:31:43 +04:00
/**
* Deletes a value from config.php
* @param string $key key
2015-04-19 02:04:59 +03:00
* @deprecated 8.0.0 use method deleteSystemValue of \OCP\IConfig
2014-06-02 20:31:43 +04:00
*
* This function deletes the value from config.php.
*/
public static function deleteSystemValue( $key ) {
\OC::$server->getConfig()->deleteSystemValue( $key );
2014-06-02 20:31:43 +04:00
}
2012-09-08 17:58:28 +04:00
/**
* Gets the config value
2012-09-23 04:39:11 +04:00
* @param string $app app
* @param string $key key
* @param string $default = null, default value if the key does not exist
* @return string the value or $default
2015-04-19 02:04:59 +03:00
* @deprecated 8.0.0 use method getAppValue of \OCP\IConfig
2012-09-08 17:58:28 +04:00
*
* This function gets a value from the appconfig table. If the key does
2012-09-23 04:39:11 +04:00
* not exist the default value will be returned
2012-09-08 17:58:28 +04:00
*/
public static function getAppValue( $app, $key, $default = null ) {
return \OC::$server->getConfig()->getAppValue( $app, $key, $default );
2012-05-02 16:11:29 +04:00
}
2012-09-08 17:58:28 +04:00
/**
* Sets a value in the appconfig
2012-09-23 04:39:11 +04:00
* @param string $app app
* @param string $key key
* @param string $value value
* @return boolean true/false
2015-04-19 02:04:59 +03:00
* @deprecated 8.0.0 use method setAppValue of \OCP\IConfig
2012-09-08 17:58:28 +04:00
*
* Sets a value. If the key did not exist before it will be created.
*/
public static function setAppValue( $app, $key, $value ) {
2013-03-19 11:47:29 +04:00
try {
\OC::$server->getConfig()->setAppValue( $app, $key, $value );
2014-04-07 22:57:08 +04:00
} catch (\Exception $e) {
2013-03-19 11:47:29 +04:00
return false;
}
return true;
2012-05-02 16:11:29 +04:00
}
2012-09-08 17:58:28 +04:00
/**
* Gets the preference
2012-09-23 04:39:11 +04:00
* @param string $user user
* @param string $app app
* @param string $key key
* @param string $default = null, default value if the key does not exist
* @return string the value or $default
2015-04-19 02:04:59 +03:00
* @deprecated 8.0.0 use method getUserValue of \OCP\IConfig
2012-09-08 17:58:28 +04:00
*
2012-09-23 04:39:11 +04:00
* This function gets a value from the preferences table. If the key does
* not exist the default value will be returned
2012-09-08 17:58:28 +04:00
*/
public static function getUserValue( $user, $app, $key, $default = null ) {
return \OC::$server->getConfig()->getUserValue( $user, $app, $key, $default );
2012-05-02 17:54:34 +04:00
}
2012-09-08 17:58:28 +04:00
/**
* Sets a value in the preferences
2012-09-23 04:39:11 +04:00
* @param string $user user
* @param string $app app
* @param string $key key
* @param string $value value
* @return bool
2015-04-19 02:04:59 +03:00
* @deprecated 8.0.0 use method setUserValue of \OCP\IConfig
2012-09-08 17:58:28 +04:00
*
* Adds a value to the preferences. If the key did not exist before, it
* will be added automagically.
*/
public static function setUserValue( $user, $app, $key, $value ) {
2013-03-19 11:47:29 +04:00
try {
\OC::$server->getConfig()->setUserValue( $user, $app, $key, $value );
2014-04-07 22:57:08 +04:00
} catch (\Exception $e) {
2013-03-19 11:47:29 +04:00
return false;
}
return true;
2012-05-02 17:54:34 +04:00
}
2012-05-02 15:28:56 +04:00
}