2014-05-14 15:29:03 +04:00
|
|
|
<?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/>
|
|
|
|
*
|
2014-05-14 15:29:03 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-02-02 21:39:41 +03:00
|
|
|
OCP\JSON::callCheck();
|
2014-06-16 14:42:28 +04:00
|
|
|
OCP\JSON::checkAppEnabled('files_sharing');
|
|
|
|
|
2014-05-14 15:29:03 +04:00
|
|
|
$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);
|
2015-01-05 13:50:05 +03:00
|
|
|
// 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')) {
|
2014-05-14 15:29:03 +04:00
|
|
|
echo 'https';
|
2014-06-16 15:21:00 +04:00
|
|
|
} elseif (testUrl('http://' . $remote . '/status.php')) {
|
2014-05-14 15:29:03 +04:00
|
|
|
echo 'http';
|
2014-06-16 14:42:28 +04:00
|
|
|
} else {
|
2014-05-14 15:29:03 +04:00
|
|
|
echo 'false';
|
|
|
|
}
|