1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-05-08 04:34:06 +02:00
Nextcloud-News/lib/Service/OpmlService.php
Sean Molenaar 35b53ecd40 OPML export command and fixes
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
2020-09-29 14:56:07 +02:00

70 lines
1.5 KiB
PHP

<?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();
}
}