2015-10-30 15:09:38 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-10-30 15:09:38 +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/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
namespace OCA\Files_Sharing\API;
|
|
|
|
|
|
|
|
class OCSShareWrapper {
|
|
|
|
|
2015-10-30 15:10:08 +03:00
|
|
|
/**
|
|
|
|
* @return Share20OCS
|
|
|
|
*/
|
2015-10-30 15:09:38 +03:00
|
|
|
private function getShare20OCS() {
|
2016-01-08 16:31:28 +03:00
|
|
|
return new Share20OCS(
|
2016-01-11 12:30:03 +03:00
|
|
|
\OC::$server->getShareManager(),
|
2015-11-23 16:06:25 +03:00
|
|
|
\OC::$server->getGroupManager(),
|
|
|
|
\OC::$server->getUserManager(),
|
|
|
|
\OC::$server->getRequest(),
|
2015-11-24 12:16:02 +03:00
|
|
|
\OC::$server->getRootFolder(),
|
2015-11-24 11:37:17 +03:00
|
|
|
\OC::$server->getURLGenerator(),
|
|
|
|
\OC::$server->getUserSession()->getUser());
|
2015-10-30 15:09:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getAllShares($params) {
|
2015-12-03 12:51:41 +03:00
|
|
|
return $this->getShare20OCS()->getShares();
|
2015-10-30 15:09:38 +03:00
|
|
|
}
|
|
|
|
|
2015-12-15 11:54:50 +03:00
|
|
|
public function createShare() {
|
|
|
|
return $this->getShare20OCS()->createShare();
|
2015-10-30 15:09:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getShare($params) {
|
2015-11-06 14:05:19 +03:00
|
|
|
$id = $params['id'];
|
|
|
|
return $this->getShare20OCS()->getShare($id);
|
2015-10-30 15:09:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function updateShare($params) {
|
2016-01-22 16:52:20 +03:00
|
|
|
$id = $params['id'];
|
|
|
|
return $this->getShare20OCS()->updateShare($id);
|
2015-10-30 15:09:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function deleteShare($params) {
|
2015-11-06 14:05:19 +03:00
|
|
|
$id = $params['id'];
|
2015-10-30 15:10:08 +03:00
|
|
|
return $this->getShare20OCS()->deleteShare($id);
|
2015-10-30 15:09:38 +03:00
|
|
|
}
|
|
|
|
}
|