]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apistatusnetconfig.php
a58c5d3dfaa67831694789494fd3ac8c9ae1fe96
[quix0rs-gnu-social.git] / actions / apistatusnetconfig.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Dump of configuration variables
6  *
7  * PHP version 5
8  *
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.
13  *
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.
18  *
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/>.
21  *
22  * @category  API
23  * @package   StatusNet
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/
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 /**
36  * Gives a full dump of configuration variables for this instance
37  * of StatusNet, minus variables that may be security-sensitive (like
38  * passwords).
39  * URL: http://identi.ca/api/statusnet/config.(xml|json)
40  * Formats: xml, json
41  *
42  * @category API
43  * @package  StatusNet
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/
48  */
49 class ApiStatusnetConfigAction extends ApiAction
50 {
51     var $keys = array(
52         'site' => array('name', 'server', 'theme', 'path', 'logo', 'fancy', 'language',
53                         'email', 'broughtby', 'broughtbyurl', 'timezone', 'closed',
54                         'inviteonly', 'private', 'textlimit', 'ssl', 'sslserver'),
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'),
63         'attachments' => array('uploads', 'file_quota'),
64         'url' => array('maxlength', 'maxnoticelength'),
65     );
66
67     /**
68      * Take arguments for running
69      *
70      * @param array $args $_REQUEST args
71      *
72      * @return boolean success flag
73      */
74     function prepare($args)
75     {
76         parent::prepare($args);
77         return true;
78     }
79
80     /**
81      * Handle the request
82      *
83      * @param array $args $_REQUEST data (unused)
84      *
85      * @return void
86      */
87     function handle($args)
88     {
89         parent::handle($args);
90
91         switch ($this->format) {
92         case 'xml':
93             $this->initDocument('xml');
94             $this->elementStart('config');
95
96             // XXX: check that all sections and settings are legal XML elements
97
98             foreach ($this->keys as $section => $settings) {
99                 $this->elementStart($section);
100                 foreach ($settings as $setting) {
101                     $value = $this->setting($section, $setting);
102                     if (is_array($value)) {
103                         $value = implode(',', $value);
104                     } else if ($value === false || $value == '0') {
105                         $value = 'false';
106                     } else if ($value === true || $value == '1') {
107                         $value = 'true';
108                     }
109
110                     // return theme logo if there's no site specific one
111                     if (empty($value)) {
112                         if ($section == 'site' && $setting == 'logo') {
113                             $value = Theme::path('logo.png');
114                         }
115                     }
116
117                     $this->element($setting, null, $value);
118                 }
119                 $this->elementEnd($section);
120             }
121             $this->elementEnd('config');
122             $this->endDocument('xml');
123             break;
124         case 'json':
125             $result = array();
126             foreach ($this->keys as $section => $settings) {
127                 $result[$section] = array();
128                 foreach ($settings as $setting) {
129                     $result[$section][$setting]
130                         = $this->setting($section, $setting);
131                 }
132             }
133             $this->initDocument('json');
134             $this->showJsonObjects($result);
135             $this->endDocument('json');
136             break;
137         default:
138             $this->clientError(
139                 // TRANS: Client error displayed when coming across a non-supported API method.
140                 _('API method not found.'),
141                 404,
142                 $this->format
143             );
144             break;
145         }
146     }
147
148     function setting($section, $key) {
149         $result = common_config($section, $key);
150         if ($key == 'file_quota') {
151             // hack: adjust for the live upload limit
152             if (common_config($section, 'uploads')) {
153                 $max = ImageFile::maxFileSizeInt();
154             } else {
155                 $max = 0;
156             }
157             return min($result, $max);
158         }
159         return $result;
160     }
161
162     /**
163      * Return true if read only.
164      *
165      * MAY override
166      *
167      * @param array $args other arguments
168      *
169      * @return boolean is read only action?
170      */
171     function isReadOnly($args)
172     {
173         return true;
174     }
175 }