2014-11-24 17:31:52 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
2015-10-05 21:54:56 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-02-26 13:37:37 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2014-11-24 17:31:52 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2014-11-24 17:31:52 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-11-24 17:31:52 +03:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-11-24 17:31:52 +03:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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-11-24 17:31:52 +03:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-11-24 17:31:52 +03:00
|
|
|
namespace OCA\Files_Sharing\API;
|
|
|
|
|
2015-07-02 13:27:58 +03:00
|
|
|
use OCA\Files_Sharing\Activity;
|
2015-06-15 15:10:10 +03:00
|
|
|
use OCP\Files\NotFoundException;
|
2015-07-02 13:27:58 +03:00
|
|
|
|
2014-11-24 17:31:52 +03:00
|
|
|
class Server2Server {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* create a new share
|
|
|
|
*
|
|
|
|
* @param array $params
|
|
|
|
* @return \OC_OCS_Result
|
|
|
|
*/
|
|
|
|
public function createShare($params) {
|
|
|
|
|
|
|
|
if (!$this->isS2SEnabled(true)) {
|
2015-01-28 14:09:53 +03:00
|
|
|
return new \OC_OCS_Result(null, 503, 'Server does not support federated cloud sharing');
|
2014-11-24 17:31:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$remote = isset($_POST['remote']) ? $_POST['remote'] : null;
|
|
|
|
$token = isset($_POST['token']) ? $_POST['token'] : null;
|
|
|
|
$name = isset($_POST['name']) ? $_POST['name'] : null;
|
|
|
|
$owner = isset($_POST['owner']) ? $_POST['owner'] : null;
|
|
|
|
$shareWith = isset($_POST['shareWith']) ? $_POST['shareWith'] : null;
|
2014-12-04 21:51:04 +03:00
|
|
|
$remoteId = isset($_POST['remoteId']) ? (int)$_POST['remoteId'] : null;
|
2014-11-24 17:31:52 +03:00
|
|
|
|
|
|
|
if ($remote && $token && $name && $owner && $remoteId && $shareWith) {
|
|
|
|
|
|
|
|
if(!\OCP\Util::isValidFileName($name)) {
|
|
|
|
return new \OC_OCS_Result(null, 400, 'The mountpoint name contains invalid characters.');
|
|
|
|
}
|
|
|
|
|
2015-10-05 12:50:36 +03:00
|
|
|
// FIXME this should be a method in the user management instead
|
2015-02-20 15:09:33 +03:00
|
|
|
\OCP\Util::writeLog('files_sharing', 'shareWith before, ' . $shareWith, \OCP\Util::DEBUG);
|
|
|
|
\OCP\Util::emitHook(
|
|
|
|
'\OCA\Files_Sharing\API\Server2Server',
|
|
|
|
'preLoginNameUsedAsUserName',
|
|
|
|
array('uid' => &$shareWith)
|
|
|
|
);
|
|
|
|
\OCP\Util::writeLog('files_sharing', 'shareWith after, ' . $shareWith, \OCP\Util::DEBUG);
|
|
|
|
|
2014-11-24 17:31:52 +03:00
|
|
|
if (!\OCP\User::userExists($shareWith)) {
|
|
|
|
return new \OC_OCS_Result(null, 400, 'User does not exists');
|
|
|
|
}
|
|
|
|
|
|
|
|
\OC_Util::setupFS($shareWith);
|
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
$externalManager = new \OCA\Files_Sharing\External\Manager(
|
|
|
|
\OC::$server->getDatabaseConnection(),
|
|
|
|
\OC\Files\Filesystem::getMountManager(),
|
|
|
|
\OC\Files\Filesystem::getLoader(),
|
2015-01-20 02:35:47 +03:00
|
|
|
\OC::$server->getHTTPHelper(),
|
2015-09-01 19:56:09 +03:00
|
|
|
\OC::$server->getNotificationManager(),
|
2015-01-20 02:35:47 +03:00
|
|
|
$shareWith
|
|
|
|
);
|
2014-12-04 21:51:04 +03:00
|
|
|
|
2014-11-24 17:31:52 +03:00
|
|
|
try {
|
2014-12-04 21:51:04 +03:00
|
|
|
$externalManager->addShare($remote, $token, '', $name, $owner, false, $shareWith, $remoteId);
|
|
|
|
|
|
|
|
$user = $owner . '@' . $this->cleanupRemote($remote);
|
2014-11-24 17:31:52 +03:00
|
|
|
|
|
|
|
\OC::$server->getActivityManager()->publishActivity(
|
2015-07-02 13:28:48 +03:00
|
|
|
Activity::FILES_SHARING_APP, Activity::SUBJECT_REMOTE_SHARE_RECEIVED, array($user, trim($name, '/')), '', array(),
|
2015-07-02 13:27:58 +03:00
|
|
|
'', '', $shareWith, Activity::TYPE_REMOTE_SHARE, Activity::PRIORITY_LOW);
|
2014-11-24 17:31:52 +03:00
|
|
|
|
2015-09-16 13:08:21 +03:00
|
|
|
/**
|
|
|
|
* FIXME
|
2015-09-01 18:59:01 +03:00
|
|
|
$urlGenerator = \OC::$server->getURLGenerator();
|
|
|
|
|
|
|
|
$notificationManager = \OC::$server->getNotificationManager();
|
|
|
|
$notification = $notificationManager->createNotification();
|
|
|
|
$notification->setApp('files_sharing')
|
|
|
|
->setUser($shareWith)
|
|
|
|
->setTimestamp(time())
|
|
|
|
->setObject('remote_share', $remoteId)
|
|
|
|
->setSubject('remote_share', [$user, trim($name, '/')]);
|
|
|
|
|
|
|
|
$declineAction = $notification->createAction();
|
|
|
|
$declineAction->setLabel('decline')
|
|
|
|
->setLink($urlGenerator->getAbsoluteURL('/ocs/v1.php/apps/files_sharing/api/v1/remote_shares/' . $remoteId), 'DELETE');
|
2015-09-16 13:05:06 +03:00
|
|
|
$notification->addAction($declineAction);
|
2015-09-01 18:59:01 +03:00
|
|
|
|
2015-09-16 13:05:06 +03:00
|
|
|
$acceptAction = $notification->createAction();
|
|
|
|
$acceptAction->setLabel('accept')
|
|
|
|
->setLink($urlGenerator->getAbsoluteURL('/ocs/v1.php/apps/files_sharing/api/v1/remote_shares/' . $remoteId), 'POST');
|
|
|
|
$notification->addAction($acceptAction);
|
2015-09-01 18:59:01 +03:00
|
|
|
|
|
|
|
$notificationManager->notify($notification);
|
2015-09-16 13:08:21 +03:00
|
|
|
*/
|
2015-09-01 18:59:01 +03:00
|
|
|
|
2014-11-24 17:31:52 +03:00
|
|
|
return new \OC_OCS_Result();
|
|
|
|
} catch (\Exception $e) {
|
2014-12-04 21:51:04 +03:00
|
|
|
\OCP\Util::writeLog('files_sharing', 'server can not add remote share, ' . $e->getMessage(), \OCP\Util::ERROR);
|
|
|
|
return new \OC_OCS_Result(null, 500, 'internal server error, was not able to add share from ' . $remote);
|
2014-11-24 17:31:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new \OC_OCS_Result(null, 400, 'server can not add remote share, missing parameter');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* accept server-to-server share
|
|
|
|
*
|
|
|
|
* @param array $params
|
|
|
|
* @return \OC_OCS_Result
|
|
|
|
*/
|
|
|
|
public function acceptShare($params) {
|
|
|
|
|
|
|
|
if (!$this->isS2SEnabled()) {
|
2015-01-28 14:09:53 +03:00
|
|
|
return new \OC_OCS_Result(null, 503, 'Server does not support federated cloud sharing');
|
2014-11-24 17:31:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$id = $params['id'];
|
|
|
|
$token = isset($_POST['token']) ? $_POST['token'] : null;
|
|
|
|
$share = self::getShare($id, $token);
|
|
|
|
|
|
|
|
if ($share) {
|
|
|
|
list($file, $link) = self::getFile($share['uid_owner'], $share['file_source']);
|
|
|
|
|
2015-08-19 18:37:55 +03:00
|
|
|
$event = \OC::$server->getActivityManager()->generateEvent();
|
|
|
|
$event->setApp(Activity::FILES_SHARING_APP)
|
|
|
|
->setType(Activity::TYPE_REMOTE_SHARE)
|
|
|
|
->setAffectedUser($share['uid_owner'])
|
|
|
|
->setSubject(Activity::SUBJECT_REMOTE_SHARE_ACCEPTED, [$share['share_with'], basename($file)])
|
|
|
|
->setObject('files', $share['file_source'], $file)
|
|
|
|
->setLink($link);
|
|
|
|
\OC::$server->getActivityManager()->publish($event);
|
2014-11-24 17:31:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return new \OC_OCS_Result();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* decline server-to-server share
|
|
|
|
*
|
|
|
|
* @param array $params
|
|
|
|
* @return \OC_OCS_Result
|
|
|
|
*/
|
|
|
|
public function declineShare($params) {
|
|
|
|
|
|
|
|
if (!$this->isS2SEnabled()) {
|
2015-01-28 14:09:53 +03:00
|
|
|
return new \OC_OCS_Result(null, 503, 'Server does not support federated cloud sharing');
|
2014-11-24 17:31:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$id = $params['id'];
|
|
|
|
$token = isset($_POST['token']) ? $_POST['token'] : null;
|
|
|
|
|
|
|
|
$share = $this->getShare($id, $token);
|
|
|
|
|
|
|
|
if ($share) {
|
|
|
|
// userId must be set to the user who unshares
|
|
|
|
\OCP\Share::unshare($share['item_type'], $share['item_source'], $share['share_type'], null, $share['uid_owner']);
|
|
|
|
|
|
|
|
list($file, $link) = $this->getFile($share['uid_owner'], $share['file_source']);
|
|
|
|
|
2015-08-19 18:37:55 +03:00
|
|
|
$event = \OC::$server->getActivityManager()->generateEvent();
|
|
|
|
$event->setApp(Activity::FILES_SHARING_APP)
|
|
|
|
->setType(Activity::TYPE_REMOTE_SHARE)
|
|
|
|
->setAffectedUser($share['uid_owner'])
|
|
|
|
->setSubject(Activity::SUBJECT_REMOTE_SHARE_DECLINED, [$share['share_with'], basename($file)])
|
|
|
|
->setObject('files', $share['file_source'], $file)
|
|
|
|
->setLink($link);
|
|
|
|
\OC::$server->getActivityManager()->publish($event);
|
2014-11-24 17:31:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return new \OC_OCS_Result();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* remove server-to-server share if it was unshared by the owner
|
|
|
|
*
|
|
|
|
* @param array $params
|
|
|
|
* @return \OC_OCS_Result
|
|
|
|
*/
|
|
|
|
public function unshare($params) {
|
|
|
|
|
|
|
|
if (!$this->isS2SEnabled()) {
|
2015-01-28 14:09:53 +03:00
|
|
|
return new \OC_OCS_Result(null, 503, 'Server does not support federated cloud sharing');
|
2014-11-24 17:31:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$id = $params['id'];
|
|
|
|
$token = isset($_POST['token']) ? $_POST['token'] : null;
|
|
|
|
|
|
|
|
$query = \OCP\DB::prepare('SELECT * FROM `*PREFIX*share_external` WHERE `remote_id` = ? AND `share_token` = ?');
|
|
|
|
$query->execute(array($id, $token));
|
|
|
|
$share = $query->fetchRow();
|
|
|
|
|
|
|
|
if ($token && $id && !empty($share)) {
|
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
$remote = $this->cleanupRemote($share['remote']);
|
|
|
|
|
|
|
|
$owner = $share['owner'] . '@' . $remote;
|
2014-11-24 17:31:52 +03:00
|
|
|
$mountpoint = $share['mountpoint'];
|
|
|
|
$user = $share['user'];
|
|
|
|
|
|
|
|
$query = \OCP\DB::prepare('DELETE FROM `*PREFIX*share_external` WHERE `remote_id` = ? AND `share_token` = ?');
|
|
|
|
$query->execute(array($id, $token));
|
|
|
|
|
2015-07-02 13:24:20 +03:00
|
|
|
if ($share['accepted']) {
|
|
|
|
$path = trim($mountpoint, '/');
|
|
|
|
} else {
|
|
|
|
$path = trim($share['name'], '/');
|
|
|
|
}
|
|
|
|
|
2014-11-24 17:31:52 +03:00
|
|
|
\OC::$server->getActivityManager()->publishActivity(
|
2015-07-02 13:27:58 +03:00
|
|
|
Activity::FILES_SHARING_APP, Activity::SUBJECT_REMOTE_SHARE_UNSHARED, array($owner, $path), '', array(),
|
|
|
|
'', '', $user, Activity::TYPE_REMOTE_SHARE, Activity::PRIORITY_MEDIUM);
|
2014-11-24 17:31:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return new \OC_OCS_Result();
|
|
|
|
}
|
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
private function cleanupRemote($remote) {
|
|
|
|
$remote = substr($remote, strpos($remote, '://') + 3);
|
|
|
|
|
|
|
|
return rtrim($remote, '/');
|
|
|
|
}
|
|
|
|
|
2014-11-24 17:31:52 +03:00
|
|
|
/**
|
|
|
|
* get share
|
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @param string $token
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function getShare($id, $token) {
|
|
|
|
$query = \OCP\DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ? AND `token` = ? AND `share_type` = ?');
|
|
|
|
$query->execute(array($id, $token, \OCP\Share::SHARE_TYPE_REMOTE));
|
|
|
|
$share = $query->fetchRow();
|
|
|
|
|
|
|
|
return $share;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get file
|
|
|
|
*
|
|
|
|
* @param string $user
|
|
|
|
* @param int $fileSource
|
|
|
|
* @return array with internal path of the file and a absolute link to it
|
|
|
|
*/
|
|
|
|
private function getFile($user, $fileSource) {
|
|
|
|
\OC_Util::setupFS($user);
|
|
|
|
|
2015-06-15 15:10:10 +03:00
|
|
|
try {
|
|
|
|
$file = \OC\Files\Filesystem::getPath($fileSource);
|
|
|
|
} catch (NotFoundException $e) {
|
|
|
|
$file = null;
|
|
|
|
}
|
2014-11-24 17:31:52 +03:00
|
|
|
$args = \OC\Files\Filesystem::is_dir($file) ? array('dir' => $file) : array('dir' => dirname($file), 'scrollto' => $file);
|
|
|
|
$link = \OCP\Util::linkToAbsolute('files', 'index.php', $args);
|
|
|
|
|
|
|
|
return array($file, $link);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check if server-to-server sharing is enabled
|
|
|
|
*
|
|
|
|
* @param bool $incoming
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function isS2SEnabled($incoming = false) {
|
|
|
|
|
|
|
|
$result = \OCP\App::isEnabled('files_sharing');
|
|
|
|
|
|
|
|
if ($incoming) {
|
|
|
|
$result = $result && \OCA\Files_Sharing\Helper::isIncomingServer2serverShareEnabled();
|
|
|
|
} else {
|
|
|
|
$result = $result && \OCA\Files_Sharing\Helper::isOutgoingServer2serverShareEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|