mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-06 03:49:56 +02:00

Fix coding guidelines incoherences. Code should match PSR1/2 now, and php-cs is set to check it on each commit. Also fixed the Git hook to take into account only added, modified, copied and renamed files (preventing errors when trying to check deleted files). Closes #1260.
102 lines
3.8 KiB
PHP
102 lines
3.8 KiB
PHP
<?php
|
|
/* vim:set softtabstop=4 shiftwidth=4 expandtab: */
|
|
/**
|
|
*
|
|
* LICENSE: GNU Affero General Public License, version 3 (AGPLv3)
|
|
* Copyright 2001 - 2015 Ampache.org
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* This is accessed remotly to allow outside scripts access to ampache information
|
|
* as such it needs to verify the session id that is passed
|
|
*/
|
|
define('NO_SESSION', '1');
|
|
require_once '../lib/init.php';
|
|
|
|
// If it's not a handshake then we can allow it to take up lots of time
|
|
if ($_REQUEST['action'] != 'handshake') {
|
|
set_time_limit(0);
|
|
}
|
|
|
|
/* Set the correct headers */
|
|
header("Content-type: text/xml; charset=" . AmpConfig::get('site_charset'));
|
|
header("Content-Disposition: attachment; filename=information.xml");
|
|
|
|
// If we don't even have access control on then we can't use this!
|
|
if (!AmpConfig::get('access_control')) {
|
|
ob_end_clean();
|
|
debug_event('Access Control', 'Error Attempted to use XML API with Access Control turned off', '3');
|
|
echo XML_Data::error('501', T_('Access Control not Enabled'));
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Verify the existance of the Session they passed in we do allow them to
|
|
* login via this interface so we do have an exception for action=login
|
|
*/
|
|
if (!Session::exists('api', $_REQUEST['auth']) and $_REQUEST['action'] != 'handshake' and $_REQUEST['action'] != 'ping') {
|
|
debug_event('Access Denied', 'Invalid Session attempt to API [' . $_REQUEST['action'] . ']', '3');
|
|
ob_end_clean();
|
|
echo XML_Data::error('401', T_('Session Expired'));
|
|
exit();
|
|
}
|
|
|
|
// If the session exists then let's try to pull some data from it to see if we're still allowed to do this
|
|
$username =
|
|
($_REQUEST['action'] == 'handshake' || $_REQUEST['action'] == 'ping')
|
|
? $_REQUEST['user']
|
|
: Session::username($_REQUEST['auth']);
|
|
|
|
if (!Access::check_network('init-api', $username, 5)) {
|
|
debug_event('Access Denied', 'Unauthorized access attempt to API [' . $_SERVER['REMOTE_ADDR'] . ']', '3');
|
|
ob_end_clean();
|
|
echo XML_Data::error('403', T_('Unauthorized access attempt to API - ACL Error'));
|
|
exit();
|
|
}
|
|
|
|
if ($_REQUEST['action'] != 'handshake' and $_REQUEST['action'] != 'ping') {
|
|
Session::extend($_REQUEST['auth']);
|
|
$GLOBALS['user'] = User::get_from_username($username);
|
|
}
|
|
|
|
// Make sure beautiful url is disabled as it is not supported by most Ampache clients
|
|
AmpConfig::set('stream_beautiful_url', false, true);
|
|
|
|
// Get the list of possible methods for the Ampache API
|
|
$methods = get_class_methods('api');
|
|
|
|
// Define list of internal functions that should be skipped
|
|
$internal_functions = array('set_filter');
|
|
|
|
// Recurse through them and see if we're calling one of them
|
|
foreach ($methods as $method) {
|
|
if (in_array($method, $internal_functions)) {
|
|
continue;
|
|
}
|
|
|
|
// If the method is the same as the action being called
|
|
// Then let's call this function!
|
|
if ($_GET['action'] == $method) {
|
|
call_user_func(array('api', $method), $_GET);
|
|
// We only allow a single function to be called, and we assume it's cleaned up!
|
|
exit;
|
|
}
|
|
} // end foreach methods in API
|
|
|
|
// If we manage to get here, we still need to hand out an XML document
|
|
ob_end_clean();
|
|
echo XML_Data::error('405', T_('Invalid Request'));
|