summaryrefslogtreecommitdiffstats
path: root/ajax
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-07-07 19:03:35 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-07-07 19:03:35 -0400
commit5754af967cb92c49ae90c544725eb5a9ed33fc59 (patch)
treec2f11c11d669e970eb0e14a224e07908c40b9f80 /ajax
parente4b145726f00dc57b04998a28153fb0ff887ad13 (diff)
starts implementing updateitem
Diffstat (limited to 'ajax')
-rw-r--r--ajax/markitem.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/ajax/markitem.php b/ajax/markitem.php
new file mode 100644
index 000000000..ea54d79e3
--- /dev/null
+++ b/ajax/markitem.php
@@ -0,0 +1,34 @@
+<?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();
+
+$itemid = trim($_POST['itemid']);
+
+$itemmapper = new OC_News_ItemMapper();
+$item = $itemmapper->find($itemid);
+$feedid = $itemmapper->save($feed, 0);
+
+$l = OC_L10N::get('news');
+
+if(!$feedid) {
+ OCP\JSON::error(array('data' => array('message' => $l->t('Error adding folder.'))));
+ OCP\Util::writeLog('news','ajax/newfeed.php: Error adding feed: '.$_POST['feedurl'], OCP\Util::ERROR);
+ exit();
+}
+
+//TODO: replace the following with a real success case. see contact/ajax/createaddressbook.php for inspirations
+OCP\JSON::success(array('data' => array('message' => $l->t('Feed added!'))));
+