2014-12-04 21:51:04 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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-12-04 21:51:04 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2016-10-24 12:46:25 +03:00
|
|
|
namespace OCA\Files_Sharing\Controller;
|
2014-12-04 21:51:04 +03:00
|
|
|
|
|
|
|
use OCP\AppFramework\Controller;
|
|
|
|
use OCP\IRequest;
|
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
2015-08-22 15:36:01 +03:00
|
|
|
use OCP\Http\Client\IClientService;
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
2014-12-04 21:51:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ExternalSharesController
|
|
|
|
*
|
2016-10-24 12:46:25 +03:00
|
|
|
* @package OCA\Files_Sharing\Controller
|
2014-12-04 21:51:04 +03:00
|
|
|
*/
|
|
|
|
class ExternalSharesController extends Controller {
|
|
|
|
|
|
|
|
/** @var \OCA\Files_Sharing\External\Manager */
|
|
|
|
private $externalManager;
|
2015-08-22 15:36:01 +03:00
|
|
|
/** @var IClientService */
|
|
|
|
private $clientService;
|
2014-12-04 21:51:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $appName
|
|
|
|
* @param IRequest $request
|
|
|
|
* @param \OCA\Files_Sharing\External\Manager $externalManager
|
2015-08-22 15:36:01 +03:00
|
|
|
* @param IClientService $clientService
|
2014-12-04 21:51:04 +03:00
|
|
|
*/
|
|
|
|
public function __construct($appName,
|
|
|
|
IRequest $request,
|
2015-08-22 15:36:01 +03:00
|
|
|
\OCA\Files_Sharing\External\Manager $externalManager,
|
|
|
|
IClientService $clientService) {
|
2014-12-04 21:51:04 +03:00
|
|
|
parent::__construct($appName, $request);
|
|
|
|
$this->externalManager = $externalManager;
|
2015-08-22 15:36:01 +03:00
|
|
|
$this->clientService = $clientService;
|
2014-12-04 21:51:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
2015-10-02 10:57:33 +03:00
|
|
|
* @NoOutgoingFederatedSharingRequired
|
2014-12-04 21:51:04 +03:00
|
|
|
*
|
|
|
|
* @return JSONResponse
|
|
|
|
*/
|
|
|
|
public function index() {
|
2015-10-02 10:57:33 +03:00
|
|
|
return new JSONResponse($this->externalManager->getOpenShares());
|
2014-12-04 21:51:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
2015-10-02 10:57:33 +03:00
|
|
|
* @NoOutgoingFederatedSharingRequired
|
2014-12-04 21:51:04 +03:00
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @return JSONResponse
|
|
|
|
*/
|
|
|
|
public function create($id) {
|
2015-10-02 10:57:33 +03:00
|
|
|
$this->externalManager->acceptShare($id);
|
2014-12-04 21:51:04 +03:00
|
|
|
return new JSONResponse();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
2015-10-02 10:57:33 +03:00
|
|
|
* @NoOutgoingFederatedSharingRequired
|
2014-12-04 21:51:04 +03:00
|
|
|
*
|
2015-12-07 15:05:27 +03:00
|
|
|
* @param integer $id
|
2014-12-04 21:51:04 +03:00
|
|
|
* @return JSONResponse
|
|
|
|
*/
|
|
|
|
public function destroy($id) {
|
2015-10-02 10:57:33 +03:00
|
|
|
$this->externalManager->declineShare($id);
|
2014-12-04 21:51:04 +03:00
|
|
|
return new JSONResponse();
|
|
|
|
}
|
|
|
|
|
2015-08-22 15:36:01 +03:00
|
|
|
/**
|
|
|
|
* Test whether the specified remote is accessible
|
|
|
|
*
|
|
|
|
* @param string $remote
|
2016-02-29 17:17:06 +03:00
|
|
|
* @param bool $checkVersion
|
2015-08-22 15:36:01 +03:00
|
|
|
* @return bool
|
|
|
|
*/
|
2016-02-29 17:17:06 +03:00
|
|
|
protected function testUrl($remote, $checkVersion = false) {
|
2015-08-22 15:36:01 +03:00
|
|
|
try {
|
|
|
|
$client = $this->clientService->newClient();
|
|
|
|
$response = json_decode($client->get(
|
|
|
|
$remote,
|
|
|
|
[
|
|
|
|
'timeout' => 3,
|
|
|
|
'connect_timeout' => 3,
|
|
|
|
]
|
|
|
|
)->getBody());
|
|
|
|
|
2016-02-29 17:17:06 +03:00
|
|
|
if ($checkVersion) {
|
|
|
|
return !empty($response->version) && version_compare($response->version, '7.0.0', '>=');
|
|
|
|
} else {
|
|
|
|
return is_object($response);
|
|
|
|
}
|
2015-08-22 15:36:01 +03:00
|
|
|
} catch (\Exception $e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @PublicPage
|
2015-10-02 10:57:33 +03:00
|
|
|
* @NoOutgoingFederatedSharingRequired
|
|
|
|
* @NoIncomingFederatedSharingRequired
|
2015-08-22 15:36:01 +03:00
|
|
|
*
|
|
|
|
* @param string $remote
|
|
|
|
* @return DataResponse
|
|
|
|
*/
|
|
|
|
public function testRemote($remote) {
|
2016-02-29 17:17:06 +03:00
|
|
|
if (
|
2016-02-29 23:48:23 +03:00
|
|
|
$this->testUrl('https://' . $remote . '/ocs-provider/') ||
|
2016-02-29 17:17:06 +03:00
|
|
|
$this->testUrl('https://' . $remote . '/ocs-provider/index.php') ||
|
|
|
|
$this->testUrl('https://' . $remote . '/status.php', true)
|
|
|
|
) {
|
2015-08-22 15:36:01 +03:00
|
|
|
return new DataResponse('https');
|
2016-02-29 17:17:06 +03:00
|
|
|
} elseif (
|
2016-02-29 23:48:23 +03:00
|
|
|
$this->testUrl('http://' . $remote . '/ocs-provider/') ||
|
2016-02-29 17:17:06 +03:00
|
|
|
$this->testUrl('http://' . $remote . '/ocs-provider/index.php') ||
|
|
|
|
$this->testUrl('http://' . $remote . '/status.php', true)
|
|
|
|
) {
|
2015-08-22 15:36:01 +03:00
|
|
|
return new DataResponse('http');
|
|
|
|
} else {
|
|
|
|
return new DataResponse(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
}
|