3 * StatusNet, the distributed open-source microblogging tool
5 * Dump of configuration variables
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Evan Prodromou <evan@status.net>
25 * @author Zach Copley <zach@status.net>
26 * @copyright 2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET')) {
36 * Gives a full dump of configuration variables for this instance
37 * of StatusNet, minus variables that may be security-sensitive (like
39 * URL: http://identi.ca/api/statusnet/config.(xml|json)
44 * @author Evan Prodromou <evan@status.net>
45 * @author Zach Copley <zach@status.net>
46 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47 * @link http://status.net/
49 class ApiStatusnetConfigAction extends ApiAction
52 'site' => array('name', 'server', 'theme', 'path', 'logo', 'fancy', 'language',
53 'email', 'broughtby', 'broughtbyurl', 'timezone', 'closed',
54 'inviteonly', 'private', 'textlimit', 'ssl', 'sslserver', 'shorturllength'),
55 'license' => array('type', 'owner', 'url', 'title', 'image'),
56 'nickname' => array('featured'),
57 'profile' => array('biolimit'),
58 'group' => array('desclimit'),
59 'notice' => array('contentlimit'),
60 'throttle' => array('enabled', 'count', 'timespan'),
61 'xmpp' => array('enabled', 'server', 'port', 'user'),
62 'integration' => array('source')
66 * Take arguments for running
68 * @param array $args $_REQUEST args
70 * @return boolean success flag
72 function prepare($args)
74 parent::prepare($args);
81 * @param array $args $_REQUEST data (unused)
85 function handle($args)
87 parent::handle($args);
89 switch ($this->format) {
91 $this->initDocument('xml');
92 $this->elementStart('config');
94 // XXX: check that all sections and settings are legal XML elements
96 foreach ($this->keys as $section => $settings) {
97 $this->elementStart($section);
98 foreach ($settings as $setting) {
99 $value = common_config($section, $setting);
100 if (is_array($value)) {
101 $value = implode(',', $value);
102 } else if ($value === false || $value == '0') {
104 } else if ($value === true || $value == '1') {
108 // return theme logo if there's no site specific one
110 if ($section == 'site' && $setting == 'logo') {
111 $value = Theme::path('logo.png');
115 $this->element($setting, null, $value);
117 $this->elementEnd($section);
119 $this->elementEnd('config');
120 $this->endDocument('xml');
124 foreach ($this->keys as $section => $settings) {
125 $result[$section] = array();
126 foreach ($settings as $setting) {
127 $result[$section][$setting]
128 = common_config($section, $setting);
131 $this->initDocument('json');
132 $this->showJsonObjects($result);
133 $this->endDocument('json');
137 // TRANS: Client error displayed when trying to handle an unknown API method.
138 _('API method not found.'),
147 * Return true if read only.
151 * @param array $args other arguments
153 * @return boolean is read only action?
155 function isReadOnly($args)