mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-21 22:42:48 +01:00
67b6c4e1b0
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
63 lines
1.3 KiB
PHP
63 lines
1.3 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 FolderServiceV2
|
|
*/
|
|
private $folderService;
|
|
|
|
/**
|
|
* @var FeedServiceV2
|
|
*/
|
|
private $feedService;
|
|
|
|
/**
|
|
* @var OPMLExporter
|
|
*/
|
|
private $exporter;
|
|
|
|
public function __construct(
|
|
FolderServiceV2 $folderService,
|
|
FeedServiceV2 $feedService,
|
|
OPMLExporter $exporter
|
|
) {
|
|
$this->folderService = $folderService;
|
|
$this->feedService = $feedService;
|
|
$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();
|
|
}
|
|
}
|