From 4902253e9c8aac706091c6337391153b02923689 Mon Sep 17 00:00:00 2001 From: Alessandro Cosentino Date: Sat, 2 Mar 2013 19:50:33 +0100 Subject: prototype for business layer for feed --- controller/feedcontroller.php | 55 +++++++++++++++++++++++++++++++++++++++++ controller/foldercontroller.php | 2 +- 2 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 controller/feedcontroller.php (limited to 'controller') diff --git a/controller/feedcontroller.php b/controller/feedcontroller.php new file mode 100644 index 000000000..4357d7682 --- /dev/null +++ b/controller/feedcontroller.php @@ -0,0 +1,55 @@ +. +* +*/ + +namespace OCA\News\Controller; + +use \OCA\AppFramework\Controller\Controller; +use \OCA\AppFramework\Core\API; +use \OCA\AppFramework\Http\Request; +use \OCA\AppFramework\Db\DoesNotExistException; +use \OCA\AppFramework\Db\MultipleObjectsReturnedException; + + +class FeedController extends Controller { + + + public function __construct(API $api, Request $request, $feedMapper){ + parent::__construct($api, $request); + $this->feedMapper = $feedMapper; + } + + + /** + * @IsAdminExemption + * @IsSubAdminExemption + * @Ajax + * + * Returns all feeds + */ + public function getAll(){ + $feeds = $this->feedMapper->findAll(); + return $this->renderJSON($feeds); + } +} \ No newline at end of file diff --git a/controller/foldercontroller.php b/controller/foldercontroller.php index dcd6f9ca5..0f3ec83a2 100644 --- a/controller/foldercontroller.php +++ b/controller/foldercontroller.php @@ -3,7 +3,7 @@ /** * ownCloud - News * -* @author Alessandro Copyright +* @author Alessandro Cosentino * @author Bernhard Posselt * @copyright 2012 Alessandro Cosentino cosenal@gmail.com * @copyright 2012 Bernhard Posselt nukeawhale@gmail.com -- cgit v1.2.3