Add some safety checks
This commit is contained in:
parent
9670d3e98b
commit
a469efb1f1
3 changed files with 7 additions and 4 deletions
|
@ -8,6 +8,7 @@
|
|||
|
||||
OCP\JSON::callCheck();
|
||||
OCP\JSON::checkLoggedIn();
|
||||
OCP\JSON::checkAppEnabled('files_sharing');
|
||||
|
||||
$l = OC_L10N::get('files_sharing');
|
||||
|
||||
|
|
|
@ -6,9 +6,7 @@
|
|||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
if (!\OC_App::isEnabled('files_sharing')) {
|
||||
exit;
|
||||
}
|
||||
OCP\JSON::checkAppEnabled('files_sharing');
|
||||
|
||||
if (!isset($_GET['t'])) {
|
||||
\OC_Response::setStatus(400); //400 Bad Request
|
||||
|
|
|
@ -6,12 +6,16 @@
|
|||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
OCP\JSON::checkAppEnabled('files_sharing');
|
||||
OCP\JSON::checkLoggedIn();
|
||||
OCP\JSON::callCheck();
|
||||
|
||||
$remote = $_GET['remote'];
|
||||
|
||||
if (file_get_contents('https://' . $remote . '/status.php')) {
|
||||
echo 'https';
|
||||
} elseif (file_get_contents('http://' . $remote . '/status.php')) {
|
||||
echo 'http';
|
||||
}else{
|
||||
} else {
|
||||
echo 'false';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue