Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 5.1k
OCM Services#39574
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
OCM Services #39574
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,13 @@ | ||
| <?php | ||
| declare(strict_types=1); | ||
| /** | ||
| * @copyright Copyright (c) 2017 Bjoern Schiessle <bjoern@schiessle.org> | ||
| * | ||
| * @author Bjoern Schiessle <bjoern@schiessle.org> | ||
| * @author Kate Döen <kate.doeen@nextcloud.com> | ||
| * @author Maxence Lange <maxence@artificial-owl.com> | ||
| * | ||
| * @license GNU AGPL version 3 or any later version | ||
| * | ||
| @@ -21,18 +25,22 @@ | ||
| * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| * | ||
| */ | ||
| namespace OCA\CloudFederationAPI; | ||
| use OC\OCM\Model\OCMProvider; | ||
| use OC\OCM\Model\OCMResource; | ||
| use OCP\Capabilities\ICapability; | ||
| use OCP\IURLGenerator; | ||
| use OCP\OCM\Exceptions\OCMArgumentException; | ||
| class Capabilities implements ICapability { | ||
| /** @var IURLGenerator */ | ||
| private $urlGenerator; | ||
| public const API_VERSION = '1.0-proposal1'; | ||
| public function __construct(IURLGenerator $urlGenerator) { | ||
| $this->urlGenerator = $urlGenerator; | ||
| public function __construct( | ||
| private IURLGenerator $urlGenerator, | ||
| ) { | ||
| } | ||
| /** | ||
| @@ -46,32 +54,33 @@ public function __construct(IURLGenerator $urlGenerator) { | ||
| * resourceTypes: array{ | ||
| * name: string, | ||
| * shareTypes: string[], | ||
| * protocols: array{ | ||
| * webdav: string, | ||
| * }, | ||
| * }[], | ||
| * }, | ||
| * protocols: array<string, string> | ||
| * }[], | ||
| * }, | ||
| * } | ||
| * @throws OCMArgumentException | ||
| */ | ||
| public function getCapabilities() { | ||
| $url = $this->urlGenerator->linkToRouteAbsolute('cloud_federation_api.requesthandlercontroller.addShare'); | ||
| $capabilities = ['ocm' => | ||
| [ | ||
| 'enabled' => true, | ||
| 'apiVersion' => '1.0-proposal1', | ||
| 'endPoint' => substr($url, 0, strrpos($url, '/')), | ||
| 'resourceTypes' => [ | ||
| [ | ||
| 'name' => 'file', | ||
| 'shareTypes' => ['user', 'group'], | ||
| 'protocols' => [ | ||
| 'webdav' => '/public.php/webdav/', | ||
| ] | ||
| ], | ||
| ] | ||
| ] | ||
| ]; | ||
| return $capabilities; | ||
| $provider = new OCMProvider(); | ||
| $provider->setEnabled(true); | ||
| $provider->setApiVersion(self::API_VERSION); | ||
| $pos = strrpos($url, '/'); | ||
| if (false === $pos) { | ||
| throw new OCMArgumentException('generated route should contains a slash character'); | ||
| } | ||
| $provider->setEndPoint(substr($url, 0, $pos)); | ||
| $resource = new OCMResource(); | ||
| $resource->setName('file') | ||
| ->setShareTypes(['user', 'group']) | ||
| ->setProtocols(['webdav' => '/public.php/webdav/']); | ||
| $provider->setResourceTypes([$resource]); | ||
| return ['ocm' => $provider->jsonSerialize()]; | ||
Uh oh!There was an error while loading. Please reload this page. | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -6,6 +6,7 @@ | ||||||||
| * @copyright 2018, Roeland Jago Douma <roeland@famdouma.nl> | ||||||||
| * | ||||||||
| * @author Christoph Wurst <christoph@winzerhof-wurst.at> | ||||||||
| * @author Maxence Lange <maxence@artificial-owl.com> | ||||||||
| * @author Roeland Jago Douma <roeland@famdouma.nl> | ||||||||
| * | ||||||||
| * @license GNU AGPL version 3 or any later version | ||||||||
| @@ -29,21 +30,21 @@ | ||||||||
| use OCP\AppFramework\Utility\ITimeFactory; | ||||||||
| use OCP\BackgroundJob\TimedJob; | ||||||||
| use OCP\IDBConnection; | ||||||||
| use OCP\OCM\Exceptions\OCMProviderException; | ||||||||
| use OCP\OCM\IOCMDiscoveryService; | ||||||||
| use OCP\OCS\IDiscoveryService; | ||||||||
| use Psr\Log\LoggerInterface; | ||||||||
| class FederatedSharesDiscoverJob extends TimedJob { | ||||||||
| /** @var IDBConnection */ | ||||||||
| private $connection; | ||||||||
| /** @var IDiscoveryService */ | ||||||||
| private $discoveryService; | ||||||||
| public function __construct(ITimeFactory $time, | ||||||||
| IDBConnection $connection, | ||||||||
| IDiscoveryService $discoveryService) { | ||||||||
| parent::__construct($time); | ||||||||
| $this->connection = $connection; | ||||||||
| $this->discoveryService = $discoveryService; | ||||||||
| public function __construct( | ||||||||
| ITimeFactory $time, | ||||||||
| private IDBConnection $connection, | ||||||||
| private IDiscoveryService $discoveryService, | ||||||||
| private IOCMDiscoveryService $ocmDiscoveryService, | ||||||||
| private LoggerInterface $logger, | ||||||||
| ) { | ||||||||
| parent::__construct($time); | ||||||||
| $this->setInterval(86400); | ||||||||
| } | ||||||||
| @@ -56,6 +57,11 @@ public function run($argument) { | ||||||||
| $result = $qb->execute(); | ||||||||
| while ($row = $result->fetch()) { | ||||||||
| $this->discoveryService->discover($row['remote'], 'FEDERATED_SHARING', true); | ||||||||
| try { | ||||||||
| $this->ocmDiscoveryService->discover($row['remote'], true); | ||||||||
| } catch (OCMProviderException $e) { | ||||||||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
| ||||||||
| $this->logger->info('exception while running files_sharing/lib/BackgroundJob/FederatedSharesDiscoverJob', ['exception' => $e]); | ||||||||
| } | ||||||||
| } | ||||||||
| $result->closeCursor(); | ||||||||
| } | ||||||||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.