2010-01-13 05:06:35 +00:00
|
|
|
<?php
|
2020-09-15 12:59:27 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
/**
|
|
|
|
* Base action for OAuth API endpoints
|
|
|
|
*
|
|
|
|
* @category API
|
2020-09-15 12:59:27 +01:00
|
|
|
* @package GNUsocial
|
2010-01-13 05:06:35 +00:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
2020-09-15 12:59:27 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2010-01-13 05:06:35 +00:00
|
|
|
*/
|
|
|
|
|
2020-09-15 12:59:27 +01:00
|
|
|
defined('GNUSOCIAL') || die();
|
|
|
|
|
2019-08-23 13:36:02 +01:00
|
|
|
require_once INSTALLDIR . '/lib/api/apiaction.php';
|
2010-01-13 05:06:35 +00:00
|
|
|
|
|
|
|
/**
|
2010-10-07 03:20:47 +01:00
|
|
|
* Base action for API OAuth enpoints. Clean up the
|
|
|
|
* request. Some other common functions.
|
2010-01-13 05:06:35 +00:00
|
|
|
*
|
2020-09-15 12:59:27 +01:00
|
|
|
* @category API
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2010-01-13 05:06:35 +00:00
|
|
|
*/
|
2013-10-06 11:40:58 +01:00
|
|
|
class ApiOAuthAction extends ApiAction
|
2010-01-13 05:06:35 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Is this a read-only action?
|
|
|
|
*
|
|
|
|
* @return boolean false
|
|
|
|
*/
|
2020-09-15 12:59:27 +01:00
|
|
|
public function isReadOnly($args)
|
2010-01-13 05:06:35 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-06-06 20:57:42 +01:00
|
|
|
protected function prepare(array $args=array())
|
2010-01-13 05:06:35 +00:00
|
|
|
{
|
|
|
|
self::cleanRequest();
|
2015-06-06 20:57:42 +01:00
|
|
|
return parent::prepare($args);
|
2010-01-13 05:06:35 +00:00
|
|
|
}
|
|
|
|
|
2010-10-06 01:53:50 +01:00
|
|
|
/*
|
|
|
|
* Clean up the request so the OAuth library doesn't find
|
|
|
|
* any extra parameters or anything else it's not expecting.
|
|
|
|
* I'm looking at you, p parameter.
|
|
|
|
*/
|
2010-10-07 03:20:47 +01:00
|
|
|
|
2020-09-15 12:59:27 +01:00
|
|
|
public static function cleanRequest()
|
2010-01-13 05:06:35 +00:00
|
|
|
{
|
|
|
|
// strip out the p param added in index.php
|
|
|
|
unset($_GET['p']);
|
|
|
|
unset($_POST['p']);
|
2010-10-05 02:21:50 +01:00
|
|
|
unset($_REQUEST['p']);
|
|
|
|
|
|
|
|
$queryArray = explode('&', $_SERVER['QUERY_STRING']);
|
2010-10-06 00:13:07 +01:00
|
|
|
|
2010-10-05 02:21:50 +01:00
|
|
|
for ($i = 0; $i < sizeof($queryArray); $i++) {
|
2010-10-06 01:27:55 +01:00
|
|
|
if (substr($queryArray[$i], 0, 2) == 'p=') {
|
2010-10-05 02:21:50 +01:00
|
|
|
unset($queryArray[$i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-06 00:13:07 +01:00
|
|
|
$_SERVER['QUERY_STRING'] = implode('&', $queryArray);
|
2010-01-13 05:06:35 +00:00
|
|
|
}
|
|
|
|
}
|