nextcloud/apps/files_sharing/ajax/testremote.php

26 lines
582 B
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
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) {
$result = file_get_contents($url);
$data = json_decode($result);
return is_object($data) and !empty($data->version);
}
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';
}