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