forked from owncloud-archive/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
opmlexporter.php
63 lines (50 loc) · 1.84 KB
/
opmlexporter.php
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/**
* ownCloud - News app
*
* @author Alessandro Cosentino
* Copyright (c) 2012 - Alessandro Cosentino <[email protected]>
*
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file
*
*/
function feedsToXML($data, $xml_el, $dom) {
foreach($data as $collection) {
$outline_el = $dom->createElement('outline');
if ($collection instanceOf OCA\News\Folder) {
$outline_el->setAttribute('title', $collection->getName());
$outline_el->setAttribute('text', $collection->getName());
feedsToXML($collection->getChildren(), $outline_el, $dom);
}
elseif ($collection instanceOf OCA\News\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 );
}
}
$l = OC_L10N::get('news');
OCP\User::checkLoggedIn();
OCP\App::checkAppEnabled('news');
$userid = OCP\USER::getUser();
$foldermapper = new OCA\News\FolderMapper($userid);
$allfeeds = $foldermapper->childrenOfWithFeeds(0);
header('Content-Type: application/x.opml+xml');
$filename = 'ownCloud ' . $l->t('News') . ' ' . $userid;
header('Content-Disposition: inline; filename="' . $filename . '.opml"');
$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_el = $dom->createElement('title', $userid . ' ' . $l->t('subscriptions in ownCloud - News'));
$head_el->appendChild( $title_el );
$opml_el->appendChild( $head_el );
$body_el = $dom->createElement('body');
feedsToXML($allfeeds, $body_el, $dom);
$opml_el->appendChild( $body_el );
$dom->appendChild( $opml_el );
echo $dom->saveXML();