summaryrefslogtreecommitdiffstats
path: root/external
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-05-02 13:45:34 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-05-02 13:45:34 +0200
commitc5dde50a7166f6e24776b680ea8da1c0e78a7543 (patch)
tree7ade52e5e6e929a87dfb9afca547d6cacc480dce /external
parent2dfab0dbec8a1868c2287aee7f7a93a56d9a301c (diff)
implemented first feeds get all method
Diffstat (limited to 'external')
-rw-r--r--external/feed.php55
-rw-r--r--external/feedapi.php77
2 files changed, 77 insertions, 55 deletions
diff --git a/external/feed.php b/external/feed.php
deleted file mode 100644
index a56cd2253..000000000
--- a/external/feed.php
+++ /dev/null
@@ -1,55 +0,0 @@
-<?php
-
-namespace OCA\News;
-
-use \OCA\News\Controller\FeedController;
-
-class FeedApi {
-
- public function __construct($bl){
- $this->bl = $bl;
- }
-
- public function getAll() {
- $feeds = $this->bl->getAll();
- $serializedFeeds = array();
- foreach ($feeds as $feed) {
- $serializedFeeds[] = $feed->jsonSerialize();
- }
- return new \OC_OCS_Result($serializedFeeds);
- }
-
- public function getById($params) {
- $feed = $this->bl->getById($feedid);
- $serializedFeed = array($feed->jsonSerialize());
- return new \OC_OCS_Result($serializedFeed);
- }
-
- public function delete($params) {
- //TODO: check parameters here
-
- $success = $this->bl->delete($params["feedid"]);
-
- if ($success) {
- return new \OC_OCS_Result();
- }
- else {
- return new \OC_OCS_Result(null, 101);
- }
- }
-
- public function create() {
- $url = $_POST['url'];
- $folderId = $_POST['folderid'];
- //TODO: check parameters here
-
- $success = $this->bl->create($url, $folderId);
-
- if ($success) {
- return new \OC_OCS_Result();
- }
- else {
- return new \OC_OCS_Result(null, 101);
- }
- }
-}
diff --git a/external/feedapi.php b/external/feedapi.php
new file mode 100644
index 000000000..219c8a893
--- /dev/null
+++ b/external/feedapi.php
@@ -0,0 +1,77 @@
+<?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\Core\API;
+
+use \OCA\News\BusinessLayer\FeedBusinessLayer;
+use \OCA\News\BusinessLayer\FolderBusinessLayer;
+use \OCA\News\BusinessLayer\ItemBusinessLayer;
+use \OCA\News\BusinessLayer\BusinessLayerException;
+
+
+class FeedAPI {
+
+ private $itemBusinessLayer;
+ private $feedBusinessLayer;
+ private $folderBusinessLayer;
+ private $api;
+
+ public function __construct(API $api,
+ FolderBusinessLayer $folderBusinessLayer,
+ FeedBusinessLayer $feedBusinessLayer,
+ ItemBusinessLayer $itemBusinessLayer){
+ $this->api = $api;
+ $this->folderBusinessLayer = $folderBusinessLayer;
+ $this->feedBusinessLayer = $feedBusinessLayer;
+ $this->itemBusinessLayer = $itemBusinessLayer;
+ }
+
+
+ public function getAll(array $urlParams=array()) {
+
+ $userId = $this->api->getUserId();
+
+ $result = array(
+ 'feeds' => array(),
+ 'starredCount' => $this->itemBusinessLayer->starredCount($userId)
+ );
+
+ foreach ($this->feedBusinessLayer->findAll($userId) as $feed) {
+ array_push($result['feeds'], $feed->toAPI());
+ }
+
+ // check case when there are no items
+ try {
+ $result['newestItemId'] =
+ $this->itemBusinessLayer->getNewestItemId($userId);
+ } catch(BusinessLayerException $ex) {}
+
+ return $result;
+ }
+
+
+}