]> source.dussan.org Git - nextcloud-server.git/commitdiff
correct get published status and minor fixes
authorThomas Citharel <tcit@tcit.fr>
Tue, 12 Jul 2016 14:19:21 +0000 (16:19 +0200)
committerLukas Reschke <lukas@statuscode.ch>
Mon, 26 Sep 2016 09:55:37 +0000 (11:55 +0200)
apps/dav/lib/CalDAV/CalDavBackend.php
apps/dav/lib/CalDAV/Publishing/PublishPlugin.php

index 62f5213e34f205959380963f7e62434defa6a20b..276aa20dd61f96e493bb03626790580c4f7624df 100644 (file)
@@ -1569,37 +1569,9 @@ class CalDavBackend extends AbstractBackend implements SyncSupport, Subscription
                $row = $result->fetch();
                $result->closeCursor();
 
-               return $row;
+               return $row[0] > 0;
        }
 
-       /**
-        * @param string $token
-        * @param string secret
-        * @return int | boolean
-        *
-        * Function to get the ressource we're insteressed in. Most probably to put somewhere else.
-        */
-       public function getResourceIdFromToken($token, $secret) {
-               $query = $this->db->getQueryBuilder();
-               $result = $query->select('resourceid')
-                       ->from('dav_shares')
-                       ->where($query->expr()->eq('access', $query->createNamedParameter(self::ACCESS_PUBLIC)))
-                       ->execute();
-
-               $publications = [];
-               while($row = $result->fetch()) {
-                       $publications[] = $row['resourceid'];
-               }
-
-               $i = 0;
-               $found = false;
-               while ($i < count($publications) && !$found) {
-                       $found = md5($secret.$publications[$i]) === $token;
-                       if (!$found) $i++;
-               }
-               return ($found) ? $publications[$i] : false;
-        }
-
        /**
         * @param int $resourceId
         * @param array $acl
index 109e11585558bbdc72930c56fcdd9b5c88bd5c03..938510f1ccf62ecf6a64d4164dc98acbe4556a5a 100644 (file)
@@ -6,6 +6,7 @@ use Sabre\DAV\PropFind;
 use Sabre\DAV\INode;
 use Sabre\DAV\Server;
 use Sabre\DAV\ServerPlugin;
+use Sabre\DAV\Exception\NotFound;
 use Sabre\HTTP\RequestInterface;
 use Sabre\HTTP\ResponseInterface;
 use OCA\DAV\CalDAV\Publishing\Xml\Publisher;
@@ -102,14 +103,14 @@ class PublishPlugin extends ServerPlugin
             $publishUrl = $this->urlGenerator->getAbsoluteURL($this->server->getBaseUri().'public-calendars/').$token;
 
             $propFind->handle('{'.self::NS_CALENDARSERVER.'}publish-url', function () use ($node, $publishUrl) {
-            if ($node->getPublishStatus()) {
-                return new Publisher($publishUrl, true); // We return the publish-url only if the calendar is published.
-            }
-          });
+                if ($node->getPublishStatus()) {
+                    return new Publisher($publishUrl, true); // We return the publish-url only if the calendar is published.
+                }
+            });
 
             $propFind->handle('{'.self::NS_CALENDARSERVER.'}pre-publish-url', function () use ($node, $publishUrl) {
                 return new Publisher($publishUrl, false); // The pre-publish-url is always returned
-          });
+            });
         }
     }
 
@@ -134,7 +135,7 @@ class PublishPlugin extends ServerPlugin
       // Making sure the node exists
       try {
           $node = $this->server->tree->getNodeForPath($path);
-      } catch (DAV\Exception\NotFound $e) {
+      } catch (NotFound $e) {
           return;
       }