summaryrefslogtreecommitdiffstats
path: root/external/feed.php
diff options
context:
space:
mode:
Diffstat (limited to 'external/feed.php')
-rw-r--r--external/feed.php55
1 files changed, 0 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);
- }
- }
-}