2012-05-02 15:28:56 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2013-11-03 16:51:39 +04:00
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Frank Karlitschek
|
|
|
|
* @copyright 2012 Frank Karlitschek frank@owncloud.org
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2012-05-02 15:28:56 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* Config Class
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-05-10 17:19:17 +04:00
|
|
|
/**
|
2013-10-31 22:00:53 +04:00
|
|
|
* Use OCP namespace for all classes that are considered public.
|
2012-05-10 17:19:17 +04:00
|
|
|
*
|
|
|
|
* 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
|
2014-11-27 18:40:12 +03:00
|
|
|
* @deprecated use methods of \OCP\IConfig
|
2012-05-19 12:36:57 +04:00
|
|
|
*/
|
2012-05-02 15:28:56 +04:00
|
|
|
class Config {
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Gets a value from config.php
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $key key
|
2014-02-12 20:38:32 +04:00
|
|
|
* @param mixed $default = null default value
|
2014-08-27 01:58:13 +04:00
|
|
|
* @return mixed the value or $default
|
2014-11-27 18:40:12 +03:00
|
|
|
* @deprecated 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 ) {
|
2014-11-27 18:40:12 +03:00
|
|
|
return \OC::$server->getConfig()->getSystemValue( $key, $default );
|
2012-05-02 15:28:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-10-17 02:07:29 +04:00
|
|
|
* Sets a value
|
2012-09-23 04:39:11 +04:00
|
|
|
* @param string $key key
|
2014-02-12 20:38:32 +04:00
|
|
|
* @param mixed $value value
|
2012-09-23 04:39:11 +04:00
|
|
|
* @return bool
|
2014-11-27 18:40:12 +03:00
|
|
|
* @deprecated 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 {
|
2014-11-27 18:40:12 +03:00
|
|
|
\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
|
2014-11-27 18:40:12 +03:00
|
|
|
* @deprecated 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 ) {
|
2014-11-27 18:40:12 +03:00
|
|
|
\OC::$server->getConfig()->deleteSystemValue( $key );
|
2014-06-02 20:31:43 +04:00
|
|
|
}
|
|
|
|
|
2012-09-08 17:58:28 +04:00
|
|
|
/**
|
2013-10-17 02:07:29 +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
|
2014-11-27 19:03:17 +03:00
|
|
|
* @deprecated 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 ) {
|
2014-12-04 18:48:07 +03:00
|
|
|
return \OC::$server->getConfig()->getAppValue( $app, $key, $default );
|
2012-05-02 16:11:29 +04:00
|
|
|
}
|
|
|
|
|
2012-09-08 17:58:28 +04:00
|
|
|
/**
|
2013-10-17 02:07:29 +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
|
2014-02-06 19:30:58 +04:00
|
|
|
* @return boolean true/false
|
2014-11-27 19:03:17 +03:00
|
|
|
* @deprecated 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 {
|
2014-12-04 18:48:07 +03:00
|
|
|
\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
|
|
|
/**
|
2013-10-17 02:07:29 +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
|
2014-11-27 19:03:17 +03:00
|
|
|
* @deprecated 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 ) {
|
2014-11-27 19:05:19 +03:00
|
|
|
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
|
|
|
/**
|
2013-10-17 02:07:29 +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
|
2013-10-17 02:07:29 +04:00
|
|
|
* @return bool
|
2014-11-27 19:03:17 +03:00
|
|
|
* @deprecated 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 {
|
2014-11-27 19:05:19 +03:00
|
|
|
\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
|
|
|
}
|