3 * StatusNet, the distributed open-source microblogging tool
5 * Base class for API actions that only require auth when a site
6 * is configured to be private
10 * LICENCE: This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Adrian Lang <mail@adrianlang.de>
26 * @author Brenda Wallace <shiny@cpan.org>
27 * @author Craig Andrews <candrews@integralblue.com>
28 * @author Dan Moore <dan@moore.cx>
29 * @author Evan Prodromou <evan@status.net>
30 * @author mEDI <medi@milaro.net>
31 * @author Sarven Capadisli <csarven@status.net>
32 * @author Zach Copley <zach@status.net>
33 * @copyright 2009 StatusNet, Inc.
34 * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
35 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
36 * @link http://status.net/
39 if (!defined('STATUSNET')) {
44 * Actions extending this class will require auth only if a site is private
48 * @author Adrian Lang <mail@adrianlang.de>
49 * @author Brenda Wallace <shiny@cpan.org>
50 * @author Craig Andrews <candrews@integralblue.com>
51 * @author Dan Moore <dan@moore.cx>
52 * @author Evan Prodromou <evan@status.net>
53 * @author mEDI <medi@milaro.net>
54 * @author Sarven Capadisli <csarven@status.net>
55 * @author Zach Copley <zach@status.net>
56 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
57 * @link http://status.net/
59 class ApiPrivateAuthAction extends ApiAuthAction
62 * Does this API resource require authentication?
64 * @return boolean true or false
66 function requiresAuth()
68 // If the site is "private", all API methods except statusnet/config
69 // need authentication
70 if (common_config('site', 'private')) {