]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/apiprivateauth.php
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into 0.9.x
[quix0rs-gnu-social.git] / lib / apiprivateauth.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Base class for API actions that only require auth when a site
6  * is configured to be private
7  *
8  * PHP version 5
9  *
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.
14  *
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.
19  *
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/>.
22  *
23  * @category  API
24  * @package   StatusNet
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  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
35  * @link      http://status.net/
36  */
37
38 if (!defined('STATUSNET')) {
39     exit(1);
40 }
41
42 require_once INSTALLDIR.'/lib/apiauth.php';
43
44 /**
45  * Actions extending this class will require auth only if a site is private
46  *
47  * @category API
48  * @package  StatusNet
49  * @author   Adrian Lang <mail@adrianlang.de>
50  * @author   Brenda Wallace <shiny@cpan.org>
51  * @author   Craig Andrews <candrews@integralblue.com>
52  * @author   Dan Moore <dan@moore.cx>
53  * @author   Evan Prodromou <evan@status.net>
54  * @author   mEDI <medi@milaro.net>
55  * @author   Sarven Capadisli <csarven@status.net>
56  * @author   Zach Copley <zach@status.net>
57  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
58  * @link     http://status.net/
59  */
60
61 class ApiPrivateAuthAction extends ApiAuthAction
62 {
63
64    /**
65      * Does this API resource require authentication?
66      *
67      * @return boolean true or false
68      */
69
70     function requiresAuth()
71     {
72         // If the site is "private", all API methods except statusnet/config
73         // need authentication
74
75         if (common_config('site', 'private')) {
76             return true;
77         }
78
79         return false;
80     }
81
82 }