diff options
author | icewind1991 <robin@icewind.nl> | 2014-06-17 17:40:05 +0200 |
---|---|---|
committer | icewind1991 <robin@icewind.nl> | 2014-06-17 17:40:05 +0200 |
commit | 8d1cf79152b16b11e8be3bc6cc57f5a9e72b04dd (patch) | |
tree | ef158aadc779e95845384783bbe668abed4c2d85 /apps/files_sharing/ajax/testremote.php | |
parent | cce58368ad03f4ef3d8a1ad3e26e09fc51ca716a (diff) | |
parent | 07fdeba50b47848c995d38408635020e08cecb19 (diff) | |
download | nextcloud-server-8d1cf79152b16b11e8be3bc6cc57f5a9e72b04dd.tar.gz nextcloud-server-8d1cf79152b16b11e8be3bc6cc57f5a9e72b04dd.zip |
Merge pull request #8399 from owncloud/server-server-sharing
Add server<->server sharing
Diffstat (limited to 'apps/files_sharing/ajax/testremote.php')
-rw-r--r-- | apps/files_sharing/ajax/testremote.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/apps/files_sharing/ajax/testremote.php b/apps/files_sharing/ajax/testremote.php new file mode 100644 index 00000000000..89581794698 --- /dev/null +++ b/apps/files_sharing/ajax/testremote.php @@ -0,0 +1,29 @@ +<?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. + */ + +OCP\JSON::checkAppEnabled('files_sharing'); + +$remote = $_GET['remote']; + +function testUrl($url) { + try { + $result = file_get_contents($url); + $data = json_decode($result); + return is_object($data) and !empty($data->version); + } catch (Exception $e) { + return false; + } +} + +if (testUrl('https://' . $remote . '/status.php')) { + echo 'https'; +} elseif (testUrl('http://' . $remote . '/status.php')) { + echo 'http'; +} else { + echo 'false'; +} |