summaryrefslogtreecommitdiffstats
path: root/lib/utils.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-05-28 23:40:18 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-05-28 23:40:18 -0400
commit07fdf6ad3c3cc659a06099cd2011aab1ce2c8c5e (patch)
treeccc41c9c30206e5406415fc9b7dfe1fa24ea7401 /lib/utils.php
parent762b4d89bc0876d8d514a21bf22babcb012cf298 (diff)
find a feed in the database by url;Detect when databse contains already a feed
Diffstat (limited to 'lib/utils.php')
-rw-r--r--lib/utils.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/lib/utils.php b/lib/utils.php
new file mode 100644
index 000000000..e5ea27626
--- /dev/null
+++ b/lib/utils.php
@@ -0,0 +1,50 @@
+<?php
+/**
+* ownCloud - News app
+*
+* @author Alessandro Cosentino
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library. If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+class OC_News_Utils {
+
+ /**
+ * @brief Fetch a feed from remote
+ * @param url remote url of the feed
+ * @returns
+ */
+ public static function fetch($url){
+ $spfeed = new SimplePie_Core();
+ $spfeed->set_feed_url( $url );
+ $spfeed->enable_cache( false );
+ $spfeed->init();
+ $spfeed->handle_content_type();
+ $title = $spfeed->get_title();
+
+ $spitems = $spfeed->get_items();
+ $items = array();
+ foreach($spitems as $spitem) { //FIXME: maybe we can avoid this loop
+ $itemUrl = $spitem->get_permalink();
+ $itemTitle = $spitem->get_title();
+ $items[] = new OC_News_Item($itemUrl, $itemTitle);
+ }
+
+ $feed = new OC_News_Feed($url, $title, $items);
+ return $feed;
+ }
+} \ No newline at end of file