summaryrefslogtreecommitdiffstats
path: root/external
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-05-02 17:40:41 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-05-02 17:40:41 +0200
commit9f7a822bb4a6c4559dba931b22de17beb2f566af (patch)
tree3e915f66172aab0c86e5ca60cc96d14452cafcda /external
parent51d71796adc83cf937281920ffe588094ddbe5fb (diff)
use a custom result class
Diffstat (limited to 'external')
-rw-r--r--external/feedapi.php3
-rw-r--r--external/folderapi.php3
-rw-r--r--external/newsapiresult.php39
3 files changed, 41 insertions, 4 deletions
diff --git a/external/feedapi.php b/external/feedapi.php
index 0087886a2..580d9c2f0 100644
--- a/external/feedapi.php
+++ b/external/feedapi.php
@@ -26,7 +26,6 @@
namespace OCA\News\External;
use \OCA\AppFramework\Core\API;
-use \OCA\AppFramework\External\APIResult;
use \OCA\AppFramework\Controller\Controller;
use \OCA\AppFramework\Http\Request;
@@ -73,7 +72,7 @@ class FeedAPI extends Controller {
$this->itemBusinessLayer->getNewestItemId($userId);
} catch(BusinessLayerException $ex) {}
- return new APIResult($result);
+ return new NewsAPIResult($result);
}
diff --git a/external/folderapi.php b/external/folderapi.php
index 6b8aa9c47..787d1acc4 100644
--- a/external/folderapi.php
+++ b/external/folderapi.php
@@ -26,7 +26,6 @@
namespace OCA\News\External;
use \OCA\AppFramework\Core\API;
-use \OCA\AppFramework\External\APIResult;
use \OCA\AppFramework\Controller\Controller;
use \OCA\AppFramework\Http\Request;
@@ -56,7 +55,7 @@ class FolderAPI extends Controller {
array_push($result['folders'], $folder->toAPI());
}
- return new APIResult($result);
+ return new NewsAPIResult($result);
}
diff --git a/external/newsapiresult.php b/external/newsapiresult.php
new file mode 100644
index 000000000..911662203
--- /dev/null
+++ b/external/newsapiresult.php
@@ -0,0 +1,39 @@
+<?php
+
+/**
+* ownCloud - News
+*
+* @author Alessandro Cosentino
+* @author Bernhard Posselt
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+* @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library 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 along with this library. If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+namespace OCA\News\External;
+
+use \OCA\AppFramework\External\APIResult;
+
+class NewsAPIResult extends APIResult {
+
+ const EXISTS_ERROR = 995;
+
+ public function __construct($data, $statusCode=NewsAPIResult::OK) {
+ parent::__construct($data, $statusCode);
+ }
+
+
+} \ No newline at end of file