summaryrefslogtreecommitdiffstats
path: root/lib/Service/OpmlService.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-09-29 13:54:17 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-29 14:56:07 +0200
commit35b53ecd404a74edea3c6866e451c4819bdc9ea8 (patch)
treedac46834d8fa7ec0122243f94604c3d2215b4d22 /lib/Service/OpmlService.php
parentd6d169be15913404f99b86c39a03bc71942c9f77 (diff)
OPML export command and fixes
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
Diffstat (limited to 'lib/Service/OpmlService.php')
-rw-r--r--lib/Service/OpmlService.php69
1 files changed, 69 insertions, 0 deletions
diff --git a/lib/Service/OpmlService.php b/lib/Service/OpmlService.php
new file mode 100644
index 000000000..ea570cf68
--- /dev/null
+++ b/lib/Service/OpmlService.php
@@ -0,0 +1,69 @@
+<?php
+/**
+ * Nextcloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright 2012 Alessandro Cosentino
+ * @copyright 2012-2014 Bernhard Posselt
+ */
+
+
+namespace OCA\News\Service;
+
+use OCA\News\Utility\OPMLExporter;
+
+class OpmlService
+{
+
+ /**
+ * @var FolderService
+ */
+ private $folderService;
+
+ /**
+ * @var FeedService
+ */
+ private $feedService;
+
+ /**
+ * @var ItemService
+ */
+ private $itemService;
+
+ /**
+ * @var OPMLExporter
+ */
+ private $exporter;
+
+ public function __construct(
+ FolderServiceV2 $folderService,
+ FeedServiceV2 $feedService,
+ ItemServiceV2 $itemService,
+ OPMLExporter $exporter
+ ) {
+ $this->folderService = $folderService;
+ $this->feedService = $feedService;
+ $this->itemService = $itemService;
+ $this->exporter = $exporter;
+ }
+
+ /**
+ * Export all feeds for a user.
+ *
+ * @param string $userId User ID
+ *
+ * @return string Exported OPML data
+ */
+ public function export(string $userId): string
+ {
+ $feeds = $this->feedService->findAllForUser($userId);
+ $folders = $this->folderService->findAllForUser($userId);
+
+ return $this->exporter->build($folders, $feeds)
+ ->saveXML();
+ }
+}