Welcome to mirror list, hosted at ThFree Co, Russian Federation.

testremote.php « ajax « files_sharing « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14992787012dfeabe3c6dcd3ad0444699b4dec7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?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::callCheck();
OCP\JSON::checkAppEnabled('files_sharing');

$remote = $_GET['remote'];

function testUrl($url) {
	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', '>=');
	} catch (Exception $e) {
		return false;
	}
}

if (testUrl('https://' . $remote . '/status.php')) {
	echo 'https';
} elseif (testUrl('http://' . $remote . '/status.php')) {
	echo 'http';
} else {
	echo 'false';
}