summaryrefslogtreecommitdiffstats
path: root/opmlexporter.php
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-21 16:32:36 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-21 16:32:36 +0100
commitac84b27965f5a1aec859e389f099fb844e33de46 (patch)
treec98d7aace90fcb442208349918a3e71cd9a7691a /opmlexporter.php
parentf475d882d0a76908400e9857f7e8a4ae8ad8a752 (diff)
reorganize folder
Diffstat (limited to 'opmlexporter.php')
-rw-r--r--opmlexporter.php84
1 files changed, 0 insertions, 84 deletions
diff --git a/opmlexporter.php b/opmlexporter.php
deleted file mode 100644
index d9d404ff1..000000000
--- a/opmlexporter.php
+++ /dev/null
@@ -1,84 +0,0 @@
-<?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
-*
-*/
-
-namespace OCA\News;
-
-/**
-* Exports the OPML
-*/
-class OPMLExporter {
-
- private $api;
- private $trans;
-
- public function __construct($api){
- $this->api = $api;
- $this->trans = $api->getTrans();
- }
-
-
- /**
- * Generates the OPML for the active user
- * @return the OPML as string
- */
- public function buildOPML($feeds){
- $dom = new \DomDocument('1.0', 'UTF-8');
- $dom->formatOutput = true;
-
- $opml_el = $dom->createElement('opml');
- $opml_el->setAttribute('version', '2.0');
-
- $head_el = $dom->createElement('head');
-
- $title = $this->api->getUserId() . ' ' .
- $this->trans->t('subscriptions in ownCloud - News');
- $title_el = $dom->createElement('title', $title);
-
- $head_el->appendChild( $title_el );
- $opml_el->appendChild( $head_el );
- $body_el = $dom->createElement('body');
-
- $this->feedsToXML($feeds, $body_el, $dom);
-
- $opml_el->appendChild( $body_el );
- $dom->appendChild( $opml_el );
-
- return $dom->saveXML();
- }
-
-
- /**
- * Creates the OPML content recursively
- */
- protected function feedsToXML($data, $xml_el, $dom) {
-
- foreach($data as $collection) {
- $outline_el = $dom->createElement('outline');
- if ($collection instanceOf Folder) {
- $outline_el->setAttribute('title', $collection->getName());
- $outline_el->setAttribute('text', $collection->getName());
- $this->feedsToXML($collection->getChildren(), $outline_el, $dom);
- }
- elseif ($collection instanceOf Feed) {
- $outline_el->setAttribute('title', $collection->getTitle());
- $outline_el->setAttribute('text', $collection->getTitle());
- $outline_el->setAttribute('type', 'rss');
- $outline_el->setAttribute('xmlUrl', $collection->getUrl());
- }
- $xml_el->appendChild( $outline_el );
- }
- }
-
-
-}
-