summaryrefslogtreecommitdiffstats
path: root/external_api/feed.php
blob: fcdfd2c7f6824104c72b66fc5950eb6b9633cb8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php

namespace OCA\News;

use \OCA\News\Controller\FeedController;

class API_Feed {

// 	public __construct($feedbl) {
// 		$this->bl = $feedbl;
// 	}

	public static function getAll() {
		$container = createDIContainer();
		$bl = $container['FeedBL'];
		$feeds = $bl->getAll();
		$serializedFeeds = array();
		foreach ($feeds as $feed) {
			$serializedFeeds[] = $feed->jsonSerialize();
		}
		return new \OC_OCS_Result($serializedFeeds);
	}
	
	public function getById($parameters) {
		$feedid = $parameters['feedid'];
		$container = createDIContainer();
		$bl = $container['FeedBL'];
		$feed = $bl->getById($feedid);
		$serializedFeed = array($feed->jsonSerialize());
		return new \OC_OCS_Result($serializedFeed);
	}
	
	public static function create() {
		
		$url = $_POST['url'];
		$folderId = $_POST['folderid'];
	
		$container = createDIContainer();
		$bl = $container['FeedBL'];
		$success = $bl->create($url, $folderId);
		
		if ($success) {
			return new \OC_OCS_Result();
		}
		else {
			return new \OC_OCS_Result(null, 101);
		}
	}
}