summaryrefslogtreecommitdiffstats
path: root/ajax/feedlist.php
blob: ce3128125875f1aed61bfa948fa0ad4e35340896 (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
<?php
/**
* ownCloud - News app
*
* @author Alessandro Cosentino
* Copyright (c) 2012 - Alessandro Cosentino <cosenal@gmail.com>
*
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file
*
*/

// Check if we are a user
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('news');
OCP\JSON::callCheck();

$userid = OCP\USER::getUser();

$feedmapper = new OCA\News\FeedMapper($userid);
$feeds = $feedmapper->findAll();

$l = OC_L10N::get('news');

if($feeds == null) {
	//TODO: handle error better here
	OCP\JSON::error(array('data' => array('message' => $l->t('Error updating feeds.'))));
	OCP\Util::writeLog('news','ajax/feedlist.php: Error updating feeds', OCP\Util::ERROR);
	exit();
}

OCP\JSON::success(array('data' => $feeds));