nextcloud/apps/files_sharing/ajax/testremote.php

47 lines
1.4 KiB
PHP
Raw Normal View History

<?php
/**
2015-03-26 13:44:34 +03:00
* @author Lukas Reschke <lukas@owncloud.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin Appelman <icewind@owncloud.com>
*
* @copyright Copyright (c) 2015, ownCloud, Inc.
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* 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, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
OCP\JSON::callCheck();
2014-06-16 14:42:28 +04:00
OCP\JSON::checkAppEnabled('files_sharing');
$remote = $_GET['remote'];
2014-06-16 15:21:00 +04:00
function testUrl($url) {
2014-06-17 15:15:34 +04:00
try {
$result = file_get_contents($url);
$data = json_decode($result);
// public link mount is only supported in ownCloud 7+
return is_object($data) and !empty($data->version) and version_compare($data->version, '7.0.0', '>=');
2014-06-17 15:15:34 +04:00
} catch (Exception $e) {
return false;
}
2014-06-16 15:21:00 +04:00
}
if (testUrl('https://' . $remote . '/status.php')) {
echo 'https';
2014-06-16 15:21:00 +04:00
} elseif (testUrl('http://' . $remote . '/status.php')) {
echo 'http';
2014-06-16 14:42:28 +04:00
} else {
echo 'false';
}