Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/federatedfilesharing/lib/Notifications.php')
-rw-r--r--apps/federatedfilesharing/lib/Notifications.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/federatedfilesharing/lib/Notifications.php b/apps/federatedfilesharing/lib/Notifications.php
index 410c155b072..011842e7981 100644
--- a/apps/federatedfilesharing/lib/Notifications.php
+++ b/apps/federatedfilesharing/lib/Notifications.php
@@ -123,7 +123,15 @@ class Notifications {
$event = new FederatedShareAddedEvent($remote);
$this->eventDispatcher->dispatchTyped($event);
return true;
+ } else {
+ \OC::$server->getLogger()->info(
+ "failed sharing $name with $shareWith",
+ [ 'app' => 'federatedfilesharing' ]);
}
+ } else {
+ \OC::$server->getLogger()->info(
+ "could not share $name, invalid contact $shareWith",
+ [ 'app' => 'federatedfilesharing' ]);
}
return false;
@@ -174,6 +182,18 @@ class Notifications {
$status['ocs']['data']['token'],
$status['ocs']['data']['remoteId']
];
+ } else if (! $validToken) {
+ \OC::$server->getLogger()->info(
+ "invalid or missing token requesting re-share for $filename to $remote",
+ [ 'app' => 'federatedfilesharing' ]);
+ } else if (! $validRemoteId) {
+ \OC::$server->getLogger()->info(
+ "missing remote id requesting re-share for $filename to $remote",
+ [ 'app' => 'federatedfilesharing' ]);
+ } else {
+ \OC::$server->getLogger()->info(
+ "failed requesting re-share for $filename to $remote",
+ [ 'app' => 'federatedfilesharing' ]);
}
return false;